docker #1
4
.gitignore
vendored
@ -1,3 +1,7 @@
|
||||
# LaTeX
|
||||
*.aux
|
||||
*.out
|
||||
|
||||
# From Reveal.js
|
||||
.idea/
|
||||
*.iml
|
||||
|
||||
@ -1,4 +1,172 @@
|
||||
@import url("https://free.bboxtype.com/embedfonts/?family=FiraSans:300,600");
|
||||
@charset "UTF-8";
|
||||
/* tame reveal.js */
|
||||
section {
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
padding: 0 !important; }
|
||||
|
||||
* {
|
||||
line-height: inherit; }
|
||||
|
||||
/* config */
|
||||
:root {
|
||||
--primary: #f8f281;
|
||||
--primary-dark: #928c1b;
|
||||
--secondary: #bbd6ec;
|
||||
--secondary-dark: #3f5d75;
|
||||
--margin: 0.1; }
|
||||
|
||||
/* basic layout */
|
||||
:root {
|
||||
--square: 100vw; }
|
||||
@media screen and (min-aspect-ratio: 1 / 1) {
|
||||
:root {
|
||||
--square: 50vw; } }
|
||||
@media screen and (min-aspect-ratio: 2 / 1) {
|
||||
:root {
|
||||
--square: 100vh; } }
|
||||
|
||||
body {
|
||||
font-size: calc(0.035 * var(--square)); }
|
||||
body .layout-content-and-preview,
|
||||
body .layout-content-only,
|
||||
body .layout-preview-only {
|
||||
display: grid;
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
overflow: auto; }
|
||||
body .layout-content-and-preview {
|
||||
grid-template-rows: var(--square) auto;
|
||||
grid-template-columns: auto;
|
||||
grid-template-areas: "content" "preview";
|
||||
background: linear-gradient(to bottom, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) var(--square)); }
|
||||
@media screen and (min-aspect-ratio: 1 / 1) {
|
||||
body .layout-content-and-preview {
|
||||
grid-template-rows: auto var(--square) auto;
|
||||
grid-template-columns: var(--square) auto;
|
||||
grid-template-areas: " . preview" "content preview" " . preview";
|
||||
background: linear-gradient(to right, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) 100%); } }
|
||||
@media screen and (min-aspect-ratio: 2 / 1) {
|
||||
body .layout-content-and-preview {
|
||||
grid-template-rows: var(--square);
|
||||
grid-template-columns: var(--square) auto;
|
||||
grid-template-areas: "content preview"; } }
|
||||
body .layout-content-only {
|
||||
grid-template-rows: var(--square) auto;
|
||||
grid-template-columns: var(--square);
|
||||
grid-template-areas: "content" " . ";
|
||||
background: linear-gradient(to bottom, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) 100%); }
|
||||
@media screen and (min-aspect-ratio: 1 / 1) {
|
||||
body .layout-content-only {
|
||||
grid-template-rows: auto var(--square) auto;
|
||||
grid-template-columns: auto var(--square) auto;
|
||||
grid-template-areas: ". . ." ". content ." ". . .";
|
||||
background: linear-gradient(to right, var(--secondary) 0%, var(--secondary) calc((100% - var(--square)) / 2), white calc((100% - var(--square)) / 2), white calc(100% - (100% - var(--square)) / 2), var(--secondary) calc(100% - (100% - var(--square)) / 2), var(--secondary) 100%); } }
|
||||
body .layout-preview-only {
|
||||
grid-template-rows: auto;
|
||||
grid-template-columns: auto;
|
||||
grid-template-areas: "preview";
|
||||
background: var(--secondary); }
|
||||
body .layout-content {
|
||||
background: white;
|
||||
grid-area: content;
|
||||
position: relative; }
|
||||
body .layout-preview {
|
||||
grid-area: preview;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--secondary);
|
||||
position: relative; }
|
||||
body .layout-preview figure {
|
||||
display: contents; }
|
||||
body .layout-preview img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-width: calc(.9 * var(--square));
|
||||
max-height: calc(.9 * var(--square));
|
||||
box-shadow: 0.2em 0.2em 0.5em 0 rgba(0, 0, 0, 0.3);
|
||||
object-fit: cover;
|
||||
margin: calc(.05 * var(--square)); }
|
||||
body .layout-preview img[src$="-crop.svg"] {
|
||||
box-sizing: border-box;
|
||||
background: white;
|
||||
padding: calc(var(--margin) * var(--square));
|
||||
object-fit: contain;
|
||||
width: calc(0.7 * var(--square)); }
|
||||
body .layout-preview img[src$="-orig.svg"] {
|
||||
background: white;
|
||||
object-fit: contain; }
|
||||
body .layout-preview figcaption {
|
||||
position: absolute;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: white;
|
||||
padding: .5em;
|
||||
box-sizing: border-box; }
|
||||
body .layout-two-columns {
|
||||
display: grid;
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
overflow: auto;
|
||||
grid-template-rows: auto auto auto 1fr;
|
||||
grid-template-columns: var(--square);
|
||||
grid-template-areas: "title" "column1" "column2" ".";
|
||||
background: var(--secondary); }
|
||||
@media screen and (min-aspect-ratio: 1 / 1) {
|
||||
body .layout-two-columns {
|
||||
grid-template-rows: auto calc(0.18 * var(--square)) calc(0.82 * var(--square)) auto;
|
||||
grid-template-columns: var(--square) var(--square);
|
||||
grid-template-areas: " . . " " title title " "column1 column2" " . . "; } }
|
||||
@media screen and (min-aspect-ratio: 2 / 1) {
|
||||
body .layout-two-columns {
|
||||
grid-template-rows: calc(0.18 * var(--square)) calc(0.82 * var(--square));
|
||||
grid-template-columns: auto var(--square) var(--square) auto;
|
||||
grid-template-areas: ". title title ." ". column1 column2 ."; } }
|
||||
body .layout-two-columns .layout-title {
|
||||
grid-area: title;
|
||||
background: var(--secondary); }
|
||||
body .layout-two-columns .layout-column-one {
|
||||
grid-area: column1;
|
||||
background: white; }
|
||||
body .layout-two-columns .layout-column-two {
|
||||
grid-area: column2;
|
||||
background: white; }
|
||||
body .layout-two-previews {
|
||||
display: grid;
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
overflow: auto;
|
||||
grid-template-rows: auto auto;
|
||||
grid-template-columns: auto;
|
||||
background: var(--secondary); }
|
||||
@media screen and (min-aspect-ratio: 1 / 1) {
|
||||
body .layout-two-previews {
|
||||
grid-template-rows: 100vh;
|
||||
grid-template-columns: 50vw 50vw;
|
||||
grid-template-areas: "preview preview"; } }
|
||||
body .layout-two-previews .layout-preview {
|
||||
grid-area: auto; }
|
||||
|
||||
/* content layout */
|
||||
@font-face {
|
||||
font-family: 'Fira Sans';
|
||||
src: url("../../lib/font/fira-sans/FiraSans-Regular.ttf");
|
||||
font-weight: 400; }
|
||||
|
||||
@font-face {
|
||||
font-family: 'Fira Sans';
|
||||
src: url("../../lib/font/fira-sans/FiraSans-Bold.ttf");
|
||||
font-weight: 700; }
|
||||
|
||||
@font-face {
|
||||
font-family: 'Fira Code';
|
||||
src: url("../../lib/font/fira-code/FiraCode-Regular.otf");
|
||||
@ -12,76 +180,127 @@
|
||||
body {
|
||||
font-family: 'Fira Sans';
|
||||
margin: 0;
|
||||
line-height: 1.2em;
|
||||
font-size: 1.7vw; }
|
||||
line-height: 1.2em; }
|
||||
|
||||
@media screen and (screen-orientation: landscape) {
|
||||
body {
|
||||
font-size: 3.5vh; } }
|
||||
|
||||
section {
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
padding: 0 !important; }
|
||||
|
||||
.layout-side-by-side {
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
overflow: hidden;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-rows: 1fr 12fr;
|
||||
background: linear-gradient(to right, white 0%, white calc(50% - 4px), #c8ceda calc(50% - 4px), #c8ceda calc(50% + 4px), #ffffff calc(50% + 4px), #ffffff 100%); }
|
||||
.layout-side-by-side .layout-title {
|
||||
grid-column-end: span 2;
|
||||
padding: 3.5vw calc(50% + 4vw) 0.5vw 4vw;
|
||||
.layout-content-and-preview .layout-content,
|
||||
.layout-content-only .layout-content {
|
||||
overflow: auto;
|
||||
padding: calc(var(--margin) * var(--square)); }
|
||||
.layout-content-and-preview .layout-content *:first-child,
|
||||
.layout-content-only .layout-content *:first-child {
|
||||
margin-top: 0; }
|
||||
.layout-content-and-preview .layout-content .layout-title,
|
||||
.layout-content-only .layout-content .layout-title {
|
||||
padding: calc(0.3 * var(--margin) * var(--square)) 0;
|
||||
line-height: 1.15em; }
|
||||
.layout-side-by-side .layout-content-left {
|
||||
overflow: auto;
|
||||
padding: 4vw; }
|
||||
.layout-side-by-side .layout-content-left *:first-child {
|
||||
margin-top: 0; }
|
||||
.layout-side-by-side .layout-content-right {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
padding: 4vw; }
|
||||
.layout-side-by-side .layout-content-right img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
box-shadow: 0.2em 0.2em 0.5em 0 rgba(0, 0, 0, 0.3); }
|
||||
.layout-side-by-side h2 {
|
||||
margin: 0; }
|
||||
.layout-side-by-side ul {
|
||||
list-style-type: disc;
|
||||
padding-left: 0; }
|
||||
.layout-side-by-side ul ul {
|
||||
padding-left: 2vw; }
|
||||
.layout-side-by-side pre {
|
||||
margin-left: -4vw;
|
||||
padding-left: 4vw;
|
||||
.layout-content-and-preview .layout-content .layout-title h2,
|
||||
.layout-content-only .layout-content .layout-title h2 {
|
||||
margin: 0;
|
||||
line-height: 1.15em; }
|
||||
.layout-content-and-preview .layout-content ul, .layout-content-and-preview .layout-content ol,
|
||||
.layout-content-only .layout-content ul,
|
||||
.layout-content-only .layout-content ol {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
position: relative; }
|
||||
.layout-content-and-preview .layout-content ul li::before, .layout-content-and-preview .layout-content ol li::before,
|
||||
.layout-content-only .layout-content ul li::before,
|
||||
.layout-content-only .layout-content ol li::before {
|
||||
content: '▪';
|
||||
color: var(--secondary);
|
||||
position: absolute;
|
||||
left: calc(-0.33 * var(--margin) * var(--square)); }
|
||||
.layout-content-and-preview .layout-content ul ul, .layout-content-and-preview .layout-content ul ol, .layout-content-and-preview .layout-content ol ul, .layout-content-and-preview .layout-content ol ol,
|
||||
.layout-content-only .layout-content ul ul,
|
||||
.layout-content-only .layout-content ul ol,
|
||||
.layout-content-only .layout-content ol ul,
|
||||
.layout-content-only .layout-content ol ol {
|
||||
margin-left: calc(0.33 * var(--margin) * var(--square)); }
|
||||
.layout-content-and-preview .layout-content ol,
|
||||
.layout-content-only .layout-content ol {
|
||||
counter-reset: ol-counter; }
|
||||
.layout-content-and-preview .layout-content ol li::before,
|
||||
.layout-content-only .layout-content ol li::before {
|
||||
counter-increment: ol-counter;
|
||||
content: counter(ol-counter) ".";
|
||||
color: var(--secondary-dark);
|
||||
left: calc(-0.36 * var(--margin) * var(--square)); }
|
||||
.layout-content-and-preview .layout-content pre,
|
||||
.layout-content-only .layout-content pre {
|
||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||
padding-left: calc(var(--margin) * var(--square));
|
||||
line-height: 1.2em;
|
||||
position: relative;
|
||||
overflow: hidden; }
|
||||
.layout-side-by-side pre::before {
|
||||
.layout-content-and-preview .layout-content pre::before,
|
||||
.layout-content-only .layout-content pre::before {
|
||||
content: attr(data-sourcefile);
|
||||
position: absolute;
|
||||
top: .3em;
|
||||
left: calc(1.5vw - 100%);
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
transform: rotate(-90deg);
|
||||
transform-origin: 100% 50%;
|
||||
color: #cccccc; }
|
||||
.layout-side-by-side code {
|
||||
color: var(--secondary);
|
||||
top: .85em;
|
||||
width: 100%;
|
||||
left: calc(-1 * var(--square) + 1.2 * var(--margin) * var(--square));
|
||||
transform-origin: top right;
|
||||
transform: rotate(-90deg); }
|
||||
.layout-content-and-preview .layout-content pre code,
|
||||
.layout-content-only .layout-content pre code {
|
||||
padding: .3em 0; }
|
||||
.layout-content-and-preview .layout-content code,
|
||||
.layout-content-only .layout-content code {
|
||||
font-size: 0.9em;
|
||||
font-family: 'Fira Code'; }
|
||||
|
||||
.layout-two-columns .layout-title {
|
||||
padding: calc(0.3 * var(--margin) * var(--square)) calc(var(--margin) * var(--square)); }
|
||||
.layout-two-columns .layout-title h2 {
|
||||
line-height: 1.15em; }
|
||||
|
||||
.layout-two-columns .layout-column-one,
|
||||
.layout-two-columns .layout-column-two {
|
||||
padding: calc(var(--margin) * var(--square));
|
||||
padding-top: 0; }
|
||||
.layout-two-columns .layout-column-one *:first-child,
|
||||
.layout-two-columns .layout-column-two *:first-child {
|
||||
margin-top: 0; }
|
||||
.layout-two-columns .layout-column-one ul,
|
||||
.layout-two-columns .layout-column-two ul {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
position: relative; }
|
||||
.layout-two-columns .layout-column-one ul li::before,
|
||||
.layout-two-columns .layout-column-two ul li::before {
|
||||
content: '▪';
|
||||
color: var(--secondary);
|
||||
position: absolute;
|
||||
left: calc(-0.33 * var(--margin) * var(--square)); }
|
||||
.layout-two-columns .layout-column-one ul ul,
|
||||
.layout-two-columns .layout-column-two ul ul {
|
||||
margin-left: calc(0.33 * var(--margin) * var(--square)); }
|
||||
.layout-two-columns .layout-column-one pre,
|
||||
.layout-two-columns .layout-column-two pre {
|
||||
margin: 0 calc(-1 * var(--margin) * var(--square));
|
||||
line-height: 1.2em;
|
||||
position: relative;
|
||||
overflow: hidden; }
|
||||
.layout-two-columns .layout-column-one pre::before,
|
||||
.layout-two-columns .layout-column-two pre::before {
|
||||
content: attr(data-sourcefile);
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
color: var(--secondary);
|
||||
top: .85em;
|
||||
width: 100%;
|
||||
left: calc(-1 * var(--square) + 1.2 * var(--margin) * var(--square));
|
||||
transform-origin: top right;
|
||||
transform: rotate(-90deg); }
|
||||
.layout-two-columns .layout-column-one pre code,
|
||||
.layout-two-columns .layout-column-two pre code {
|
||||
padding: 0.3em calc(var(--margin) * var(--square)); }
|
||||
.layout-two-columns .layout-column-one code,
|
||||
.layout-two-columns .layout-column-two code {
|
||||
font-size: 0.9em;
|
||||
font-family: 'Fira Code'; }
|
||||
.layout-side-by-side code.hljs {
|
||||
padding: .3em 0; }
|
||||
|
||||
.layout.layout-chapter-heading {
|
||||
height: 100vh;
|
||||
@ -95,4 +314,123 @@ section {
|
||||
bottom: calc(38.2% - .5em); }
|
||||
|
||||
h1 {
|
||||
font-size: 300%; }
|
||||
position: absolute;
|
||||
font-size: 300%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
line-height: 115%;
|
||||
vertical-align: bottom;
|
||||
max-width: var(--square);
|
||||
padding: 0 calc(var(--margin) * var(--square)) 0.5em; }
|
||||
|
||||
h2 {
|
||||
line-height: 1.2; }
|
||||
|
||||
h2[data-category]::before {
|
||||
content: attr(data-category);
|
||||
font-size: .7em;
|
||||
font-variant: small-caps;
|
||||
text-transform: lowercase;
|
||||
background: black;
|
||||
color: white;
|
||||
padding: .1em .5em;
|
||||
display: inline-block;
|
||||
vertical-align: baseline;
|
||||
letter-spacing: .1em;
|
||||
position: relative;
|
||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||
padding-left: calc(var(--margin) * var(--square));
|
||||
margin-right: .5em; }
|
||||
|
||||
img {
|
||||
width: auto;
|
||||
max-width: 100%; }
|
||||
|
||||
table {
|
||||
width: calc(var(--square) - var(--margin) * var(--square));
|
||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||
border-spacing: 0; }
|
||||
table tr:nth-child(2n-1) {
|
||||
background: var(--secondary); }
|
||||
table tr > *:first-child {
|
||||
padding-left: calc(var(--margin) * var(--square)); }
|
||||
table th, table td {
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
padding: .3em;
|
||||
padding-left: 0; }
|
||||
table th:last-child, table td:last-child {
|
||||
padding-right: .1em; }
|
||||
|
||||
.layout-content-only table {
|
||||
border-spacing: 0;
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.layout-content-only table tr > *:first-child {
|
||||
padding-left: .3rem;
|
||||
padding-right: .3rem; }
|
||||
|
||||
.box, blockquote {
|
||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||
padding: 0.8em 0.1em 0.1em calc(var(--margin) * var(--square)); }
|
||||
|
||||
.box.warning {
|
||||
background: var(--primary); }
|
||||
|
||||
blockquote {
|
||||
color: var(--secondary-dark);
|
||||
text-indent: -.55em;
|
||||
padding-bottom: .8em; }
|
||||
blockquote::before {
|
||||
content: '»';
|
||||
color: var(--secondary-dark); }
|
||||
blockquote cite::before {
|
||||
content: ' – '; }
|
||||
|
||||
.layout-content figure {
|
||||
margin: 0 1em 1em 0; }
|
||||
|
||||
.bubble {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
margin-top: -2em;
|
||||
margin-left: -3.8em;
|
||||
width: 6em;
|
||||
border: 0.1em solid var(--primary-dark);
|
||||
background: var(--primary);
|
||||
text-align: center;
|
||||
border-radius: 1em; }
|
||||
.bubble::before {
|
||||
content: '';
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
border: .5em solid transparent;
|
||||
border-top-color: var(--primary-dark);
|
||||
bottom: -1em;
|
||||
left: calc(50% - .5em); }
|
||||
.bubble::after {
|
||||
content: '';
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
border: .5em solid transparent;
|
||||
border-top-color: var(--primary);
|
||||
bottom: -0.87em;
|
||||
left: calc(50% - .5em); }
|
||||
|
||||
section > h1, section > h2, section > h3, section > p, section > ul {
|
||||
background: var(--primary); }
|
||||
|
||||
/*
|
||||
* Keyboard Shortcut Styling
|
||||
* =========================
|
||||
*/
|
||||
kbd {
|
||||
font-family: "Fira Code", monospace !important;
|
||||
font-size: 65% !important;
|
||||
display: inline-block;
|
||||
border: 1px solid white !important;
|
||||
border-width: 1px 5px 5px 1px !important;
|
||||
padding: .2rem .5rem !important; }
|
||||
|
||||
@ -1,139 +1,546 @@
|
||||
// @import "../template/mixins";
|
||||
// @import "../template/settings";
|
||||
// $heading2Size: 101px;
|
||||
// @import "../template/theme";
|
||||
|
||||
@import url('https://free.bboxtype.com/embedfonts/?family=FiraSans:300,600');
|
||||
@font-face {
|
||||
font-family: 'Fira Code';
|
||||
src: url('../../lib/font/fira-code/FiraCode-Regular.otf');
|
||||
font-weight: 400;
|
||||
/* tame reveal.js */
|
||||
section {
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
padding: 0 !important;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Fira Code';
|
||||
src: url('../../lib/font/fira-code/FiraCode-Bold.otf');
|
||||
font-weight: 700;
|
||||
* {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
/* config */
|
||||
:root {
|
||||
--primary: #f8f281;
|
||||
--primary-dark: #928c1b;
|
||||
--secondary: #bbd6ec;
|
||||
--secondary-dark: #3f5d75;
|
||||
--margin: 0.1;
|
||||
}
|
||||
|
||||
/* basic layout */
|
||||
:root {
|
||||
--square: 100vw;
|
||||
@media screen and (min-aspect-ratio: 1/1) {
|
||||
--square: 50vw;
|
||||
}
|
||||
@media screen and (min-aspect-ratio: 2/1) {
|
||||
--square: 100vh;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Fira Sans';
|
||||
margin: 0;
|
||||
line-height: 1.2em;
|
||||
font-size: 1.7vw;
|
||||
font-size: calc(0.035 * var(--square));
|
||||
|
||||
.layout-content-and-preview,
|
||||
.layout-content-only,
|
||||
.layout-preview-only {
|
||||
display: grid;
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.layout-content-and-preview {
|
||||
grid-template-rows: var(--square) auto;
|
||||
grid-template-columns: auto;
|
||||
grid-template-areas:
|
||||
"content"
|
||||
"preview";
|
||||
background: linear-gradient(to bottom,
|
||||
white 0%,
|
||||
white var(--square),
|
||||
var(--secondary) var(--square),
|
||||
var(--secondary) var(--square));
|
||||
@media screen and (min-aspect-ratio: 1/1) {
|
||||
grid-template-rows: auto var(--square) auto;
|
||||
grid-template-columns: var(--square) auto;
|
||||
grid-template-areas:
|
||||
" . preview"
|
||||
"content preview"
|
||||
" . preview";
|
||||
background: linear-gradient(to right, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) 100%);
|
||||
}
|
||||
@media screen and (min-aspect-ratio: 2/1) {
|
||||
grid-template-rows: var(--square);
|
||||
grid-template-columns: var(--square) auto;
|
||||
grid-template-areas:
|
||||
"content preview";
|
||||
}
|
||||
}
|
||||
|
||||
.layout-content-only {
|
||||
grid-template-rows: var(--square) auto;
|
||||
grid-template-columns: var(--square);
|
||||
grid-template-areas:
|
||||
"content"
|
||||
" . ";
|
||||
background: linear-gradient(to bottom, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) 100%);
|
||||
@media screen and (min-aspect-ratio: 1/1) {
|
||||
grid-template-rows: auto var(--square) auto;
|
||||
grid-template-columns: auto var(--square) auto;
|
||||
grid-template-areas:
|
||||
". . ."
|
||||
". content ."
|
||||
". . .";
|
||||
background: linear-gradient(to right,
|
||||
var(--secondary) 0%,
|
||||
var(--secondary) calc((100% - var(--square)) / 2),
|
||||
white calc((100% - var(--square)) / 2),
|
||||
white calc(100% - (100% - var(--square)) / 2),
|
||||
var(--secondary) calc(100% - (100% - var(--square)) / 2),
|
||||
var(--secondary) 100%);
|
||||
}
|
||||
}
|
||||
|
||||
.layout-preview-only {
|
||||
grid-template-rows: auto;
|
||||
grid-template-columns: auto;
|
||||
grid-template-areas: "preview";
|
||||
background: var(--secondary);
|
||||
}
|
||||
|
||||
.layout-content {
|
||||
background: white;
|
||||
grid-area: content;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.layout-preview {
|
||||
grid-area: preview;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--secondary);
|
||||
position: relative;
|
||||
figure {
|
||||
display: contents;
|
||||
}
|
||||
img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-width: calc(.9 * var(--square));
|
||||
max-height: calc(.9 * var(--square));
|
||||
box-shadow: .2em .2em .5em 0 rgba(0, 0, 0, .3);
|
||||
object-fit: cover;
|
||||
margin: calc(.05 * var(--square));
|
||||
&[src$="-crop.svg"] {
|
||||
box-sizing: border-box;
|
||||
background: white;
|
||||
padding: calc(var(--margin) * var(--square));
|
||||
object-fit: contain;
|
||||
width: calc(0.7 * var(--square));
|
||||
}
|
||||
&[src$="-orig.svg"] {
|
||||
background: white;
|
||||
object-fit: contain;
|
||||
}
|
||||
}
|
||||
figcaption {
|
||||
position: absolute;
|
||||
background: rgba(0,0,0,.5);
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: white;
|
||||
padding: .5em;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-two-columns {
|
||||
display: grid;
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
overflow: auto;
|
||||
grid-template-rows: auto auto auto 1fr;
|
||||
grid-template-columns: var(--square);
|
||||
grid-template-areas:
|
||||
"title"
|
||||
"column1"
|
||||
"column2"
|
||||
".";
|
||||
background: var(--secondary);
|
||||
@media screen and (min-aspect-ratio: 1/1) {
|
||||
grid-template-rows: auto calc(0.18 * var(--square)) calc(0.82 * var(--square)) auto;
|
||||
grid-template-columns: var(--square) var(--square);
|
||||
grid-template-areas:
|
||||
" . . "
|
||||
" title title "
|
||||
"column1 column2"
|
||||
" . . ";
|
||||
}
|
||||
@media screen and (min-aspect-ratio: 2/1) {
|
||||
grid-template-rows: calc(0.18 * var(--square)) calc(0.82 * var(--square));
|
||||
grid-template-columns: auto var(--square) var(--square) auto;
|
||||
grid-template-areas:
|
||||
". title title ."
|
||||
". column1 column2 .";
|
||||
}
|
||||
|
||||
.layout-title {
|
||||
grid-area: title;
|
||||
background: var(--secondary);
|
||||
}
|
||||
|
||||
.layout-column-one {
|
||||
grid-area: column1;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.layout-column-two {
|
||||
grid-area: column2;
|
||||
background: white;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-two-previews {
|
||||
display: grid;
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
overflow: auto;
|
||||
grid-template-rows: auto auto;
|
||||
grid-template-columns: auto;
|
||||
background: var(--secondary);
|
||||
@media screen and (min-aspect-ratio: 1/1) {
|
||||
grid-template-rows: 100vh;
|
||||
grid-template-columns: 50vw 50vw;
|
||||
grid-template-areas:
|
||||
"preview preview";
|
||||
}
|
||||
.layout-preview {
|
||||
grid-area: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (screen-orientation: landscape) {
|
||||
body {
|
||||
font-size: 3.5vh;
|
||||
}
|
||||
/* content layout */
|
||||
|
||||
@font-face {
|
||||
font-family: 'Fira Sans';
|
||||
src: url('../../lib/font/fira-sans/FiraSans-Regular.ttf');
|
||||
font-weight: 400;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Fira Sans';
|
||||
src: url('../../lib/font/fira-sans/FiraSans-Bold.ttf');
|
||||
font-weight: 700;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Fira Code';
|
||||
src: url('../../lib/font/fira-code/FiraCode-Regular.otf');
|
||||
font-weight: 400;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Fira Code';
|
||||
src: url('../../lib/font/fira-code/FiraCode-Bold.otf');
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
section {
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
padding: 0 !important;
|
||||
body {
|
||||
font-family: 'Fira Sans';
|
||||
margin: 0;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
.layout-side-by-side {
|
||||
$backgroundColor: #c8ceda;
|
||||
$stripHalfWidth: 4px;
|
||||
.layout-content-and-preview,
|
||||
.layout-content-only {
|
||||
.layout-content {
|
||||
overflow: auto;
|
||||
padding: calc(var(--margin) * var(--square));
|
||||
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
overflow: hidden;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-rows: 1fr 12fr;
|
||||
// background: linear-gradient(to right, $backgroundColor 0%, $backgroundColor 50%, #ffffff 50%, #ffffff 100%);
|
||||
background: linear-gradient(to right, white 0%, white calc(50% - #{$stripHalfWidth}), $backgroundColor calc(50% - #{$stripHalfWidth}), $backgroundColor calc(50% + #{$stripHalfWidth}), #ffffff calc(50% + #{$stripHalfWidth}), #ffffff 100%);
|
||||
*:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.layout-title {
|
||||
grid-column-end: span 2;
|
||||
padding: 3.5vw calc(50% + 4vw) 0.5vw 4vw;
|
||||
line-height: 1.15em;
|
||||
}
|
||||
.layout-title {
|
||||
padding: calc(0.3 * var(--margin) * var(--square)) 0;
|
||||
line-height: 1.15em;
|
||||
|
||||
.layout-content-left {
|
||||
overflow: auto;
|
||||
padding: 4vw;
|
||||
h2 {
|
||||
margin: 0;
|
||||
line-height: 1.15em;
|
||||
}
|
||||
}
|
||||
|
||||
*:first-child {
|
||||
margin-top: 0
|
||||
}
|
||||
}
|
||||
ul, ol {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
position: relative;
|
||||
li::before {
|
||||
content: '▪';
|
||||
color: var(--secondary);
|
||||
position: absolute;
|
||||
left: calc(-0.33 * var(--margin) * var(--square));
|
||||
}
|
||||
ul, ol {
|
||||
margin-left: calc(0.33 * var(--margin) * var(--square));
|
||||
}
|
||||
}
|
||||
ol {
|
||||
counter-reset: ol-counter;
|
||||
li::before {
|
||||
counter-increment: ol-counter;
|
||||
content: counter(ol-counter) '.';
|
||||
color: var(--secondary-dark);
|
||||
left: calc(-0.36 * var(--margin) * var(--square));
|
||||
}
|
||||
}
|
||||
|
||||
.layout-content-right {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
padding: 4vw;
|
||||
pre {
|
||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||
padding-left: calc(var(--margin) * var(--square));
|
||||
line-height: 1.2em;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
&::before {
|
||||
content: attr(data-sourcefile);
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
color: var(--secondary);
|
||||
top: .85em;
|
||||
width: 100%;
|
||||
left: calc(-1 * var(--square) + 1.2 * var(--margin) * var(--square));
|
||||
transform-origin: top right;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
code {
|
||||
padding: .3em 0;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
box-shadow: .2em .2em .5em 0 rgba(0, 0, 0, .3);
|
||||
}
|
||||
}
|
||||
code {
|
||||
font-size: 0.9em;
|
||||
font-family: 'Fira Code';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 0;
|
||||
}
|
||||
.layout-two-columns {
|
||||
.layout-title {
|
||||
padding: calc(0.3 * var(--margin) * var(--square)) calc(var(--margin) * var(--square));
|
||||
h2 {
|
||||
line-height: 1.15em;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: disc;
|
||||
padding-left: 0;
|
||||
ul {
|
||||
padding-left: 2vw;
|
||||
}
|
||||
}
|
||||
.layout-column-one,
|
||||
.layout-column-two {
|
||||
padding: calc(var(--margin) * var(--square));
|
||||
padding-top: 0;
|
||||
|
||||
pre {
|
||||
margin-left: -4vw;
|
||||
padding-left: 4vw;
|
||||
line-height: 1.2em;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
*:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: attr(data-sourcefile);
|
||||
position: absolute;
|
||||
top: .3em;
|
||||
left: calc(1.5vw - 100%);
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
transform: rotate(-90deg);
|
||||
transform-origin: 100% 50%;
|
||||
color: #cccccc;
|
||||
}
|
||||
}
|
||||
ul {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
position: relative;
|
||||
li::before {
|
||||
content: '▪';
|
||||
color: var(--secondary);
|
||||
position: absolute;
|
||||
left: calc(-0.33 * var(--margin) * var(--square));
|
||||
}
|
||||
ul {
|
||||
margin-left: calc(0.33 * var(--margin) * var(--square));
|
||||
}
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 0.9em;
|
||||
font-family: 'Fira Code';
|
||||
}
|
||||
pre {
|
||||
margin: 0 calc(-1 * var(--margin) * var(--square));
|
||||
line-height: 1.2em;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
&::before {
|
||||
content: attr(data-sourcefile);
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
color: var(--secondary);
|
||||
top: .85em;
|
||||
width: 100%;
|
||||
left: calc(-1 * var(--square) + 1.2 * var(--margin) * var(--square));
|
||||
transform-origin: top right;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
code {
|
||||
padding: .3em calc(var(--margin) * var(--square));
|
||||
}
|
||||
}
|
||||
|
||||
code.hljs {
|
||||
padding: .3em 0;
|
||||
}
|
||||
code {
|
||||
font-size: 0.9em;
|
||||
font-family: 'Fira Code';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout.layout-chapter-heading {
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
position: relative;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
position: relative;
|
||||
|
||||
.layout-title {
|
||||
position: absolute;
|
||||
left: 2vw;
|
||||
width: calc(100vw - 4vw);
|
||||
text-align: center;
|
||||
bottom: calc(38.2% - .5em);
|
||||
}
|
||||
.layout-title {
|
||||
position: absolute;
|
||||
left: 2vw;
|
||||
width: calc(100vw - 4vw);
|
||||
text-align: center;
|
||||
bottom: calc(38.2% - .5em);
|
||||
}
|
||||
}
|
||||
|
||||
h1 { font-size: 300%; }
|
||||
h1 {
|
||||
position: absolute;
|
||||
font-size: 300%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
line-height: 115%;
|
||||
vertical-align: bottom;
|
||||
max-width: var(--square);
|
||||
padding: 0 calc(var(--margin) * var(--square)) .5em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
h2[data-category]::before {
|
||||
content: attr(data-category);
|
||||
font-size: .7em;
|
||||
font-variant: small-caps;
|
||||
text-transform: lowercase;
|
||||
background: black;
|
||||
color: white;
|
||||
padding: .1em .5em;
|
||||
display: inline-block;
|
||||
vertical-align: baseline;
|
||||
letter-spacing: .1em;
|
||||
position: relative;
|
||||
// left: calc(-1 * var(--margin) * var(--square));
|
||||
// margin-right: calc(-1 * var(--margin) * var(--square) + 1em);
|
||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||
padding-left: calc(var(--margin) * var(--square));
|
||||
margin-right: .5em;
|
||||
}
|
||||
|
||||
img {
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
table {
|
||||
width: calc(var(--square) - var(--margin) * var(--square));
|
||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||
border-spacing: 0;
|
||||
tr:nth-child(2n-1) {
|
||||
background: var(--secondary);
|
||||
}
|
||||
tr>*:first-child {
|
||||
padding-left: calc(var(--margin) * var(--square));
|
||||
}
|
||||
th, td {
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
padding: .3em;
|
||||
padding-left: 0;
|
||||
}
|
||||
th:last-child, td:last-child {
|
||||
padding-right: .1em;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-content-only table {
|
||||
border-spacing: 0;
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
|
||||
tr>*:first-child {
|
||||
padding-left: .3rem;
|
||||
padding-right: .3rem;
|
||||
}
|
||||
}
|
||||
|
||||
.box, blockquote {
|
||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||
padding: .8em .1em .1em calc(var(--margin) * var(--square));
|
||||
}
|
||||
|
||||
.box.warning {
|
||||
background: var(--primary);
|
||||
}
|
||||
|
||||
blockquote {
|
||||
color: var(--secondary-dark);
|
||||
text-indent: -.55em;
|
||||
padding-bottom: .8em;
|
||||
&::before {
|
||||
content: '»';
|
||||
color: var(--secondary-dark);
|
||||
}
|
||||
cite::before {
|
||||
content: ' – '
|
||||
}
|
||||
}
|
||||
|
||||
.layout-content {
|
||||
figure {
|
||||
margin: 0 1em 1em 0;
|
||||
}
|
||||
}
|
||||
|
||||
.bubble {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
margin-top: -2em;
|
||||
margin-left: -3.8em;
|
||||
width: 6em;
|
||||
border: .1em solid var(--primary-dark);
|
||||
background: var(--primary);
|
||||
text-align: center;
|
||||
border-radius: 1em;
|
||||
&::before {
|
||||
content: '';
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
border: .5em solid transparent;
|
||||
border-top-color: var(--primary-dark);
|
||||
bottom: -1em;
|
||||
left: calc(50% - .5em);
|
||||
}
|
||||
&::after {
|
||||
content: '';
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
border: .5em solid transparent;
|
||||
border-top-color: var(--primary);
|
||||
bottom: -0.87em;
|
||||
left: calc(50% - .5em);
|
||||
}
|
||||
}
|
||||
|
||||
// TODOs
|
||||
section>h1, section>h2, section>h3, section>p, section>ul {
|
||||
background: var(--primary)
|
||||
}
|
||||
|
||||
/*
|
||||
* Keyboard Shortcut Styling
|
||||
* =========================
|
||||
*/
|
||||
kbd {
|
||||
font-family: "Fira Code", monospace !important;
|
||||
font-size: 65% !important;
|
||||
display: inline-block;
|
||||
border: 1px solid white !important;
|
||||
border-width: 1px 5px 5px 1px !important;
|
||||
padding: .2rem .5rem !important;
|
||||
}
|
||||
|
||||
19
index.html
@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
|
||||
<title>reveal.js</title>
|
||||
<title>LaTeX-Wochenende der Fachschaft WIAI</title>
|
||||
|
||||
<link rel="stylesheet" href="css/reveal.css">
|
||||
<link rel="stylesheet" href="css/theme/latex.css">
|
||||
@ -40,6 +40,22 @@
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/07/07.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/08/08.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/09/09.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/10/10.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/11/11.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/12/12.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/13/13.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/14/14.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
<section data-markdown="sections/german/15/15.md" data-separator="^\r?\n===\r?\n$"
|
||||
data-separator-vertical="^\r?\n---\r?\n$"></section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -56,6 +72,7 @@
|
||||
minScale: 1,
|
||||
maxScale: 1,
|
||||
margin: 0,
|
||||
transition: 'none',
|
||||
math: {
|
||||
mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
|
||||
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
|
||||
|
||||
BIN
lib/font/fira-code/FiraCode_1.206/eot/FiraCode-Bold.eot
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/eot/FiraCode-Light.eot
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/eot/FiraCode-Medium.eot
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/eot/FiraCode-Regular.eot
Normal file
43
lib/font/fira-code/FiraCode_1.206/fira_code.css
Normal file
@ -0,0 +1,43 @@
|
||||
@font-face{
|
||||
font-family: 'Fira Code';
|
||||
src: url('eot/FiraCode-Light.eot');
|
||||
src: url('eot/FiraCode-Light.eot') format('embedded-opentype'),
|
||||
url('woff2/FiraCode-Light.woff2') format('woff2'),
|
||||
url('woff/FiraCode-Light.woff') format('woff'),
|
||||
url('ttf/FiraCode-Light.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Fira Code';
|
||||
src: url('eot/FiraCode-Regular.eot');
|
||||
src: url('eot/FiraCode-Regular.eot') format('embedded-opentype'),
|
||||
url('woff2/FiraCode-Regular.woff2') format('woff2'),
|
||||
url('woff/FiraCode-Regular.woff') format('woff'),
|
||||
url('ttf/FiraCode-Regular.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Fira Code';
|
||||
src: url('eot/FiraCode-Medium.eot');
|
||||
src: url('eot/FiraCode-Medium.eot') format('embedded-opentype'),
|
||||
url('woff2/FiraCode-Medium.woff2') format('woff2'),
|
||||
url('woff/FiraCode-Medium.woff') format('woff'),
|
||||
url('ttf/FiraCode-Medium.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Fira Code';
|
||||
src: url('eot/FiraCode-Bold.eot');
|
||||
src: url('eot/FiraCode-Bold.eot') format('embedded-opentype'),
|
||||
url('woff2/FiraCode-Bold.woff2') format('woff2'),
|
||||
url('woff/FiraCode-Bold.woff') format('woff'),
|
||||
url('ttf/FiraCode-Bold.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
65
lib/font/fira-code/FiraCode_1.206/specimen.html
Normal file
@ -0,0 +1,65 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<title>Fira Code Specimen</title>
|
||||
|
||||
<link rel="stylesheet" href="fira_code.css">
|
||||
<style>
|
||||
body { font: 14px/1.5em "Fira Code"; }
|
||||
.code {
|
||||
font-feature-settings: "calt" 1; /* Enable ligatures for IE 10+, Edge */
|
||||
text-rendering: optimizeLegibility; /* Force ligatures for Webkit, Blink, Gecko */
|
||||
width: 30em;
|
||||
margin: 5em auto;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-all;
|
||||
}
|
||||
.light { font-weight: 300; }
|
||||
.regular { font-weight: 400; }
|
||||
.medium { font-weight: 500; }
|
||||
.bold { font-weight: 700; }
|
||||
i { font-style: normal; color: #c33; }
|
||||
b { font-weight: inherit; color: #c33; }
|
||||
</style>
|
||||
<body>
|
||||
|
||||
<div class="code light"><b># Fira Code Light</b>
|
||||
|
||||
take = (n, [x, <i>...</i>xs]:list) <i>--></i>
|
||||
| n <i><=</i> 0 <i>=></i> []
|
||||
| empty list <i>=></i> []
|
||||
| otherwise <i>=></i> [x] <i>++</i> take n-1, xs
|
||||
|
||||
last3 = reverse <i>>></i> take 3 <i>>></i> reverse</div>
|
||||
|
||||
|
||||
<div class="code regular"><b># Fira Code Regular</b>
|
||||
|
||||
take = (n, [x, <i>...</i>xs]:list) <i>--></i>
|
||||
| n <i><=</i> 0 <i>=></i> []
|
||||
| empty list <i>=></i> []
|
||||
| otherwise <i>=></i> [x] <i>++</i> take n-1, xs
|
||||
|
||||
last3 = reverse <i>>></i> take 3 <i>>></i> reverse</div>
|
||||
|
||||
|
||||
<div class="code medium"><b># Fira Code Medium</b>
|
||||
|
||||
take = (n, [x, <i>...</i>xs]:list) <i>--></i>
|
||||
| n <i><=</i> 0 <i>=></i> []
|
||||
| empty list <i>=></i> []
|
||||
| otherwise <i>=></i> [x] <i>++</i> take n-1, xs
|
||||
|
||||
last3 = reverse <i>>></i> take 3 <i>>></i> reverse</div>
|
||||
|
||||
|
||||
<div class="code bold"><b># Fira Code Bold</b>
|
||||
|
||||
take = (n, [x, <i>...</i>xs]:list) <i>--></i>
|
||||
| n <i><=</i> 0 <i>=></i> []
|
||||
| empty list <i>=></i> []
|
||||
| otherwise <i>=></i> [x] <i>++</i> take n-1, xs
|
||||
|
||||
last3 = reverse <i>>></i> take 3 <i>>></i> reverse</div>
|
||||
BIN
lib/font/fira-code/FiraCode_1.206/ttf/FiraCode-Bold.ttf
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/ttf/FiraCode-Light.ttf
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/ttf/FiraCode-Medium.ttf
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/ttf/FiraCode-Regular.ttf
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/ttf/FiraCode-Retina.ttf
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/woff/FiraCode-Bold.woff
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/woff/FiraCode-Light.woff
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/woff/FiraCode-Medium.woff
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/woff/FiraCode-Regular.woff
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/woff2/FiraCode-Bold.woff2
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/woff2/FiraCode-Light.woff2
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/woff2/FiraCode-Medium.woff2
Normal file
BIN
lib/font/fira-code/FiraCode_1.206/woff2/FiraCode-Regular.woff2
Normal file
BIN
lib/font/fira-sans/FiraSans-Black.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-BlackItalic.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-Bold.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-BoldItalic.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-ExtraBold.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-ExtraBoldItalic.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-ExtraLight.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-ExtraLightItalic.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-Italic.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-Light.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-LightItalic.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-Medium.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-MediumItalic.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-Regular.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-SemiBold.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-SemiBoldItalic.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-Thin.ttf
Normal file
BIN
lib/font/fira-sans/FiraSans-ThinItalic.ttf
Normal file
@ -1 +1,5 @@
|
||||
# $\LaTeX$
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -1,12 +1,156 @@
|
||||
# Was ist $\LaTeX$?
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>Was ist L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X?</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout">
|
||||
<h2 class="layout-title">Titel</h2>
|
||||
<div class="layout-content-left">
|
||||
<p>Lorem Ipsum ist ein einfacher Demo-Text für die Print- und Schriftindustrie. Lorem Ipsum ist in der Industrie bereits der Standard Demo-Text seit 1500, als ein unbekannter Schriftsteller eine Hand voll Wörter nahm und diese durcheinander warf um ein Musterbuch zu erstellen. Es hat nicht nur 5 Jahrhunderte überlebt, sondern auch in Spruch in die elektronische Schriftbearbeitung geschafft (bemerke, nahezu unverändert). Bekannt wurde es 1960, mit dem erscheinen von "Letraset", welches Passagen von Lorem Ipsum enhielt, so wie Desktop Software wie "Aldus PageMaker" - ebenfalls mit Lorem Ipsum.</p>
|
||||
<pre>bar</pre>
|
||||
</div>
|
||||
<img class="layout-content-right" src="sections/german/04/projekt_dokument.png">
|
||||
<div class="layout-two-previews">
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/04/main-orig.svg">
|
||||
<figcaption>TODO: Klassisches Word-Dokument</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/04/main-orig.svg">
|
||||
<figcaption>TODO: Klassisches LaTeX-Dokument</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Entstehung</h2>
|
||||
<ul>
|
||||
<li>Donald **Knuth**, 1977–1986: Textsatzsystem **TeX**<span class="bubble fragment">τεχ → /tɛç/</span> für The Art of Computer Programming</li>
|
||||
<li>Leslie **Lamport**, ab 1980er: Softwarepaket **LaTeX** zur einfacheren Benutzung von TeX</li>
|
||||
</ul>
|
||||
<div style="display: flex; justify-content: space-between; align-items: stretch;">
|
||||
<figure>
|
||||
<img src="sections/german/01/knuth.jpg">
|
||||
<figcaption>Donald Knuth</figcaption>
|
||||
</figure>
|
||||
<figure>
|
||||
<img src="sections/german/01/lamport.jpg">
|
||||
<figcaption>Leslie Lamport</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/01/taocp.jpg">
|
||||
<!-- https://in.pinterest.com/pin/813110907700064708/ -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-two-previews">
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/04/main-orig.svg">
|
||||
<figcaption>TODO: Klassisches Word-Dokument</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/04/main-orig.svg">
|
||||
<figcaption>TODO: Klassisches LaTeX-Dokument</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Typografie</h2>
|
||||
<h3>Makrotypografie</h3>
|
||||
<ul>
|
||||
<li>Satzspiegel</li>
|
||||
<li>Zeilenlänge vs. -abstand</li>
|
||||
<li>Platzierung von Bildern und Tabellen</li>
|
||||
<li>Schusterjungen / Hurenkinder</li>
|
||||
<li>…</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
TODO: Illustration
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Typografie</h2>
|
||||
<h3>Mikrotypografie</h3>
|
||||
<ul>
|
||||
<li>Ligaturen</li>
|
||||
<li>Kerning</li>
|
||||
<li>echte Kursiven, Kapitälchen, …</li>
|
||||
<li>Wortabstände</li>
|
||||
<li>…</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
TODO: Illustration
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Weitere Vorteile</h2>
|
||||
<ul>
|
||||
<li>wesentlich bessere Standardeinstellungen<br>
|
||||
als in sämtlichen Textverarbeitungsprogrammen</li>
|
||||
<li>strukturiertes Arbeiten</li>
|
||||
<li>zuverlässiges Undo</li>
|
||||
<li>einfache Versionierung</li>
|
||||
<li>unabhängig von proprietären Programmen</li>
|
||||
<li>Quelltext und Ausgabe langfristig lesbar</li>
|
||||
<li>einfache Zusammenarbeit anderen Programmen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Ablauf des Workshops</h2>
|
||||
<p><strong>Ziel:</strong> Ihr baut eure eigene LaTeX-Referenz</li>
|
||||
<ul>
|
||||
<li>Learning by Doing</li>
|
||||
<li>Verstehen, wie LaTeX funktioniert</li>
|
||||
<li>Einzelheiten später nachschlagen</li>
|
||||
</ul>
|
||||
<div class="fragment">
|
||||
<p><strong>Gliederung:</strong></p>
|
||||
<ol>
|
||||
<li><del>Was ist LaTeX?</del></li>
|
||||
<li>Wie funktioniert LaTeX?</li>
|
||||
<li>Grundstruktur eines LaTeX-Dokuments</li>
|
||||
<li>Projektstruktur</li>
|
||||
<li>Viele Features</li>
|
||||
<li>Literaturverwaltung</li>
|
||||
<li>Ausblick</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
Leer
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
Leer
|
||||
</div>
|
||||
</div>
|
||||
|
||||
BIN
sections/german/01/knuth.jpg
Normal file
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
BIN
sections/german/01/lamport.jpg
Normal file
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
BIN
sections/german/01/taocp.jpg
Normal file
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
@ -1,5 +1,152 @@
|
||||
# Wie funktioniert LaTeX?
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>Wie funktioniert L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X?</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-two-columns">
|
||||
<div class="layout-title">
|
||||
<h2>WYSIWYG und WYGIWYM</h2>
|
||||
</div>
|
||||
<div class="layout-column-one">
|
||||
<div class="fragment">
|
||||
<blockquote>Word</blockquote>
|
||||
<h3>What You See Is What You Get</h3>
|
||||
<ul>
|
||||
<li>Formatierung mit unmittelbarem optischen Feedback</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layout-column-two">
|
||||
<div class="fragment">
|
||||
<blockquote>LaTeX</blockquote>
|
||||
<h3>What You See Is What You Mean</h3>
|
||||
<ul>
|
||||
<li>Trennung von Inhalt und Struktur</li>
|
||||
<li>Formatierung erst am Ende ersichtlich</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-preview-only">
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/02/wysiwyg.svg">
|
||||
<figcaption>Der Weg zum fertigen Dokument</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-two-columns">
|
||||
<h2>Was brauchen wir dazu?</h2>
|
||||
<div class="layout-column-one">
|
||||
<blockquote>Editor</blockquote>
|
||||
<p style="text-align:left;">enthält unseren Quelltext mit allen Befehlen zur semantischen Gliederung</p>
|
||||
<p style="text-align:left;"><i>TeXstudio, TeXMaker</i></p>
|
||||
</div>
|
||||
<div class="layout-column-two">
|
||||
<blockquote>Compiler</blockquote>
|
||||
<p style="text-align:left;">erstellt aus dem Quelltext ein fertig formatiertes PDF-Dokument</p>
|
||||
<p style="text-align:left;"><i>MiKTeX, TeX Live, MacTeX</i></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-wide-content">
|
||||
<div class="layout-content">
|
||||
<h2>Befehle</h2>
|
||||
Allgemeiner Aufbau eine Befehls:
|
||||
<pre class="lang-tex hljs"><code>\usepackage[optionale_parameter]{obligatorische_parameter}</code></pre>
|
||||
<p class="fragment">Ein paar Beispiele:</p>
|
||||
<pre class="lang-tex hljs fragment"><code>\newpage % fügt eine neue Seite ein
|
||||
\textbf{Text} % schreibt den übergebenen Text fett
|
||||
\usepackage[utf8]{inputenc} % setzt die Textkodierung
|
||||
\frac{zähler}{nenner} % Brüche</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Backslash</h2>
|
||||
<p>Den Backslash erzeugt ihr mit folgender Tastenkombination:</p>
|
||||
<p><kbd>AltGr</kbd> + <kbd>ß</kbd> (Windows/Linux)</p>
|
||||
<p><kbd>Alt</kbd> + <kbd>Shift</kbd> + <kbd>7</kbd> (MacOS)</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-wide-content">
|
||||
<div class="layout-content">
|
||||
<h2>Optionale Parameter</h2>
|
||||
<p>In eckigen Klammern können verschieden viele optionale Parameter stehen:</p>
|
||||
<pre><code class="lang-tex hljs">\usepackage[utf8]{inputenc}
|
||||
% setzt die Textkodierung
|
||||
|
||||
\documentclass[a4paper,12pt]{article}
|
||||
% setzt die Dokumentklasse
|
||||
|
||||
\includegraphics[width=12cm,height=4cm]{bild.png}
|
||||
% bindet das Bild "bild.png" ein</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Kommentare</h2>
|
||||
<p>Nach einem Prozentzeichen wird der Rest der Zeile vom Compiler ignoriert. Der Kommentartext erscheint also nicht im fertigen Dokument.</p>
|
||||
<pre><code class="lang-tex hljs">% Beginn Steckbrief
|
||||
Name: Donald Knuth \\\\
|
||||
Geburtsdatum: \\\\ % TODO: einfügen
|
||||
Geburtsort: Milwaukee, Wisconsin
|
||||
% Ende Steckbrief</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/02/comments.png">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Software-Installation</h2>
|
||||
Bitte installiert zuerst den Compiler, also MikTeX (windows), MacTeX (MacOS) bzw. TeX Live (Linux) und danach den Editor. In diesem Workshop verwenden wir TeXstudio.
|
||||
|
||||
<ul>
|
||||
<li>MikTeX (Windows): https://miktex.org/ </li>
|
||||
<li>MacTeX (MacOS): http://tug.org/mactex/ </li>
|
||||
<li>TeX Live (Linux/alle BS): https://tug.org/texlive/ </li>
|
||||
<li>TeXstudio: https://www.texstudio.org/ </li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-only">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="⌨️ Aufgabe">1. Erste Schritte mit LaTeX</h2>
|
||||
<ul>
|
||||
<li class="fragment">Falls nötig: Install now!</li>
|
||||
<li class="fragment">Ladet euch aus dem VC die Datei <code>aufgabe01.tex</code> herunter und speichert sie in einem eigenen Ordner.</li>
|
||||
<li class="fragment">Öffnet die Datei in TeXstudio.</li>
|
||||
<li class="fragment">Kompiliert die Datei durch Druck auf ⏩.</li>
|
||||
<li class="fragment">Was ist in dem Ordner passiert, in dem die Datei liegt?</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
BIN
sections/german/02/comments.png
Executable file
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
455
sections/german/02/wysiwyg.svg
Executable file
@ -0,0 +1,455 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
sodipodi:docname="wysiwyg.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<marker
|
||||
inkscape:isstock="true"
|
||||
style="overflow:visible"
|
||||
id="marker1438"
|
||||
refX="0.0"
|
||||
refY="0.0"
|
||||
orient="auto"
|
||||
inkscape:stockid="TriangleOutL">
|
||||
<path
|
||||
transform="scale(0.8)"
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
|
||||
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
|
||||
id="path1436" />
|
||||
</marker>
|
||||
<marker
|
||||
inkscape:stockid="TriangleOutL"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="TriangleOutL"
|
||||
style="overflow:visible"
|
||||
inkscape:isstock="true"
|
||||
inkscape:collect="always">
|
||||
<path
|
||||
id="path1256"
|
||||
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
|
||||
transform="scale(0.8)" />
|
||||
</marker>
|
||||
<marker
|
||||
inkscape:stockid="Arrow1Lend"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="Arrow1Lend"
|
||||
style="overflow:visible;"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
id="path1117"
|
||||
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
|
||||
transform="scale(0.8) rotate(180) translate(12.5,0)" />
|
||||
</marker>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.70710678"
|
||||
inkscape:cx="59.029948"
|
||||
inkscape:cy="218.85888"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1853"
|
||||
inkscape:window-height="1025"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-1.0690781,-1.132633)">
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path1516"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="170.43568"
|
||||
sodipodi:cy="42.139126"
|
||||
sodipodi:r1="12.383234"
|
||||
sodipodi:r2="6.191617"
|
||||
sodipodi:arg1="0"
|
||||
sodipodi:arg2="1.0471976"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 182.81892,42.139126 -9.28743,5.362098 -9.28742,5.362097 V 42.139126 31.414931 l 9.28742,5.362097 z"
|
||||
inkscape:transform-center-x="-2.0044559"
|
||||
transform="matrix(0.64747478,0,0,0.60747684,62.76448,16.821216)" />
|
||||
<rect
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.66145831;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect815"
|
||||
width="200"
|
||||
height="100"
|
||||
x="1.0690781"
|
||||
y="1.132633" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.24467389px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 100.93203,11.132633 v 80"
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g975"
|
||||
transform="translate(24.803504,-42.333333)">
|
||||
<g
|
||||
id="g916"
|
||||
transform="translate(-6.2808339,36.482291)">
|
||||
<g
|
||||
id="g902">
|
||||
<path
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.46631071;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 29.417294,13.631145 h 46.680061 v 31.183033 l -5.599645,-2.645833 -4.816224,2.645833 -5.941374,-2.645833 -5.41758,2.645833 -6.34228,-2.645833 -6.018936,2.645833 -6.342279,-2.645833 -6.201743,2.645833 z"
|
||||
id="path898"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccscccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccscccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path900"
|
||||
d="m 27.546408,10.696552 h 46.680061 v 31.183033 l -5.599645,-2.645833 -4.816224,2.645833 -5.941374,-2.645833 -5.41758,2.645833 -6.34228,-2.645833 -6.018936,2.645833 -6.342279,-2.645833 -6.201743,2.645833 z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.46631071;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#cccccc"
|
||||
id="g914" />
|
||||
<text
|
||||
id="text926"
|
||||
y="19.227655"
|
||||
x="32.328022"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.42384911px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26059622"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.16953945px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.26059622"
|
||||
y="19.227655"
|
||||
x="32.328022"
|
||||
id="tspan924"
|
||||
sodipodi:role="line">Ada Lovelace</tspan></text>
|
||||
</g>
|
||||
<text
|
||||
id="text930"
|
||||
y="61.176228"
|
||||
x="26.046875"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
xml:space="preserve"><tspan
|
||||
id="tspan940"
|
||||
style="font-size:2.11666679px;line-height:0;stroke-width:0.26458332"
|
||||
y="61.176228"
|
||||
x="26.046875"
|
||||
sodipodi:role="line">Augusta Ada Byron King war eine </tspan></text>
|
||||
<text
|
||||
id="text946"
|
||||
y="64.838135"
|
||||
x="26.046875"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-size:2.11666656px;stroke-width:0.26458332"
|
||||
y="64.838135"
|
||||
x="26.046875"
|
||||
id="tspan944"
|
||||
sodipodi:role="line">britische Mathematikerin. Sie </tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
x="26.046875"
|
||||
y="68.379456"
|
||||
id="text950"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan948"
|
||||
x="26.046875"
|
||||
y="68.379456"
|
||||
style="font-size:2.11666656px;stroke-width:0.26458332">arbeitete mit Charles Babbage an </tspan></text>
|
||||
<text
|
||||
id="text954"
|
||||
y="71.920776"
|
||||
x="26.046875"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-size:2.11666656px;stroke-width:0.26458332"
|
||||
y="71.920776"
|
||||
x="26.046875"
|
||||
id="tspan952"
|
||||
sodipodi:role="line">der von ihm entwickelten Analytical</tspan></text>
|
||||
</g>
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#g975"
|
||||
id="use977"
|
||||
transform="translate(-3.6666658e-8,42.333354)"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
<g
|
||||
id="g1110"
|
||||
transform="translate(-20.999995)">
|
||||
<g
|
||||
transform="translate(99.522676,-5.851042)"
|
||||
id="g991">
|
||||
<g
|
||||
id="g983">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccscccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path979"
|
||||
d="m 29.417294,13.631145 h 46.680061 v 31.183033 l -5.599645,-2.645833 -4.816224,2.645833 -5.941374,-2.645833 -5.41758,2.645833 -6.34228,-2.645833 -6.018936,2.645833 -6.342279,-2.645833 -6.201743,2.645833 z"
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.46631071;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.46631071;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 27.546408,10.696552 h 46.680061 v 31.183033 l -5.599645,-2.645833 -4.816224,2.645833 -5.941374,-2.645833 -5.41758,2.645833 -6.34228,-2.645833 -6.018936,2.645833 -6.342279,-2.645833 -6.201743,2.645833 z"
|
||||
id="path981"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccscccc" />
|
||||
</g>
|
||||
<g
|
||||
id="g985"
|
||||
style="fill:#cccccc" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.42384911px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26059622"
|
||||
x="32.328022"
|
||||
y="19.227655"
|
||||
id="text989"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan987"
|
||||
x="32.328022"
|
||||
y="28.450319"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.16953945px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.26059622" /></text>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
x="131.85039"
|
||||
y="10.905387"
|
||||
id="text995"><tspan
|
||||
sodipodi:role="line"
|
||||
x="131.85039"
|
||||
y="10.905387"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:0;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
|
||||
id="tspan993">\<tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:'monospace Bold'"
|
||||
id="tspan1029">begin</tspan>{document}</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
x="131.85039"
|
||||
y="14.567294"
|
||||
id="text999"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan997"
|
||||
x="131.85039"
|
||||
y="14.567294"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332">\<tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:'monospace Bold'"
|
||||
id="tspan1031">section</tspan>{Ada Lovelace}</tspan></text>
|
||||
<text
|
||||
id="text1003"
|
||||
y="18.108616"
|
||||
x="131.85039"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
|
||||
y="18.108616"
|
||||
x="131.85039"
|
||||
id="tspan1001"
|
||||
sodipodi:role="line">Augusta Ada Byron King war </tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
x="131.85039"
|
||||
y="21.649937"
|
||||
id="text1007"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan1005"
|
||||
x="131.85039"
|
||||
y="21.649937"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332">eine britische Mathematikerin. </tspan></text>
|
||||
<text
|
||||
id="text1015"
|
||||
y="25.192898"
|
||||
x="131.85039"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
xml:space="preserve"><tspan
|
||||
id="tspan1013"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:0;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
|
||||
y="25.192898"
|
||||
x="131.85039"
|
||||
sodipodi:role="line">Sie arbeitete mit Charles </tspan></text>
|
||||
<text
|
||||
id="text1019"
|
||||
y="28.854809"
|
||||
x="131.85039"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
|
||||
y="28.854809"
|
||||
x="131.85039"
|
||||
id="tspan1017"
|
||||
sodipodi:role="line">Babbage an der von ihm </tspan></text>
|
||||
</g>
|
||||
<text
|
||||
id="text1048"
|
||||
y="96.016212"
|
||||
x="55.741005"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Merriweather;-inkscape-font-specification:Merriweather;stroke-width:0.26458332"
|
||||
y="96.016212"
|
||||
x="55.741005"
|
||||
id="tspan1046"
|
||||
sodipodi:role="line">Word</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
x="113.5612"
|
||||
y="96.016212"
|
||||
id="text1062"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan1060"
|
||||
x="113.5612"
|
||||
y="96.016212"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Merriweather;-inkscape-font-specification:Merriweather;stroke-width:0.26458332">LaTeX</tspan></text>
|
||||
<use
|
||||
height="100%"
|
||||
width="100%"
|
||||
transform="translate(60,42.333354)"
|
||||
id="use1011"
|
||||
xlink:href="#g975"
|
||||
y="0"
|
||||
x="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;marker-end:url(#TriangleOutL)"
|
||||
d="m 41.069078,21.132634 h -20 v 45 h 20"
|
||||
id="path1112"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1434"
|
||||
d="m 162.57474,21.132634 h 20 v 45 h -20"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1438)" />
|
||||
<g
|
||||
id="g1488"
|
||||
transform="translate(1.4010416)">
|
||||
<rect
|
||||
y="31.414928"
|
||||
x="12.843034"
|
||||
height="26.458332"
|
||||
width="26.458332"
|
||||
id="rect1482"
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1484"
|
||||
width="26.458332"
|
||||
height="26.458332"
|
||||
x="9.6680365"
|
||||
y="28.769093" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(151.40104)"
|
||||
id="g1500">
|
||||
<rect
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1496"
|
||||
width="26.458332"
|
||||
height="26.458332"
|
||||
x="12.843034"
|
||||
y="31.414928" />
|
||||
<rect
|
||||
y="28.769093"
|
||||
x="9.6680365"
|
||||
height="26.458332"
|
||||
width="26.458332"
|
||||
id="rect1498"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g1514"
|
||||
transform="matrix(0.67488652,0,0,0.78881653,7.8114482,8.8793775)">
|
||||
<rect
|
||||
y="31.414927"
|
||||
x="14.244075"
|
||||
height="21.26174"
|
||||
width="19.565521"
|
||||
id="rect1502"
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
y="33.454582"
|
||||
x="16.036171"
|
||||
height="9.5389662"
|
||||
width="15.808993"
|
||||
id="rect1504"
|
||||
style="opacity:1;fill:#ececec;fill-opacity:1;stroke:none;stroke-width:0.24278145;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:1;fill:#ececec;fill-opacity:1;stroke:none;stroke-width:0.1568048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1506"
|
||||
width="10.851144"
|
||||
height="5.7971926"
|
||||
x="16.036171"
|
||||
y="45.133865" />
|
||||
<rect
|
||||
transform="scale(-1,1)"
|
||||
y="45.905605"
|
||||
x="-25.64785"
|
||||
height="4.3472552"
|
||||
width="2.6660125"
|
||||
id="rect1508"
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.06730563;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path1522"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="173.35879"
|
||||
sodipodi:cy="42.544267"
|
||||
sodipodi:r1="7.7773285"
|
||||
sodipodi:r2="3.8886642"
|
||||
sodipodi:arg1="-0.016009831"
|
||||
sodipodi:arg2="1.0311877"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0.09"
|
||||
inkscape:randomized="0"
|
||||
d="m 181.13513,42.419757 c 0.01,0.606105 -5.25829,3.149175 -5.77834,3.460632 -0.52005,0.311457 -5.24858,3.75528 -5.77833,3.460632 -0.52976,-0.294648 -0.0981,-6.128396 -0.10783,-6.734501 -0.01,-0.606105 -0.62788,-6.423044 -0.10783,-6.734501 0.52005,-0.311457 5.35641,2.979221 5.88616,3.273869 0.52976,0.294648 5.87646,2.667764 5.88617,3.273869 z"
|
||||
inkscape:transform-center-x="-1.8370515"
|
||||
inkscape:transform-center-y="0.061772776" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,2 +1,337 @@
|
||||
# Grundstruktur eines LaTeX-Dokuments
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>Grundstruktur eines L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X-Dokuments</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h3>Präambel und Dokumentumgebung</h3>
|
||||
<p>👁 Ein mit LaTeX gesetztes Dokument besteht aus zwei Teilen.</p>
|
||||
<ul class="fragment">
|
||||
<li><b>Präambel</b>: globale Einstellungen (Dokumentklasse, Encoding, Sprache, Seitenformat, zusäzliche Pakete, ...) und</li>
|
||||
<li><b>Dokumentumgebung</b>: textueller Inhalt des Dokuments.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<pre class="lang-tex hljs" data-sourcefile="hallo.tex"><code>\documentclass{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
|
||||
\begin{document}
|
||||
Hallo, Welt!
|
||||
\end{document}</code></pre>
|
||||
<figure>
|
||||
<img src="sections/german/03/hallo-crop.svg">
|
||||
</figure>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-wide-content">
|
||||
<div class="layout-content">
|
||||
<h2>Dokumentklasse</h2>
|
||||
<p><pre class="lang-tex hljs"><code>\documentclass[parameter]{dokumentklasse}</code></pre>
|
||||
</p>
|
||||
<p>Konkret zum Beispiel
|
||||
<pre class="lang-tex hljs"><code>\documentclass[10pt,a5paper,landscape]{scrartcl}</code></pre>
|
||||
</p>
|
||||
<div class="fragment">
|
||||
<ul>
|
||||
<li><b><code>scrartcl, article</b></code> für einfache Dokumente</li>
|
||||
<li><b><code>scrreport, report</b></code> für komplexere Dokumente</li>
|
||||
<li><b><code>scrbook, book</b></code> für Bücher</li>
|
||||
<li><b><code>beamer</b></code> für Präsentationen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Pakete</h2>
|
||||
</p>
|
||||
<pre class="lang-tex hljs"><code>\usepackage[optionen]{paketname}</code></pre>
|
||||
<p>
|
||||
<ul>
|
||||
<li>Pakete stellen zusätzliche Befehle und Funktionalitäten zur Verfügung.</li>
|
||||
<li>Es existieren verschiedene Pakete für verschiedene Anwendungsfälle (z. B. Formelsatz, Listen, ...).
|
||||
</li>
|
||||
<li>Sie müssen vor der Nutzung in der Präambel eingebunden werden.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Encoding</h2>
|
||||
<pre class="lang-tex hljs"><code>\usepackage[utf8]{inputenc}
|
||||
\usepackage[t1]{fontenc}</code></pre>
|
||||
<p class="fragment">
|
||||
<ul>
|
||||
<li>Die Zeichenkodierung bestimmt, welche Zeichen verfügbar sind.</li>
|
||||
<li><b>ASCII</b> enthält kaum Sonderzeichen wie deutsche Umlaute.</li>
|
||||
<li><b>UTF8</b> ist eine universelle Kodierung.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sprache</h2>
|
||||
<pre class="lang-tex hljs"><code>\usepackage[ngerman]{babel}</code></pre>
|
||||
<p>
|
||||
<ul>
|
||||
<li>Das Paket <b><code>babel</code></b> stellt sprachspezifische Informationen (z.B. Silbentrennung, Sonderzeichen, Wechsel zwischen Fonts, Übersetzung von Labels wie 'Kapitel', 'Inhaltsverzeichnis' oder 'Abbildung') bereit.</li>
|
||||
<li><b><code>ngerman</code></b> steht für die neue deutsche Rechschreibung.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sprache<em>n</em></h2>
|
||||
Es können auch mehrere Sprachen im Dokument verwendet werden:
|
||||
<pre class="lang-tex hljs"><code>\usepackage[ngerman, swedish, russian,
|
||||
greek, english]{babel}</code></pre>
|
||||
<div class="fragment">
|
||||
Umschalten zwischen Sprachen:
|
||||
<pre class="lang-tex hljs"><code>\selectlanguage{Sprache A}
|
||||
\selectlanguage{Sprache B}</code></pre>
|
||||
Eingebetteter Text in anderer Sprache:
|
||||
<pre class="lang-tex hljs"><code>\selectlanguage{Sprache A}
|
||||
\foreignlanguage{Sprache B}{Hier steht
|
||||
Text in Sprache B innerhalb eines Textes
|
||||
in Sprache A}</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Sprachen – Ein Beispiel</h2>
|
||||
<pre class="lang-tex hljs"><code>\today
|
||||
|
||||
\selectlanguage{ngerman}
|
||||
\today
|
||||
|
||||
\selectlanguage{swedish}
|
||||
\today
|
||||
|
||||
\selectlanguage{russian}
|
||||
\today
|
||||
|
||||
\selectlanguage{greek}
|
||||
\today
|
||||
|
||||
\selectlanguage{english}
|
||||
\today
|
||||
|
||||
</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/languages-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Absätze</h2>
|
||||
<pre class="lang-tex hljs"><code>Fließtext kann direkt in den Quelltext ↲
|
||||
geschrieben werden. ↲
|
||||
Einfache Zeilenumbrüche ↲
|
||||
werden dabei ignoriert ↲
|
||||
genau wie mehrere Leerzeichen. ↲
|
||||
↲
|
||||
Leerzeilen erzeugen einen neuen Absatz, ↲
|
||||
standardmäßig mit Einzug. ↲
|
||||
Manuelle Zeilenumbrüche können mit ↲
|
||||
zwei Backslashes erzwungen werden, ↲
|
||||
haben in Fließtext aber eigentlich \\\\ ↲
|
||||
nichts verloren.</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/absätze-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Achtung!">Reservierte Zeichen</h2>
|
||||
<p>Bestimmte Zeichen lösen in LaTeX Dinge aus:</p>
|
||||
<p>`# $ % ^ & _ { } ~ \`</p>
|
||||
<pre class="lang-tex hljs"><code>50% sind die Hälfte.</code></pre>
|
||||
<p>Lösung: `\` voranstellen:</p>
|
||||
<pre class="lang-tex hljs"><code>50\% sind die Hälfte.</code></pre>
|
||||
<p>Funktioniert nicht mit `\\`, Lösung dafür später.</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/reservierte-zeichen-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Abschnitte und Kapitel</h2>
|
||||
<p>Texte werden durch Überschriften in Abschnitte und Kapitel unterteilt. Immer verfügbar:</p>
|
||||
<pre class="lang-tex hljs"><code>\section{Ebene 1}
|
||||
\subsection{Ebene 2}
|
||||
\subsubsection{Ebene 3}
|
||||
\paragraph{Ebene 4}
|
||||
\subparagraph{Ebene 5}</code></pre>
|
||||
<p>Je nach Dokumentenklasse zusätzlich:</p>
|
||||
<pre class="lang-tex hljs"><code>\chapter{Kapitel}
|
||||
\part{Teil}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/abschnitte-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Abschnitte und Kapitel</h2>
|
||||
<p>Mit Sternchen fällt bei allen diesen Befehlen die Nummerierung und der Eintrag im Inhaltsverzeichnis weg:</p>
|
||||
<pre class="lang-tex hljs"><code>\section*{Kein Verzeichniseintrag}</code></pre>
|
||||
<p>Außerdem kann für das Inhaltsverzeichnis ein alternativer Titel angegeben werden:</p>
|
||||
<pre class="lang-tex hljs"><code>\section[Titel im Verzeichnis]
|
||||
{Kapitelüberschrift}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/abschnitte-anders-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Titelei</h2>
|
||||
<pre class="lang-tex hljs" data-source="title.tex"><code>\documentclass[ngerman]{scrartcl}
|
||||
\usepackage{babel}
|
||||
\author{Fooboar Rüssel}
|
||||
\title{Die Welt der Trüffel}
|
||||
\date{\today}
|
||||
\begin{document}
|
||||
\maketitle
|
||||
\section{Trüffelsuche}
|
||||
\subsection{Suche mit Schwein}
|
||||
\subsection{Suche ohne Schwein}
|
||||
Wer macht denn sowas?
|
||||
\section{Trüffelrezepte}
|
||||
Mein Lieblingsrezept
|
||||
\end{document}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/title-orig.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Inhaltsverzeichnis</h2>
|
||||
<p>automatisch generiert mit <pre class="lang-tex hljs"><code>\tableofcontents</code></pre>
|
||||
<ul>
|
||||
<li>Nummerierung erfolgt automatisch</li>
|
||||
<li>Viele Anpassungsmöglichkeiten (Aufzählungszeichen, -tiefe, automatische Benennung, ...)</li>
|
||||
<li>(Unter-)Kapitel, die nicht im Verzeichnis aufgeführt werden sollen, werden mit einem \* versehen, also z. B. <code>\section\*{}</code>.</li>
|
||||
<li>Am besten zweimal kompilieren</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Inhaltsverzeichnis</h2>
|
||||
<pre class="lang-tex hljs" data-source="title.tex"><code>\documentclass[ngerman]{scrartcl}
|
||||
\usepackage{babel}
|
||||
\begin{document}
|
||||
\tableofcontents
|
||||
\section{Trüffelsuche}
|
||||
Der erste Abschnitt.
|
||||
\subsection{Suche mit Schwein}
|
||||
Ein Unterabschnitt.
|
||||
\subsection{Suche ohne Schwein}
|
||||
Ein weiterer Unterabschitt.
|
||||
\subsubsection[But why?]{Wer macht denn sowas?}
|
||||
Unter-Unterabschnitt.
|
||||
\section{Trüffelrezepte}
|
||||
Mein Lieblingsrezept
|
||||
\end{document}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/contents-orig.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Weitere Verzeichnisse</h2>
|
||||
<p>Abbildungsverzeichnis und Tabellenverzeichnis
|
||||
<pre class="lang-tex hljs"><code>\listoffigures
|
||||
\listoftables</code></pre>
|
||||
<ul>
|
||||
<li>Fügt das gewählte Verzeichnis an der entsprechenden Stelle ins Dokument ein.</li>
|
||||
<li>Es wird die jeweilige Bild- bzw. Tabellenunterschrift aufgeführt. Es kann aber auch ein Kurztitel angegeben werden, der dann für das Verzeichnis verwendet wird. </li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Spielwiese</h2>
|
||||
<p>TODO:</p>
|
||||
<ul>
|
||||
<li>Was passiert, wenn man verschiedene Dinge ändert?</li>
|
||||
<li>Umgang mit Fehlermeldungen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-only">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Aufgabe">2. Grundstruktur des Skripts anpassen</h2>
|
||||
<ul>
|
||||
<li class="fragment">Füge ein Inhaltsverzeichnis in das Skript ein.</li>
|
||||
<li class="fragment">Füge im 1. Kapitel xxxxx mehrere neue Absätze mit <code>\section{}</code> und <code>\subsection{}</code> ein und beobachte, was im Inhaltsverzeichnis passiert.</li>
|
||||
<li class="fragment">Provoziere absichtlich einen Fehler, indem du einen dir bereits bekannten Befehl wie <code>\begin{document}</code> falsch schreibst. Sieh dir an, welche Informationen dir die Fehlermeldung liefert und behebe den Fehler wieder.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
128
sections/german/03/abschnitte-anders-crop.svg
Normal file
@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="167pt" height="42pt" viewBox="0 0 167 42" 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 11.953125 0 L 11.953125 -0.609375 L 11.5625 -0.609375 C 10.78125 -0.609375 10.734375 -0.6875 10.578125 -0.890625 L 6.734375 -6.046875 L 10.140625 -8.953125 C 10.328125 -9.109375 10.453125 -9.21875 11.734375 -9.21875 L 11.734375 -9.84375 L 10.203125 -9.8125 C 9.765625 -9.8125 8.65625 -9.8125 8.296875 -9.84375 L 8.296875 -9.21875 C 8.609375 -9.21875 8.953125 -9.203125 9.328125 -9.0625 L 9.328125 -9.046875 L 3.953125 -4.46875 L 3.953125 -9.21875 L 5.484375 -9.21875 L 5.484375 -9.84375 C 5.0625 -9.8125 3.53125 -9.8125 3.015625 -9.8125 C 2.5 -9.8125 0.96875 -9.8125 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 C 0.96875 -0.03125 2.5 -0.03125 3.015625 -0.03125 C 3.53125 -0.03125 5.0625 -0.03125 5.484375 0 L 5.484375 -0.609375 L 3.953125 -0.609375 L 3.953125 -3.6875 L 5.4375 -4.953125 L 8.4375 -0.953125 C 8.46875 -0.90625 8.515625 -0.828125 8.515625 -0.78125 C 8.515625 -0.609375 7.8125 -0.609375 7.5 -0.609375 L 7.5 0 C 7.953125 -0.03125 9.296875 -0.03125 9.84375 -0.03125 C 10.265625 -0.03125 11.625 -0.03125 11.953125 0 Z M 11.953125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4 0 L 4 -0.609375 L 3.109375 -0.609375 L 3.109375 -6.453125 L 0.671875 -6.34375 L 0.671875 -5.71875 C 1.515625 -5.71875 1.625 -5.71875 1.625 -5.15625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.953125 -0.03125 2.34375 -0.03125 C 2.734375 -0.03125 3.65625 -0.03125 4 0 Z M 3.28125 -8.71875 C 3.28125 -9.3125 2.796875 -9.75 2.25 -9.75 C 1.65625 -9.75 1.203125 -9.28125 1.203125 -8.71875 C 1.203125 -8.140625 1.6875 -7.6875 2.234375 -7.6875 C 2.828125 -7.6875 3.28125 -8.15625 3.28125 -8.71875 Z M 3.28125 -8.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4.421875 -6.453125 3.53125 -5.953125 3.046875 -4.875 L 3.03125 -4.875 L 3.03125 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 11.828125 -9.21875 L 11.828125 -9.84375 C 11.390625 -9.8125 10.359375 -9.8125 10.234375 -9.8125 C 9.84375 -9.8125 8.828125 -9.8125 8.484375 -9.84375 L 8.484375 -9.21875 C 8.8125 -9.21875 9.34375 -9.21875 9.734375 -9.0625 L 9.671875 -8.859375 L 6.734375 -2.15625 L 3.625 -9.21875 L 4.96875 -9.21875 L 4.96875 -9.84375 C 4.5 -9.8125 3.125 -9.8125 2.578125 -9.8125 C 2.125 -9.8125 0.703125 -9.8125 0.34375 -9.84375 L 0.34375 -9.21875 L 1.640625 -9.21875 L 5.59375 -0.171875 C 5.71875 0.109375 5.859375 0.125 6.078125 0.125 C 6.3125 0.125 6.453125 0.125 6.578125 -0.171875 L 10.390625 -8.890625 C 10.46875 -9.078125 10.53125 -9.21875 11.59375 -9.21875 Z M 11.828125 -9.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 6.125 -5.328125 C 6.125 -6.046875 5.375 -6.453125 4.6875 -6.453125 C 3.5625 -6.453125 3.0625 -5.46875 2.875 -4.859375 L 2.859375 -4.859375 L 2.859375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 -0.609375 L 0.5 -0.609375 L 0.5 0 C 0.828125 -0.03125 1.90625 -0.03125 2.3125 -0.03125 C 2.71875 -0.03125 3.890625 -0.03125 4.234375 0 L 4.234375 -0.609375 L 2.984375 -0.609375 L 2.984375 -3.234375 C 2.984375 -3.703125 3.078125 -5.984375 4.765625 -5.984375 C 4.5625 -5.828125 4.453125 -5.578125 4.453125 -5.328125 C 4.453125 -4.734375 4.9375 -4.484375 5.296875 -4.484375 C 5.65625 -4.484375 6.125 -4.734375 6.125 -5.328125 Z M 6.125 -5.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 6.484375 -2.84375 L 5.875 -2.84375 C 5.765625 -1.3125 5.453125 -0.515625 3.640625 -0.515625 L 2.34375 -0.515625 L 6.3125 -5.828125 C 6.4375 -5.984375 6.4375 -6.015625 6.4375 -6.09375 C 6.4375 -6.375 6.296875 -6.375 6.03125 -6.375 L 0.828125 -6.375 L 0.671875 -3.90625 L 1.28125 -3.90625 C 1.359375 -5.265625 1.671875 -5.890625 3.265625 -5.890625 L 4.5625 -5.890625 L 0.578125 -0.578125 C 0.4375 -0.421875 0.4375 -0.390625 0.4375 -0.28125 C 0.4375 0 0.578125 0 0.859375 0 L 6.234375 0 Z M 6.484375 -2.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 6.71875 -1.671875 C 6.71875 -1.84375 6.5625 -1.84375 6.40625 -1.84375 C 6.1875 -1.84375 6.171875 -1.84375 6.09375 -1.65625 C 6 -1.390625 5.609375 -0.4375 4.28125 -0.4375 C 2.265625 -0.4375 2.265625 -2.609375 2.265625 -3.25 C 2.265625 -4.109375 2.28125 -5.984375 4.15625 -5.984375 C 4.265625 -5.984375 5.109375 -5.953125 5.109375 -5.875 C 5.109375 -5.875 5.09375 -5.859375 5.0625 -5.84375 C 5.015625 -5.796875 4.828125 -5.578125 4.828125 -5.21875 C 4.828125 -4.625 5.328125 -4.375 5.6875 -4.375 C 5.984375 -4.375 6.53125 -4.5625 6.53125 -5.234375 C 6.53125 -6.40625 4.875 -6.5 4.109375 -6.5 C 1.546875 -6.5 0.546875 -4.828125 0.546875 -3.1875 C 0.546875 -1.234375 1.90625 0.09375 4.015625 0.09375 C 6.265625 0.09375 6.71875 -1.578125 6.71875 -1.671875 Z M 6.71875 -1.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 5.359375 -1.78125 L 5.359375 -2.53125 L 4.765625 -2.53125 L 4.765625 -1.796875 C 4.765625 -0.84375 4.328125 -0.4375 3.890625 -0.4375 C 3.03125 -0.4375 3.03125 -1.390625 3.03125 -1.71875 L 3.03125 -5.75 L 5.09375 -5.75 L 5.09375 -6.375 L 3.03125 -6.375 L 3.03125 -9.109375 L 2.421875 -9.109375 C 2.40625 -7.6875 1.71875 -6.265625 0.296875 -6.21875 L 0.296875 -5.75 L 1.46875 -5.75 L 1.46875 -1.765625 C 1.46875 -0.25 2.640625 0.09375 3.671875 0.09375 C 4.734375 0.09375 5.359375 -0.71875 5.359375 -1.78125 Z M 5.359375 -1.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 6.921875 0 L 6.921875 -0.609375 L 4.96875 -0.609375 L 4.96875 -9 C 4.96875 -9.40625 4.9375 -9.40625 4.46875 -9.40625 C 3.40625 -8.484375 1.828125 -8.484375 1.5 -8.484375 L 1.234375 -8.484375 L 1.234375 -7.875 L 1.5 -7.875 C 2.015625 -7.875 2.765625 -7.953125 3.34375 -8.140625 L 3.34375 -0.609375 L 1.34375 -0.609375 L 1.34375 0 L 4.125 -0.03125 Z M 6.921875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.171875 7.078125 -6.453125 5.140625 -6.453125 C 4.28125 -6.453125 3.5625 -6.171875 2.984375 -5.703125 L 2.984375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 2.171875 L 0.5 2.171875 L 0.5 2.78125 C 0.828125 2.75 1.859375 2.75 2.265625 2.75 C 2.671875 2.75 3.71875 2.75 4.046875 2.78125 L 4.046875 2.171875 L 3.0625 2.171875 L 3.0625 -0.59375 C 3.40625 -0.265625 4.046875 0.09375 4.90625 0.09375 C 6.875 0.09375 8.40625 -1.109375 8.40625 -3.203125 Z M 6.6875 -3.203125 C 6.6875 -1.125 5.65625 -0.390625 4.734375 -0.390625 C 4.109375 -0.390625 3.5 -0.703125 3.0625 -1.375 L 3.0625 -5.015625 C 3.578125 -5.703125 4.34375 -5.9375 4.90625 -5.9375 C 5.84375 -5.9375 6.6875 -5.09375 6.6875 -3.203125 Z M 6.6875 -3.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 4.109375 0 L 4.109375 -0.609375 L 3.109375 -0.609375 L 3.109375 -9.953125 L 0.625 -9.84375 L 0.625 -9.21875 C 1.515625 -9.21875 1.625 -9.21875 1.625 -8.65625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.984375 -0.03125 2.359375 -0.03125 C 2.75 -0.03125 3.765625 -0.03125 4.109375 0 Z M 4.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 C 7.71875 -0.609375 7.609375 -0.609375 7.609375 -1.171875 L 7.609375 -6.453125 L 5.0625 -6.34375 L 5.0625 -5.71875 C 5.953125 -5.71875 6.046875 -5.71875 6.046875 -5.15625 L 6.046875 -2.359375 C 6.046875 -1.265625 5.40625 -0.390625 4.28125 -0.390625 C 3.21875 -0.390625 3.15625 -0.75 3.15625 -1.53125 L 3.15625 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -1.765625 C 1.59375 -0.328125 2.546875 0.09375 4.09375 0.09375 C 4.4375 0.09375 5.5 0.09375 6.109375 -1.078125 L 6.125 -1.078125 L 6.125 0.09375 Z M 3.703125 -8.71875 C 3.703125 -9.25 3.25 -9.65625 2.765625 -9.65625 C 2.234375 -9.65625 1.84375 -9.21875 1.84375 -8.71875 C 1.84375 -8.1875 2.265625 -7.78125 2.75 -7.78125 C 3.28125 -7.78125 3.703125 -8.21875 3.703125 -8.71875 Z M 7.109375 -8.71875 C 7.109375 -9.25 6.671875 -9.65625 6.1875 -9.65625 C 5.65625 -9.65625 5.25 -9.21875 5.25 -8.71875 C 5.25 -8.1875 5.6875 -7.78125 6.171875 -7.78125 C 6.703125 -7.78125 7.109375 -8.21875 7.109375 -8.71875 Z M 7.109375 -8.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.15625 7.0625 -6.453125 5.09375 -6.453125 C 4.25 -6.453125 3.578125 -6.1875 2.984375 -5.71875 L 2.984375 -9.953125 L 0.5 -9.84375 L 0.5 -9.21875 C 1.390625 -9.21875 1.484375 -9.21875 1.484375 -8.65625 L 1.484375 0 L 2.09375 0 C 2.34375 -0.265625 2.578125 -0.546875 2.8125 -0.828125 C 3.546875 -0.078125 4.328125 0.09375 4.90625 0.09375 C 6.890625 0.09375 8.40625 -1.125 8.40625 -3.203125 Z M 6.6875 -3.21875 C 6.6875 -2.5625 6.6875 -1.75 6.34375 -1.21875 C 5.890625 -0.53125 5.21875 -0.390625 4.765625 -0.390625 C 3.78125 -0.390625 3.25 -1.078125 3.0625 -1.390625 L 3.0625 -5.03125 C 3.5625 -5.71875 4.296875 -5.984375 4.90625 -5.984375 C 6.6875 -5.984375 6.6875 -4.15625 6.6875 -3.21875 Z M 6.6875 -3.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 6.046875 -8.84375 C 6.046875 -9.4375 5.53125 -10.046875 4.515625 -10.046875 C 3.21875 -10.046875 1.625 -9.5 1.625 -7.828125 L 1.625 -6.375 L 0.5625 -6.375 L 0.5625 -5.75 L 1.625 -5.75 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 2.03125 -0.03125 2.4375 -0.03125 C 2.859375 -0.03125 4.015625 -0.03125 4.359375 0 L 4.359375 -0.609375 L 3.109375 -0.609375 L 3.109375 -5.75 L 4.75 -5.75 L 4.75 -6.375 L 3.046875 -6.375 L 3.046875 -7.84375 C 3.046875 -9.34375 3.984375 -9.5625 4.453125 -9.5625 C 4.625 -9.5625 4.640625 -9.546875 4.734375 -9.53125 C 4.515625 -9.375 4.390625 -9.140625 4.390625 -8.828125 C 4.390625 -8.265625 4.84375 -8 5.21875 -8 C 5.53125 -8 6.046875 -8.21875 6.046875 -8.84375 Z M 6.046875 -8.84375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.198" y="10.871"/>
|
||||
<use xlink:href="#glyph0-2" x="12.436698" y="10.871"/>
|
||||
<use xlink:href="#glyph0-3" x="19.800603" y="10.871"/>
|
||||
<use xlink:href="#glyph0-4" x="24.28379" y="10.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="38.62999" y="10.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="49.468544" y="10.871"/>
|
||||
<use xlink:href="#glyph0-6" x="56.832449" y="10.871"/>
|
||||
<use xlink:href="#glyph0-7" x="63.424528" y="10.871"/>
|
||||
<use xlink:href="#glyph0-2" x="70.597628" y="10.871"/>
|
||||
<use xlink:href="#glyph0-3" x="77.961532" y="10.871"/>
|
||||
<use xlink:href="#glyph0-8" x="82.44472" y="10.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="89.173088" y="10.871"/>
|
||||
<use xlink:href="#glyph0-4" x="98.139463" y="10.871"/>
|
||||
<use xlink:href="#glyph0-3" x="107.105838" y="10.871"/>
|
||||
<use xlink:href="#glyph0-10" x="111.589025" y="10.871"/>
|
||||
<use xlink:href="#glyph0-2" x="117.954434" y="10.871"/>
|
||||
<use xlink:href="#glyph0-3" x="125.318338" y="10.871"/>
|
||||
<use xlink:href="#glyph0-4" x="129.801526" y="10.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="138.323169" y="10.871"/>
|
||||
<use xlink:href="#glyph0-6" x="144.599631" y="10.871"/>
|
||||
<use xlink:href="#glyph0-12" x="151.19171" y="10.871"/>
|
||||
<use xlink:href="#glyph0-13" x="159.037647" y="10.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="-0.198" y="38.67"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="24.011212" y="38.67"/>
|
||||
<use xlink:href="#glyph0-12" x="36.645911" y="38.67"/>
|
||||
<use xlink:href="#glyph0-15" x="44.491848" y="38.67"/>
|
||||
<use xlink:href="#glyph0-3" x="53.458223" y="38.67"/>
|
||||
<use xlink:href="#glyph0-11" x="57.94141" y="38.67"/>
|
||||
<use xlink:href="#glyph0-2" x="64.217873" y="38.67"/>
|
||||
<use xlink:href="#glyph0-16" x="71.581777" y="38.67"/>
|
||||
<use xlink:href="#glyph0-17" x="76.064965" y="38.67"/>
|
||||
<use xlink:href="#glyph0-18" x="85.03134" y="38.67"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="94.442447" y="38.67"/>
|
||||
<use xlink:href="#glyph0-6" x="101.806351" y="38.67"/>
|
||||
<use xlink:href="#glyph0-10" x="108.39843" y="38.67"/>
|
||||
<use xlink:href="#glyph0-8" x="114.763839" y="38.67"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="121.492207" y="38.67"/>
|
||||
<use xlink:href="#glyph0-6" x="130.458582" y="38.67"/>
|
||||
<use xlink:href="#glyph0-3" x="137.050661" y="38.67"/>
|
||||
<use xlink:href="#glyph0-19" x="141.533848" y="38.67"/>
|
||||
<use xlink:href="#glyph0-11" x="146.464637" y="38.67"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
128
sections/german/03/abschnitte-anders-orig.svg
Normal file
@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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 11.953125 0 L 11.953125 -0.609375 L 11.5625 -0.609375 C 10.78125 -0.609375 10.734375 -0.6875 10.578125 -0.890625 L 6.734375 -6.046875 L 10.140625 -8.953125 C 10.328125 -9.109375 10.453125 -9.21875 11.734375 -9.21875 L 11.734375 -9.84375 L 10.203125 -9.8125 C 9.765625 -9.8125 8.65625 -9.8125 8.296875 -9.84375 L 8.296875 -9.21875 C 8.609375 -9.21875 8.953125 -9.203125 9.328125 -9.0625 L 9.328125 -9.046875 L 3.953125 -4.46875 L 3.953125 -9.21875 L 5.484375 -9.21875 L 5.484375 -9.84375 C 5.0625 -9.8125 3.53125 -9.8125 3.015625 -9.8125 C 2.5 -9.8125 0.96875 -9.8125 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 C 0.96875 -0.03125 2.5 -0.03125 3.015625 -0.03125 C 3.53125 -0.03125 5.0625 -0.03125 5.484375 0 L 5.484375 -0.609375 L 3.953125 -0.609375 L 3.953125 -3.6875 L 5.4375 -4.953125 L 8.4375 -0.953125 C 8.46875 -0.90625 8.515625 -0.828125 8.515625 -0.78125 C 8.515625 -0.609375 7.8125 -0.609375 7.5 -0.609375 L 7.5 0 C 7.953125 -0.03125 9.296875 -0.03125 9.84375 -0.03125 C 10.265625 -0.03125 11.625 -0.03125 11.953125 0 Z M 11.953125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4 0 L 4 -0.609375 L 3.109375 -0.609375 L 3.109375 -6.453125 L 0.671875 -6.34375 L 0.671875 -5.71875 C 1.515625 -5.71875 1.625 -5.71875 1.625 -5.15625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.953125 -0.03125 2.34375 -0.03125 C 2.734375 -0.03125 3.65625 -0.03125 4 0 Z M 3.28125 -8.71875 C 3.28125 -9.3125 2.796875 -9.75 2.25 -9.75 C 1.65625 -9.75 1.203125 -9.28125 1.203125 -8.71875 C 1.203125 -8.140625 1.6875 -7.6875 2.234375 -7.6875 C 2.828125 -7.6875 3.28125 -8.15625 3.28125 -8.71875 Z M 3.28125 -8.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4.421875 -6.453125 3.53125 -5.953125 3.046875 -4.875 L 3.03125 -4.875 L 3.03125 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 11.828125 -9.21875 L 11.828125 -9.84375 C 11.390625 -9.8125 10.359375 -9.8125 10.234375 -9.8125 C 9.84375 -9.8125 8.828125 -9.8125 8.484375 -9.84375 L 8.484375 -9.21875 C 8.8125 -9.21875 9.34375 -9.21875 9.734375 -9.0625 L 9.671875 -8.859375 L 6.734375 -2.15625 L 3.625 -9.21875 L 4.96875 -9.21875 L 4.96875 -9.84375 C 4.5 -9.8125 3.125 -9.8125 2.578125 -9.8125 C 2.125 -9.8125 0.703125 -9.8125 0.34375 -9.84375 L 0.34375 -9.21875 L 1.640625 -9.21875 L 5.59375 -0.171875 C 5.71875 0.109375 5.859375 0.125 6.078125 0.125 C 6.3125 0.125 6.453125 0.125 6.578125 -0.171875 L 10.390625 -8.890625 C 10.46875 -9.078125 10.53125 -9.21875 11.59375 -9.21875 Z M 11.828125 -9.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 6.125 -5.328125 C 6.125 -6.046875 5.375 -6.453125 4.6875 -6.453125 C 3.5625 -6.453125 3.0625 -5.46875 2.875 -4.859375 L 2.859375 -4.859375 L 2.859375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 -0.609375 L 0.5 -0.609375 L 0.5 0 C 0.828125 -0.03125 1.90625 -0.03125 2.3125 -0.03125 C 2.71875 -0.03125 3.890625 -0.03125 4.234375 0 L 4.234375 -0.609375 L 2.984375 -0.609375 L 2.984375 -3.234375 C 2.984375 -3.703125 3.078125 -5.984375 4.765625 -5.984375 C 4.5625 -5.828125 4.453125 -5.578125 4.453125 -5.328125 C 4.453125 -4.734375 4.9375 -4.484375 5.296875 -4.484375 C 5.65625 -4.484375 6.125 -4.734375 6.125 -5.328125 Z M 6.125 -5.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 6.484375 -2.84375 L 5.875 -2.84375 C 5.765625 -1.3125 5.453125 -0.515625 3.640625 -0.515625 L 2.34375 -0.515625 L 6.3125 -5.828125 C 6.4375 -5.984375 6.4375 -6.015625 6.4375 -6.09375 C 6.4375 -6.375 6.296875 -6.375 6.03125 -6.375 L 0.828125 -6.375 L 0.671875 -3.90625 L 1.28125 -3.90625 C 1.359375 -5.265625 1.671875 -5.890625 3.265625 -5.890625 L 4.5625 -5.890625 L 0.578125 -0.578125 C 0.4375 -0.421875 0.4375 -0.390625 0.4375 -0.28125 C 0.4375 0 0.578125 0 0.859375 0 L 6.234375 0 Z M 6.484375 -2.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 6.71875 -1.671875 C 6.71875 -1.84375 6.5625 -1.84375 6.40625 -1.84375 C 6.1875 -1.84375 6.171875 -1.84375 6.09375 -1.65625 C 6 -1.390625 5.609375 -0.4375 4.28125 -0.4375 C 2.265625 -0.4375 2.265625 -2.609375 2.265625 -3.25 C 2.265625 -4.109375 2.28125 -5.984375 4.15625 -5.984375 C 4.265625 -5.984375 5.109375 -5.953125 5.109375 -5.875 C 5.109375 -5.875 5.09375 -5.859375 5.0625 -5.84375 C 5.015625 -5.796875 4.828125 -5.578125 4.828125 -5.21875 C 4.828125 -4.625 5.328125 -4.375 5.6875 -4.375 C 5.984375 -4.375 6.53125 -4.5625 6.53125 -5.234375 C 6.53125 -6.40625 4.875 -6.5 4.109375 -6.5 C 1.546875 -6.5 0.546875 -4.828125 0.546875 -3.1875 C 0.546875 -1.234375 1.90625 0.09375 4.015625 0.09375 C 6.265625 0.09375 6.71875 -1.578125 6.71875 -1.671875 Z M 6.71875 -1.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 5.359375 -1.78125 L 5.359375 -2.53125 L 4.765625 -2.53125 L 4.765625 -1.796875 C 4.765625 -0.84375 4.328125 -0.4375 3.890625 -0.4375 C 3.03125 -0.4375 3.03125 -1.390625 3.03125 -1.71875 L 3.03125 -5.75 L 5.09375 -5.75 L 5.09375 -6.375 L 3.03125 -6.375 L 3.03125 -9.109375 L 2.421875 -9.109375 C 2.40625 -7.6875 1.71875 -6.265625 0.296875 -6.21875 L 0.296875 -5.75 L 1.46875 -5.75 L 1.46875 -1.765625 C 1.46875 -0.25 2.640625 0.09375 3.671875 0.09375 C 4.734375 0.09375 5.359375 -0.71875 5.359375 -1.78125 Z M 5.359375 -1.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 6.921875 0 L 6.921875 -0.609375 L 4.96875 -0.609375 L 4.96875 -9 C 4.96875 -9.40625 4.9375 -9.40625 4.46875 -9.40625 C 3.40625 -8.484375 1.828125 -8.484375 1.5 -8.484375 L 1.234375 -8.484375 L 1.234375 -7.875 L 1.5 -7.875 C 2.015625 -7.875 2.765625 -7.953125 3.34375 -8.140625 L 3.34375 -0.609375 L 1.34375 -0.609375 L 1.34375 0 L 4.125 -0.03125 Z M 6.921875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.171875 7.078125 -6.453125 5.140625 -6.453125 C 4.28125 -6.453125 3.5625 -6.171875 2.984375 -5.703125 L 2.984375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 2.171875 L 0.5 2.171875 L 0.5 2.78125 C 0.828125 2.75 1.859375 2.75 2.265625 2.75 C 2.671875 2.75 3.71875 2.75 4.046875 2.78125 L 4.046875 2.171875 L 3.0625 2.171875 L 3.0625 -0.59375 C 3.40625 -0.265625 4.046875 0.09375 4.90625 0.09375 C 6.875 0.09375 8.40625 -1.109375 8.40625 -3.203125 Z M 6.6875 -3.203125 C 6.6875 -1.125 5.65625 -0.390625 4.734375 -0.390625 C 4.109375 -0.390625 3.5 -0.703125 3.0625 -1.375 L 3.0625 -5.015625 C 3.578125 -5.703125 4.34375 -5.9375 4.90625 -5.9375 C 5.84375 -5.9375 6.6875 -5.09375 6.6875 -3.203125 Z M 6.6875 -3.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 4.109375 0 L 4.109375 -0.609375 L 3.109375 -0.609375 L 3.109375 -9.953125 L 0.625 -9.84375 L 0.625 -9.21875 C 1.515625 -9.21875 1.625 -9.21875 1.625 -8.65625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.984375 -0.03125 2.359375 -0.03125 C 2.75 -0.03125 3.765625 -0.03125 4.109375 0 Z M 4.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 C 7.71875 -0.609375 7.609375 -0.609375 7.609375 -1.171875 L 7.609375 -6.453125 L 5.0625 -6.34375 L 5.0625 -5.71875 C 5.953125 -5.71875 6.046875 -5.71875 6.046875 -5.15625 L 6.046875 -2.359375 C 6.046875 -1.265625 5.40625 -0.390625 4.28125 -0.390625 C 3.21875 -0.390625 3.15625 -0.75 3.15625 -1.53125 L 3.15625 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -1.765625 C 1.59375 -0.328125 2.546875 0.09375 4.09375 0.09375 C 4.4375 0.09375 5.5 0.09375 6.109375 -1.078125 L 6.125 -1.078125 L 6.125 0.09375 Z M 3.703125 -8.71875 C 3.703125 -9.25 3.25 -9.65625 2.765625 -9.65625 C 2.234375 -9.65625 1.84375 -9.21875 1.84375 -8.71875 C 1.84375 -8.1875 2.265625 -7.78125 2.75 -7.78125 C 3.28125 -7.78125 3.703125 -8.21875 3.703125 -8.71875 Z M 7.109375 -8.71875 C 7.109375 -9.25 6.671875 -9.65625 6.1875 -9.65625 C 5.65625 -9.65625 5.25 -9.21875 5.25 -8.71875 C 5.25 -8.1875 5.6875 -7.78125 6.171875 -7.78125 C 6.703125 -7.78125 7.109375 -8.21875 7.109375 -8.71875 Z M 7.109375 -8.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.15625 7.0625 -6.453125 5.09375 -6.453125 C 4.25 -6.453125 3.578125 -6.1875 2.984375 -5.71875 L 2.984375 -9.953125 L 0.5 -9.84375 L 0.5 -9.21875 C 1.390625 -9.21875 1.484375 -9.21875 1.484375 -8.65625 L 1.484375 0 L 2.09375 0 C 2.34375 -0.265625 2.578125 -0.546875 2.8125 -0.828125 C 3.546875 -0.078125 4.328125 0.09375 4.90625 0.09375 C 6.890625 0.09375 8.40625 -1.125 8.40625 -3.203125 Z M 6.6875 -3.21875 C 6.6875 -2.5625 6.6875 -1.75 6.34375 -1.21875 C 5.890625 -0.53125 5.21875 -0.390625 4.765625 -0.390625 C 3.78125 -0.390625 3.25 -1.078125 3.0625 -1.390625 L 3.0625 -5.03125 C 3.5625 -5.71875 4.296875 -5.984375 4.90625 -5.984375 C 6.6875 -5.984375 6.6875 -4.15625 6.6875 -3.21875 Z M 6.6875 -3.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 6.046875 -8.84375 C 6.046875 -9.4375 5.53125 -10.046875 4.515625 -10.046875 C 3.21875 -10.046875 1.625 -9.5 1.625 -7.828125 L 1.625 -6.375 L 0.5625 -6.375 L 0.5625 -5.75 L 1.625 -5.75 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 2.03125 -0.03125 2.4375 -0.03125 C 2.859375 -0.03125 4.015625 -0.03125 4.359375 0 L 4.359375 -0.609375 L 3.109375 -0.609375 L 3.109375 -5.75 L 4.75 -5.75 L 4.75 -6.375 L 3.046875 -6.375 L 3.046875 -7.84375 C 3.046875 -9.34375 3.984375 -9.5625 4.453125 -9.5625 C 4.625 -9.5625 4.640625 -9.546875 4.734375 -9.53125 C 4.515625 -9.375 4.390625 -9.140625 4.390625 -8.828125 C 4.390625 -8.265625 4.84375 -8 5.21875 -8 C 5.53125 -8 6.046875 -8.21875 6.046875 -8.84375 Z M 6.046875 -8.84375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="124.802" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="137.436698" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="144.800603" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="149.28379" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="163.62999" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="174.468544" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="181.832449" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="188.424528" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="195.597628" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="202.961532" y="135.761"/>
|
||||
<use xlink:href="#glyph0-8" x="207.44472" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="214.173088" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="223.139463" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="232.105838" y="135.761"/>
|
||||
<use xlink:href="#glyph0-10" x="236.589025" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="242.954434" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="250.318338" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="254.801526" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="263.323169" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="269.599631" y="135.761"/>
|
||||
<use xlink:href="#glyph0-12" x="276.19171" y="135.761"/>
|
||||
<use xlink:href="#glyph0-13" x="284.037647" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="124.802" y="163.56"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="149.011212" y="163.56"/>
|
||||
<use xlink:href="#glyph0-12" x="161.645911" y="163.56"/>
|
||||
<use xlink:href="#glyph0-15" x="169.491848" y="163.56"/>
|
||||
<use xlink:href="#glyph0-3" x="178.458223" y="163.56"/>
|
||||
<use xlink:href="#glyph0-11" x="182.94141" y="163.56"/>
|
||||
<use xlink:href="#glyph0-2" x="189.217873" y="163.56"/>
|
||||
<use xlink:href="#glyph0-16" x="196.581777" y="163.56"/>
|
||||
<use xlink:href="#glyph0-17" x="201.064965" y="163.56"/>
|
||||
<use xlink:href="#glyph0-18" x="210.03134" y="163.56"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="219.442447" y="163.56"/>
|
||||
<use xlink:href="#glyph0-6" x="226.806351" y="163.56"/>
|
||||
<use xlink:href="#glyph0-10" x="233.39843" y="163.56"/>
|
||||
<use xlink:href="#glyph0-8" x="239.763839" y="163.56"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="246.492207" y="163.56"/>
|
||||
<use xlink:href="#glyph0-6" x="255.458582" y="163.56"/>
|
||||
<use xlink:href="#glyph0-3" x="262.050661" y="163.56"/>
|
||||
<use xlink:href="#glyph0-19" x="266.533848" y="163.56"/>
|
||||
<use xlink:href="#glyph0-11" x="271.464637" y="163.56"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
11
sections/german/03/abschnitte-anders.tex
Normal file
@ -0,0 +1,11 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\section*{Kein Verzeichniseintrag}
|
||||
\section[Titel im Verzeichnis]{Kapitelüberschrift}
|
||||
\end{document}
|
||||
1255
sections/german/03/abschnitte-crop.svg
Normal file
|
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 89 KiB |
1255
sections/german/03/abschnitte-orig.svg
Normal file
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 90 KiB |
14
sections/german/03/abschnitte.tex
Normal file
@ -0,0 +1,14 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\section{Ebene 1} Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua, sed diam voluptua.
|
||||
\subsection{Ebene 2} At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
\subsubsection{Ebene 3} Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua, sed diam voluptua.
|
||||
\paragraph{Ebene 4} At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
\subparagraph{Ebene 5} Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
|
||||
\end{document}
|
||||
577
sections/german/03/absätze-crop.svg
Normal file
@ -0,0 +1,577 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="345pt" height="93pt" viewBox="0 0 345 93" version="1.1">
|
||||
<defs>
|
||||
<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 11.625 0 L 11.625 -0.609375 L 10.25 -0.609375 L 6.5625 -9.703125 C 6.46875 -9.96875 6.4375 -10.046875 6.09375 -10.046875 C 5.734375 -10.046875 5.703125 -9.96875 5.609375 -9.703125 L 2.046875 -0.96875 C 1.953125 -0.734375 1.953125 -0.703125 1.546875 -0.65625 C 1.1875 -0.609375 1.140625 -0.609375 0.8125 -0.609375 L 0.5625 -0.609375 L 0.5625 0 C 0.9375 -0.03125 1.796875 -0.03125 2.203125 -0.03125 C 2.59375 -0.03125 3.640625 -0.03125 3.96875 0 L 3.96875 -0.609375 C 3.65625 -0.609375 3.109375 -0.609375 2.71875 -0.78125 C 2.75 -0.90625 2.75 -0.9375 2.78125 -0.984375 L 3.546875 -2.859375 L 7.390625 -2.859375 L 8.296875 -0.609375 L 6.9375 -0.609375 L 6.9375 0 C 7.40625 -0.03125 8.796875 -0.03125 9.34375 -0.03125 C 9.796875 -0.03125 11.265625 -0.03125 11.625 0 Z M 7.125 -3.46875 L 3.78125 -3.46875 L 5.46875 -7.609375 Z M 7.125 -3.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.15625 7.0625 -6.453125 5.09375 -6.453125 C 4.25 -6.453125 3.578125 -6.1875 2.984375 -5.71875 L 2.984375 -9.953125 L 0.5 -9.84375 L 0.5 -9.21875 C 1.390625 -9.21875 1.484375 -9.21875 1.484375 -8.65625 L 1.484375 0 L 2.09375 0 C 2.34375 -0.265625 2.578125 -0.546875 2.8125 -0.828125 C 3.546875 -0.078125 4.328125 0.09375 4.90625 0.09375 C 6.890625 0.09375 8.40625 -1.125 8.40625 -3.203125 Z M 6.6875 -3.21875 C 6.6875 -2.5625 6.6875 -1.75 6.34375 -1.21875 C 5.890625 -0.53125 5.21875 -0.390625 4.765625 -0.390625 C 3.78125 -0.390625 3.25 -1.078125 3.0625 -1.390625 L 3.0625 -5.03125 C 3.5625 -5.71875 4.296875 -5.984375 4.90625 -5.984375 C 6.6875 -5.984375 6.6875 -4.15625 6.6875 -3.21875 Z M 6.6875 -3.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 3.140625 -8.71875 C 3.140625 -9.25 2.703125 -9.65625 2.203125 -9.65625 C 1.671875 -9.65625 1.28125 -9.21875 1.28125 -8.71875 C 1.28125 -8.1875 1.703125 -7.78125 2.1875 -7.78125 C 2.71875 -7.78125 3.140625 -8.21875 3.140625 -8.71875 Z M 6.5625 -8.71875 C 6.5625 -9.25 6.109375 -9.65625 5.625 -9.65625 C 5.09375 -9.65625 4.6875 -9.21875 4.6875 -8.71875 C 4.6875 -8.1875 5.125 -7.78125 5.609375 -7.78125 C 6.140625 -7.78125 6.5625 -8.21875 6.5625 -8.71875 Z M 6.5625 -8.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 5.359375 -1.78125 L 5.359375 -2.53125 L 4.765625 -2.53125 L 4.765625 -1.796875 C 4.765625 -0.84375 4.328125 -0.4375 3.890625 -0.4375 C 3.03125 -0.4375 3.03125 -1.390625 3.03125 -1.71875 L 3.03125 -5.75 L 5.09375 -5.75 L 5.09375 -6.375 L 3.03125 -6.375 L 3.03125 -9.109375 L 2.421875 -9.109375 C 2.40625 -7.6875 1.71875 -6.265625 0.296875 -6.21875 L 0.296875 -5.75 L 1.46875 -5.75 L 1.46875 -1.765625 C 1.46875 -0.25 2.640625 0.09375 3.671875 0.09375 C 4.734375 0.09375 5.359375 -0.71875 5.359375 -1.78125 Z M 5.359375 -1.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 6.484375 -2.84375 L 5.875 -2.84375 C 5.765625 -1.3125 5.453125 -0.515625 3.640625 -0.515625 L 2.34375 -0.515625 L 6.3125 -5.828125 C 6.4375 -5.984375 6.4375 -6.015625 6.4375 -6.09375 C 6.4375 -6.375 6.296875 -6.375 6.03125 -6.375 L 0.828125 -6.375 L 0.671875 -3.90625 L 1.28125 -3.90625 C 1.359375 -5.265625 1.671875 -5.890625 3.265625 -5.890625 L 4.5625 -5.890625 L 0.578125 -0.578125 C 0.4375 -0.421875 0.4375 -0.390625 0.4375 -0.28125 C 0.4375 0 0.578125 0 0.859375 0 L 6.234375 0 Z M 6.484375 -2.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
|
||||
</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 6.078125 -4.53125 L 5.796875 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.25 -0.3125 2.25 -0.4375 2.25 -0.78125 L 2.25 -3.234375 L 3.09375 -3.234375 C 4.0625 -3.234375 4.15625 -2.921875 4.15625 -2.078125 L 4.40625 -2.078125 L 4.40625 -4.71875 L 4.15625 -4.71875 C 4.15625 -3.875 4.0625 -3.546875 3.09375 -3.546875 L 2.25 -3.546875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 3.921875 -6.46875 C 5.421875 -6.46875 5.671875 -5.90625 5.828125 -4.53125 Z M 6.078125 -4.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-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-3">
|
||||
<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-4">
|
||||
<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-5">
|
||||
<path style="stroke:none;" d="M 4.6875 -1.734375 C 4.6875 -2.453125 4.375 -3.65625 3.09375 -4.171875 C 3.984375 -4.421875 4.421875 -5.03125 4.421875 -5.609375 C 4.421875 -6.359375 3.703125 -7.03125 2.71875 -7.03125 C 1.9375 -7.03125 1.0625 -6.546875 1.0625 -5.546875 L 1.0625 -4.296875 L 0.28125 -4.296875 L 0.28125 -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.25 -0.03125 C 1.359375 -0.03125 1.53125 -0.03125 1.71875 0 L 1.71875 -5.5625 C 1.71875 -6.703125 2.515625 -6.8125 2.71875 -6.8125 C 3.125 -6.8125 3.671875 -6.5 3.671875 -5.625 C 3.671875 -4.984375 3.3125 -4.375 2.4375 -4.296875 C 2.34375 -4.28125 2.265625 -4.28125 2.265625 -4.1875 C 2.265625 -4.1875 2.265625 -4.09375 2.359375 -4.078125 C 3.546875 -3.984375 3.953125 -2.765625 3.953125 -1.71875 C 3.953125 -0.4375 3.296875 -0.109375 2.921875 -0.109375 C 2.828125 -0.109375 2.609375 -0.125 2.421875 -0.296875 C 2.53125 -0.3125 2.71875 -0.421875 2.71875 -0.65625 C 2.71875 -0.875 2.5625 -1.015625 2.359375 -1.015625 C 2.1875 -1.015625 2 -0.890625 2 -0.640625 C 2 -0.25 2.375 0.109375 2.953125 0.109375 C 3.8125 0.109375 4.6875 -0.625 4.6875 -1.734375 Z M 4.6875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<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-7">
|
||||
<path style="stroke:none;" d="M 5.140625 0 L 5.140625 -0.3125 C 4.609375 -0.3125 4.421875 -0.328125 4.203125 -0.625 L 2.859375 -2.34375 C 3.15625 -2.71875 3.53125 -3.203125 3.78125 -3.46875 C 4.09375 -3.828125 4.5 -3.984375 4.96875 -3.984375 L 4.96875 -4.296875 C 4.703125 -4.28125 4.40625 -4.265625 4.140625 -4.265625 C 3.84375 -4.265625 3.3125 -4.28125 3.1875 -4.296875 L 3.1875 -3.984375 C 3.40625 -3.96875 3.484375 -3.84375 3.484375 -3.671875 C 3.484375 -3.515625 3.375 -3.390625 3.328125 -3.328125 L 2.71875 -2.546875 L 1.9375 -3.5625 C 1.84375 -3.65625 1.84375 -3.671875 1.84375 -3.734375 C 1.84375 -3.890625 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 C 0.90625 -4.265625 0.4375 -4.28125 0.171875 -4.296875 L 0.171875 -3.984375 C 0.875 -3.984375 0.875 -3.984375 1.34375 -3.375 L 2.328125 -2.09375 C 1.859375 -1.5 1.859375 -1.46875 1.390625 -0.90625 C 0.921875 -0.328125 0.328125 -0.3125 0.125 -0.3125 L 0.125 0 C 0.375 -0.015625 0.6875 -0.03125 0.953125 -0.03125 L 1.890625 0 L 1.890625 -0.3125 C 1.671875 -0.34375 1.609375 -0.46875 1.609375 -0.625 C 1.609375 -0.84375 1.890625 -1.171875 2.5 -1.890625 L 3.265625 -0.890625 C 3.34375 -0.78125 3.46875 -0.625 3.46875 -0.5625 C 3.46875 -0.46875 3.375 -0.3125 3.109375 -0.3125 L 3.109375 0 L 4.1875 -0.03125 C 4.453125 -0.03125 4.84375 -0.015625 5.140625 0 Z M 5.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<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-9">
|
||||
<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-10">
|
||||
<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-11">
|
||||
<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-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="glyph1-13">
|
||||
<path style="stroke:none;" d="M 7.25 0.09375 C 7.25 0 7.25 -0.109375 7.140625 -0.109375 C 7.046875 -0.109375 7.03125 -0.03125 7.03125 0.0625 C 6.96875 0.609375 6.546875 0.90625 6.125 0.90625 C 5.65625 0.90625 5.40625 0.5625 5.15625 -0.0625 C 6.34375 -0.59375 7.1875 -1.875 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.359375 2.0625 0.21875 3.875 0.21875 C 4.1875 0.21875 4.53125 0.15625 4.828125 0.0625 C 4.96875 1.015625 5.109375 1.9375 6.046875 1.9375 C 7.0625 1.9375 7.25 0.609375 7.25 0.09375 Z M 6.1875 -3.375 C 6.1875 -2.609375 6.078125 -1.203125 5.015625 -0.421875 C 4.796875 -0.984375 4.46875 -1.46875 3.890625 -1.46875 C 3.375 -1.46875 3.078125 -1.046875 3.078125 -0.640625 C 3.078125 -0.375 3.203125 -0.171875 3.203125 -0.15625 C 2.671875 -0.359375 1.5625 -1.09375 1.5625 -3.375 C 1.5625 -5.96875 2.953125 -6.78125 3.875 -6.78125 C 4.828125 -6.78125 6.1875 -5.921875 6.1875 -3.375 Z M 4.75 -0.265625 C 4.421875 -0.0625 4.09375 -0.03125 3.875 -0.03125 C 3.375 -0.03125 3.296875 -0.484375 3.296875 -0.640625 C 3.296875 -0.921875 3.5 -1.25 3.890625 -1.25 C 4.421875 -1.25 4.640625 -0.84375 4.75 -0.265625 Z M 4.75 -0.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<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-15">
|
||||
<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-16">
|
||||
<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-17">
|
||||
<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-18">
|
||||
<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-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-20">
|
||||
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
|
||||
</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 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-23">
|
||||
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-24">
|
||||
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-25">
|
||||
<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-26">
|
||||
<path style="stroke:none;" d="M 2.75 -1.859375 L 2.75 -2.4375 L 0.109375 -2.4375 L 0.109375 -1.859375 Z M 2.75 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-27">
|
||||
<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 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-28">
|
||||
<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-29">
|
||||
<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-30">
|
||||
<path style="stroke:none;" d="M 5.796875 -2.578125 L 5.546875 -2.578125 C 5.4375 -1.5625 5.296875 -0.3125 3.546875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -6.015625 C 2.25 -6.359375 2.25 -6.5 3.1875 -6.5 L 3.515625 -6.5 L 3.515625 -6.8125 C 3.15625 -6.78125 2.25 -6.78125 1.84375 -6.78125 C 1.453125 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.515625 0 Z M 5.796875 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-31">
|
||||
<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-32">
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 L 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 Z M 4.5625 -2.578125 L 2.328125 -2.578125 L 3.4375 -5.828125 Z M 4.5625 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-33">
|
||||
<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 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-34">
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.890625 -0.3125 C 6.125 -0.3125 6.109375 -0.421875 6.109375 -0.78125 L 6.109375 -6.03125 C 6.109375 -6.390625 6.125 -6.5 6.890625 -6.5 L 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.78125 6.046875 -6.78125 5.671875 -6.78125 C 5.296875 -6.78125 4.546875 -6.78125 4.203125 -6.8125 L 4.203125 -6.5 L 4.4375 -6.5 C 5.203125 -6.5 5.21875 -6.390625 5.21875 -6.03125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.390625 L 5.21875 -3.390625 L 5.21875 -0.78125 C 5.21875 -0.421875 5.203125 -0.3125 4.4375 -0.3125 L 4.203125 -0.3125 L 4.203125 0 C 4.546875 -0.03125 5.28125 -0.03125 5.65625 -0.03125 C 6.046875 -0.03125 6.78125 -0.03125 7.140625 0 Z M 7.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-35">
|
||||
<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 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-36">
|
||||
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-37">
|
||||
<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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.802" y="10.871"/>
|
||||
<use xlink:href="#glyph0-2" x="12.989097" y="10.871"/>
|
||||
<use xlink:href="#glyph0-3" x="21.955472" y="10.871"/>
|
||||
<use xlink:href="#glyph0-4" x="28.320881" y="10.871"/>
|
||||
<use xlink:href="#glyph0-5" x="36.166818" y="10.871"/>
|
||||
<use xlink:href="#glyph0-6" x="42.44328" y="10.871"/>
|
||||
<use xlink:href="#glyph0-7" x="49.61638" y="10.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="0.802" y="32.692"/>
|
||||
<use xlink:href="#glyph1-2" x="7.305585" y="32.692"/>
|
||||
<use xlink:href="#glyph1-3" x="10.073196" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="12.840806" y="32.692"/>
|
||||
<use xlink:href="#glyph1-5" x="17.269182" y="32.692"/>
|
||||
<use xlink:href="#glyph1-6" x="22.250482" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="26.124937" y="32.692"/>
|
||||
<use xlink:href="#glyph1-7" x="30.553312" y="32.692"/>
|
||||
<use xlink:href="#glyph1-6" x="35.811573" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="42.854135" y="32.692"/>
|
||||
<use xlink:href="#glyph1-9" x="48.112395" y="32.692"/>
|
||||
<use xlink:href="#glyph1-10" x="53.093695" y="32.692"/>
|
||||
<use xlink:href="#glyph1-10" x="58.628915" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="67.332243" y="32.692"/>
|
||||
<use xlink:href="#glyph1-3" x="72.867463" y="32.692"/>
|
||||
<use xlink:href="#glyph1-12" x="75.635074" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="79.537424" y="32.692"/>
|
||||
<use xlink:href="#glyph1-8" x="83.9658" y="32.692"/>
|
||||
<use xlink:href="#glyph1-6" x="89.22406" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="96.276585" y="32.692"/>
|
||||
<use xlink:href="#glyph1-10" x="99.044195" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="107.747522" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="113.282743" y="32.692"/>
|
||||
<use xlink:href="#glyph1-10" x="117.711118" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="126.414446" y="32.692"/>
|
||||
<use xlink:href="#glyph1-14" x="134.163356" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="139.698577" y="32.692"/>
|
||||
<use xlink:href="#glyph1-2" x="144.126952" y="32.692"/>
|
||||
<use xlink:href="#glyph1-2" x="146.894563" y="32.692"/>
|
||||
<use xlink:href="#glyph1-6" x="149.662173" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="153.536628" y="32.692"/>
|
||||
<use xlink:href="#glyph1-7" x="157.965004" y="32.692"/>
|
||||
<use xlink:href="#glyph1-6" x="163.223264" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="170.265826" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="175.247126" y="32.692"/>
|
||||
<use xlink:href="#glyph1-16" x="179.675502" y="32.692"/>
|
||||
<use xlink:href="#glyph1-17" x="183.605747" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="187.75517" y="32.692"/>
|
||||
<use xlink:href="#glyph1-12" x="193.290391" y="32.692"/>
|
||||
<use xlink:href="#glyph1-3" x="197.192741" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="199.960352" y="32.692"/>
|
||||
<use xlink:href="#glyph1-19" x="204.388727" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="210.202901" y="32.692"/>
|
||||
<use xlink:href="#glyph1-10" x="214.631276" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="223.334604" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="230.250641" y="32.692"/>
|
||||
<use xlink:href="#glyph1-12" x="234.679016" y="32.692"/>
|
||||
<use xlink:href="#glyph1-11" x="238.581367" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="244.116587" y="32.692"/>
|
||||
<use xlink:href="#glyph1-10" x="248.544963" y="32.692"/>
|
||||
<use xlink:href="#glyph1-21" x="254.080184" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="261.221375" y="32.692"/>
|
||||
<use xlink:href="#glyph1-3" x="268.001921" y="32.692"/>
|
||||
<use xlink:href="#glyph1-10" x="270.769531" y="32.692"/>
|
||||
<use xlink:href="#glyph1-23" x="276.304752" y="32.692"/>
|
||||
<use xlink:href="#glyph1-9" x="279.349322" y="32.692"/>
|
||||
<use xlink:href="#glyph1-17" x="284.330622" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="288.480045" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="294.015266" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-24" x="301.621711" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="307.709856" y="32.692"/>
|
||||
<use xlink:href="#glyph1-3" x="312.138231" y="32.692"/>
|
||||
<use xlink:href="#glyph1-2" x="314.905842" y="32.692"/>
|
||||
<use xlink:href="#glyph1-4" x="317.673452" y="32.692"/>
|
||||
<use xlink:href="#glyph1-10" x="322.101828" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="327.358095" y="32.692"/>
|
||||
<use xlink:href="#glyph1-25" x="332.893316" y="32.692"/>
|
||||
<use xlink:href="#glyph1-26" x="341.19515" y="32.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-19" x="0.802" y="44.647"/>
|
||||
<use xlink:href="#glyph1-12" x="6.337221" y="44.647"/>
|
||||
<use xlink:href="#glyph1-27" x="10.239571" y="44.647"/>
|
||||
<use xlink:href="#glyph1-17" x="15.774792" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="19.924214" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="25.459435" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="33.205356" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="40.131356" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="44.549769" y="44.647"/>
|
||||
<use xlink:href="#glyph1-11" x="48.45212" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="53.98734" y="44.647"/>
|
||||
<use xlink:href="#glyph1-10" x="58.415716" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="67.278445" y="44.647"/>
|
||||
<use xlink:href="#glyph1-9" x="72.813665" y="44.647"/>
|
||||
<use xlink:href="#glyph1-19" x="77.794965" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="83.599176" y="44.647"/>
|
||||
<use xlink:href="#glyph1-3" x="88.027552" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="94.12267" y="44.647"/>
|
||||
<use xlink:href="#glyph1-15" x="96.890281" y="44.647"/>
|
||||
<use xlink:href="#glyph1-10" x="101.871581" y="44.647"/>
|
||||
<use xlink:href="#glyph1-28" x="107.406801" y="44.647"/>
|
||||
<use xlink:href="#glyph1-12" x="112.388101" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="116.280489" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="119.048099" y="44.647"/>
|
||||
<use xlink:href="#glyph1-12" x="123.476475" y="44.647"/>
|
||||
<use xlink:href="#glyph1-6" x="127.378826" y="44.647"/>
|
||||
<use xlink:href="#glyph1-29" x="131.253281" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="137.348399" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="142.329699" y="44.647"/>
|
||||
<use xlink:href="#glyph1-10" x="146.758075" y="44.647"/>
|
||||
<use xlink:href="#glyph1-9" x="152.293296" y="44.647"/>
|
||||
<use xlink:href="#glyph1-14" x="157.274596" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="166.127362" y="44.647"/>
|
||||
<use xlink:href="#glyph1-3" x="173.322352" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="176.089962" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="183.835883" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="192.137718" y="44.647"/>
|
||||
<use xlink:href="#glyph1-18" x="196.566094" y="44.647"/>
|
||||
<use xlink:href="#glyph1-12" x="202.101314" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="206.003665" y="44.647"/>
|
||||
<use xlink:href="#glyph1-12" x="210.43204" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="214.334391" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-30" x="222.080312" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="228.306937" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="232.735313" y="44.647"/>
|
||||
<use xlink:href="#glyph1-12" x="237.163689" y="44.647"/>
|
||||
<use xlink:href="#glyph1-31" x="241.066039" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="245.494415" y="44.647"/>
|
||||
<use xlink:href="#glyph1-3" x="249.922791" y="44.647"/>
|
||||
<use xlink:href="#glyph1-17" x="252.690401" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="256.839824" y="44.647"/>
|
||||
<use xlink:href="#glyph1-4" x="262.375044" y="44.647"/>
|
||||
<use xlink:href="#glyph1-10" x="266.80342" y="44.647"/>
|
||||
<use xlink:href="#glyph1-21" x="272.338641" y="44.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-30" x="15.746" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="21.972625" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="26.401001" y="56.602"/>
|
||||
<use xlink:href="#glyph1-12" x="30.829376" y="56.602"/>
|
||||
<use xlink:href="#glyph1-31" x="34.731727" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="39.160103" y="56.602"/>
|
||||
<use xlink:href="#glyph1-3" x="43.588478" y="56.602"/>
|
||||
<use xlink:href="#glyph1-2" x="46.356089" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="49.123699" y="56.602"/>
|
||||
<use xlink:href="#glyph1-10" x="53.552074" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="62.624018" y="56.602"/>
|
||||
<use xlink:href="#glyph1-12" x="67.052394" y="56.602"/>
|
||||
<use xlink:href="#glyph1-31" x="70.954744" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="75.38312" y="56.602"/>
|
||||
<use xlink:href="#glyph1-14" x="79.811496" y="56.602"/>
|
||||
<use xlink:href="#glyph1-15" x="85.346716" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="90.328016" y="56.602"/>
|
||||
<use xlink:href="#glyph1-10" x="94.756392" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="103.828335" y="56.602"/>
|
||||
<use xlink:href="#glyph1-3" x="108.256711" y="56.602"/>
|
||||
<use xlink:href="#glyph1-10" x="111.024321" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="116.559542" y="56.602"/>
|
||||
<use xlink:href="#glyph1-10" x="120.987918" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="130.069824" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="135.605044" y="56.602"/>
|
||||
<use xlink:href="#glyph1-14" x="140.03342" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="145.568641" y="56.602"/>
|
||||
<use xlink:href="#glyph1-10" x="149.997016" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-32" x="159.06896" y="56.602"/>
|
||||
<use xlink:href="#glyph1-19" x="166.54091" y="56.602"/>
|
||||
<use xlink:href="#glyph1-16" x="172.07613" y="56.602"/>
|
||||
<use xlink:href="#glyph1-9" x="176.006376" y="56.602"/>
|
||||
<use xlink:href="#glyph1-6" x="180.987676" y="56.602"/>
|
||||
<use xlink:href="#glyph1-31" x="184.862131" y="56.602"/>
|
||||
<use xlink:href="#glyph1-29" x="189.290507" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="195.654616" y="56.602"/>
|
||||
<use xlink:href="#glyph1-6" x="199.584862" y="56.602"/>
|
||||
<use xlink:href="#glyph1-9" x="203.459317" y="56.602"/>
|
||||
<use xlink:href="#glyph1-10" x="208.440617" y="56.602"/>
|
||||
<use xlink:href="#glyph1-11" x="213.975837" y="56.602"/>
|
||||
<use xlink:href="#glyph1-9" x="219.511058" y="56.602"/>
|
||||
<use xlink:href="#glyph1-12" x="224.492358" y="56.602"/>
|
||||
<use xlink:href="#glyph1-11" x="228.394708" y="56.602"/>
|
||||
<use xlink:href="#glyph1-25" x="233.929929" y="56.602"/>
|
||||
<use xlink:href="#glyph1-33" x="242.231763" y="56.602"/>
|
||||
<use xlink:href="#glyph1-5" x="247.213063" y="56.602"/>
|
||||
<use xlink:href="#glyph1-3" x="252.194363" y="56.602"/>
|
||||
<use xlink:href="#glyph1-15" x="254.961974" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="263.479997" y="56.602"/>
|
||||
<use xlink:href="#glyph1-3" x="271.781831" y="56.602"/>
|
||||
<use xlink:href="#glyph1-6" x="274.549442" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="281.970582" y="56.602"/>
|
||||
<use xlink:href="#glyph1-3" x="288.751128" y="56.602"/>
|
||||
<use xlink:href="#glyph1-10" x="291.518738" y="56.602"/>
|
||||
<use xlink:href="#glyph1-31" x="297.053959" y="56.602"/>
|
||||
<use xlink:href="#glyph1-14" x="301.482334" y="56.602"/>
|
||||
<use xlink:href="#glyph1-15" x="307.017555" y="56.602"/>
|
||||
<use xlink:href="#glyph1-21" x="311.998855" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-34" x="319.857354" y="56.602"/>
|
||||
<use xlink:href="#glyph1-9" x="327.329304" y="56.602"/>
|
||||
<use xlink:href="#glyph1-12" x="332.310604" y="56.602"/>
|
||||
<use xlink:href="#glyph1-6" x="336.212954" y="56.602"/>
|
||||
<use xlink:href="#glyph1-4" x="340.087409" y="56.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-24" x="0.802" y="68.557"/>
|
||||
<use xlink:href="#glyph1-4" x="6.890145" y="68.557"/>
|
||||
<use xlink:href="#glyph1-3" x="11.318521" y="68.557"/>
|
||||
<use xlink:href="#glyph1-2" x="14.086131" y="68.557"/>
|
||||
<use xlink:href="#glyph1-4" x="16.853741" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="21.282117" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="26.538385" y="68.557"/>
|
||||
<use xlink:href="#glyph1-25" x="32.073605" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-19" x="40.096487" y="68.557"/>
|
||||
<use xlink:href="#glyph1-12" x="45.631707" y="68.557"/>
|
||||
<use xlink:href="#glyph1-27" x="49.534058" y="68.557"/>
|
||||
<use xlink:href="#glyph1-17" x="55.069278" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="59.218701" y="68.557"/>
|
||||
<use xlink:href="#glyph1-4" x="64.753922" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="71.503583" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-35" x="76.482891" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="81.464191" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="86.999411" y="68.557"/>
|
||||
<use xlink:href="#glyph1-4" x="92.534632" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="96.963008" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="104.819514" y="68.557"/>
|
||||
<use xlink:href="#glyph1-3" x="113.121349" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="115.878996" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-31" x="122.074737" y="68.557"/>
|
||||
<use xlink:href="#glyph1-20" x="126.503113" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="133.41915" y="68.557"/>
|
||||
<use xlink:href="#glyph1-3" x="137.847526" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-36" x="142.936422" y="68.557"/>
|
||||
<use xlink:href="#glyph1-9" x="149.992931" y="68.557"/>
|
||||
<use xlink:href="#glyph1-17" x="154.974231" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="159.123654" y="68.557"/>
|
||||
<use xlink:href="#glyph1-16" x="164.381914" y="68.557"/>
|
||||
<use xlink:href="#glyph1-2" x="168.31216" y="68.557"/>
|
||||
<use xlink:href="#glyph1-9" x="171.07977" y="68.557"/>
|
||||
<use xlink:href="#glyph1-16" x="176.06107" y="68.557"/>
|
||||
<use xlink:href="#glyph1-18" x="179.991316" y="68.557"/>
|
||||
<use xlink:href="#glyph1-4" x="185.526537" y="68.557"/>
|
||||
<use xlink:href="#glyph1-16" x="189.954912" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="196.196481" y="68.557"/>
|
||||
<use xlink:href="#glyph1-12" x="200.624857" y="68.557"/>
|
||||
<use xlink:href="#glyph1-31" x="204.527207" y="68.557"/>
|
||||
<use xlink:href="#glyph1-20" x="208.955583" y="68.557"/>
|
||||
<use xlink:href="#glyph1-14" x="216.150573" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="221.685793" y="68.557"/>
|
||||
<use xlink:href="#glyph1-15" x="227.221014" y="68.557"/>
|
||||
<use xlink:href="#glyph1-4" x="232.202314" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="236.63069" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="244.487196" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="251.403233" y="68.557"/>
|
||||
<use xlink:href="#glyph1-12" x="255.831609" y="68.557"/>
|
||||
<use xlink:href="#glyph1-11" x="259.733959" y="68.557"/>
|
||||
<use xlink:href="#glyph1-4" x="265.26918" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="269.697555" y="68.557"/>
|
||||
<use xlink:href="#glyph1-29" x="275.232776" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="280.520924" y="68.557"/>
|
||||
<use xlink:href="#glyph1-9" x="286.056145" y="68.557"/>
|
||||
<use xlink:href="#glyph1-19" x="291.037445" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="296.841655" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="301.270031" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="309.126537" y="68.557"/>
|
||||
<use xlink:href="#glyph1-10" x="311.894148" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="319.740691" y="68.557"/>
|
||||
<use xlink:href="#glyph1-2" x="326.244277" y="68.557"/>
|
||||
<use xlink:href="#glyph1-3" x="329.011887" y="68.557"/>
|
||||
<use xlink:href="#glyph1-4" x="331.779497" y="68.557"/>
|
||||
<use xlink:href="#glyph1-5" x="336.207873" y="68.557"/>
|
||||
<use xlink:href="#glyph1-26" x="341.189173" y="68.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="0.802" y="80.513"/>
|
||||
<use xlink:href="#glyph1-4" x="4.676455" y="80.513"/>
|
||||
<use xlink:href="#glyph1-7" x="9.104831" y="80.513"/>
|
||||
<use xlink:href="#glyph1-6" x="14.363091" y="80.513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="21.555092" y="80.513"/>
|
||||
<use xlink:href="#glyph1-19" x="26.536392" y="80.513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="32.350565" y="80.513"/>
|
||||
<use xlink:href="#glyph1-12" x="36.778941" y="80.513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="43.998837" y="80.513"/>
|
||||
<use xlink:href="#glyph1-3" x="48.427213" y="80.513"/>
|
||||
<use xlink:href="#glyph1-15" x="51.194823" y="80.513"/>
|
||||
<use xlink:href="#glyph1-4" x="56.176123" y="80.513"/>
|
||||
<use xlink:href="#glyph1-10" x="60.604499" y="80.513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="65.860767" y="80.513"/>
|
||||
<use xlink:href="#glyph1-2" x="69.735222" y="80.513"/>
|
||||
<use xlink:href="#glyph1-3" x="72.502832" y="80.513"/>
|
||||
<use xlink:href="#glyph1-17" x="75.270442" y="80.513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="79.419865" y="80.513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="0.802" y="92.468"/>
|
||||
<use xlink:href="#glyph1-3" x="6.337221" y="92.468"/>
|
||||
<use xlink:href="#glyph1-17" x="9.104831" y="92.468"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="13.254254" y="92.468"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="18.510521" y="92.468"/>
|
||||
<use xlink:href="#glyph1-16" x="22.384977" y="92.468"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-37" x="29.642731" y="92.468"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="34.622038" y="92.468"/>
|
||||
<use xlink:href="#glyph1-12" x="39.050414" y="92.468"/>
|
||||
<use xlink:href="#glyph1-2" x="42.952764" y="92.468"/>
|
||||
<use xlink:href="#glyph1-28" x="45.720375" y="92.468"/>
|
||||
<use xlink:href="#glyph1-12" x="50.701675" y="92.468"/>
|
||||
<use xlink:href="#glyph1-4" x="54.604025" y="92.468"/>
|
||||
<use xlink:href="#glyph1-10" x="59.032401" y="92.468"/>
|
||||
<use xlink:href="#glyph1-21" x="64.567621" y="92.468"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
577
sections/german/03/absätze-orig.svg
Normal file
@ -0,0 +1,577 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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 11.625 0 L 11.625 -0.609375 L 10.25 -0.609375 L 6.5625 -9.703125 C 6.46875 -9.96875 6.4375 -10.046875 6.09375 -10.046875 C 5.734375 -10.046875 5.703125 -9.96875 5.609375 -9.703125 L 2.046875 -0.96875 C 1.953125 -0.734375 1.953125 -0.703125 1.546875 -0.65625 C 1.1875 -0.609375 1.140625 -0.609375 0.8125 -0.609375 L 0.5625 -0.609375 L 0.5625 0 C 0.9375 -0.03125 1.796875 -0.03125 2.203125 -0.03125 C 2.59375 -0.03125 3.640625 -0.03125 3.96875 0 L 3.96875 -0.609375 C 3.65625 -0.609375 3.109375 -0.609375 2.71875 -0.78125 C 2.75 -0.90625 2.75 -0.9375 2.78125 -0.984375 L 3.546875 -2.859375 L 7.390625 -2.859375 L 8.296875 -0.609375 L 6.9375 -0.609375 L 6.9375 0 C 7.40625 -0.03125 8.796875 -0.03125 9.34375 -0.03125 C 9.796875 -0.03125 11.265625 -0.03125 11.625 0 Z M 7.125 -3.46875 L 3.78125 -3.46875 L 5.46875 -7.609375 Z M 7.125 -3.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.15625 7.0625 -6.453125 5.09375 -6.453125 C 4.25 -6.453125 3.578125 -6.1875 2.984375 -5.71875 L 2.984375 -9.953125 L 0.5 -9.84375 L 0.5 -9.21875 C 1.390625 -9.21875 1.484375 -9.21875 1.484375 -8.65625 L 1.484375 0 L 2.09375 0 C 2.34375 -0.265625 2.578125 -0.546875 2.8125 -0.828125 C 3.546875 -0.078125 4.328125 0.09375 4.90625 0.09375 C 6.890625 0.09375 8.40625 -1.125 8.40625 -3.203125 Z M 6.6875 -3.21875 C 6.6875 -2.5625 6.6875 -1.75 6.34375 -1.21875 C 5.890625 -0.53125 5.21875 -0.390625 4.765625 -0.390625 C 3.78125 -0.390625 3.25 -1.078125 3.0625 -1.390625 L 3.0625 -5.03125 C 3.5625 -5.71875 4.296875 -5.984375 4.90625 -5.984375 C 6.6875 -5.984375 6.6875 -4.15625 6.6875 -3.21875 Z M 6.6875 -3.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 3.140625 -8.71875 C 3.140625 -9.25 2.703125 -9.65625 2.203125 -9.65625 C 1.671875 -9.65625 1.28125 -9.21875 1.28125 -8.71875 C 1.28125 -8.1875 1.703125 -7.78125 2.1875 -7.78125 C 2.71875 -7.78125 3.140625 -8.21875 3.140625 -8.71875 Z M 6.5625 -8.71875 C 6.5625 -9.25 6.109375 -9.65625 5.625 -9.65625 C 5.09375 -9.65625 4.6875 -9.21875 4.6875 -8.71875 C 4.6875 -8.1875 5.125 -7.78125 5.609375 -7.78125 C 6.140625 -7.78125 6.5625 -8.21875 6.5625 -8.71875 Z M 6.5625 -8.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 5.359375 -1.78125 L 5.359375 -2.53125 L 4.765625 -2.53125 L 4.765625 -1.796875 C 4.765625 -0.84375 4.328125 -0.4375 3.890625 -0.4375 C 3.03125 -0.4375 3.03125 -1.390625 3.03125 -1.71875 L 3.03125 -5.75 L 5.09375 -5.75 L 5.09375 -6.375 L 3.03125 -6.375 L 3.03125 -9.109375 L 2.421875 -9.109375 C 2.40625 -7.6875 1.71875 -6.265625 0.296875 -6.21875 L 0.296875 -5.75 L 1.46875 -5.75 L 1.46875 -1.765625 C 1.46875 -0.25 2.640625 0.09375 3.671875 0.09375 C 4.734375 0.09375 5.359375 -0.71875 5.359375 -1.78125 Z M 5.359375 -1.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 6.484375 -2.84375 L 5.875 -2.84375 C 5.765625 -1.3125 5.453125 -0.515625 3.640625 -0.515625 L 2.34375 -0.515625 L 6.3125 -5.828125 C 6.4375 -5.984375 6.4375 -6.015625 6.4375 -6.09375 C 6.4375 -6.375 6.296875 -6.375 6.03125 -6.375 L 0.828125 -6.375 L 0.671875 -3.90625 L 1.28125 -3.90625 C 1.359375 -5.265625 1.671875 -5.890625 3.265625 -5.890625 L 4.5625 -5.890625 L 0.578125 -0.578125 C 0.4375 -0.421875 0.4375 -0.390625 0.4375 -0.28125 C 0.4375 0 0.578125 0 0.859375 0 L 6.234375 0 Z M 6.484375 -2.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
|
||||
</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 6.078125 -4.53125 L 5.796875 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.25 -0.3125 2.25 -0.4375 2.25 -0.78125 L 2.25 -3.234375 L 3.09375 -3.234375 C 4.0625 -3.234375 4.15625 -2.921875 4.15625 -2.078125 L 4.40625 -2.078125 L 4.40625 -4.71875 L 4.15625 -4.71875 C 4.15625 -3.875 4.0625 -3.546875 3.09375 -3.546875 L 2.25 -3.546875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 3.921875 -6.46875 C 5.421875 -6.46875 5.671875 -5.90625 5.828125 -4.53125 Z M 6.078125 -4.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-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-3">
|
||||
<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-4">
|
||||
<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-5">
|
||||
<path style="stroke:none;" d="M 4.6875 -1.734375 C 4.6875 -2.453125 4.375 -3.65625 3.09375 -4.171875 C 3.984375 -4.421875 4.421875 -5.03125 4.421875 -5.609375 C 4.421875 -6.359375 3.703125 -7.03125 2.71875 -7.03125 C 1.9375 -7.03125 1.0625 -6.546875 1.0625 -5.546875 L 1.0625 -4.296875 L 0.28125 -4.296875 L 0.28125 -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.25 -0.03125 C 1.359375 -0.03125 1.53125 -0.03125 1.71875 0 L 1.71875 -5.5625 C 1.71875 -6.703125 2.515625 -6.8125 2.71875 -6.8125 C 3.125 -6.8125 3.671875 -6.5 3.671875 -5.625 C 3.671875 -4.984375 3.3125 -4.375 2.4375 -4.296875 C 2.34375 -4.28125 2.265625 -4.28125 2.265625 -4.1875 C 2.265625 -4.1875 2.265625 -4.09375 2.359375 -4.078125 C 3.546875 -3.984375 3.953125 -2.765625 3.953125 -1.71875 C 3.953125 -0.4375 3.296875 -0.109375 2.921875 -0.109375 C 2.828125 -0.109375 2.609375 -0.125 2.421875 -0.296875 C 2.53125 -0.3125 2.71875 -0.421875 2.71875 -0.65625 C 2.71875 -0.875 2.5625 -1.015625 2.359375 -1.015625 C 2.1875 -1.015625 2 -0.890625 2 -0.640625 C 2 -0.25 2.375 0.109375 2.953125 0.109375 C 3.8125 0.109375 4.6875 -0.625 4.6875 -1.734375 Z M 4.6875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<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-7">
|
||||
<path style="stroke:none;" d="M 5.140625 0 L 5.140625 -0.3125 C 4.609375 -0.3125 4.421875 -0.328125 4.203125 -0.625 L 2.859375 -2.34375 C 3.15625 -2.71875 3.53125 -3.203125 3.78125 -3.46875 C 4.09375 -3.828125 4.5 -3.984375 4.96875 -3.984375 L 4.96875 -4.296875 C 4.703125 -4.28125 4.40625 -4.265625 4.140625 -4.265625 C 3.84375 -4.265625 3.3125 -4.28125 3.1875 -4.296875 L 3.1875 -3.984375 C 3.40625 -3.96875 3.484375 -3.84375 3.484375 -3.671875 C 3.484375 -3.515625 3.375 -3.390625 3.328125 -3.328125 L 2.71875 -2.546875 L 1.9375 -3.5625 C 1.84375 -3.65625 1.84375 -3.671875 1.84375 -3.734375 C 1.84375 -3.890625 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 C 0.90625 -4.265625 0.4375 -4.28125 0.171875 -4.296875 L 0.171875 -3.984375 C 0.875 -3.984375 0.875 -3.984375 1.34375 -3.375 L 2.328125 -2.09375 C 1.859375 -1.5 1.859375 -1.46875 1.390625 -0.90625 C 0.921875 -0.328125 0.328125 -0.3125 0.125 -0.3125 L 0.125 0 C 0.375 -0.015625 0.6875 -0.03125 0.953125 -0.03125 L 1.890625 0 L 1.890625 -0.3125 C 1.671875 -0.34375 1.609375 -0.46875 1.609375 -0.625 C 1.609375 -0.84375 1.890625 -1.171875 2.5 -1.890625 L 3.265625 -0.890625 C 3.34375 -0.78125 3.46875 -0.625 3.46875 -0.5625 C 3.46875 -0.46875 3.375 -0.3125 3.109375 -0.3125 L 3.109375 0 L 4.1875 -0.03125 C 4.453125 -0.03125 4.84375 -0.015625 5.140625 0 Z M 5.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<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-9">
|
||||
<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-10">
|
||||
<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-11">
|
||||
<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-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="glyph1-13">
|
||||
<path style="stroke:none;" d="M 7.25 0.09375 C 7.25 0 7.25 -0.109375 7.140625 -0.109375 C 7.046875 -0.109375 7.03125 -0.03125 7.03125 0.0625 C 6.96875 0.609375 6.546875 0.90625 6.125 0.90625 C 5.65625 0.90625 5.40625 0.5625 5.15625 -0.0625 C 6.34375 -0.59375 7.1875 -1.875 7.1875 -3.375 C 7.1875 -5.40625 5.6875 -7.03125 3.875 -7.03125 C 2.078125 -7.03125 0.5625 -5.4375 0.5625 -3.375 C 0.5625 -1.359375 2.0625 0.21875 3.875 0.21875 C 4.1875 0.21875 4.53125 0.15625 4.828125 0.0625 C 4.96875 1.015625 5.109375 1.9375 6.046875 1.9375 C 7.0625 1.9375 7.25 0.609375 7.25 0.09375 Z M 6.1875 -3.375 C 6.1875 -2.609375 6.078125 -1.203125 5.015625 -0.421875 C 4.796875 -0.984375 4.46875 -1.46875 3.890625 -1.46875 C 3.375 -1.46875 3.078125 -1.046875 3.078125 -0.640625 C 3.078125 -0.375 3.203125 -0.171875 3.203125 -0.15625 C 2.671875 -0.359375 1.5625 -1.09375 1.5625 -3.375 C 1.5625 -5.96875 2.953125 -6.78125 3.875 -6.78125 C 4.828125 -6.78125 6.1875 -5.921875 6.1875 -3.375 Z M 4.75 -0.265625 C 4.421875 -0.0625 4.09375 -0.03125 3.875 -0.03125 C 3.375 -0.03125 3.296875 -0.484375 3.296875 -0.640625 C 3.296875 -0.921875 3.5 -1.25 3.890625 -1.25 C 4.421875 -1.25 4.640625 -0.84375 4.75 -0.265625 Z M 4.75 -0.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<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-15">
|
||||
<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-16">
|
||||
<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-17">
|
||||
<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-18">
|
||||
<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-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-20">
|
||||
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
|
||||
</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 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-23">
|
||||
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-24">
|
||||
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-25">
|
||||
<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-26">
|
||||
<path style="stroke:none;" d="M 2.75 -1.859375 L 2.75 -2.4375 L 0.109375 -2.4375 L 0.109375 -1.859375 Z M 2.75 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-27">
|
||||
<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 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-28">
|
||||
<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-29">
|
||||
<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-30">
|
||||
<path style="stroke:none;" d="M 5.796875 -2.578125 L 5.546875 -2.578125 C 5.4375 -1.5625 5.296875 -0.3125 3.546875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -6.015625 C 2.25 -6.359375 2.25 -6.5 3.1875 -6.5 L 3.515625 -6.5 L 3.515625 -6.8125 C 3.15625 -6.78125 2.25 -6.78125 1.84375 -6.78125 C 1.453125 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.515625 0 Z M 5.796875 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-31">
|
||||
<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-32">
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 L 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 Z M 4.5625 -2.578125 L 2.328125 -2.578125 L 3.4375 -5.828125 Z M 4.5625 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-33">
|
||||
<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 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-34">
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.890625 -0.3125 C 6.125 -0.3125 6.109375 -0.421875 6.109375 -0.78125 L 6.109375 -6.03125 C 6.109375 -6.390625 6.125 -6.5 6.890625 -6.5 L 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.78125 6.046875 -6.78125 5.671875 -6.78125 C 5.296875 -6.78125 4.546875 -6.78125 4.203125 -6.8125 L 4.203125 -6.5 L 4.4375 -6.5 C 5.203125 -6.5 5.21875 -6.390625 5.21875 -6.03125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.390625 L 5.21875 -3.390625 L 5.21875 -0.78125 C 5.21875 -0.421875 5.203125 -0.3125 4.4375 -0.3125 L 4.203125 -0.3125 L 4.203125 0 C 4.546875 -0.03125 5.28125 -0.03125 5.65625 -0.03125 C 6.046875 -0.03125 6.78125 -0.03125 7.140625 0 Z M 7.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-35">
|
||||
<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 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-36">
|
||||
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-37">
|
||||
<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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="124.802" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="136.989097" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="145.955472" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="152.320881" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="160.166818" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="166.44328" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="173.61638" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="124.802" y="157.582"/>
|
||||
<use xlink:href="#glyph1-2" x="131.305585" y="157.582"/>
|
||||
<use xlink:href="#glyph1-3" x="134.073196" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="136.840806" y="157.582"/>
|
||||
<use xlink:href="#glyph1-5" x="141.269182" y="157.582"/>
|
||||
<use xlink:href="#glyph1-6" x="146.250482" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="150.124937" y="157.582"/>
|
||||
<use xlink:href="#glyph1-7" x="154.553312" y="157.582"/>
|
||||
<use xlink:href="#glyph1-6" x="159.811573" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="166.854135" y="157.582"/>
|
||||
<use xlink:href="#glyph1-9" x="172.112395" y="157.582"/>
|
||||
<use xlink:href="#glyph1-10" x="177.093695" y="157.582"/>
|
||||
<use xlink:href="#glyph1-10" x="182.628915" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="191.332243" y="157.582"/>
|
||||
<use xlink:href="#glyph1-3" x="196.867463" y="157.582"/>
|
||||
<use xlink:href="#glyph1-12" x="199.635074" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="203.537424" y="157.582"/>
|
||||
<use xlink:href="#glyph1-8" x="207.9658" y="157.582"/>
|
||||
<use xlink:href="#glyph1-6" x="213.22406" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="220.276585" y="157.582"/>
|
||||
<use xlink:href="#glyph1-10" x="223.044195" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="231.747522" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="237.282743" y="157.582"/>
|
||||
<use xlink:href="#glyph1-10" x="241.711118" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="250.414446" y="157.582"/>
|
||||
<use xlink:href="#glyph1-14" x="258.163356" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="263.698577" y="157.582"/>
|
||||
<use xlink:href="#glyph1-2" x="268.126952" y="157.582"/>
|
||||
<use xlink:href="#glyph1-2" x="270.894563" y="157.582"/>
|
||||
<use xlink:href="#glyph1-6" x="273.662173" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="277.536628" y="157.582"/>
|
||||
<use xlink:href="#glyph1-7" x="281.965004" y="157.582"/>
|
||||
<use xlink:href="#glyph1-6" x="287.223264" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="294.265826" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="299.247126" y="157.582"/>
|
||||
<use xlink:href="#glyph1-16" x="303.675502" y="157.582"/>
|
||||
<use xlink:href="#glyph1-17" x="307.605747" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="311.75517" y="157.582"/>
|
||||
<use xlink:href="#glyph1-12" x="317.290391" y="157.582"/>
|
||||
<use xlink:href="#glyph1-3" x="321.192741" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="323.960352" y="157.582"/>
|
||||
<use xlink:href="#glyph1-19" x="328.388727" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="334.202901" y="157.582"/>
|
||||
<use xlink:href="#glyph1-10" x="338.631276" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="347.334604" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="354.250641" y="157.582"/>
|
||||
<use xlink:href="#glyph1-12" x="358.679016" y="157.582"/>
|
||||
<use xlink:href="#glyph1-11" x="362.581367" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="368.116587" y="157.582"/>
|
||||
<use xlink:href="#glyph1-10" x="372.544963" y="157.582"/>
|
||||
<use xlink:href="#glyph1-21" x="378.080184" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="385.221375" y="157.582"/>
|
||||
<use xlink:href="#glyph1-3" x="392.001921" y="157.582"/>
|
||||
<use xlink:href="#glyph1-10" x="394.769531" y="157.582"/>
|
||||
<use xlink:href="#glyph1-23" x="400.304752" y="157.582"/>
|
||||
<use xlink:href="#glyph1-9" x="403.349322" y="157.582"/>
|
||||
<use xlink:href="#glyph1-17" x="408.330622" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="412.480045" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="418.015266" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-24" x="425.621711" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="431.709856" y="157.582"/>
|
||||
<use xlink:href="#glyph1-3" x="436.138231" y="157.582"/>
|
||||
<use xlink:href="#glyph1-2" x="438.905842" y="157.582"/>
|
||||
<use xlink:href="#glyph1-4" x="441.673452" y="157.582"/>
|
||||
<use xlink:href="#glyph1-10" x="446.101828" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="451.358095" y="157.582"/>
|
||||
<use xlink:href="#glyph1-25" x="456.893316" y="157.582"/>
|
||||
<use xlink:href="#glyph1-26" x="465.19515" y="157.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-19" x="124.802" y="169.537"/>
|
||||
<use xlink:href="#glyph1-12" x="130.337221" y="169.537"/>
|
||||
<use xlink:href="#glyph1-27" x="134.239571" y="169.537"/>
|
||||
<use xlink:href="#glyph1-17" x="139.774792" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="143.924214" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="149.459435" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="157.205356" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="164.131356" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="168.549769" y="169.537"/>
|
||||
<use xlink:href="#glyph1-11" x="172.45212" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="177.98734" y="169.537"/>
|
||||
<use xlink:href="#glyph1-10" x="182.415716" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="191.278445" y="169.537"/>
|
||||
<use xlink:href="#glyph1-9" x="196.813665" y="169.537"/>
|
||||
<use xlink:href="#glyph1-19" x="201.794965" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="207.599176" y="169.537"/>
|
||||
<use xlink:href="#glyph1-3" x="212.027552" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="218.12267" y="169.537"/>
|
||||
<use xlink:href="#glyph1-15" x="220.890281" y="169.537"/>
|
||||
<use xlink:href="#glyph1-10" x="225.871581" y="169.537"/>
|
||||
<use xlink:href="#glyph1-28" x="231.406801" y="169.537"/>
|
||||
<use xlink:href="#glyph1-12" x="236.388101" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="240.280489" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="243.048099" y="169.537"/>
|
||||
<use xlink:href="#glyph1-12" x="247.476475" y="169.537"/>
|
||||
<use xlink:href="#glyph1-6" x="251.378826" y="169.537"/>
|
||||
<use xlink:href="#glyph1-29" x="255.253281" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="261.348399" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="266.329699" y="169.537"/>
|
||||
<use xlink:href="#glyph1-10" x="270.758075" y="169.537"/>
|
||||
<use xlink:href="#glyph1-9" x="276.293296" y="169.537"/>
|
||||
<use xlink:href="#glyph1-14" x="281.274596" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="290.127362" y="169.537"/>
|
||||
<use xlink:href="#glyph1-3" x="297.322352" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="300.089962" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="307.835883" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="316.137718" y="169.537"/>
|
||||
<use xlink:href="#glyph1-18" x="320.566094" y="169.537"/>
|
||||
<use xlink:href="#glyph1-12" x="326.101314" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="330.003665" y="169.537"/>
|
||||
<use xlink:href="#glyph1-12" x="334.43204" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="338.334391" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-30" x="346.080312" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="352.306937" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="356.735313" y="169.537"/>
|
||||
<use xlink:href="#glyph1-12" x="361.163689" y="169.537"/>
|
||||
<use xlink:href="#glyph1-31" x="365.066039" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="369.494415" y="169.537"/>
|
||||
<use xlink:href="#glyph1-3" x="373.922791" y="169.537"/>
|
||||
<use xlink:href="#glyph1-17" x="376.690401" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="380.839824" y="169.537"/>
|
||||
<use xlink:href="#glyph1-4" x="386.375044" y="169.537"/>
|
||||
<use xlink:href="#glyph1-10" x="390.80342" y="169.537"/>
|
||||
<use xlink:href="#glyph1-21" x="396.338641" y="169.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-30" x="139.746" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="145.972625" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="150.401001" y="181.492"/>
|
||||
<use xlink:href="#glyph1-12" x="154.829376" y="181.492"/>
|
||||
<use xlink:href="#glyph1-31" x="158.731727" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="163.160103" y="181.492"/>
|
||||
<use xlink:href="#glyph1-3" x="167.588478" y="181.492"/>
|
||||
<use xlink:href="#glyph1-2" x="170.356089" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="173.123699" y="181.492"/>
|
||||
<use xlink:href="#glyph1-10" x="177.552074" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="186.624018" y="181.492"/>
|
||||
<use xlink:href="#glyph1-12" x="191.052394" y="181.492"/>
|
||||
<use xlink:href="#glyph1-31" x="194.954744" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="199.38312" y="181.492"/>
|
||||
<use xlink:href="#glyph1-14" x="203.811496" y="181.492"/>
|
||||
<use xlink:href="#glyph1-15" x="209.346716" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="214.328016" y="181.492"/>
|
||||
<use xlink:href="#glyph1-10" x="218.756392" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="227.828335" y="181.492"/>
|
||||
<use xlink:href="#glyph1-3" x="232.256711" y="181.492"/>
|
||||
<use xlink:href="#glyph1-10" x="235.024321" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="240.559542" y="181.492"/>
|
||||
<use xlink:href="#glyph1-10" x="244.987918" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="254.069824" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="259.605044" y="181.492"/>
|
||||
<use xlink:href="#glyph1-14" x="264.03342" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="269.568641" y="181.492"/>
|
||||
<use xlink:href="#glyph1-10" x="273.997016" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-32" x="283.06896" y="181.492"/>
|
||||
<use xlink:href="#glyph1-19" x="290.54091" y="181.492"/>
|
||||
<use xlink:href="#glyph1-16" x="296.07613" y="181.492"/>
|
||||
<use xlink:href="#glyph1-9" x="300.006376" y="181.492"/>
|
||||
<use xlink:href="#glyph1-6" x="304.987676" y="181.492"/>
|
||||
<use xlink:href="#glyph1-31" x="308.862131" y="181.492"/>
|
||||
<use xlink:href="#glyph1-29" x="313.290507" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="319.654616" y="181.492"/>
|
||||
<use xlink:href="#glyph1-6" x="323.584862" y="181.492"/>
|
||||
<use xlink:href="#glyph1-9" x="327.459317" y="181.492"/>
|
||||
<use xlink:href="#glyph1-10" x="332.440617" y="181.492"/>
|
||||
<use xlink:href="#glyph1-11" x="337.975837" y="181.492"/>
|
||||
<use xlink:href="#glyph1-9" x="343.511058" y="181.492"/>
|
||||
<use xlink:href="#glyph1-12" x="348.492358" y="181.492"/>
|
||||
<use xlink:href="#glyph1-11" x="352.394708" y="181.492"/>
|
||||
<use xlink:href="#glyph1-25" x="357.929929" y="181.492"/>
|
||||
<use xlink:href="#glyph1-33" x="366.231763" y="181.492"/>
|
||||
<use xlink:href="#glyph1-5" x="371.213063" y="181.492"/>
|
||||
<use xlink:href="#glyph1-3" x="376.194363" y="181.492"/>
|
||||
<use xlink:href="#glyph1-15" x="378.961974" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="387.479997" y="181.492"/>
|
||||
<use xlink:href="#glyph1-3" x="395.781831" y="181.492"/>
|
||||
<use xlink:href="#glyph1-6" x="398.549442" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="405.970582" y="181.492"/>
|
||||
<use xlink:href="#glyph1-3" x="412.751128" y="181.492"/>
|
||||
<use xlink:href="#glyph1-10" x="415.518738" y="181.492"/>
|
||||
<use xlink:href="#glyph1-31" x="421.053959" y="181.492"/>
|
||||
<use xlink:href="#glyph1-14" x="425.482334" y="181.492"/>
|
||||
<use xlink:href="#glyph1-15" x="431.017555" y="181.492"/>
|
||||
<use xlink:href="#glyph1-21" x="435.998855" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-34" x="443.857354" y="181.492"/>
|
||||
<use xlink:href="#glyph1-9" x="451.329304" y="181.492"/>
|
||||
<use xlink:href="#glyph1-12" x="456.310604" y="181.492"/>
|
||||
<use xlink:href="#glyph1-6" x="460.212954" y="181.492"/>
|
||||
<use xlink:href="#glyph1-4" x="464.087409" y="181.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-24" x="124.802" y="193.447"/>
|
||||
<use xlink:href="#glyph1-4" x="130.890145" y="193.447"/>
|
||||
<use xlink:href="#glyph1-3" x="135.318521" y="193.447"/>
|
||||
<use xlink:href="#glyph1-2" x="138.086131" y="193.447"/>
|
||||
<use xlink:href="#glyph1-4" x="140.853741" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="145.282117" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="150.538385" y="193.447"/>
|
||||
<use xlink:href="#glyph1-25" x="156.073605" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-19" x="164.096487" y="193.447"/>
|
||||
<use xlink:href="#glyph1-12" x="169.631707" y="193.447"/>
|
||||
<use xlink:href="#glyph1-27" x="173.534058" y="193.447"/>
|
||||
<use xlink:href="#glyph1-17" x="179.069278" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="183.218701" y="193.447"/>
|
||||
<use xlink:href="#glyph1-4" x="188.753922" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="195.503583" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-35" x="200.482891" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="205.464191" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="210.999411" y="193.447"/>
|
||||
<use xlink:href="#glyph1-4" x="216.534632" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="220.963008" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="228.819514" y="193.447"/>
|
||||
<use xlink:href="#glyph1-3" x="237.121349" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="239.878996" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-31" x="246.074737" y="193.447"/>
|
||||
<use xlink:href="#glyph1-20" x="250.503113" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="257.41915" y="193.447"/>
|
||||
<use xlink:href="#glyph1-3" x="261.847526" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-36" x="266.936422" y="193.447"/>
|
||||
<use xlink:href="#glyph1-9" x="273.992931" y="193.447"/>
|
||||
<use xlink:href="#glyph1-17" x="278.974231" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="283.123654" y="193.447"/>
|
||||
<use xlink:href="#glyph1-16" x="288.381914" y="193.447"/>
|
||||
<use xlink:href="#glyph1-2" x="292.31216" y="193.447"/>
|
||||
<use xlink:href="#glyph1-9" x="295.07977" y="193.447"/>
|
||||
<use xlink:href="#glyph1-16" x="300.06107" y="193.447"/>
|
||||
<use xlink:href="#glyph1-18" x="303.991316" y="193.447"/>
|
||||
<use xlink:href="#glyph1-4" x="309.526537" y="193.447"/>
|
||||
<use xlink:href="#glyph1-16" x="313.954912" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="320.196481" y="193.447"/>
|
||||
<use xlink:href="#glyph1-12" x="324.624857" y="193.447"/>
|
||||
<use xlink:href="#glyph1-31" x="328.527207" y="193.447"/>
|
||||
<use xlink:href="#glyph1-20" x="332.955583" y="193.447"/>
|
||||
<use xlink:href="#glyph1-14" x="340.150573" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="345.685793" y="193.447"/>
|
||||
<use xlink:href="#glyph1-15" x="351.221014" y="193.447"/>
|
||||
<use xlink:href="#glyph1-4" x="356.202314" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="360.63069" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="368.487196" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="375.403233" y="193.447"/>
|
||||
<use xlink:href="#glyph1-12" x="379.831609" y="193.447"/>
|
||||
<use xlink:href="#glyph1-11" x="383.733959" y="193.447"/>
|
||||
<use xlink:href="#glyph1-4" x="389.26918" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="393.697555" y="193.447"/>
|
||||
<use xlink:href="#glyph1-29" x="399.232776" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="404.520924" y="193.447"/>
|
||||
<use xlink:href="#glyph1-9" x="410.056145" y="193.447"/>
|
||||
<use xlink:href="#glyph1-19" x="415.037445" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="420.841655" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="425.270031" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="433.126537" y="193.447"/>
|
||||
<use xlink:href="#glyph1-10" x="435.894148" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="443.740691" y="193.447"/>
|
||||
<use xlink:href="#glyph1-2" x="450.244277" y="193.447"/>
|
||||
<use xlink:href="#glyph1-3" x="453.011887" y="193.447"/>
|
||||
<use xlink:href="#glyph1-4" x="455.779497" y="193.447"/>
|
||||
<use xlink:href="#glyph1-5" x="460.207873" y="193.447"/>
|
||||
<use xlink:href="#glyph1-26" x="465.189173" y="193.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="124.802" y="205.403"/>
|
||||
<use xlink:href="#glyph1-4" x="128.676455" y="205.403"/>
|
||||
<use xlink:href="#glyph1-7" x="133.104831" y="205.403"/>
|
||||
<use xlink:href="#glyph1-6" x="138.363091" y="205.403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="145.555092" y="205.403"/>
|
||||
<use xlink:href="#glyph1-19" x="150.536392" y="205.403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="156.350565" y="205.403"/>
|
||||
<use xlink:href="#glyph1-12" x="160.778941" y="205.403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="167.998837" y="205.403"/>
|
||||
<use xlink:href="#glyph1-3" x="172.427213" y="205.403"/>
|
||||
<use xlink:href="#glyph1-15" x="175.194823" y="205.403"/>
|
||||
<use xlink:href="#glyph1-4" x="180.176123" y="205.403"/>
|
||||
<use xlink:href="#glyph1-10" x="184.604499" y="205.403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="189.860767" y="205.403"/>
|
||||
<use xlink:href="#glyph1-2" x="193.735222" y="205.403"/>
|
||||
<use xlink:href="#glyph1-3" x="196.502832" y="205.403"/>
|
||||
<use xlink:href="#glyph1-17" x="199.270442" y="205.403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="203.419865" y="205.403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="124.802" y="217.358"/>
|
||||
<use xlink:href="#glyph1-3" x="130.337221" y="217.358"/>
|
||||
<use xlink:href="#glyph1-17" x="133.104831" y="217.358"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="137.254254" y="217.358"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="142.510521" y="217.358"/>
|
||||
<use xlink:href="#glyph1-16" x="146.384977" y="217.358"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-37" x="153.642731" y="217.358"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="158.622038" y="217.358"/>
|
||||
<use xlink:href="#glyph1-12" x="163.050414" y="217.358"/>
|
||||
<use xlink:href="#glyph1-2" x="166.952764" y="217.358"/>
|
||||
<use xlink:href="#glyph1-28" x="169.720375" y="217.358"/>
|
||||
<use xlink:href="#glyph1-12" x="174.701675" y="217.358"/>
|
||||
<use xlink:href="#glyph1-4" x="178.604025" y="217.358"/>
|
||||
<use xlink:href="#glyph1-10" x="183.032401" y="217.358"/>
|
||||
<use xlink:href="#glyph1-21" x="188.567621" y="217.358"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
20
sections/german/03/absätze.tex
Normal file
@ -0,0 +1,20 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\section*{Absätze}
|
||||
Fließtext kann direkt in den Quelltext
|
||||
geschrieben werden.
|
||||
Einfache Zeilenumbrüche
|
||||
werden dabei ignoriert,
|
||||
genau wie mehrere Leerzeichen.
|
||||
|
||||
Leerzeilen erzeugen einen neuen Absatz, standardmäßig mit Einzug.
|
||||
Harte Zeilenumbrüche können mit zwei Backslashes erzwungen werden,
|
||||
haben in Fließtext aber eigentlich \\
|
||||
nichts verloren.
|
||||
\end{document}
|
||||
544
sections/german/03/contents-crop.svg
Normal file
@ -0,0 +1,544 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="147pt" height="280pt" viewBox="0 0 147 280" 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 1.6875 -9.828125 C 1.4375 -9.828125 1.390625 -9.5 1.390625 -9.328125 L 1.390625 -0.75 C 1.390625 -0.65625 1.375 -0.578125 1.375 -0.484375 C 1.375 -0.1875 1.546875 -0.015625 1.828125 -0.015625 L 2.703125 -0.015625 C 3.15625 -0.015625 3.203125 -0.25 3.203125 -0.515625 L 3.203125 -9.125 C 3.203125 -9.203125 3.21875 -9.296875 3.21875 -9.375 C 3.21875 -9.75 2.984375 -9.84375 2.734375 -9.84375 L 1.875 -9.84375 C 1.8125 -9.84375 1.75 -9.84375 1.6875 -9.828125 Z M 1.6875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.78125 -5.46875 C 2.765625 -5.546875 2.75 -5.640625 2.75 -5.71875 C 2.75 -5.84375 2.765625 -5.953125 2.765625 -6.046875 C 2.765625 -6.28125 2.703125 -6.515625 2.421875 -6.546875 L 1.375 -6.546875 C 1.140625 -6.484375 1.0625 -6.296875 1.0625 -6.0625 L 1.0625 -0.453125 C 1.0625 -0.046875 1.328125 -0.015625 1.578125 -0.015625 L 2.359375 -0.015625 C 2.796875 -0.015625 2.828125 -0.28125 2.828125 -0.53125 L 2.828125 -3.40625 C 2.828125 -4.21875 2.96875 -5.375 4.21875 -5.671875 C 4.3125 -5.6875 4.4375 -5.6875 4.546875 -5.6875 C 5.546875 -5.6875 5.640625 -5.0625 5.640625 -4.453125 L 5.640625 -0.71875 C 5.640625 -0.625 5.625 -0.546875 5.625 -0.453125 C 5.625 -0.21875 5.75 -0.015625 6.0625 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.40625 -0.109375 7.40625 -0.5 L 7.40625 -4.375 C 7.40625 -4.953125 7.375 -5.609375 6.953125 -6.046875 C 6.46875 -6.5625 5.78125 -6.609375 5.125 -6.609375 L 4.9375 -6.609375 C 4.125 -6.546875 3.140625 -6.15625 2.78125 -5.46875 Z M 2.78125 -5.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.796875 -5.515625 L 2.796875 -9.765625 C 2.796875 -10.078125 2.703125 -10.265625 2.25 -10.265625 C 2.09375 -10.265625 1.9375 -10.25 1.78125 -10.25 C 1.6875 -10.25 1.609375 -10.265625 1.515625 -10.265625 C 1.296875 -10.265625 1.0625 -10.140625 1.0625 -9.859375 L 1.0625 -0.53125 C 1.0625 -0.296875 1.078125 -0.109375 1.375 -0.015625 L 2.3125 -0.015625 C 2.671875 -0.015625 2.828125 -0.171875 2.828125 -0.53125 L 2.828125 -3.5625 C 2.828125 -4.515625 3.3125 -5.6875 4.53125 -5.6875 C 5.5 -5.6875 5.640625 -5.125 5.640625 -4.484375 L 5.640625 -0.515625 C 5.640625 -0.1875 5.75 -0.015625 6.078125 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.421875 -0.15625 7.421875 -0.5 C 7.421875 -0.609375 7.40625 -0.703125 7.40625 -0.78125 L 7.40625 -4.21875 C 7.40625 -4.765625 7.40625 -5.328125 7.125 -5.828125 C 6.734375 -6.53125 5.859375 -6.609375 5.15625 -6.609375 C 4.1875 -6.609375 3.390625 -6.203125 2.796875 -5.515625 Z M 2.796875 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.859375 C 3.34375 -3.859375 0.484375 -3.640625 0.484375 -1.796875 C 0.484375 -0.65625 1.46875 0.109375 2.578125 0.109375 C 3.4375 0.109375 4.40625 -0.0625 5.09375 -0.609375 L 5.09375 -0.453125 C 5.09375 -0.015625 5.390625 -0.015625 5.640625 -0.015625 L 6.359375 -0.015625 C 6.59375 -0.015625 6.828125 -0.09375 6.828125 -0.453125 L 6.828125 -4.578125 C 6.71875 -6.328125 5.265625 -6.6875 3.984375 -6.6875 C 3.125 -6.6875 2.328125 -6.546875 1.515625 -6.203125 C 1.375 -6.125 1.140625 -6.09375 1.140625 -5.90625 C 1.140625 -5.546875 1.15625 -4.8125 1.359375 -4.8125 C 1.4375 -4.8125 1.484375 -4.859375 1.546875 -4.90625 C 2.1875 -5.484375 2.9375 -5.796875 3.828125 -5.796875 C 4.671875 -5.796875 5.0625 -5.328125 5.0625 -4.328125 Z M 5.0625 -3.140625 L 5.0625 -2 C 5.0625 -1.125 4.234375 -0.796875 3.484375 -0.796875 C 2.96875 -0.796875 2.1875 -1.078125 2.1875 -1.8125 C 2.1875 -3.03125 4.265625 -3.078125 5.0625 -3.140625 Z M 5.0625 -3.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 1.375 -10.234375 C 1.125 -10.234375 1.078125 -9.90625 1.078125 -9.734375 L 1.078125 -0.78125 C 1.078125 -0.703125 1.0625 -0.609375 1.0625 -0.5 C 1.0625 -0.265625 1.171875 -0.046875 1.40625 -0.015625 L 2.265625 -0.015625 C 2.75 -0.015625 2.8125 -0.21875 2.8125 -0.484375 L 2.8125 -9.484375 C 2.8125 -9.5625 2.828125 -9.65625 2.828125 -9.75 C 2.828125 -10 2.734375 -10.234375 2.46875 -10.25 L 1.59375 -10.25 C 1.515625 -10.25 1.453125 -10.25 1.375 -10.234375 Z M 1.375 -10.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 1.46875 -6.484375 L 0.75 -6.484375 C 0.46875 -6.484375 0.28125 -6.3125 0.28125 -6.03125 C 0.28125 -5.765625 0.453125 -5.609375 0.71875 -5.609375 L 1.4375 -5.609375 L 1.4375 -1.828125 C 1.4375 -0.890625 1.671875 0.109375 2.890625 0.109375 C 3.703125 0.109375 4.5625 -0.046875 5.265625 -0.421875 C 5.34375 -0.453125 5.46875 -0.5 5.46875 -0.609375 L 5.46875 -0.640625 C 5.46875 -0.828125 5.328125 -1.34375 5.171875 -1.34375 C 5.046875 -1.34375 4.875 -1.1875 4.734375 -1.109375 C 4.453125 -0.953125 4.109375 -0.859375 3.796875 -0.859375 C 3.234375 -0.859375 3.140625 -1.390625 3.140625 -2.140625 L 3.140625 -5.609375 L 4.734375 -5.609375 C 5 -5.609375 5.21875 -5.75 5.21875 -6.03125 C 5.21875 -6.34375 5.03125 -6.484375 4.71875 -6.484375 L 3.140625 -6.484375 L 3.140625 -7.84375 C 3.140625 -8.1875 3.015625 -8.34375 2.609375 -8.34375 C 2.515625 -8.34375 2.390625 -8.328125 2.296875 -8.328125 C 2.1875 -8.328125 2.09375 -8.34375 2 -8.34375 C 1.71875 -8.34375 1.46875 -8.28125 1.46875 -7.84375 Z M 1.46875 -6.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 2.84375 -6.6875 C 1.84375 -6.578125 0.546875 -6.34375 0.546875 -4.703125 C 0.546875 -3.59375 1.5 -2.9375 2.5 -2.71875 C 3.25 -2.5625 4.640625 -2.53125 4.640625 -1.703125 C 4.640625 -0.96875 3.796875 -0.890625 3.328125 -0.890625 C 2.4375 -0.890625 1.671875 -1.1875 0.984375 -1.828125 C 0.953125 -1.859375 0.859375 -1.9375 0.78125 -1.9375 C 0.609375 -1.9375 0.625 -1.65625 0.609375 -1.5 C 0.578125 -1.25 0.453125 -0.96875 0.453125 -0.703125 C 0.453125 -0.5625 0.578125 -0.53125 0.6875 -0.453125 C 1.515625 -0.09375 2.421875 0.125 3.328125 0.125 C 4.484375 0.125 5.9375 -0.21875 5.9375 -2 C 5.9375 -3.015625 5.109375 -3.75 4.171875 -4.015625 C 3.734375 -4.125 3.265625 -4.1875 2.828125 -4.265625 C 2.4375 -4.34375 1.84375 -4.515625 1.84375 -5 L 1.84375 -5.078125 C 1.96875 -5.71875 2.625 -5.75 3.140625 -5.75 C 3.90625 -5.75 4.5625 -5.53125 5.15625 -5.09375 C 5.203125 -5.0625 5.265625 -5 5.328125 -5 C 5.53125 -5 5.640625 -5.875 5.640625 -6.0625 C 5.640625 -6.265625 5.21875 -6.359375 4.984375 -6.421875 C 4.453125 -6.609375 3.890625 -6.6875 3.3125 -6.6875 Z M 2.84375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 3.78125 -1.453125 C 3.265625 -2.71875 2.8125 -3.9375 2.34375 -5.21875 L 2.078125 -5.90625 C 1.921875 -6.28125 1.78125 -6.484375 1.328125 -6.484375 L 0.609375 -6.484375 C 0.484375 -6.46875 0.390625 -6.390625 0.359375 -6.265625 L 0.359375 -6.203125 C 0.359375 -6.078125 0.4375 -5.953125 0.46875 -5.84375 C 1.125 -4.078125 1.796875 -2.34375 2.46875 -0.609375 C 2.609375 -0.265625 2.703125 -0.015625 3.21875 -0.015625 L 4.28125 -0.015625 C 4.984375 -0.015625 5.0625 -0.5625 5.34375 -1.328125 C 5.90625 -2.84375 6.484375 -4.3125 7.0625 -5.796875 C 7.09375 -5.921875 7.1875 -6.0625 7.1875 -6.203125 C 7.1875 -6.40625 7.015625 -6.484375 6.828125 -6.484375 L 6.671875 -6.484375 C 6.5625 -6.484375 6.40625 -6.5 6.28125 -6.5 C 5.65625 -6.5 5.515625 -6.0625 5.34375 -5.546875 C 4.921875 -4.5 4.546875 -3.453125 4.140625 -2.40625 L 3.9375 -1.84375 C 3.875 -1.71875 3.8125 -1.59375 3.78125 -1.453125 Z M 3.78125 -1.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 2.15625 -3 L 6.5625 -3 C 6.9375 -3 7.0625 -3.203125 7.0625 -3.484375 C 7.0625 -5.140625 6.375 -6.6875 3.9375 -6.6875 C 3 -6.6875 2 -6.46875 1.3125 -5.796875 C 0.65625 -5.140625 0.453125 -4.171875 0.453125 -3.28125 C 0.453125 -2.5 0.609375 -1.671875 1.125 -1.0625 C 1.84375 -0.140625 3.0625 0.109375 4.15625 0.109375 C 4.984375 0.109375 5.828125 -0.0625 6.5625 -0.40625 C 6.6875 -0.453125 6.921875 -0.53125 6.953125 -0.671875 L 6.953125 -0.734375 C 6.953125 -1.03125 6.9375 -1.65625 6.78125 -1.703125 L 6.75 -1.703125 C 6.625 -1.703125 6.484375 -1.5625 6.390625 -1.484375 C 5.78125 -1.046875 4.984375 -0.796875 4.21875 -0.796875 C 3.234375 -0.796875 2.15625 -1.3125 2.15625 -2.890625 Z M 2.171875 -3.796875 C 2.171875 -4.859375 2.828125 -5.765625 3.9375 -5.765625 C 5.28125 -5.765625 5.4375 -4.6875 5.515625 -3.796875 Z M 2.171875 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.21875 C 2.75 -5.328125 2.75 -5.421875 2.75 -5.515625 L 2.75 -6.09375 C 2.75 -6.484375 2.515625 -6.546875 2.25 -6.546875 L 1.5 -6.546875 C 1.265625 -6.546875 1.0625 -6.40625 1.0625 -6.0625 C 1.0625 -5.984375 1.078125 -5.90625 1.078125 -5.84375 L 1.078125 -0.546875 C 1.078125 -0.296875 1.109375 -0.015625 1.5 -0.015625 L 2.3125 -0.015625 C 2.546875 -0.015625 2.8125 -0.078125 2.8125 -0.4375 L 2.8125 -2.765625 C 2.8125 -3.25 2.8125 -3.71875 3.0625 -4.140625 C 3.46875 -4.859375 4.265625 -5.234375 5.0625 -5.3125 L 5.15625 -5.3125 C 5.3125 -5.3125 5.359375 -5.34375 5.359375 -5.515625 L 5.359375 -6.375 C 5.359375 -6.546875 5.3125 -6.609375 5.140625 -6.609375 C 4.21875 -6.609375 3.0625 -5.921875 2.765625 -5.21875 Z M 2.765625 -5.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 4.5625 -5.609375 C 4.15625 -5.09375 3.71875 -4.609375 3.28125 -4.109375 C 2.453125 -3.109375 1.640625 -2.140625 0.796875 -1.171875 C 0.65625 -1 0.453125 -0.84375 0.453125 -0.59375 L 0.453125 -0.46875 C 0.453125 -0.171875 0.578125 -0.015625 0.953125 -0.015625 L 5.921875 -0.015625 C 6 -0.015625 6.0625 0 6.15625 0 C 6.578125 0 6.625 -0.265625 6.625 -0.53125 C 6.625 -0.75 6.5625 -1 6.203125 -1 L 6.09375 -1 C 4.890625 -1 3.703125 -0.953125 2.5 -0.953125 C 2.84375 -1.375 3.21875 -1.796875 3.578125 -2.203125 L 6.234375 -5.359375 C 6.40625 -5.546875 6.59375 -5.703125 6.59375 -6.015625 C 6.59375 -6.40625 6.375 -6.484375 6.109375 -6.484375 L 1.171875 -6.484375 C 0.78125 -6.484375 0.6875 -6.28125 0.6875 -6.03125 C 0.6875 -5.78125 0.78125 -5.5625 1.109375 -5.5625 L 1.21875 -5.5625 C 1.390625 -5.5625 1.578125 -5.5625 1.75 -5.578125 L 1.921875 -5.578125 C 2.140625 -5.578125 2.359375 -5.5625 2.5625 -5.5625 C 2.796875 -5.5625 3.015625 -5.59375 3.234375 -5.59375 L 3.625 -5.59375 C 3.9375 -5.59375 4.25 -5.609375 4.5625 -5.609375 Z M 4.5625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 1.375 -6.46875 C 1.140625 -6.421875 1.078125 -6.21875 1.078125 -6.015625 L 1.078125 -0.46875 C 1.078125 -0.078125 1.328125 -0.015625 1.609375 -0.015625 L 2.359375 -0.015625 C 2.734375 -0.015625 2.8125 -0.25 2.8125 -0.515625 L 2.8125 -6.03125 C 2.8125 -6.359375 2.640625 -6.484375 2.34375 -6.484375 L 1.546875 -6.484375 C 1.484375 -6.484375 1.4375 -6.484375 1.375 -6.46875 Z M 1.328125 -10.171875 C 1.109375 -10.140625 1.03125 -9.90625 1.03125 -9.71875 L 1.03125 -8.8125 C 1.03125 -8.484375 1.234375 -8.375 1.484375 -8.375 L 2.359375 -8.375 C 2.625 -8.375 2.84375 -8.46875 2.84375 -8.8125 L 2.84375 -9.75 C 2.84375 -10.109375 2.609375 -10.1875 2.375 -10.1875 L 1.515625 -10.1875 C 1.453125 -10.1875 1.390625 -10.1875 1.328125 -10.171875 Z M 1.328125 -10.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 3.78125 -6.6875 C 3.578125 -6.65625 3.359375 -6.640625 3.140625 -6.609375 C 2.515625 -6.5 1.890625 -6.25 1.421875 -5.8125 C 0.765625 -5.171875 0.546875 -4.21875 0.546875 -3.3125 C 0.546875 -2.4375 0.703125 -1.53125 1.3125 -0.859375 C 2.015625 -0.09375 3.109375 0.109375 4.109375 0.109375 C 5.015625 0.109375 5.9375 -0.078125 6.734375 -0.5 C 6.828125 -0.546875 6.859375 -0.609375 6.859375 -0.6875 C 6.859375 -1.03125 6.8125 -1.71875 6.65625 -1.734375 L 6.640625 -1.734375 C 6.484375 -1.734375 6.171875 -1.4375 5.953125 -1.3125 C 5.40625 -1 4.78125 -0.859375 4.15625 -0.859375 C 2.53125 -0.859375 2.3125 -2.15625 2.3125 -3.234375 C 2.3125 -4.375 2.484375 -5.703125 4.15625 -5.703125 C 4.953125 -5.703125 5.5 -5.5625 6.203125 -5.015625 C 6.28125 -4.96875 6.375 -4.859375 6.46875 -4.859375 C 6.625 -4.859375 6.625 -5.09375 6.640625 -5.171875 L 6.734375 -5.6875 C 6.734375 -5.765625 6.765625 -5.84375 6.765625 -5.90625 C 6.765625 -6.203125 5.703125 -6.53125 5.296875 -6.59375 C 4.953125 -6.671875 4.609375 -6.6875 4.265625 -6.6875 Z M 3.78125 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 3.4375 -8.5 L 3.4375 -0.890625 L 1.859375 -0.890625 C 1.546875 -0.890625 1.375 -0.734375 1.375 -0.4375 C 1.375 -0.171875 1.546875 -0.015625 1.859375 -0.015625 L 6.734375 -0.015625 C 6.984375 -0.046875 7.078125 -0.25 7.078125 -0.46875 C 7.078125 -0.71875 6.921875 -0.90625 6.59375 -0.90625 C 6.5 -0.90625 6.40625 -0.890625 6.328125 -0.890625 L 5.1875 -0.890625 L 5.1875 -9.703125 C 5.1875 -10.0625 4.9375 -10.109375 4.6875 -10.109375 C 4.265625 -10.109375 4.046875 -9.734375 3.703125 -9.546875 C 3.140625 -9.25 2.5 -9.15625 1.859375 -9.140625 C 1.59375 -9.140625 1.296875 -9.109375 1.296875 -8.671875 C 1.296875 -8.390625 1.484375 -8.25 1.796875 -8.25 C 2.359375 -8.296875 2.890625 -8.328125 3.4375 -8.5 Z M 3.4375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 4.65625 -8.609375 L 4.65625 -0.4375 C 4.65625 -0.171875 4.8125 -0.015625 5.109375 -0.015625 L 6 -0.015625 C 6.4375 -0.015625 6.46875 -0.265625 6.46875 -0.5 L 6.46875 -8.609375 C 7.609375 -8.609375 8.765625 -8.546875 9.90625 -8.546875 L 10.078125 -8.546875 C 10.5 -8.546875 10.546875 -8.796875 10.546875 -9.015625 L 10.546875 -9.3125 C 10.546875 -9.5 10.515625 -9.78125 10.125 -9.78125 L 1.34375 -9.78125 C 1.265625 -9.78125 1.171875 -9.796875 1.078125 -9.796875 C 0.765625 -9.796875 0.59375 -9.625 0.59375 -9.328125 L 0.59375 -9.03125 C 0.59375 -8.75 0.640625 -8.53125 1.140625 -8.53125 C 1.265625 -8.53125 1.40625 -8.546875 1.53125 -8.5625 L 1.984375 -8.5625 C 2.125 -8.5625 2.28125 -8.5625 2.4375 -8.578125 L 3.1875 -8.578125 C 3.671875 -8.59375 4.171875 -8.609375 4.65625 -8.609375 Z M 4.65625 -8.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 2.015625 -9.828125 C 1.8125 -9.78125 1.71875 -9.609375 1.71875 -9.375 L 1.71875 -8.5 C 1.71875 -8.265625 1.828125 -8.03125 2.109375 -8.03125 L 3.03125 -8.03125 C 3.296875 -8.03125 3.53125 -8.109375 3.53125 -8.453125 L 3.53125 -9.40625 C 3.53125 -9.765625 3.296875 -9.84375 3.0625 -9.84375 L 2.203125 -9.84375 C 2.140625 -9.84375 2.078125 -9.84375 2.015625 -9.828125 Z M 5.21875 -9.828125 C 5 -9.78125 4.9375 -9.625 4.9375 -9.40625 L 4.9375 -8.46875 C 4.9375 -8.1875 5.078125 -8.03125 5.359375 -8.03125 L 6.25 -8.03125 C 6.515625 -8.03125 6.734375 -8.125 6.734375 -8.5 L 6.734375 -9.296875 C 6.734375 -9.625 6.640625 -9.84375 6.28125 -9.84375 L 5.40625 -9.84375 C 5.328125 -9.84375 5.28125 -9.84375 5.21875 -9.828125 Z M 5.21875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 1.421875 -6.484375 L 0.953125 -6.484375 C 0.640625 -6.484375 0.4375 -6.359375 0.4375 -6.03125 C 0.4375 -5.75 0.609375 -5.609375 0.953125 -5.609375 L 1.421875 -5.609375 L 1.421875 -0.84375 C 1.421875 -0.75 1.40625 -0.640625 1.40625 -0.53125 C 1.40625 -0.265625 1.484375 -0.015625 1.84375 -0.015625 L 2.65625 -0.015625 C 3.0625 -0.015625 3.15625 -0.234375 3.15625 -0.546875 L 3.15625 -5.609375 L 4.078125 -5.609375 C 4.140625 -5.609375 4.234375 -5.59375 4.296875 -5.59375 C 4.59375 -5.59375 4.75 -5.796875 4.75 -6.046875 C 4.75 -6.328125 4.59375 -6.484375 4.28125 -6.484375 L 3.125 -6.484375 L 3.125 -8.234375 C 3.125 -8.875 3.265625 -9.46875 4.265625 -9.46875 C 4.6875 -9.46875 5.078125 -9.34375 5.390625 -9.0625 C 5.453125 -9.015625 5.515625 -8.984375 5.578125 -8.984375 L 5.609375 -8.984375 C 5.6875 -9.015625 5.703125 -9.109375 5.703125 -9.1875 L 5.703125 -10.125 C 5.65625 -10.40625 4.515625 -10.40625 4.21875 -10.40625 C 3.40625 -10.40625 2.578125 -10.234375 2.015625 -9.65625 C 1.625 -9.234375 1.46875 -8.65625 1.421875 -8.109375 Z M 7.71875 -5.609375 L 8.640625 -5.609375 C 8.703125 -5.609375 8.796875 -5.59375 8.859375 -5.59375 C 9.15625 -5.59375 9.3125 -5.796875 9.3125 -6.046875 C 9.3125 -6.328125 9.15625 -6.484375 8.84375 -6.484375 L 7.6875 -6.484375 L 7.6875 -7.875 C 7.6875 -8.015625 7.671875 -8.15625 7.671875 -8.3125 C 7.671875 -8.921875 7.90625 -9.484375 8.828125 -9.484375 C 9.171875 -9.484375 9.515625 -9.375 9.765625 -9.203125 C 9.875 -9.15625 10.015625 -8.984375 10.140625 -8.984375 C 10.28125 -8.984375 10.28125 -9.125 10.28125 -9.203125 L 10.28125 -10.046875 C 10.28125 -10.390625 9.53125 -10.34375 9.1875 -10.390625 L 8.96875 -10.390625 C 7.953125 -10.390625 6.78125 -10.25 6.25 -9.1875 C 6.015625 -8.6875 5.984375 -8.15625 5.984375 -7.625 L 5.984375 -0.484375 C 5.984375 -0.1875 6.09375 0 6.515625 0 C 6.65625 0 6.8125 -0.015625 6.953125 -0.015625 C 7.046875 -0.015625 7.140625 0 7.234375 0 C 7.46875 0 7.71875 -0.09375 7.71875 -0.421875 Z M 7.71875 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 5.671875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 2.40625 -1.25 C 3.34375 -2.0625 4.265625 -2.921875 5.234375 -3.703125 C 6.203125 -4.46875 7.359375 -5.4375 7.40625 -6.8125 L 7.40625 -6.921875 C 7.40625 -8.875 5.765625 -10.109375 3.90625 -10.109375 C 2.6875 -10.109375 1.5625 -9.609375 0.96875 -8.515625 C 0.859375 -8.34375 0.703125 -8.09375 0.703125 -7.953125 L 0.703125 -7.921875 C 0.703125 -7.71875 1.3125 -7.125 1.4375 -6.96875 C 1.46875 -6.9375 1.515625 -6.90625 1.578125 -6.90625 L 1.609375 -6.90625 C 1.734375 -6.953125 1.84375 -7.46875 1.9375 -7.703125 C 2.234375 -8.390625 2.78125 -8.953125 3.640625 -8.953125 C 4.703125 -8.953125 5.625 -8.140625 5.625 -6.90625 C 5.625 -5.65625 4.671875 -4.65625 3.8125 -3.859375 C 2.90625 -3 2.015625 -2.140625 1.140625 -1.25 C 0.984375 -1.109375 0.796875 -0.984375 0.796875 -0.78125 C 0.796875 -0.703125 0.8125 -0.640625 0.8125 -0.59375 L 0.8125 -0.484375 C 0.8125 -0.140625 0.984375 -0.015625 1.296875 -0.015625 L 6.9375 -0.015625 C 7.171875 -0.015625 7.40625 -0.09375 7.40625 -0.4375 L 7.40625 -0.78125 C 7.40625 -1.015625 7.359375 -1.28125 6.984375 -1.28125 L 6.78125 -1.28125 C 6.484375 -1.28125 6.1875 -1.265625 5.875 -1.265625 L 4.546875 -1.265625 C 3.828125 -1.265625 3.125 -1.25 2.40625 -1.25 Z M 2.40625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 2.8125 -5.875 L 2.8125 -6.03125 C 2.8125 -6.46875 2.53125 -6.484375 2.265625 -6.484375 L 1.59375 -6.484375 C 1.34375 -6.484375 1.078125 -6.421875 1.078125 -6.046875 L 1.078125 2.421875 C 1.109375 2.671875 1.3125 2.765625 1.53125 2.765625 L 2.34375 2.765625 C 2.5625 2.765625 2.84375 2.734375 2.84375 2.359375 L 2.84375 -0.59375 C 3.328125 -0.140625 3.984375 0.109375 4.640625 0.109375 C 5.609375 0.109375 6.703125 -0.125 7.296875 -0.96875 C 7.78125 -1.609375 7.921875 -2.5 7.921875 -3.265625 C 7.921875 -4.75 7.484375 -6.609375 5.09375 -6.609375 C 4.28125 -6.609375 3.453125 -6.390625 2.8125 -5.875 Z M 6.140625 -2.953125 C 6.03125 -1.9375 5.734375 -0.796875 4.203125 -0.796875 C 3.703125 -0.796875 2.84375 -1.15625 2.84375 -1.703125 L 2.84375 -4.921875 C 2.890625 -5.3125 3.78125 -5.640625 4.359375 -5.640625 C 5.84375 -5.640625 6.15625 -4.3125 6.15625 -3.234375 C 6.15625 -3.140625 6.15625 -3.046875 6.140625 -2.953125 Z M 6.140625 -2.953125 "/>
|
||||
</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 0.453125 -7.453125 L 0.453125 -7.125 C 0.59375 -7.125 0.71875 -7.140625 0.84375 -7.140625 C 1.203125 -7.140625 1.515625 -7.09375 1.515625 -6.65625 L 1.515625 -0.984375 C 1.515625 -0.921875 1.53125 -0.84375 1.53125 -0.78125 C 1.53125 -0.375 1.171875 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 3.46875 -0.015625 C 3.703125 -0.015625 3.921875 0 4.171875 0 C 5.21875 0 6.203125 -0.390625 6.90625 -1.328125 C 7.421875 -2 7.671875 -2.84375 7.671875 -3.6875 C 7.671875 -5.375 6.5625 -7.25 4.671875 -7.4375 C 4.5 -7.453125 4.3125 -7.453125 4.140625 -7.453125 Z M 6.65625 -3.8125 L 6.65625 -3.28125 C 6.59375 -2.0625 6.171875 -0.84375 4.765625 -0.421875 C 4.453125 -0.34375 4.125 -0.34375 3.796875 -0.34375 L 2.828125 -0.34375 C 2.609375 -0.34375 2.375 -0.359375 2.375 -0.734375 C 2.375 -0.8125 2.390625 -0.875 2.390625 -0.9375 L 2.390625 -6.34375 C 2.390625 -6.4375 2.375 -6.546875 2.375 -6.65625 C 2.375 -7.03125 2.421875 -7.125 3.03125 -7.125 L 4.21875 -7.125 C 4.78125 -7.125 5.375 -6.828125 5.796875 -6.4375 C 6.484375 -5.765625 6.640625 -4.75 6.65625 -3.8125 Z M 6.65625 -3.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 1.1875 -2.546875 L 4.34375 -2.546875 C 4.453125 -2.546875 4.5 -2.59375 4.5 -2.703125 C 4.5 -3.78125 3.921875 -4.859375 2.59375 -4.859375 C 1.28125 -4.859375 0.3125 -3.671875 0.3125 -2.421875 C 0.3125 -1.234375 1.171875 0.09375 2.640625 0.09375 C 3.46875 0.09375 4.171875 -0.34375 4.46875 -1.1875 C 4.484375 -1.234375 4.5 -1.265625 4.5 -1.3125 C 4.5 -1.375 4.4375 -1.421875 4.390625 -1.421875 C 4.203125 -1.421875 4.140625 -1.0625 4.078125 -0.9375 C 3.8125 -0.484375 3.296875 -0.15625 2.765625 -0.15625 C 2.15625 -0.15625 1.625 -0.59375 1.390625 -1.140625 C 1.203125 -1.578125 1.1875 -2.078125 1.1875 -2.546875 Z M 1.203125 -2.765625 C 1.203125 -3.609375 1.671875 -4.640625 2.578125 -4.640625 C 3.515625 -4.640625 3.796875 -3.546875 3.796875 -2.765625 Z M 1.203125 -2.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.484375 -4.359375 C 0.8125 -4.359375 1.140625 -4.328125 1.140625 -3.8125 L 1.140625 -0.796875 C 1.140625 -0.34375 0.84375 -0.34375 0.375 -0.34375 L 0.3125 -0.34375 L 0.3125 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.78125 -0.34375 2.65625 -0.328125 2.515625 -0.328125 C 2.171875 -0.328125 1.859375 -0.375 1.859375 -0.78125 L 1.859375 -2.265625 C 1.859375 -3.125 2.03125 -4.578125 3.125 -4.578125 C 3.171875 -4.578125 3.21875 -4.5625 3.265625 -4.5625 C 3.109375 -4.5 3.015625 -4.3125 3.015625 -4.15625 C 3.015625 -3.921875 3.203125 -3.734375 3.421875 -3.703125 C 3.734375 -3.703125 3.921875 -3.90625 3.921875 -4.171875 C 3.921875 -4.59375 3.5 -4.8125 3.140625 -4.8125 C 2.453125 -4.8125 1.9375 -4.1875 1.8125 -3.625 L 1.796875 -4.8125 Z M 0.3125 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 0.953125 -0.40625 C 1.140625 -0.078125 1.71875 0.09375 2.109375 0.09375 C 2.875 0.09375 3.8125 -0.15625 3.90625 -1.3125 C 3.90625 -2.03125 3.515625 -2.515625 2.90625 -2.765625 C 2.640625 -2.875 2.34375 -2.90625 2.078125 -2.96875 L 1.84375 -3.015625 C 1.421875 -3.09375 0.859375 -3.3125 0.859375 -3.84375 C 0.859375 -4.484375 1.578125 -4.671875 2.109375 -4.671875 C 2.90625 -4.671875 3.28125 -4.171875 3.375 -3.453125 C 3.375 -3.359375 3.375 -3.25 3.5 -3.25 C 3.625 -3.25 3.625 -3.359375 3.625 -3.453125 L 3.625 -4.734375 C 3.625 -4.78125 3.59375 -4.859375 3.515625 -4.859375 C 3.34375 -4.859375 3.234375 -4.5625 3.125 -4.5625 C 3.046875 -4.578125 2.984375 -4.640625 2.921875 -4.671875 C 2.6875 -4.8125 2.40625 -4.859375 2.125 -4.859375 C 1.46875 -4.859375 0.359375 -4.640625 0.359375 -3.5625 C 0.359375 -2.375 1.671875 -2.25 2.4375 -2.09375 C 2.90625 -2 3.390625 -1.671875 3.40625 -1.140625 C 3.40625 -0.34375 2.703125 -0.125 2.140625 -0.125 C 1.28125 -0.125 0.875 -0.796875 0.671875 -1.53125 C 0.640625 -1.640625 0.671875 -1.875 0.484375 -1.875 C 0.421875 -1.875 0.359375 -1.828125 0.359375 -1.75 L 0.359375 -0.3125 C 0.359375 -0.25 0.34375 -0.1875 0.34375 -0.125 C 0.34375 -0.03125 0.375 0.09375 0.484375 0.09375 C 0.640625 0.078125 0.78125 -0.265625 0.953125 -0.40625 Z M 0.953125 -0.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 1.609375 -6.71875 C 1.609375 -5.984375 1.3125 -4.609375 0.203125 -4.609375 L 0.203125 -4.375 L 1.140625 -4.375 L 1.140625 -1.46875 C 1.140625 -1.140625 1.15625 -0.8125 1.3125 -0.53125 C 1.578125 -0.09375 2.078125 0.09375 2.546875 0.09375 C 3.421875 0.09375 3.609375 -0.859375 3.609375 -1.5625 L 3.609375 -1.984375 L 3.34375 -1.984375 C 3.34375 -1.828125 3.359375 -1.65625 3.359375 -1.5 C 3.359375 -0.984375 3.25 -0.15625 2.609375 -0.15625 C 1.984375 -0.15625 1.875 -0.921875 1.875 -1.421875 L 1.875 -4.375 L 3.421875 -4.375 L 3.421875 -4.703125 L 1.875 -4.703125 L 1.875 -6.71875 Z M 1.609375 -6.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 0.34375 -0.34375 L 0.34375 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.34375 C 2.25 -0.34375 1.796875 -0.5 1.796875 -0.875 L 1.796875 -0.890625 C 1.796875 -1.0625 1.90625 -1.25 1.96875 -1.421875 C 2.109375 -1.78125 2.28125 -2.1875 2.359375 -2.546875 L 5.03125 -2.546875 C 5.234375 -2.546875 5.34375 -1.984375 5.4375 -1.703125 C 5.546875 -1.375 5.796875 -0.890625 5.796875 -0.671875 C 5.796875 -0.34375 5.265625 -0.34375 4.96875 -0.34375 L 4.96875 -0.015625 L 6.21875 -0.015625 L 6.453125 -0.046875 L 7.234375 -0.046875 L 7.765625 -0.015625 L 7.765625 -0.34375 L 7.484375 -0.34375 C 7.25 -0.34375 7.015625 -0.359375 6.859375 -0.484375 C 6.71875 -0.625 6.671875 -0.84375 6.625 -1.03125 C 6.046875 -2.625 5.46875 -4.234375 4.90625 -5.84375 L 4.28125 -7.609375 C 4.234375 -7.734375 4.203125 -7.796875 4.0625 -7.796875 C 3.84375 -7.796875 3.8125 -7.5625 3.734375 -7.359375 C 3 -5.328125 2.296875 -3.28125 1.578125 -1.21875 C 1.390625 -0.78125 1.21875 -0.34375 0.34375 -0.34375 Z M 2.46875 -2.875 L 3.75 -6.46875 L 5.03125 -2.875 Z M 2.46875 -2.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 0.3125 -7.453125 L 0.3125 -7.125 L 0.46875 -7.125 C 0.8125 -7.125 1.140625 -7.09375 1.140625 -6.59375 L 1.140625 -0.015625 L 1.390625 -0.03125 L 1.8125 -0.703125 C 2.078125 -0.1875 2.6875 0.09375 3.25 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.59375 4.71875 -4.8125 3.28125 -4.8125 C 2.703125 -4.8125 2.25 -4.53125 1.859375 -4.09375 L 1.859375 -7.578125 Z M 4.75 -2.109375 C 4.71875 -1.578125 4.640625 -1.078125 4.28125 -0.671875 C 4.015625 -0.34375 3.59375 -0.140625 3.171875 -0.140625 C 2.71875 -0.140625 2.328125 -0.375 2.0625 -0.765625 C 1.96875 -0.890625 1.890625 -1.03125 1.890625 -1.1875 L 1.890625 -3.015625 C 1.890625 -3.15625 1.875 -3.28125 1.875 -3.421875 C 1.875 -4.0625 2.640625 -4.578125 3.28125 -4.578125 C 4.46875 -4.578125 4.765625 -3.25 4.765625 -2.34375 C 4.765625 -2.265625 4.765625 -2.1875 4.75 -2.109375 Z M 4.75 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 3.953125 -4.140625 C 3.671875 -4.140625 3.453125 -3.953125 3.453125 -3.671875 C 3.453125 -3.421875 3.65625 -3.1875 3.921875 -3.1875 C 4.171875 -3.1875 4.390625 -3.390625 4.390625 -3.6875 L 4.390625 -3.78125 C 4.28125 -4.609375 3.296875 -4.859375 2.6875 -4.859375 C 1.359375 -4.859375 0.375 -3.625 0.375 -2.359375 C 0.375 -1.078125 1.359375 0.09375 2.71875 0.09375 C 3.421875 0.09375 4.140625 -0.3125 4.421875 -1.0625 C 4.453125 -1.140625 4.5 -1.21875 4.5 -1.296875 L 4.5 -1.34375 C 4.46875 -1.390625 4.421875 -1.421875 4.375 -1.421875 C 4.203125 -1.421875 4.140625 -0.96875 4 -0.8125 C 3.734375 -0.40625 3.296875 -0.15625 2.8125 -0.15625 C 1.65625 -0.15625 1.25 -1.421875 1.25 -2.359375 C 1.25 -3.265625 1.546875 -4.53125 2.65625 -4.609375 L 2.734375 -4.609375 C 3.140625 -4.609375 3.671875 -4.484375 3.953125 -4.140625 Z M 3.953125 -4.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 0.359375 -7.453125 L 0.359375 -7.125 L 0.5625 -7.125 C 0.90625 -7.125 1.1875 -7.09375 1.1875 -6.59375 L 1.1875 -0.78125 C 1.1875 -0.375 0.921875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.78125 L 4.921875 -3.21875 C 4.921875 -3.5625 4.921875 -3.921875 4.734375 -4.21875 C 4.484375 -4.65625 3.984375 -4.8125 3.484375 -4.8125 C 2.8125 -4.8125 2.078125 -4.390625 1.90625 -3.75 L 1.890625 -7.578125 Z M 0.359375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.765625 L 4.921875 -3.234375 C 4.921875 -3.5625 4.921875 -3.890625 4.75 -4.1875 C 4.5 -4.671875 3.953125 -4.8125 3.4375 -4.8125 C 2.75 -4.8125 2.078125 -4.3125 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 0.421875 -4.6875 L 0.421875 -4.359375 L 0.59375 -4.359375 C 0.9375 -4.359375 1.203125 -4.3125 1.203125 -3.8125 L 1.203125 -0.796875 C 1.203125 -0.359375 0.921875 -0.34375 0.375 -0.34375 L 0.375 -0.015625 L 2.65625 -0.015625 L 2.65625 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.71875 L 1.90625 -4.8125 Z M 1.3125 -7.265625 C 1 -7.21875 0.84375 -6.96875 0.84375 -6.734375 C 0.84375 -6.484375 1.03125 -6.1875 1.375 -6.1875 C 1.71875 -6.1875 1.921875 -6.453125 1.921875 -6.734375 C 1.921875 -6.984375 1.75 -7.28125 1.390625 -7.28125 C 1.359375 -7.28125 1.328125 -7.265625 1.3125 -7.265625 Z M 1.3125 -7.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 1.421875 -1.09375 C 1.125 -1.046875 0.96875 -0.796875 0.96875 -0.5625 C 0.96875 -0.3125 1.140625 -0.015625 1.5 -0.015625 C 1.828125 -0.015625 2.046875 -0.28125 2.046875 -0.5625 C 2.046875 -0.8125 1.859375 -1.09375 1.515625 -1.09375 C 1.484375 -1.09375 1.453125 -1.09375 1.421875 -1.09375 Z M 1.421875 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.09375 L 0.8125 -7.09375 C 1.171875 -7.09375 1.515625 -7.0625 1.515625 -6.65625 C 1.515625 -6.59375 1.5 -6.515625 1.5 -6.453125 L 1.5 -0.8125 C 1.5 -0.375 1.15625 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 6.625 -0.015625 L 7.0625 -2.8125 L 6.796875 -2.8125 C 6.671875 -2.15625 6.609375 -1.328125 6.125 -0.84375 C 5.640625 -0.34375 4.875 -0.34375 4.234375 -0.34375 L 2.875 -0.34375 C 2.609375 -0.34375 2.40625 -0.375 2.40625 -0.734375 L 2.40625 -3.703125 L 3.375 -3.703125 C 3.75 -3.703125 4.1875 -3.671875 4.421875 -3.375 C 4.578125 -3.140625 4.59375 -2.8125 4.59375 -2.515625 L 4.59375 -2.421875 L 4.859375 -2.421875 L 4.859375 -5.296875 L 4.59375 -5.296875 L 4.59375 -5.203125 C 4.59375 -4.90625 4.578125 -4.578125 4.421875 -4.34375 C 4.1875 -4.046875 3.75 -4.03125 3.375 -4.03125 L 2.40625 -4.03125 L 2.40625 -6.734375 C 2.40625 -7.0625 2.625 -7.09375 2.875 -7.09375 L 4.25 -7.09375 C 4.859375 -7.09375 5.59375 -7.09375 6.015625 -6.59375 C 6.375 -6.15625 6.421875 -5.53125 6.5 -4.984375 L 6.765625 -4.984375 L 6.46875 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.125 C 0.59375 -7.125 0.734375 -7.140625 0.84375 -7.140625 C 1.21875 -7.140625 1.515625 -7.09375 1.515625 -6.65625 C 1.515625 -6.546875 1.5 -6.453125 1.5 -6.375 L 1.5 -2.65625 C 1.5 -1.21875 2.40625 0.21875 4.265625 0.21875 C 5.46875 0.21875 6.375 -0.875 6.5625 -1.96875 C 6.609375 -2.21875 6.625 -2.46875 6.625 -2.71875 C 6.625 -2.9375 6.609375 -3.15625 6.609375 -3.375 L 6.609375 -6.265625 C 6.609375 -6.484375 6.625 -6.6875 6.765625 -6.859375 C 6.984375 -7.09375 7.34375 -7.125 7.65625 -7.125 L 7.65625 -7.453125 L 5.25 -7.453125 L 5.25 -7.125 C 5.75 -7.125 6.296875 -7.03125 6.296875 -6.3125 L 6.296875 -2.796875 C 6.296875 -1.78125 6.078125 -0.734375 4.890625 -0.234375 C 4.671875 -0.15625 4.421875 -0.109375 4.1875 -0.109375 C 3.390625 -0.109375 2.765625 -0.703125 2.546875 -1.4375 C 2.421875 -1.828125 2.40625 -2.234375 2.40625 -2.65625 L 2.40625 -6.390625 C 2.40625 -6.484375 2.40625 -6.5625 2.40625 -6.65625 C 2.40625 -7.078125 2.75 -7.140625 3.09375 -7.140625 C 3.21875 -7.140625 3.34375 -7.125 3.453125 -7.125 L 3.453125 -7.453125 L 2.21875 -7.453125 L 1.953125 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 0.203125 -4.703125 L 0.203125 -4.375 L 0.34375 -4.375 C 0.953125 -4.375 1 -4 1.25 -3.28125 C 1.609375 -2.234375 1.984375 -1.21875 2.34375 -0.1875 C 2.390625 -0.078125 2.421875 0.078125 2.5625 0.09375 L 2.578125 0.09375 C 2.828125 0.09375 2.984375 -0.625 3.125 -1 C 3.34375 -1.5625 3.53125 -2.125 3.734375 -2.6875 C 3.796875 -2.859375 3.859375 -3.015625 3.90625 -3.203125 L 3.921875 -3.203125 C 4.09375 -2.4375 4.453125 -1.71875 4.703125 -0.984375 C 4.828125 -0.609375 5 0.09375 5.21875 0.09375 L 5.25 0.09375 C 5.40625 0.09375 5.4375 -0.0625 5.46875 -0.1875 C 5.78125 -1.09375 6.125 -2 6.453125 -2.921875 C 6.703125 -3.609375 6.859375 -4.375 7.625 -4.375 L 7.625 -4.703125 L 6.875 -4.671875 L 5.859375 -4.671875 L 5.859375 -4.375 C 6.140625 -4.359375 6.4375 -4.203125 6.46875 -3.90625 L 6.46875 -3.859375 C 6.46875 -3.71875 6.40625 -3.578125 6.34375 -3.4375 C 6.078125 -2.65625 5.8125 -1.875 5.515625 -1.109375 C 5.484375 -1.03125 5.453125 -0.9375 5.4375 -0.84375 L 5.421875 -0.84375 C 5.140625 -1.84375 4.71875 -2.84375 4.359375 -3.8125 C 4.328125 -3.890625 4.28125 -3.984375 4.28125 -4.078125 C 4.28125 -4.359375 4.6875 -4.375 4.90625 -4.375 L 4.90625 -4.703125 L 2.828125 -4.703125 L 2.828125 -4.375 L 2.984375 -4.375 C 3.40625 -4.375 3.546875 -4.25 3.671875 -3.84375 C 3.703125 -3.78125 3.75 -3.671875 3.75 -3.59375 L 3.75 -3.5625 C 3.71875 -3.359375 3.59375 -3.109375 3.515625 -2.890625 C 3.375 -2.46875 3.234375 -2.078125 3.078125 -1.65625 C 3 -1.421875 2.890625 -1.203125 2.828125 -0.953125 C 2.765625 -1.21875 2.65625 -1.46875 2.5625 -1.71875 C 2.3125 -2.4375 2.046875 -3.140625 1.796875 -3.84375 C 1.78125 -3.921875 1.734375 -4 1.734375 -4.078125 C 1.734375 -4.359375 2.109375 -4.375 2.296875 -4.375 L 2.359375 -4.375 L 2.359375 -4.703125 Z M 0.203125 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 0.125 -2.671875 L 0.125 -2.046875 L 3.015625 -2.046875 L 3.015625 -2.671875 Z M 0.125 -2.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 0.484375 -7.453125 L 0.484375 -7.125 C 0.609375 -7.125 0.734375 -7.140625 0.875 -7.140625 C 1.234375 -7.140625 1.5625 -7.09375 1.5625 -6.6875 C 1.5625 -6.609375 1.546875 -6.546875 1.546875 -6.484375 L 1.546875 -1.125 C 1.546875 -0.421875 0.96875 -0.34375 0.484375 -0.34375 L 0.484375 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.421875 -0.34375 1.828125 -0.421875 1.828125 -1.15625 C 1.828125 -1.28125 1.84375 -1.390625 1.84375 -1.5 L 1.859375 -7.0625 C 1.90625 -6.84375 2 -6.625 2.09375 -6.40625 L 2.515625 -5.328125 C 3.15625 -3.703125 3.8125 -2.046875 4.421875 -0.390625 C 4.46875 -0.265625 4.515625 -0.015625 4.6875 -0.015625 C 4.859375 -0.015625 4.90625 -0.28125 4.953125 -0.40625 L 5.4375 -1.671875 C 6.0625 -3.265625 6.65625 -4.84375 7.28125 -6.421875 C 7.375 -6.65625 7.484375 -6.90625 7.546875 -7.140625 L 7.5625 -1.0625 C 7.5625 -0.984375 7.5625 -0.890625 7.5625 -0.796875 C 7.5625 -0.375 7.234375 -0.328125 6.875 -0.328125 C 6.75 -0.328125 6.609375 -0.34375 6.5 -0.34375 L 6.5 -0.015625 L 7.703125 -0.015625 L 7.96875 -0.046875 L 9.4375 -0.046875 L 9.4375 -0.34375 C 9.3125 -0.34375 9.1875 -0.328125 9.046875 -0.328125 C 8.703125 -0.328125 8.359375 -0.375 8.359375 -0.78125 C 8.359375 -0.84375 8.375 -0.921875 8.375 -0.984375 L 8.375 -6.65625 C 8.375 -7.078125 8.71875 -7.140625 9.046875 -7.140625 C 9.1875 -7.140625 9.3125 -7.125 9.4375 -7.125 L 9.4375 -7.453125 L 7.65625 -7.453125 L 7.453125 -7.421875 L 7.359375 -7.265625 L 4.96875 -1.046875 L 2.578125 -7.265625 L 2.46875 -7.421875 L 2.28125 -7.453125 Z M 0.484375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.125 L 0.8125 -7.125 C 1.171875 -7.125 1.515625 -7.09375 1.515625 -6.703125 C 1.515625 -6.625 1.5 -6.546875 1.5 -6.484375 L 1.5 -0.8125 C 1.5 -0.375 1.15625 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 6.015625 -0.015625 L 6.3125 -2.8125 L 6.046875 -2.8125 C 5.9375 -1.8125 5.84375 -0.75 4.515625 -0.40625 C 4.203125 -0.34375 3.90625 -0.34375 3.59375 -0.34375 L 2.796875 -0.34375 C 2.578125 -0.34375 2.40625 -0.390625 2.40625 -0.703125 L 2.40625 -6.65625 C 2.40625 -7.09375 2.78125 -7.140625 3.125 -7.140625 C 3.234375 -7.140625 3.34375 -7.125 3.4375 -7.125 L 3.734375 -7.125 L 3.734375 -7.453125 L 2.25 -7.453125 L 1.984375 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 0.375 -7.453125 L 0.375 -7.125 L 0.5625 -7.125 C 0.921875 -7.125 1.203125 -7.09375 1.203125 -6.578125 L 1.203125 -0.78125 C 1.203125 -0.375 0.90625 -0.34375 0.59375 -0.34375 L 0.375 -0.34375 L 0.375 -0.015625 L 2.734375 -0.015625 L 2.734375 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.765625 L 1.90625 -7.578125 Z M 0.375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<path style="stroke:none;" d="M 1.15625 -2.109375 C 0.9375 -1.890625 0.8125 -1.5 0.8125 -1.203125 C 0.8125 -0.8125 1 -0.53125 1.28125 -0.234375 C 0.78125 -0.140625 0.3125 0.3125 0.3125 0.84375 C 0.3125 1.96875 2.078125 2.234375 2.71875 2.234375 C 3.6875 2.234375 5.109375 1.859375 5.109375 0.796875 C 5.109375 -0.4375 3.859375 -0.71875 2.71875 -0.71875 L 1.96875 -0.71875 C 1.421875 -0.71875 1.140625 -1.015625 1.140625 -1.46875 C 1.140625 -1.671875 1.25 -1.828125 1.3125 -1.96875 C 1.609375 -1.78125 1.9375 -1.65625 2.296875 -1.640625 L 2.375 -1.640625 C 3.25 -1.640625 4 -2.171875 4.140625 -3.09375 L 4.140625 -3.203125 C 4.140625 -3.5625 4.015625 -3.921875 3.78125 -4.1875 C 3.765625 -4.21875 3.734375 -4.25 3.734375 -4.28125 L 3.734375 -4.296875 C 3.875 -4.515625 4.390625 -4.703125 4.703125 -4.703125 C 4.75 -4.703125 4.78125 -4.6875 4.828125 -4.6875 C 4.75 -4.625 4.671875 -4.5625 4.65625 -4.453125 L 4.65625 -4.421875 C 4.65625 -4.25 4.796875 -4.109375 4.96875 -4.109375 C 5.171875 -4.109375 5.25 -4.265625 5.25 -4.421875 C 5.25 -4.765625 4.9375 -4.921875 4.671875 -4.921875 C 4.3125 -4.921875 3.9375 -4.765625 3.65625 -4.53125 C 3.625 -4.5 3.59375 -4.453125 3.546875 -4.453125 L 3.53125 -4.453125 C 3.46875 -4.453125 3.25 -4.640625 3.09375 -4.671875 C 2.875 -4.765625 2.640625 -4.8125 2.40625 -4.8125 C 1.578125 -4.8125 0.75 -4.21875 0.65625 -3.359375 L 0.65625 -3.25 C 0.65625 -2.828125 0.8125 -2.375 1.15625 -2.109375 Z M 0.859375 0.921875 L 0.859375 0.828125 C 0.859375 0.234375 1.390625 -0.09375 1.96875 -0.09375 L 3.015625 -0.09375 C 3.609375 -0.09375 4.4375 0.046875 4.546875 0.765625 L 4.546875 0.84375 C 4.546875 1.65625 3.375 1.984375 2.6875 1.984375 C 1.96875 1.984375 0.96875 1.65625 0.859375 0.921875 Z M 1.4375 -3.015625 L 1.4375 -3.140625 C 1.4375 -3.734375 1.578125 -4.546875 2.390625 -4.546875 C 3.09375 -4.546875 3.359375 -3.921875 3.359375 -3.21875 C 3.359375 -2.671875 3.21875 -1.890625 2.40625 -1.890625 C 1.78125 -1.890625 1.515625 -2.40625 1.4375 -3.015625 Z M 1.4375 -3.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-22">
|
||||
<path style="stroke:none;" d="M 0.5625 -4.703125 L 0.453125 -2.953125 L 0.703125 -2.953125 C 0.734375 -3.328125 0.75 -3.78125 1 -4.09375 C 1.25 -4.4375 1.765625 -4.46875 2.203125 -4.46875 L 3.4375 -4.46875 C 2.484375 -3.09375 1.4375 -1.75 0.4375 -0.40625 C 0.375 -0.34375 0.3125 -0.25 0.3125 -0.15625 C 0.3125 -0.046875 0.375 -0.015625 0.46875 -0.015625 L 4.1875 -0.015625 L 4.359375 -2.046875 L 4.09375 -2.046875 C 4.0625 -1.578125 4.03125 -1.046875 3.765625 -0.703125 C 3.453125 -0.3125 2.921875 -0.265625 2.4375 -0.265625 L 1.203125 -0.265625 C 1.296875 -0.421875 1.40625 -0.546875 1.515625 -0.6875 C 2.390625 -1.90625 3.3125 -3.09375 4.1875 -4.3125 C 4.25 -4.390625 4.328125 -4.46875 4.328125 -4.5625 C 4.328125 -4.671875 4.25 -4.703125 4.171875 -4.703125 Z M 0.5625 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-23">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.546875 -4.359375 C 0.859375 -4.359375 1.140625 -4.3125 1.140625 -3.875 L 1.140625 1.3125 C 1.140625 1.765625 0.84375 1.78125 0.3125 1.78125 L 0.3125 2.109375 L 2.71875 2.109375 L 2.71875 1.78125 L 2.46875 1.78125 C 2.15625 1.78125 1.890625 1.734375 1.890625 1.34375 L 1.890625 -0.578125 C 2.140625 -0.125 2.78125 0.09375 3.265625 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.5625 4.734375 -4.8125 3.40625 -4.8125 C 2.796875 -4.8125 2.296875 -4.578125 1.859375 -4.09375 L 1.859375 -4.8125 Z M 4.75 -2.171875 C 4.71875 -1.34375 4.265625 -0.203125 3.265625 -0.125 L 3.15625 -0.125 C 2.640625 -0.125 1.890625 -0.625 1.890625 -1.171875 L 1.890625 -3 C 1.890625 -3.140625 1.875 -3.265625 1.875 -3.40625 C 1.875 -4 2.609375 -4.546875 3.265625 -4.546875 C 4.390625 -4.546875 4.765625 -3.140625 4.765625 -2.34375 C 4.765625 -2.296875 4.765625 -2.21875 4.75 -2.171875 Z M 4.75 -2.171875 "/>
|
||||
</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 2.8125 -6.75 L 2.8125 -0.765625 L 1.84375 -0.765625 C 1.75 -0.765625 1.671875 -0.78125 1.578125 -0.78125 C 1.28125 -0.78125 1.140625 -0.59375 1.140625 -0.375 C 1.140625 -0.15625 1.296875 -0.015625 1.578125 -0.015625 L 5.34375 -0.015625 C 5.609375 -0.015625 5.765625 -0.15625 5.765625 -0.375 C 5.765625 -0.625 5.59375 -0.765625 5.328125 -0.765625 L 4.21875 -0.765625 L 4.21875 -7.703125 C 4.21875 -8.015625 4 -8.09375 3.78125 -8.09375 C 3.515625 -8.09375 3.46875 -7.984375 3.3125 -7.875 C 2.8125 -7.421875 2.109375 -7.34375 1.46875 -7.3125 C 1.25 -7.296875 1.0625 -7.203125 1.0625 -6.9375 C 1.0625 -6.734375 1.1875 -6.5625 1.40625 -6.546875 C 1.875 -6.546875 2.359375 -6.625 2.8125 -6.75 Z M 2.8125 -6.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 1.28125 -1.328125 C 1.203125 -1.296875 1.1875 -1.21875 1.1875 -1.140625 L 1.1875 -0.21875 C 1.1875 -0.0625 1.25 -0.015625 1.40625 -0.015625 L 2.140625 -0.015625 C 2.203125 -0.015625 2.265625 0 2.3125 0 C 2.46875 0 2.515625 -0.078125 2.515625 -0.203125 L 2.515625 -1.140625 C 2.515625 -1.296875 2.46875 -1.34375 2.3125 -1.34375 L 1.578125 -1.34375 C 1.515625 -1.34375 1.453125 -1.34375 1.40625 -1.34375 C 1.34375 -1.34375 1.3125 -1.34375 1.28125 -1.328125 Z M 1.28125 -1.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 3.40625 -8.5625 C 2.703125 -8.46875 2.046875 -8.40625 1.484375 -7.9375 C 0.953125 -7.5 0.734375 -6.796875 0.734375 -6.140625 C 0.734375 -4.921875 1.75 -4.0625 2.875 -3.78125 C 3.859375 -3.53125 5.4375 -3.484375 5.4375 -2.203125 C 5.4375 -1.140625 4.546875 -0.890625 3.734375 -0.890625 C 2.8125 -0.890625 1.859375 -1.21875 1.15625 -1.765625 C 1.09375 -1.8125 1.015625 -1.921875 0.921875 -1.921875 C 0.78125 -1.921875 0.78125 -1.734375 0.75 -1.640625 C 0.703125 -1.34375 0.59375 -1 0.59375 -0.734375 C 0.59375 -0.640625 0.65625 -0.59375 0.734375 -0.5625 L 0.984375 -0.421875 C 1.828125 0.015625 2.8125 0.25 3.765625 0.25 C 5.15625 0.25 6.71875 -0.28125 6.71875 -2.3125 C 6.71875 -3.53125 5.828125 -4.5 4.703125 -4.84375 C 3.75 -5.125 2.015625 -5.125 2.015625 -6.3125 L 2.015625 -6.34375 C 2.015625 -7.359375 3.0625 -7.5 3.734375 -7.5 C 4.484375 -7.5 5.109375 -7.28125 5.71875 -6.78125 C 5.765625 -6.734375 5.859375 -6.640625 5.9375 -6.640625 C 6.109375 -6.640625 6.234375 -7.609375 6.234375 -7.8125 C 6.234375 -8.015625 5.765625 -8.15625 5.53125 -8.265625 C 4.921875 -8.5 4.265625 -8.5625 3.609375 -8.5625 Z M 3.40625 -8.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 4.65625 -0.53125 L 4.65625 -0.390625 C 4.65625 -0.046875 4.921875 0 5.140625 0 C 5.21875 0 5.3125 -0.015625 5.40625 -0.015625 L 5.5625 -0.015625 C 5.78125 -0.015625 6.015625 -0.046875 6.015625 -0.484375 L 6.015625 -4.859375 C 6.015625 -4.921875 6.03125 -5 6.03125 -5.0625 C 6.03125 -5.421875 5.765625 -5.484375 5.53125 -5.484375 L 5.0625 -5.484375 C 4.75 -5.484375 4.625 -5.328125 4.625 -5.03125 L 4.625 -2.390625 C 4.625 -2.234375 4.640625 -2.078125 4.640625 -1.90625 C 4.640625 -1.046875 4.03125 -0.53125 3.171875 -0.53125 L 3.0625 -0.53125 C 2.625 -0.53125 2.28125 -0.578125 2.28125 -1.40625 L 2.28125 -5.1875 C 2.25 -5.359375 2.078125 -5.484375 1.90625 -5.484375 L 1.34375 -5.484375 C 1.046875 -5.484375 0.890625 -5.328125 0.890625 -5.015625 C 0.890625 -4.9375 0.890625 -4.859375 0.890625 -4.78125 L 0.890625 -1.5 C 0.890625 -1.171875 0.90625 -0.84375 1.046875 -0.53125 C 1.359375 0.046875 2.125 0.109375 2.703125 0.109375 C 3.40625 0.109375 4.09375 -0.0625 4.65625 -0.53125 Z M 4.65625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 3.078125 -5.671875 C 1.859375 -5.5 0.4375 -5.171875 0.4375 -2.71875 C 0.4375 -1.984375 0.609375 -1.203125 1.109375 -0.671875 C 1.671875 -0.046875 2.578125 0.109375 3.375 0.109375 C 4.09375 0.109375 4.828125 -0.03125 5.46875 -0.375 C 5.5625 -0.421875 5.59375 -0.484375 5.59375 -0.5625 C 5.59375 -0.75 5.546875 -0.9375 5.53125 -1.125 C 5.53125 -1.203125 5.53125 -1.34375 5.421875 -1.375 L 5.390625 -1.375 C 5.265625 -1.375 5 -1.140625 4.8125 -1.046875 C 4.40625 -0.828125 3.9375 -0.734375 3.484375 -0.703125 L 3.40625 -0.703125 C 2.375 -0.703125 1.828125 -1.296875 1.828125 -2.71875 C 1.828125 -3.28125 1.84375 -3.953125 2.21875 -4.40625 C 2.515625 -4.75 2.96875 -4.859375 3.421875 -4.859375 C 4.046875 -4.859375 4.5 -4.71875 5.0625 -4.265625 C 5.109375 -4.21875 5.1875 -4.140625 5.265625 -4.140625 C 5.453125 -4.140625 5.46875 -4.65625 5.5 -4.84375 C 5.515625 -4.875 5.515625 -4.9375 5.515625 -4.984375 C 5.515625 -5.15625 4.8125 -5.453125 4.453125 -5.5625 C 4.078125 -5.65625 3.671875 -5.671875 3.28125 -5.671875 Z M 3.078125 -5.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 2.265625 -4.65625 C 2.265625 -4.703125 2.265625 -4.75 2.265625 -4.8125 L 2.265625 -8.03125 C 2.265625 -8.109375 2.265625 -8.171875 2.265625 -8.265625 C 2.265625 -8.671875 2.015625 -8.71875 1.75 -8.71875 L 1.328125 -8.71875 C 1.09375 -8.71875 0.890625 -8.625 0.890625 -8.3125 L 0.890625 -0.5 C 0.890625 -0.234375 0.9375 -0.015625 1.34375 -0.015625 L 1.796875 -0.015625 C 2.015625 -0.015625 2.28125 -0.0625 2.28125 -0.4375 L 2.28125 -2.75 C 2.28125 -3.640625 2.65625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.625 -4.75 4.625 -4.140625 4.625 -3.578125 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.859375 -0.015625 6.015625 -0.15625 6.015625 -0.484375 L 6.015625 -3.578125 C 6.015625 -4.609375 5.828125 -5.609375 4.15625 -5.609375 C 3.46875 -5.609375 2.578125 -5.234375 2.265625 -4.65625 Z M 2.265625 -4.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.703125 -2.28125 L 5.296875 -2.28125 C 5.609375 -2.28125 5.734375 -2.46875 5.734375 -2.765625 C 5.734375 -3.5625 5.5625 -4.53125 5 -5.0625 C 4.5 -5.515625 3.875 -5.671875 3.21875 -5.671875 C 2.46875 -5.671875 1.65625 -5.484375 1.09375 -4.9375 C 0.546875 -4.390625 0.375 -3.578125 0.375 -2.828125 C 0.375 -2.09375 0.53125 -1.3125 1.015625 -0.75 C 1.5625 -0.125 2.46875 0.109375 3.28125 0.109375 C 3.984375 0.109375 4.65625 0 5.296875 -0.28125 L 5.515625 -0.390625 C 5.59375 -0.421875 5.65625 -0.484375 5.65625 -0.578125 C 5.65625 -0.609375 5.640625 -0.640625 5.640625 -0.6875 L 5.609375 -1.09375 C 5.609375 -1.1875 5.609375 -1.359375 5.46875 -1.359375 C 5.40625 -1.359375 5.3125 -1.296875 5.265625 -1.25 C 4.734375 -0.859375 4.09375 -0.640625 3.421875 -0.640625 C 2.609375 -0.640625 1.75 -1.09375 1.703125 -2.28125 Z M 1.671875 -2.96875 C 1.734375 -3.890625 2 -4.90625 3.21875 -4.90625 C 4.34375 -4.90625 4.578125 -3.84375 4.578125 -2.96875 Z M 1.671875 -2.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.453125 2.03125 -5.5625 1.71875 -5.5625 C 1.625 -5.5625 1.53125 -5.546875 1.453125 -5.546875 L 1.296875 -5.546875 C 1.0625 -5.546875 0.890625 -5.40625 0.890625 -5.109375 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.28125 2.28125 -0.5 L 2.28125 -3.109375 C 2.359375 -3.953125 2.828125 -4.859375 3.734375 -4.859375 C 4.59375 -4.859375 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.4375 C 4.625 -0.03125 4.90625 -0.015625 5.140625 -0.015625 L 5.578125 -0.015625 C 5.84375 -0.015625 6.015625 -0.125 6.015625 -0.484375 L 6.015625 -2.015625 C 6.015625 -2.234375 6 -2.4375 6 -2.65625 C 6 -3.359375 6.109375 -4.34375 6.953125 -4.734375 C 7.109375 -4.8125 7.28125 -4.859375 7.453125 -4.859375 C 8.3125 -4.859375 8.359375 -4.25 8.359375 -3.71875 L 8.359375 -0.328125 C 8.453125 -0.03125 8.625 -0.015625 8.875 -0.015625 L 9.328125 -0.015625 C 9.671875 -0.015625 9.734375 -0.234375 9.734375 -0.46875 L 9.734375 -3.5625 C 9.734375 -4.5625 9.59375 -5.609375 7.859375 -5.609375 C 7.0625 -5.609375 6.359375 -5.1875 5.921875 -4.5625 C 5.65625 -5.375 5.015625 -5.609375 4.25 -5.609375 C 3.40625 -5.609375 2.828125 -5.3125 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 1.203125 -5.46875 C 0.953125 -5.4375 0.90625 -5.234375 0.90625 -4.96875 L 0.90625 -0.4375 C 0.90625 -0.0625 1.15625 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.046875 -0.015625 2.234375 -0.109375 2.265625 -0.3125 L 2.265625 -5.0625 C 2.265625 -5.375 2.0625 -5.5 1.78125 -5.5 C 1.6875 -5.5 1.578125 -5.484375 1.5 -5.484375 L 1.34375 -5.484375 C 1.296875 -5.484375 1.25 -5.484375 1.203125 -5.46875 Z M 1.140625 -8.578125 C 0.890625 -8.578125 0.828125 -8.296875 0.828125 -8.109375 C 0.828125 -8.03125 0.84375 -7.953125 0.84375 -7.875 L 0.84375 -7.515625 C 0.84375 -7.140625 1.09375 -7.09375 1.34375 -7.09375 L 1.890625 -7.09375 C 2.109375 -7.09375 2.328125 -7.1875 2.328125 -7.484375 L 2.328125 -8.140625 C 2.328125 -8.546875 2.09375 -8.59375 1.828125 -8.59375 L 1.28125 -8.59375 C 1.234375 -8.59375 1.1875 -8.59375 1.140625 -8.578125 Z M 1.140625 -8.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 1.21875 -5.484375 L 0.65625 -5.484375 C 0.40625 -5.484375 0.25 -5.328125 0.25 -5.109375 C 0.25 -4.84375 0.453125 -4.734375 0.734375 -4.734375 L 1.1875 -4.734375 L 1.1875 -1.515625 C 1.1875 -0.734375 1.390625 0.109375 2.40625 0.109375 C 3.0625 0.109375 3.6875 -0.046875 4.296875 -0.3125 C 4.359375 -0.34375 4.453125 -0.375 4.46875 -0.484375 C 4.46875 -0.78125 4.296875 -1.09375 4.21875 -1.09375 C 4.125 -1.09375 3.96875 -0.953125 3.859375 -0.890625 C 3.59375 -0.8125 3.34375 -0.703125 3.0625 -0.703125 C 2.53125 -0.703125 2.515625 -1.28125 2.515625 -1.75 L 2.515625 -4.734375 L 3.796875 -4.734375 C 4 -4.734375 4.25 -4.828125 4.25 -5.109375 C 4.25 -5.359375 4.0625 -5.484375 3.796875 -5.484375 L 2.515625 -5.484375 L 2.515625 -6.609375 C 2.515625 -6.84375 2.421875 -7.046875 2.109375 -7.046875 L 1.96875 -7.046875 C 1.90625 -7.046875 1.8125 -7.0625 1.71875 -7.0625 C 1.453125 -7.0625 1.21875 -6.984375 1.21875 -6.59375 Z M 1.21875 -5.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 4.375 -4.09375 L 4.390625 -4.09375 C 4.40625 -3.75 4.546875 -3.390625 4.640625 -3.0625 C 4.859375 -2.21875 5.109375 -1.375 5.375 -0.546875 C 5.53125 -0.078125 5.75 -0.015625 6.09375 -0.015625 L 6.84375 -0.015625 C 7.28125 -0.015625 7.359375 -0.265625 7.453125 -0.53125 C 7.921875 -1.953125 8.3125 -3.390625 8.75 -4.8125 C 8.78125 -4.9375 8.859375 -5.078125 8.859375 -5.21875 C 8.859375 -5.421875 8.671875 -5.484375 8.46875 -5.484375 L 8.265625 -5.484375 C 8.03125 -5.484375 7.796875 -5.46875 7.65625 -5.21875 C 7.578125 -5.03125 7.53125 -4.8125 7.46875 -4.609375 C 7.1875 -3.6875 6.890625 -2.765625 6.640625 -1.84375 C 6.546875 -1.578125 6.4375 -1.3125 6.390625 -1.046875 C 6.375 -1.140625 6.328125 -1.234375 6.3125 -1.3125 L 6.171875 -1.78125 C 5.875 -2.703125 5.59375 -3.625 5.328125 -4.546875 C 5.15625 -4.96875 5.21875 -5.484375 4.515625 -5.484375 C 4.09375 -5.484375 3.96875 -5.25 3.890625 -4.953125 C 3.609375 -4.0625 3.34375 -3.171875 3.078125 -2.28125 C 2.96875 -1.921875 2.875 -1.546875 2.734375 -1.203125 C 2.40625 -2.390625 2.046875 -3.5625 1.65625 -4.71875 C 1.53125 -5.109375 1.5 -5.484375 0.90625 -5.484375 L 0.703125 -5.484375 C 0.53125 -5.484375 0.28125 -5.46875 0.28125 -5.203125 C 0.28125 -5.078125 0.359375 -4.953125 0.375 -4.84375 L 1.671875 -0.609375 C 1.71875 -0.453125 1.75 -0.28125 1.859375 -0.171875 C 1.984375 -0.03125 2.171875 0 2.359375 0 C 2.46875 0 2.5625 -0.015625 2.65625 -0.015625 L 2.78125 -0.015625 C 3.375 -0.015625 3.421875 -0.671875 3.53125 -1.046875 C 3.734375 -1.734375 3.9375 -2.421875 4.140625 -3.109375 C 4.21875 -3.4375 4.34375 -3.765625 4.375 -4.09375 Z M 4.375 -4.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-12">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.3125 2.171875 -5.546875 1.8125 -5.546875 L 1.65625 -5.546875 C 1.578125 -5.546875 1.5 -5.5625 1.40625 -5.5625 C 1.140625 -5.5625 0.890625 -5.5 0.890625 -5.125 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.265625 2.28125 -0.5 L 2.28125 -2.5625 C 2.28125 -3.03125 2.28125 -3.453125 2.46875 -3.890625 C 2.671875 -4.40625 3.15625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.609375 -4.78125 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.875 -0.015625 6.03125 -0.171875 6.03125 -0.46875 C 6.03125 -0.546875 6.015625 -0.625 6.015625 -0.6875 L 6.015625 -3.5625 C 6.015625 -4.5625 5.859375 -5.609375 4.140625 -5.609375 L 4 -5.609375 C 3.265625 -5.5625 2.71875 -5.1875 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-13">
|
||||
<path style="stroke:none;" d="M 2.046875 -1.09375 C 2.578125 -1.5625 3.140625 -2.078125 3.703125 -2.515625 L 4.5 -3.125 C 5.21875 -3.6875 5.96875 -4.40625 6.03125 -5.375 L 6.03125 -5.484375 C 6.03125 -7.125 4.65625 -8.09375 3.15625 -8.09375 C 2.0625 -8.09375 1.1875 -7.59375 0.703125 -6.640625 C 0.65625 -6.53125 0.578125 -6.390625 0.578125 -6.296875 L 0.578125 -6.28125 C 0.578125 -6.203125 0.640625 -6.140625 0.6875 -6.078125 L 0.96875 -5.765625 C 1.046875 -5.671875 1.15625 -5.484375 1.265625 -5.484375 C 1.40625 -5.484375 1.484375 -5.90625 1.5625 -6.078125 C 1.8125 -6.640625 2.265625 -7.0625 2.984375 -7.0625 C 3.828125 -7.0625 4.609375 -6.484375 4.609375 -5.515625 C 4.609375 -4.546875 3.9375 -3.875 3.3125 -3.265625 C 2.515625 -2.515625 1.703125 -1.78125 0.921875 -1.046875 C 0.8125 -0.9375 0.65625 -0.84375 0.65625 -0.671875 C 0.65625 -0.328125 0.671875 -0.015625 1.171875 -0.015625 L 5.625 -0.015625 C 6 -0.015625 6.03125 -0.265625 6.03125 -0.484375 L 6.03125 -0.59375 C 6.03125 -0.84375 6.015625 -1.125 5.609375 -1.125 L 4.84375 -1.125 C 3.90625 -1.125 2.96875 -1.125 2.046875 -1.09375 Z M 2.046875 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<path style="stroke:none;" d="M 3.09375 -5.671875 C 2.375 -5.578125 1.6875 -5.46875 1.140625 -4.953125 C 0.53125 -4.375 0.375 -3.5 0.375 -2.71875 C 0.375 -1.96875 0.53125 -1.15625 1.078125 -0.625 C 1.703125 0 2.625 0.109375 3.484375 0.109375 C 4.21875 0.109375 5.09375 -0.078125 5.640625 -0.640625 C 6.1875 -1.171875 6.328125 -1.953125 6.328125 -2.6875 C 6.328125 -3.453125 6.1875 -4.296875 5.640625 -4.875 C 5.03125 -5.515625 4.109375 -5.671875 3.265625 -5.671875 Z M 1.75 -2.421875 L 1.75 -2.953125 C 1.75 -3.796875 1.84375 -4.90625 3.34375 -4.90625 C 4.8125 -4.90625 4.953125 -3.8125 4.953125 -2.875 L 4.953125 -2.796875 C 4.953125 -1.90625 4.90625 -0.703125 3.328125 -0.703125 C 2.890625 -0.703125 2.421875 -0.828125 2.125 -1.171875 C 1.828125 -1.515625 1.8125 -1.984375 1.75 -2.421875 Z M 1.75 -2.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.5 -6.0625 L 2.5 -0.75 L 1.453125 -0.75 C 1.15625 -0.75 1 -0.609375 1 -0.375 C 1 -0.15625 1.171875 -0.015625 1.421875 -0.015625 L 4.75 -0.015625 C 5.015625 -0.015625 5.171875 -0.171875 5.171875 -0.375 C 5.171875 -0.609375 5 -0.75 4.75 -0.75 L 3.78125 -0.75 L 3.78125 -6.90625 C 3.78125 -7.21875 3.625 -7.359375 3.375 -7.359375 C 3.125 -7.359375 3.046875 -7.234375 2.90625 -7.125 C 2.515625 -6.78125 1.921875 -6.640625 1.453125 -6.640625 L 1.265625 -6.640625 C 1.0625 -6.625 0.921875 -6.484375 0.921875 -6.265625 C 0.921875 -6.0625 1.09375 -5.90625 1.296875 -5.90625 C 1.71875 -5.90625 2.09375 -6 2.5 -6.0625 Z M 2.5 -6.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 1.125 -1.25 C 1.0625 -1.21875 1.046875 -1.140625 1.046875 -1.0625 L 1.046875 -0.203125 C 1.046875 -0.0625 1.078125 -0.015625 1.234375 -0.015625 L 1.9375 -0.015625 C 2 -0.015625 2.046875 0 2.109375 0 C 2.25 0 2.296875 -0.0625 2.296875 -0.203125 L 2.296875 -1.0625 C 2.296875 -1.203125 2.25 -1.25 2.09375 -1.25 L 1.390625 -1.25 C 1.34375 -1.25 1.28125 -1.265625 1.234375 -1.265625 C 1.1875 -1.265625 1.15625 -1.25 1.125 -1.25 Z M 1.125 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 1.890625 -1.078125 C 2.578125 -1.71875 3.34375 -2.296875 4.0625 -2.890625 C 4.703125 -3.390625 5.359375 -4.03125 5.40625 -4.875 L 5.40625 -5 C 5.40625 -5.609375 5.171875 -6.203125 4.734375 -6.640625 C 4.21875 -7.125 3.515625 -7.34375 2.8125 -7.34375 C 1.75 -7.34375 1 -6.828125 0.5625 -5.96875 C 0.546875 -5.921875 0.515625 -5.859375 0.515625 -5.796875 L 0.515625 -5.765625 C 0.546875 -5.578125 1.109375 -4.984375 1.203125 -4.984375 C 1.328125 -4.984375 1.34375 -5.1875 1.375 -5.296875 C 1.578125 -5.828125 1.953125 -6.34375 2.671875 -6.34375 C 3.4375 -6.34375 4.078125 -5.78125 4.078125 -4.96875 C 4.0625 -3.8125 2.796875 -2.875 2.21875 -2.3125 L 1.53125 -1.65625 C 1.3125 -1.4375 1.078125 -1.21875 0.84375 -1.015625 C 0.765625 -0.9375 0.609375 -0.84375 0.59375 -0.703125 L 0.59375 -0.515625 C 0.59375 -0.265625 0.625 -0.015625 1.046875 -0.015625 L 4.984375 -0.015625 C 5.375 -0.015625 5.40625 -0.28125 5.40625 -0.515625 L 5.40625 -0.609375 C 5.40625 -0.828125 5.375 -1.09375 4.984375 -1.09375 L 4.390625 -1.09375 C 4.0625 -1.09375 3.734375 -1.09375 3.40625 -1.09375 L 2.1875 -1.09375 C 2.078125 -1.09375 2 -1.09375 1.890625 -1.078125 Z M 1.890625 -1.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 5.609375 -6.40625 C 6.15625 -4.453125 6.71875 -2.515625 7.234375 -0.5625 C 7.328125 -0.265625 7.40625 -0.015625 7.890625 -0.015625 L 8.5 -0.015625 C 8.71875 -0.015625 8.9375 -0.03125 9.046875 -0.234375 C 9.15625 -0.375 9.171875 -0.59375 9.234375 -0.765625 C 9.65625 -2.359375 10.09375 -3.953125 10.546875 -5.53125 L 10.96875 -7.03125 C 11 -7.125 11.03125 -7.21875 11.03125 -7.3125 C 11.03125 -7.453125 10.921875 -7.578125 10.703125 -7.578125 L 10.46875 -7.578125 C 10.015625 -7.578125 9.953125 -7.3125 9.859375 -7.046875 C 9.375 -5.328125 8.890625 -3.59375 8.421875 -1.875 C 8.359375 -1.65625 8.3125 -1.421875 8.234375 -1.21875 C 7.6875 -3.140625 7.171875 -5.078125 6.625 -6.984375 C 6.546875 -7.296875 6.46875 -7.578125 6.015625 -7.578125 L 5.4375 -7.578125 C 5 -7.578125 4.890625 -7.5625 4.65625 -6.75 L 4.296875 -5.46875 C 4.046875 -4.5625 3.796875 -3.625 3.53125 -2.71875 L 3.265625 -1.765625 C 3.234375 -1.609375 3.15625 -1.421875 3.15625 -1.265625 C 3.078125 -1.421875 3.046875 -1.625 3 -1.796875 L 2.703125 -2.890625 C 2.40625 -3.96875 2.078125 -5.03125 1.796875 -6.125 L 1.578125 -6.96875 C 1.46875 -7.34375 1.359375 -7.578125 0.9375 -7.578125 L 0.609375 -7.578125 C 0.453125 -7.578125 0.265625 -7.515625 0.265625 -7.3125 C 0.265625 -7.234375 0.296875 -7.140625 0.3125 -7.0625 C 0.78125 -5.3125 1.28125 -3.578125 1.765625 -1.84375 C 1.859375 -1.484375 1.96875 -1.109375 2.078125 -0.75 C 2.1875 -0.3125 2.25 -0.015625 2.765625 -0.015625 L 3.34375 -0.015625 C 3.84375 -0.015625 3.90625 -0.28125 4 -0.609375 C 4.453125 -2.453125 5.03125 -4.28125 5.53125 -6.109375 C 5.5625 -6.203125 5.59375 -6.296875 5.609375 -6.40625 Z M 5.609375 -6.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 1.5625 -2.140625 L 4.65625 -2.140625 C 4.9375 -2.140625 5.140625 -2.21875 5.140625 -2.578125 C 5.140625 -3.234375 5.03125 -3.96875 4.609375 -4.5 C 4.1875 -5.03125 3.5 -5.1875 2.875 -5.1875 C 2.25 -5.1875 1.5625 -5.015625 1.09375 -4.609375 C 0.5 -4.09375 0.34375 -3.28125 0.34375 -2.53125 C 0.34375 -1.859375 0.484375 -1.1875 0.921875 -0.671875 C 1.421875 -0.125 2.21875 0.09375 2.9375 0.09375 C 3.625 0.09375 4.25 -0.03125 4.90625 -0.34375 C 4.984375 -0.375 5.078125 -0.421875 5.078125 -0.515625 C 5.078125 -0.828125 5.0625 -1.296875 4.90625 -1.296875 C 4.84375 -1.296875 4.765625 -1.234375 4.71875 -1.1875 C 4.25 -0.8125 3.6875 -0.609375 3.078125 -0.609375 C 2.203125 -0.609375 1.578125 -1.1875 1.5625 -2.140625 Z M 1.546875 -2.78125 C 1.546875 -3.546875 1.828125 -4.46875 2.90625 -4.46875 C 3.625 -4.46875 4.09375 -3.90625 4.09375 -2.78125 Z M 1.546875 -2.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 2 -4.109375 C 1.984375 -4.171875 1.96875 -4.25 1.96875 -4.328125 C 1.96875 -4.421875 1.984375 -4.53125 1.984375 -4.625 C 1.984375 -4.984375 1.78125 -5.078125 1.53125 -5.078125 C 1.4375 -5.078125 1.359375 -5.078125 1.28125 -5.078125 L 1.1875 -5.078125 C 0.96875 -5.078125 0.78125 -4.96875 0.78125 -4.640625 L 0.78125 -0.46875 C 0.78125 -0.109375 0.921875 0 1.546875 0 C 1.796875 0 2.046875 -0.078125 2.046875 -0.421875 L 2.046875 -2.46875 C 2.109375 -3.203125 2.59375 -3.828125 3.3125 -4.046875 C 3.4375 -4.078125 3.5625 -4.09375 3.671875 -4.109375 L 3.75 -4.109375 C 3.875 -4.109375 3.90625 -4.203125 3.90625 -4.296875 L 3.90625 -4.9375 C 3.90625 -5.109375 3.84375 -5.125 3.734375 -5.125 C 3.046875 -5.125 2.296875 -4.671875 2 -4.109375 Z M 2 -4.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 2.015625 -4.28125 L 2 -4.625 C 2 -4.921875 1.859375 -5.078125 1.546875 -5.078125 C 1.46875 -5.078125 1.375 -5.078125 1.296875 -5.078125 L 1.1875 -5.078125 C 0.9375 -5.078125 0.78125 -4.953125 0.78125 -4.609375 L 0.78125 -0.421875 C 0.78125 -0.015625 1.046875 -0.015625 1.28125 -0.015625 L 1.65625 -0.015625 C 2.046875 -0.015625 2.0625 -0.28125 2.0625 -0.5 L 2.0625 -2.4375 C 2.0625 -3.171875 2.234375 -4.421875 3.359375 -4.421875 C 4.0625 -4.421875 4.09375 -3.84375 4.09375 -3.40625 L 4.09375 -0.4375 C 4.09375 -0.03125 4.359375 -0.015625 4.59375 -0.015625 L 5 -0.015625 C 5.25 -0.015625 5.390625 -0.15625 5.390625 -0.453125 L 5.390625 -2.890625 C 5.4375 -3.515625 5.8125 -4.421875 6.625 -4.421875 C 7.390625 -4.421875 7.421875 -3.875 7.421875 -3.421875 L 7.421875 -0.328125 C 7.53125 -0.046875 7.671875 0 7.921875 0 C 8 0 8.109375 -0.015625 8.171875 -0.015625 L 8.296875 -0.015625 C 8.59375 -0.015625 8.71875 -0.1875 8.71875 -0.453125 L 8.71875 -3.28125 C 8.71875 -3.703125 8.71875 -4.171875 8.484375 -4.53125 C 8.171875 -5.046875 7.59375 -5.125 7.046875 -5.125 C 6.390625 -5.125 5.578125 -4.75 5.296875 -4.21875 C 5.015625 -4.90625 4.53125 -5.125 3.78125 -5.125 C 3.15625 -5.125 2.3125 -4.828125 2.015625 -4.28125 Z M 2.015625 -4.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 3.671875 -2.890625 C 2.46875 -2.890625 0.359375 -2.75 0.359375 -1.34375 C 0.359375 -0.53125 1.0625 0.09375 1.859375 0.09375 C 2.546875 0.09375 3.109375 -0.046875 3.703125 -0.40625 C 3.703125 -0.046875 3.96875 -0.015625 4.203125 -0.015625 L 4.484375 -0.015625 C 4.6875 -0.015625 4.96875 -0.046875 4.96875 -0.40625 L 4.96875 -3.484375 C 4.890625 -4.828125 3.875 -5.1875 2.875 -5.1875 C 2.25 -5.1875 1.671875 -5.078125 1.09375 -4.796875 C 1 -4.734375 0.8125 -4.6875 0.8125 -4.546875 C 0.8125 -4.5 0.828125 -4.453125 0.828125 -4.40625 L 0.859375 -3.984375 C 0.890625 -3.875 0.875 -3.703125 1 -3.703125 C 1.09375 -3.703125 1.296875 -3.921875 1.4375 -4.046875 C 1.78125 -4.3125 2.21875 -4.484375 2.65625 -4.484375 L 2.859375 -4.484375 C 3.640625 -4.484375 3.671875 -3.71875 3.671875 -3.234375 Z M 3.671875 -2.296875 L 3.671875 -1.515625 C 3.671875 -0.90625 3.09375 -0.59375 2.53125 -0.59375 C 2.078125 -0.59375 1.59375 -0.890625 1.59375 -1.390625 C 1.609375 -1.9375 2.34375 -2.140625 2.765625 -2.203125 C 3.0625 -2.25 3.375 -2.296875 3.671875 -2.296875 Z M 3.671875 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.1875 C 2.15625 -5.109375 1.578125 -5 1.125 -4.578125 C 0.5625 -4.046875 0.40625 -3.25 0.40625 -2.515625 C 0.40625 -1.859375 0.53125 -1.125 0.984375 -0.625 C 1.5 -0.0625 2.265625 0.09375 3 0.09375 C 3.625 0.09375 4.25 -0.03125 4.828125 -0.3125 C 4.90625 -0.34375 5 -0.375 5 -0.5 C 5 -0.671875 4.96875 -0.84375 4.953125 -1.015625 C 4.9375 -1.09375 4.953125 -1.28125 4.84375 -1.3125 L 4.8125 -1.3125 C 4.703125 -1.3125 4.453125 -1.078125 4.296875 -0.984375 C 3.9375 -0.78125 3.53125 -0.671875 3.125 -0.65625 L 3 -0.65625 C 1.90625 -0.65625 1.703125 -1.5625 1.6875 -2.296875 L 1.6875 -2.578125 C 1.6875 -3.09375 1.71875 -3.671875 2.0625 -4.0625 C 2.328125 -4.34375 2.6875 -4.421875 3.046875 -4.421875 C 3.375 -4.421875 3.703125 -4.390625 4 -4.25 C 4.25 -4.109375 4.5625 -3.734375 4.6875 -3.734375 C 4.859375 -3.734375 4.921875 -4.453125 4.921875 -4.53125 C 4.921875 -4.78125 4.171875 -5.046875 3.875 -5.109375 C 3.625 -5.171875 3.359375 -5.1875 3.09375 -5.1875 Z M 2.765625 -5.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 2.046875 -4.3125 C 2.03125 -4.359375 2.03125 -4.390625 2.03125 -4.4375 L 2.03125 -7.328125 C 2.03125 -7.390625 2.046875 -7.46875 2.046875 -7.53125 C 2.046875 -7.875 1.8125 -7.96875 1.5625 -7.96875 C 1.46875 -7.96875 1.375 -7.96875 1.28125 -7.96875 L 1.1875 -7.96875 C 0.9375 -7.96875 0.78125 -7.859375 0.78125 -7.484375 L 0.78125 -0.34375 C 0.78125 -0.109375 0.984375 -0.015625 1.203125 -0.015625 L 1.359375 -0.015625 C 1.421875 -0.015625 1.515625 0 1.609375 0 C 1.9375 0 2.0625 -0.15625 2.0625 -0.484375 L 2.0625 -2.546875 C 2.0625 -3.3125 2.34375 -4.421875 3.34375 -4.421875 L 3.4375 -4.421875 C 4.03125 -4.34375 4.09375 -3.890625 4.09375 -3.453125 L 4.09375 -0.453125 C 4.09375 -0.15625 4.171875 -0.015625 4.5625 -0.015625 L 4.9375 -0.015625 C 5.1875 -0.015625 5.375 -0.109375 5.375 -0.4375 L 5.375 -3.28125 C 5.375 -4.203125 5.21875 -5.125 3.71875 -5.125 C 3.09375 -5.125 2.359375 -4.8125 2.046875 -4.3125 Z M 2.046875 -4.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 1.078125 -5.015625 L 0.6875 -5.015625 C 0.40625 -5.015625 0.21875 -4.890625 0.21875 -4.640625 C 0.21875 -4.375 0.421875 -4.28125 0.6875 -4.28125 L 1.046875 -4.28125 L 1.046875 -1.375 C 1.046875 -0.671875 1.234375 0.09375 2.15625 0.09375 C 2.71875 0.09375 3.328125 -0.03125 3.84375 -0.296875 C 3.921875 -0.328125 3.984375 -0.359375 4 -0.453125 C 4 -0.515625 3.921875 -1.03125 3.78125 -1.03125 C 3.703125 -1.03125 3.5625 -0.890625 3.453125 -0.84375 C 3.234375 -0.75 3.03125 -0.65625 2.765625 -0.65625 C 2.296875 -0.65625 2.28125 -1.171875 2.28125 -1.609375 L 2.28125 -4.28125 L 3.375 -4.28125 C 3.59375 -4.28125 3.8125 -4.390625 3.8125 -4.640625 C 3.8125 -4.875 3.671875 -5.015625 3.359375 -5.015625 L 2.28125 -5.015625 L 2.28125 -6.015625 C 2.28125 -6.234375 2.203125 -6.453125 1.890625 -6.453125 L 1.765625 -6.453125 C 1.703125 -6.453125 1.609375 -6.453125 1.53125 -6.453125 C 1.296875 -6.453125 1.078125 -6.375 1.078125 -6.015625 Z M 1.078125 -5.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 4.109375 -4.640625 C 3.734375 -4.953125 3.234375 -5.125 2.765625 -5.125 C 2.15625 -5.125 1.5 -4.984375 1.0625 -4.546875 C 0.515625 -4.015625 0.40625 -3.21875 0.40625 -2.484375 C 0.40625 -1.875 0.484375 -1.25 0.84375 -0.734375 C 1.25 -0.140625 1.9375 0.09375 2.625 0.09375 C 3.15625 0.09375 3.671875 -0.09375 4.078125 -0.453125 C 4.078125 -0.046875 4.296875 0 4.5625 0 C 4.640625 0 4.734375 -0.015625 4.8125 -0.015625 L 4.921875 -0.015625 C 5.140625 -0.015625 5.28125 -0.03125 5.359375 -0.3125 L 5.359375 -7.53125 C 5.359375 -7.890625 5.140625 -7.96875 4.890625 -7.96875 C 4.78125 -7.96875 4.703125 -7.96875 4.609375 -7.96875 L 4.515625 -7.96875 C 4.25 -7.96875 4.109375 -7.8125 4.109375 -7.53125 Z M 1.6875 -2.109375 L 1.6875 -2.59375 C 1.6875 -3.375 1.78125 -4.421875 3.078125 -4.421875 C 3.40625 -4.421875 3.703125 -4.296875 3.984375 -4.03125 C 4.03125 -3.984375 4.0625 -3.9375 4.078125 -3.875 L 4.078125 -1.421875 C 4.078125 -0.90625 3.34375 -0.609375 2.9375 -0.609375 C 2.609375 -0.609375 2.25 -0.734375 2.03125 -0.984375 C 1.75 -1.296875 1.734375 -1.71875 1.6875 -2.109375 Z M 1.6875 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 2 -4.28125 L 2 -4.625 C 2 -4.921875 1.859375 -5.078125 1.5625 -5.078125 C 1.46875 -5.078125 1.390625 -5.078125 1.3125 -5.078125 L 1.171875 -5.078125 C 0.890625 -5.078125 0.78125 -4.875 0.78125 -4.609375 L 0.78125 -0.421875 C 0.78125 -0.03125 1.046875 -0.015625 1.28125 -0.015625 L 1.65625 -0.015625 C 2.03125 -0.015625 2.0625 -0.265625 2.0625 -0.484375 L 2.0625 -2.40625 C 2.0625 -2.796875 2.0625 -3.203125 2.21875 -3.5625 C 2.40625 -4.03125 2.828125 -4.421875 3.34375 -4.421875 L 3.4375 -4.421875 C 4.0625 -4.359375 4.09375 -3.828125 4.09375 -3.375 L 4.09375 -0.46875 C 4.09375 -0.1875 4.171875 -0.015625 4.546875 -0.015625 L 4.921875 -0.015625 C 5.21875 -0.015625 5.375 -0.15625 5.375 -0.453125 L 5.375 -3.265625 C 5.375 -3.671875 5.375 -4.109375 5.171875 -4.5 C 4.875 -5.03125 4.28125 -5.125 3.734375 -5.125 C 3.03125 -5.125 2.515625 -4.828125 2 -4.28125 Z M 2 -4.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 2.078125 -5.1875 C 1.390625 -5.0625 0.40625 -4.984375 0.40625 -3.6875 C 0.40625 -2.90625 1.03125 -2.328125 1.8125 -2.15625 C 2.40625 -2.03125 3.375 -2.03125 3.375 -1.359375 C 3.375 -0.78125 2.859375 -0.671875 2.421875 -0.671875 C 1.765625 -0.671875 1.1875 -0.921875 0.734375 -1.40625 C 0.703125 -1.453125 0.671875 -1.5 0.59375 -1.5 C 0.421875 -1.5 0.390625 -0.921875 0.359375 -0.703125 C 0.34375 -0.65625 0.328125 -0.59375 0.328125 -0.53125 C 0.328125 -0.4375 0.421875 -0.390625 0.484375 -0.359375 C 1.0625 -0.046875 1.71875 0.09375 2.375 0.09375 C 3.21875 0.09375 4.3125 -0.109375 4.3125 -1.46875 C 4.3125 -2.296875 3.6875 -2.90625 2.90625 -3.09375 C 2.375 -3.234375 1.34375 -3.203125 1.34375 -3.875 L 1.34375 -3.921875 C 1.421875 -4.421875 1.84375 -4.484375 2.296875 -4.484375 C 2.828125 -4.484375 3.296875 -4.3125 3.734375 -3.953125 C 3.78125 -3.921875 3.84375 -3.875 3.875 -3.875 C 4.03125 -3.875 4.125 -4.53125 4.125 -4.6875 C 4.125 -5 2.96875 -5.1875 2.40625 -5.1875 Z M 2.078125 -5.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-15">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.1875 C 2.109375 -5.09375 1.53125 -5 1.046875 -4.546875 C 0.484375 -4.015625 0.34375 -3.203125 0.34375 -2.46875 C 0.34375 -1.78125 0.484375 -1.0625 0.96875 -0.5625 C 1.53125 0 2.359375 0.09375 3.109375 0.09375 C 3.78125 0.09375 4.5625 -0.078125 5.046875 -0.59375 C 5.515625 -1.09375 5.65625 -1.78125 5.65625 -2.453125 C 5.65625 -3.15625 5.53125 -3.921875 5.046875 -4.453125 C 4.515625 -5.03125 3.6875 -5.1875 2.921875 -5.1875 Z M 1.625 -2.203125 L 1.625 -2.6875 C 1.625 -3.453125 1.671875 -4.46875 3.015625 -4.46875 C 3.859375 -4.46875 4.28125 -3.953125 4.359375 -3.171875 C 4.375 -2.96875 4.375 -2.765625 4.375 -2.546875 C 4.375 -1.71875 4.34375 -0.65625 2.984375 -0.65625 C 2.59375 -0.65625 2.21875 -0.765625 1.96875 -1.046875 C 1.6875 -1.375 1.671875 -1.78125 1.625 -2.203125 Z M 1.625 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-16">
|
||||
<path style="stroke:none;" d="M 3.90625 -3.71875 L 3.921875 -3.71875 C 3.9375 -3.375 4.0625 -3.015625 4.15625 -2.671875 C 4.3125 -2.109375 4.46875 -1.546875 4.640625 -0.984375 L 4.75 -0.546875 C 4.828125 -0.265625 4.921875 -0.015625 5.359375 -0.015625 L 5.984375 -0.015625 C 6.5625 -0.015625 6.59375 -0.203125 6.921875 -1.3125 C 7.21875 -2.34375 7.484375 -3.390625 7.8125 -4.40625 C 7.859375 -4.515625 7.890625 -4.625 7.890625 -4.75 L 7.890625 -4.78125 C 7.875 -4.96875 7.6875 -5.015625 7.53125 -5.015625 L 7.34375 -5.015625 C 6.9375 -5.015625 6.828125 -4.859375 6.65625 -4.25 C 6.421875 -3.4375 6.171875 -2.625 5.9375 -1.828125 C 5.875 -1.53125 5.765625 -1.265625 5.703125 -0.984375 L 5.6875 -0.984375 C 5.640625 -1.296875 5.5 -1.640625 5.40625 -1.96875 C 5.21875 -2.65625 5 -3.34375 4.8125 -4.03125 C 4.671875 -4.5 4.65625 -5.015625 4.0625 -5.015625 C 3.609375 -5.015625 3.515625 -4.78125 3.375 -4.28125 C 3.09375 -3.328125 2.796875 -2.359375 2.546875 -1.40625 C 2.515625 -1.3125 2.46875 -1.234375 2.46875 -1.140625 C 2.359375 -1.3125 2.3125 -1.609375 2.25 -1.828125 C 2.015625 -2.65625 1.78125 -3.484375 1.53125 -4.3125 C 1.40625 -4.71875 1.328125 -5.015625 0.8125 -5.015625 L 0.609375 -5.015625 C 0.453125 -5.015625 0.28125 -4.96875 0.265625 -4.78125 L 0.265625 -4.75 C 0.265625 -4.625 0.3125 -4.484375 0.359375 -4.359375 C 0.703125 -3.109375 1.0625 -1.84375 1.46875 -0.59375 C 1.609375 -0.0625 1.78125 -0.015625 2.109375 -0.015625 L 2.4375 -0.015625 C 2.984375 -0.015625 3 -0.375 3.125 -0.71875 C 3.328125 -1.484375 3.546875 -2.234375 3.75 -3 C 3.8125 -3.234375 3.890625 -3.484375 3.90625 -3.71875 Z M 3.90625 -3.71875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.291" y="11.258"/>
|
||||
<use xlink:href="#glyph0-2" x="4.887522" y="11.258"/>
|
||||
<use xlink:href="#glyph0-3" x="13.363257" y="11.258"/>
|
||||
<use xlink:href="#glyph0-4" x="21.838992" y="11.258"/>
|
||||
<use xlink:href="#glyph0-5" x="29.739445" y="11.258"/>
|
||||
<use xlink:href="#glyph0-6" x="33.637307" y="11.258"/>
|
||||
<use xlink:href="#glyph0-7" x="39.588111" y="11.258"/>
|
||||
<use xlink:href="#glyph0-8" x="45.906178" y="11.258"/>
|
||||
<use xlink:href="#glyph0-9" x="53.466625" y="11.258"/>
|
||||
<use xlink:href="#glyph0-10" x="60.982599" y="11.258"/>
|
||||
<use xlink:href="#glyph0-11" x="66.594833" y="11.258"/>
|
||||
<use xlink:href="#glyph0-9" x="73.749282" y="11.258"/>
|
||||
<use xlink:href="#glyph0-12" x="81.265257" y="11.258"/>
|
||||
<use xlink:href="#glyph0-13" x="85.163119" y="11.258"/>
|
||||
<use xlink:href="#glyph0-3" x="92.488289" y="11.258"/>
|
||||
<use xlink:href="#glyph0-2" x="100.964024" y="11.258"/>
|
||||
<use xlink:href="#glyph0-12" x="109.439759" y="11.258"/>
|
||||
<use xlink:href="#glyph0-7" x="113.337621" y="11.258"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="0.291" y="45.626"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="16.766176" y="45.626"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="26.545981" y="45.626"/>
|
||||
<use xlink:href="#glyph0-16" x="32.158214" y="45.626"/>
|
||||
<use xlink:href="#glyph0-17" x="40.633949" y="45.626"/>
|
||||
<use xlink:href="#glyph0-9" x="50.247338" y="45.626"/>
|
||||
<use xlink:href="#glyph0-5" x="57.763312" y="45.626"/>
|
||||
<use xlink:href="#glyph0-7" x="61.661174" y="45.626"/>
|
||||
<use xlink:href="#glyph0-18" x="67.979241" y="45.626"/>
|
||||
<use xlink:href="#glyph0-13" x="76.454976" y="45.626"/>
|
||||
<use xlink:href="#glyph0-3" x="83.780146" y="45.626"/>
|
||||
<use xlink:href="#glyph0-9" x="92.25588" y="45.626"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="0.291" y="69.976"/>
|
||||
<use xlink:href="#glyph1-2" x="8.573189" y="69.976"/>
|
||||
<use xlink:href="#glyph1-3" x="13.395011" y="69.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="21.236472" y="69.976"/>
|
||||
<use xlink:href="#glyph1-3" x="26.058294" y="69.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="30.267025" y="69.976"/>
|
||||
<use xlink:href="#glyph1-5" x="34.546665" y="69.976"/>
|
||||
<use xlink:href="#glyph1-2" x="38.766305" y="69.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="47.209948" y="69.976"/>
|
||||
<use xlink:href="#glyph1-7" x="55.3405" y="69.976"/>
|
||||
<use xlink:href="#glyph1-4" x="61.366687" y="69.976"/>
|
||||
<use xlink:href="#glyph1-8" x="65.646327" y="69.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="70.162695" y="69.976"/>
|
||||
<use xlink:href="#glyph1-10" x="76.188881" y="69.976"/>
|
||||
<use xlink:href="#glyph1-11" x="82.215068" y="69.976"/>
|
||||
<use xlink:href="#glyph1-5" x="85.230344" y="69.976"/>
|
||||
<use xlink:href="#glyph1-5" x="89.449983" y="69.976"/>
|
||||
<use xlink:href="#glyph1-12" x="93.669623" y="69.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="0.291" y="99.185"/>
|
||||
<use xlink:href="#glyph2-2" x="7.014604" y="99.185"/>
|
||||
<use xlink:href="#glyph2-1" x="10.749409" y="99.185"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="24.191836" y="99.185"/>
|
||||
<use xlink:href="#glyph2-4" x="31.661445" y="99.185"/>
|
||||
<use xlink:href="#glyph2-5" x="38.578724" y="99.185"/>
|
||||
<use xlink:href="#glyph2-6" x="44.555128" y="99.185"/>
|
||||
<use xlink:href="#glyph2-7" x="51.472407" y="99.185"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="62.063518" y="99.185"/>
|
||||
<use xlink:href="#glyph2-9" x="72.715602" y="99.185"/>
|
||||
<use xlink:href="#glyph2-10" x="75.89688" y="99.185"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="85.235087" y="99.185"/>
|
||||
<use xlink:href="#glyph2-5" x="92.704696" y="99.185"/>
|
||||
<use xlink:href="#glyph2-6" x="98.6811" y="99.185"/>
|
||||
<use xlink:href="#glyph2-11" x="105.598379" y="99.185"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="114.385451" y="99.185"/>
|
||||
<use xlink:href="#glyph2-9" x="120.493363" y="99.185"/>
|
||||
<use xlink:href="#glyph2-12" x="123.674642" y="99.185"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="0.291" y="119.778"/>
|
||||
<use xlink:href="#glyph1-11" x="7.669915" y="119.778"/>
|
||||
<use xlink:href="#glyph1-10" x="10.68519" y="119.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="20.333199" y="119.778"/>
|
||||
<use xlink:href="#glyph1-10" x="28.463751" y="119.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="34.184483" y="119.778"/>
|
||||
<use xlink:href="#glyph1-2" x="38.404123" y="119.778"/>
|
||||
<use xlink:href="#glyph1-3" x="43.225945" y="119.778"/>
|
||||
<use xlink:href="#glyph1-15" x="47.445585" y="119.778"/>
|
||||
<use xlink:href="#glyph1-7" x="52.869589" y="119.778"/>
|
||||
<use xlink:href="#glyph1-4" x="58.895776" y="119.778"/>
|
||||
<use xlink:href="#glyph1-8" x="63.175416" y="119.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="67.691783" y="119.778"/>
|
||||
<use xlink:href="#glyph1-10" x="73.71797" y="119.778"/>
|
||||
<use xlink:href="#glyph1-11" x="79.744157" y="119.778"/>
|
||||
<use xlink:href="#glyph1-5" x="82.759432" y="119.778"/>
|
||||
<use xlink:href="#glyph1-5" x="86.979072" y="119.778"/>
|
||||
<use xlink:href="#glyph1-12" x="91.198712" y="119.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="0.291" y="148.987"/>
|
||||
<use xlink:href="#glyph2-2" x="7.014604" y="148.987"/>
|
||||
<use xlink:href="#glyph2-13" x="10.749409" y="148.987"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="24.191836" y="148.987"/>
|
||||
<use xlink:href="#glyph2-4" x="31.661445" y="148.987"/>
|
||||
<use xlink:href="#glyph2-5" x="38.578724" y="148.987"/>
|
||||
<use xlink:href="#glyph2-6" x="44.555128" y="148.987"/>
|
||||
<use xlink:href="#glyph2-7" x="51.472407" y="148.987"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="62.063518" y="148.987"/>
|
||||
<use xlink:href="#glyph2-6" x="68.787123" y="148.987"/>
|
||||
<use xlink:href="#glyph2-12" x="75.704402" y="148.987"/>
|
||||
<use xlink:href="#glyph2-7" x="82.62168" y="148.987"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="93.212792" y="148.987"/>
|
||||
<use xlink:href="#glyph2-5" x="100.682401" y="148.987"/>
|
||||
<use xlink:href="#glyph2-6" x="106.658805" y="148.987"/>
|
||||
<use xlink:href="#glyph2-11" x="113.576084" y="148.987"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="122.363156" y="148.987"/>
|
||||
<use xlink:href="#glyph2-9" x="128.471068" y="148.987"/>
|
||||
<use xlink:href="#glyph2-12" x="131.652347" y="148.987"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="0.291" y="169.58"/>
|
||||
<use xlink:href="#glyph1-11" x="7.669915" y="169.58"/>
|
||||
<use xlink:href="#glyph1-10" x="10.68519" y="169.58"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="20.333199" y="169.58"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="27.860478" y="169.58"/>
|
||||
<use xlink:href="#glyph1-11" x="32.6823" y="169.58"/>
|
||||
<use xlink:href="#glyph1-5" x="35.697575" y="169.58"/>
|
||||
<use xlink:href="#glyph1-2" x="39.917215" y="169.58"/>
|
||||
<use xlink:href="#glyph1-3" x="44.739037" y="169.58"/>
|
||||
<use xlink:href="#glyph1-2" x="48.958677" y="169.58"/>
|
||||
<use xlink:href="#glyph1-3" x="53.780499" y="169.58"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="61.611051" y="169.58"/>
|
||||
<use xlink:href="#glyph1-10" x="69.741603" y="169.58"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="75.473244" y="169.58"/>
|
||||
<use xlink:href="#glyph1-2" x="79.692884" y="169.58"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="84.503797" y="169.58"/>
|
||||
<use xlink:href="#glyph1-15" x="88.723437" y="169.58"/>
|
||||
<use xlink:href="#glyph1-7" x="94.147442" y="169.58"/>
|
||||
<use xlink:href="#glyph1-4" x="100.173629" y="169.58"/>
|
||||
<use xlink:href="#glyph1-8" x="104.453269" y="169.58"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="108.980545" y="169.58"/>
|
||||
<use xlink:href="#glyph1-11" x="115.006732" y="169.58"/>
|
||||
<use xlink:href="#glyph1-5" x="118.022007" y="169.58"/>
|
||||
<use xlink:href="#glyph1-5" x="122.241647" y="169.58"/>
|
||||
<use xlink:href="#glyph1-12" x="126.461287" y="169.58"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="0.291" y="198.39"/>
|
||||
<use xlink:href="#glyph3-2" x="6.299732" y="198.39"/>
|
||||
<use xlink:href="#glyph3-3" x="9.637917" y="198.39"/>
|
||||
<use xlink:href="#glyph3-2" x="15.646649" y="198.39"/>
|
||||
<use xlink:href="#glyph3-1" x="18.984834" y="198.39"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-4" x="31.00448" y="198.39"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-5" x="41.971398" y="198.39"/>
|
||||
<use xlink:href="#glyph3-6" x="47.453221" y="198.39"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="55.540137" y="198.39"/>
|
||||
<use xlink:href="#glyph3-8" x="65.041963" y="198.39"/>
|
||||
<use xlink:href="#glyph3-9" x="70.794331" y="198.39"/>
|
||||
<use xlink:href="#glyph3-10" x="76.135427" y="198.39"/>
|
||||
<use xlink:href="#glyph3-11" x="82.299068" y="198.39"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-12" x="90.642348" y="198.39"/>
|
||||
<use xlink:href="#glyph3-5" x="96.80599" y="198.39"/>
|
||||
<use xlink:href="#glyph3-13" x="102.287812" y="198.39"/>
|
||||
<use xlink:href="#glyph3-13" x="108.451454" y="198.39"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="118.629644" y="198.39"/>
|
||||
<use xlink:href="#glyph3-15" x="123.236557" y="198.39"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-16" x="128.907107" y="198.39"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-8" x="136.735477" y="198.39"/>
|
||||
<use xlink:href="#glyph3-14" x="142.487846" y="198.39"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="0.291" y="218.983"/>
|
||||
<use xlink:href="#glyph1-10" x="8.421552" y="218.983"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="14.142284" y="218.983"/>
|
||||
<use xlink:href="#glyph1-2" x="18.361924" y="218.983"/>
|
||||
<use xlink:href="#glyph1-3" x="23.183746" y="218.983"/>
|
||||
<use xlink:href="#glyph1-17" x="27.403386" y="218.983"/>
|
||||
<use xlink:href="#glyph1-14" x="31.020844" y="218.983"/>
|
||||
<use xlink:href="#glyph1-10" x="39.151396" y="218.983"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="44.883037" y="218.983"/>
|
||||
<use xlink:href="#glyph1-2" x="49.102677" y="218.983"/>
|
||||
<use xlink:href="#glyph1-3" x="53.924499" y="218.983"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="58.13323" y="218.983"/>
|
||||
<use xlink:href="#glyph1-7" x="63.557235" y="218.983"/>
|
||||
<use xlink:href="#glyph1-4" x="69.583421" y="218.983"/>
|
||||
<use xlink:href="#glyph1-8" x="73.863061" y="218.983"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="78.390338" y="218.983"/>
|
||||
<use xlink:href="#glyph1-10" x="84.416525" y="218.983"/>
|
||||
<use xlink:href="#glyph1-11" x="90.442711" y="218.983"/>
|
||||
<use xlink:href="#glyph1-5" x="93.457987" y="218.983"/>
|
||||
<use xlink:href="#glyph1-5" x="97.677627" y="218.983"/>
|
||||
<use xlink:href="#glyph1-12" x="101.897266" y="218.983"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-19" x="0.291" y="253.351"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="16.766176" y="253.351"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="26.545981" y="253.351"/>
|
||||
<use xlink:href="#glyph0-16" x="32.158214" y="253.351"/>
|
||||
<use xlink:href="#glyph0-17" x="40.633949" y="253.351"/>
|
||||
<use xlink:href="#glyph0-9" x="50.247338" y="253.351"/>
|
||||
<use xlink:href="#glyph0-5" x="57.763312" y="253.351"/>
|
||||
<use xlink:href="#glyph0-10" x="61.661174" y="253.351"/>
|
||||
<use xlink:href="#glyph0-9" x="67.273408" y="253.351"/>
|
||||
<use xlink:href="#glyph0-11" x="74.789382" y="253.351"/>
|
||||
<use xlink:href="#glyph0-9" x="81.943832" y="253.351"/>
|
||||
<use xlink:href="#glyph0-20" x="89.459806" y="253.351"/>
|
||||
<use xlink:href="#glyph0-6" x="97.935541" y="253.351"/>
|
||||
<use xlink:href="#glyph0-9" x="103.886345" y="253.351"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="0.291" y="277.701"/>
|
||||
<use xlink:href="#glyph1-2" x="10.228099" y="277.701"/>
|
||||
<use xlink:href="#glyph1-11" x="15.049921" y="277.701"/>
|
||||
<use xlink:href="#glyph1-10" x="18.065197" y="277.701"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-19" x="27.702296" y="277.701"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="34.489938" y="277.701"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="37.494304" y="277.701"/>
|
||||
<use xlink:href="#glyph1-7" x="42.316126" y="277.701"/>
|
||||
<use xlink:href="#glyph1-20" x="48.342313" y="277.701"/>
|
||||
<use xlink:href="#glyph1-11" x="51.357588" y="277.701"/>
|
||||
<use xlink:href="#glyph1-10" x="54.372863" y="277.701"/>
|
||||
<use xlink:href="#glyph1-21" x="60.39905" y="277.701"/>
|
||||
<use xlink:href="#glyph1-4" x="65.823055" y="277.701"/>
|
||||
<use xlink:href="#glyph1-3" x="70.102695" y="277.701"/>
|
||||
<use xlink:href="#glyph1-2" x="74.322334" y="277.701"/>
|
||||
<use xlink:href="#glyph1-22" x="79.144157" y="277.701"/>
|
||||
<use xlink:href="#glyph1-2" x="83.965979" y="277.701"/>
|
||||
<use xlink:href="#glyph1-23" x="88.787801" y="277.701"/>
|
||||
<use xlink:href="#glyph1-5" x="94.813988" y="277.701"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 90 KiB |
544
sections/german/03/contents-orig.svg
Normal file
@ -0,0 +1,544 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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 1.6875 -9.828125 C 1.4375 -9.828125 1.390625 -9.5 1.390625 -9.328125 L 1.390625 -0.75 C 1.390625 -0.65625 1.375 -0.578125 1.375 -0.484375 C 1.375 -0.1875 1.546875 -0.015625 1.828125 -0.015625 L 2.703125 -0.015625 C 3.15625 -0.015625 3.203125 -0.25 3.203125 -0.515625 L 3.203125 -9.125 C 3.203125 -9.203125 3.21875 -9.296875 3.21875 -9.375 C 3.21875 -9.75 2.984375 -9.84375 2.734375 -9.84375 L 1.875 -9.84375 C 1.8125 -9.84375 1.75 -9.84375 1.6875 -9.828125 Z M 1.6875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.78125 -5.46875 C 2.765625 -5.546875 2.75 -5.640625 2.75 -5.71875 C 2.75 -5.84375 2.765625 -5.953125 2.765625 -6.046875 C 2.765625 -6.28125 2.703125 -6.515625 2.421875 -6.546875 L 1.375 -6.546875 C 1.140625 -6.484375 1.0625 -6.296875 1.0625 -6.0625 L 1.0625 -0.453125 C 1.0625 -0.046875 1.328125 -0.015625 1.578125 -0.015625 L 2.359375 -0.015625 C 2.796875 -0.015625 2.828125 -0.28125 2.828125 -0.53125 L 2.828125 -3.40625 C 2.828125 -4.21875 2.96875 -5.375 4.21875 -5.671875 C 4.3125 -5.6875 4.4375 -5.6875 4.546875 -5.6875 C 5.546875 -5.6875 5.640625 -5.0625 5.640625 -4.453125 L 5.640625 -0.71875 C 5.640625 -0.625 5.625 -0.546875 5.625 -0.453125 C 5.625 -0.21875 5.75 -0.015625 6.0625 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.40625 -0.109375 7.40625 -0.5 L 7.40625 -4.375 C 7.40625 -4.953125 7.375 -5.609375 6.953125 -6.046875 C 6.46875 -6.5625 5.78125 -6.609375 5.125 -6.609375 L 4.9375 -6.609375 C 4.125 -6.546875 3.140625 -6.15625 2.78125 -5.46875 Z M 2.78125 -5.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.796875 -5.515625 L 2.796875 -9.765625 C 2.796875 -10.078125 2.703125 -10.265625 2.25 -10.265625 C 2.09375 -10.265625 1.9375 -10.25 1.78125 -10.25 C 1.6875 -10.25 1.609375 -10.265625 1.515625 -10.265625 C 1.296875 -10.265625 1.0625 -10.140625 1.0625 -9.859375 L 1.0625 -0.53125 C 1.0625 -0.296875 1.078125 -0.109375 1.375 -0.015625 L 2.3125 -0.015625 C 2.671875 -0.015625 2.828125 -0.171875 2.828125 -0.53125 L 2.828125 -3.5625 C 2.828125 -4.515625 3.3125 -5.6875 4.53125 -5.6875 C 5.5 -5.6875 5.640625 -5.125 5.640625 -4.484375 L 5.640625 -0.515625 C 5.640625 -0.1875 5.75 -0.015625 6.078125 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.421875 -0.15625 7.421875 -0.5 C 7.421875 -0.609375 7.40625 -0.703125 7.40625 -0.78125 L 7.40625 -4.21875 C 7.40625 -4.765625 7.40625 -5.328125 7.125 -5.828125 C 6.734375 -6.53125 5.859375 -6.609375 5.15625 -6.609375 C 4.1875 -6.609375 3.390625 -6.203125 2.796875 -5.515625 Z M 2.796875 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.859375 C 3.34375 -3.859375 0.484375 -3.640625 0.484375 -1.796875 C 0.484375 -0.65625 1.46875 0.109375 2.578125 0.109375 C 3.4375 0.109375 4.40625 -0.0625 5.09375 -0.609375 L 5.09375 -0.453125 C 5.09375 -0.015625 5.390625 -0.015625 5.640625 -0.015625 L 6.359375 -0.015625 C 6.59375 -0.015625 6.828125 -0.09375 6.828125 -0.453125 L 6.828125 -4.578125 C 6.71875 -6.328125 5.265625 -6.6875 3.984375 -6.6875 C 3.125 -6.6875 2.328125 -6.546875 1.515625 -6.203125 C 1.375 -6.125 1.140625 -6.09375 1.140625 -5.90625 C 1.140625 -5.546875 1.15625 -4.8125 1.359375 -4.8125 C 1.4375 -4.8125 1.484375 -4.859375 1.546875 -4.90625 C 2.1875 -5.484375 2.9375 -5.796875 3.828125 -5.796875 C 4.671875 -5.796875 5.0625 -5.328125 5.0625 -4.328125 Z M 5.0625 -3.140625 L 5.0625 -2 C 5.0625 -1.125 4.234375 -0.796875 3.484375 -0.796875 C 2.96875 -0.796875 2.1875 -1.078125 2.1875 -1.8125 C 2.1875 -3.03125 4.265625 -3.078125 5.0625 -3.140625 Z M 5.0625 -3.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 1.375 -10.234375 C 1.125 -10.234375 1.078125 -9.90625 1.078125 -9.734375 L 1.078125 -0.78125 C 1.078125 -0.703125 1.0625 -0.609375 1.0625 -0.5 C 1.0625 -0.265625 1.171875 -0.046875 1.40625 -0.015625 L 2.265625 -0.015625 C 2.75 -0.015625 2.8125 -0.21875 2.8125 -0.484375 L 2.8125 -9.484375 C 2.8125 -9.5625 2.828125 -9.65625 2.828125 -9.75 C 2.828125 -10 2.734375 -10.234375 2.46875 -10.25 L 1.59375 -10.25 C 1.515625 -10.25 1.453125 -10.25 1.375 -10.234375 Z M 1.375 -10.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 1.46875 -6.484375 L 0.75 -6.484375 C 0.46875 -6.484375 0.28125 -6.3125 0.28125 -6.03125 C 0.28125 -5.765625 0.453125 -5.609375 0.71875 -5.609375 L 1.4375 -5.609375 L 1.4375 -1.828125 C 1.4375 -0.890625 1.671875 0.109375 2.890625 0.109375 C 3.703125 0.109375 4.5625 -0.046875 5.265625 -0.421875 C 5.34375 -0.453125 5.46875 -0.5 5.46875 -0.609375 L 5.46875 -0.640625 C 5.46875 -0.828125 5.328125 -1.34375 5.171875 -1.34375 C 5.046875 -1.34375 4.875 -1.1875 4.734375 -1.109375 C 4.453125 -0.953125 4.109375 -0.859375 3.796875 -0.859375 C 3.234375 -0.859375 3.140625 -1.390625 3.140625 -2.140625 L 3.140625 -5.609375 L 4.734375 -5.609375 C 5 -5.609375 5.21875 -5.75 5.21875 -6.03125 C 5.21875 -6.34375 5.03125 -6.484375 4.71875 -6.484375 L 3.140625 -6.484375 L 3.140625 -7.84375 C 3.140625 -8.1875 3.015625 -8.34375 2.609375 -8.34375 C 2.515625 -8.34375 2.390625 -8.328125 2.296875 -8.328125 C 2.1875 -8.328125 2.09375 -8.34375 2 -8.34375 C 1.71875 -8.34375 1.46875 -8.28125 1.46875 -7.84375 Z M 1.46875 -6.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 2.84375 -6.6875 C 1.84375 -6.578125 0.546875 -6.34375 0.546875 -4.703125 C 0.546875 -3.59375 1.5 -2.9375 2.5 -2.71875 C 3.25 -2.5625 4.640625 -2.53125 4.640625 -1.703125 C 4.640625 -0.96875 3.796875 -0.890625 3.328125 -0.890625 C 2.4375 -0.890625 1.671875 -1.1875 0.984375 -1.828125 C 0.953125 -1.859375 0.859375 -1.9375 0.78125 -1.9375 C 0.609375 -1.9375 0.625 -1.65625 0.609375 -1.5 C 0.578125 -1.25 0.453125 -0.96875 0.453125 -0.703125 C 0.453125 -0.5625 0.578125 -0.53125 0.6875 -0.453125 C 1.515625 -0.09375 2.421875 0.125 3.328125 0.125 C 4.484375 0.125 5.9375 -0.21875 5.9375 -2 C 5.9375 -3.015625 5.109375 -3.75 4.171875 -4.015625 C 3.734375 -4.125 3.265625 -4.1875 2.828125 -4.265625 C 2.4375 -4.34375 1.84375 -4.515625 1.84375 -5 L 1.84375 -5.078125 C 1.96875 -5.71875 2.625 -5.75 3.140625 -5.75 C 3.90625 -5.75 4.5625 -5.53125 5.15625 -5.09375 C 5.203125 -5.0625 5.265625 -5 5.328125 -5 C 5.53125 -5 5.640625 -5.875 5.640625 -6.0625 C 5.640625 -6.265625 5.21875 -6.359375 4.984375 -6.421875 C 4.453125 -6.609375 3.890625 -6.6875 3.3125 -6.6875 Z M 2.84375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 3.78125 -1.453125 C 3.265625 -2.71875 2.8125 -3.9375 2.34375 -5.21875 L 2.078125 -5.90625 C 1.921875 -6.28125 1.78125 -6.484375 1.328125 -6.484375 L 0.609375 -6.484375 C 0.484375 -6.46875 0.390625 -6.390625 0.359375 -6.265625 L 0.359375 -6.203125 C 0.359375 -6.078125 0.4375 -5.953125 0.46875 -5.84375 C 1.125 -4.078125 1.796875 -2.34375 2.46875 -0.609375 C 2.609375 -0.265625 2.703125 -0.015625 3.21875 -0.015625 L 4.28125 -0.015625 C 4.984375 -0.015625 5.0625 -0.5625 5.34375 -1.328125 C 5.90625 -2.84375 6.484375 -4.3125 7.0625 -5.796875 C 7.09375 -5.921875 7.1875 -6.0625 7.1875 -6.203125 C 7.1875 -6.40625 7.015625 -6.484375 6.828125 -6.484375 L 6.671875 -6.484375 C 6.5625 -6.484375 6.40625 -6.5 6.28125 -6.5 C 5.65625 -6.5 5.515625 -6.0625 5.34375 -5.546875 C 4.921875 -4.5 4.546875 -3.453125 4.140625 -2.40625 L 3.9375 -1.84375 C 3.875 -1.71875 3.8125 -1.59375 3.78125 -1.453125 Z M 3.78125 -1.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 2.15625 -3 L 6.5625 -3 C 6.9375 -3 7.0625 -3.203125 7.0625 -3.484375 C 7.0625 -5.140625 6.375 -6.6875 3.9375 -6.6875 C 3 -6.6875 2 -6.46875 1.3125 -5.796875 C 0.65625 -5.140625 0.453125 -4.171875 0.453125 -3.28125 C 0.453125 -2.5 0.609375 -1.671875 1.125 -1.0625 C 1.84375 -0.140625 3.0625 0.109375 4.15625 0.109375 C 4.984375 0.109375 5.828125 -0.0625 6.5625 -0.40625 C 6.6875 -0.453125 6.921875 -0.53125 6.953125 -0.671875 L 6.953125 -0.734375 C 6.953125 -1.03125 6.9375 -1.65625 6.78125 -1.703125 L 6.75 -1.703125 C 6.625 -1.703125 6.484375 -1.5625 6.390625 -1.484375 C 5.78125 -1.046875 4.984375 -0.796875 4.21875 -0.796875 C 3.234375 -0.796875 2.15625 -1.3125 2.15625 -2.890625 Z M 2.171875 -3.796875 C 2.171875 -4.859375 2.828125 -5.765625 3.9375 -5.765625 C 5.28125 -5.765625 5.4375 -4.6875 5.515625 -3.796875 Z M 2.171875 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.21875 C 2.75 -5.328125 2.75 -5.421875 2.75 -5.515625 L 2.75 -6.09375 C 2.75 -6.484375 2.515625 -6.546875 2.25 -6.546875 L 1.5 -6.546875 C 1.265625 -6.546875 1.0625 -6.40625 1.0625 -6.0625 C 1.0625 -5.984375 1.078125 -5.90625 1.078125 -5.84375 L 1.078125 -0.546875 C 1.078125 -0.296875 1.109375 -0.015625 1.5 -0.015625 L 2.3125 -0.015625 C 2.546875 -0.015625 2.8125 -0.078125 2.8125 -0.4375 L 2.8125 -2.765625 C 2.8125 -3.25 2.8125 -3.71875 3.0625 -4.140625 C 3.46875 -4.859375 4.265625 -5.234375 5.0625 -5.3125 L 5.15625 -5.3125 C 5.3125 -5.3125 5.359375 -5.34375 5.359375 -5.515625 L 5.359375 -6.375 C 5.359375 -6.546875 5.3125 -6.609375 5.140625 -6.609375 C 4.21875 -6.609375 3.0625 -5.921875 2.765625 -5.21875 Z M 2.765625 -5.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 4.5625 -5.609375 C 4.15625 -5.09375 3.71875 -4.609375 3.28125 -4.109375 C 2.453125 -3.109375 1.640625 -2.140625 0.796875 -1.171875 C 0.65625 -1 0.453125 -0.84375 0.453125 -0.59375 L 0.453125 -0.46875 C 0.453125 -0.171875 0.578125 -0.015625 0.953125 -0.015625 L 5.921875 -0.015625 C 6 -0.015625 6.0625 0 6.15625 0 C 6.578125 0 6.625 -0.265625 6.625 -0.53125 C 6.625 -0.75 6.5625 -1 6.203125 -1 L 6.09375 -1 C 4.890625 -1 3.703125 -0.953125 2.5 -0.953125 C 2.84375 -1.375 3.21875 -1.796875 3.578125 -2.203125 L 6.234375 -5.359375 C 6.40625 -5.546875 6.59375 -5.703125 6.59375 -6.015625 C 6.59375 -6.40625 6.375 -6.484375 6.109375 -6.484375 L 1.171875 -6.484375 C 0.78125 -6.484375 0.6875 -6.28125 0.6875 -6.03125 C 0.6875 -5.78125 0.78125 -5.5625 1.109375 -5.5625 L 1.21875 -5.5625 C 1.390625 -5.5625 1.578125 -5.5625 1.75 -5.578125 L 1.921875 -5.578125 C 2.140625 -5.578125 2.359375 -5.5625 2.5625 -5.5625 C 2.796875 -5.5625 3.015625 -5.59375 3.234375 -5.59375 L 3.625 -5.59375 C 3.9375 -5.59375 4.25 -5.609375 4.5625 -5.609375 Z M 4.5625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 1.375 -6.46875 C 1.140625 -6.421875 1.078125 -6.21875 1.078125 -6.015625 L 1.078125 -0.46875 C 1.078125 -0.078125 1.328125 -0.015625 1.609375 -0.015625 L 2.359375 -0.015625 C 2.734375 -0.015625 2.8125 -0.25 2.8125 -0.515625 L 2.8125 -6.03125 C 2.8125 -6.359375 2.640625 -6.484375 2.34375 -6.484375 L 1.546875 -6.484375 C 1.484375 -6.484375 1.4375 -6.484375 1.375 -6.46875 Z M 1.328125 -10.171875 C 1.109375 -10.140625 1.03125 -9.90625 1.03125 -9.71875 L 1.03125 -8.8125 C 1.03125 -8.484375 1.234375 -8.375 1.484375 -8.375 L 2.359375 -8.375 C 2.625 -8.375 2.84375 -8.46875 2.84375 -8.8125 L 2.84375 -9.75 C 2.84375 -10.109375 2.609375 -10.1875 2.375 -10.1875 L 1.515625 -10.1875 C 1.453125 -10.1875 1.390625 -10.1875 1.328125 -10.171875 Z M 1.328125 -10.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 3.78125 -6.6875 C 3.578125 -6.65625 3.359375 -6.640625 3.140625 -6.609375 C 2.515625 -6.5 1.890625 -6.25 1.421875 -5.8125 C 0.765625 -5.171875 0.546875 -4.21875 0.546875 -3.3125 C 0.546875 -2.4375 0.703125 -1.53125 1.3125 -0.859375 C 2.015625 -0.09375 3.109375 0.109375 4.109375 0.109375 C 5.015625 0.109375 5.9375 -0.078125 6.734375 -0.5 C 6.828125 -0.546875 6.859375 -0.609375 6.859375 -0.6875 C 6.859375 -1.03125 6.8125 -1.71875 6.65625 -1.734375 L 6.640625 -1.734375 C 6.484375 -1.734375 6.171875 -1.4375 5.953125 -1.3125 C 5.40625 -1 4.78125 -0.859375 4.15625 -0.859375 C 2.53125 -0.859375 2.3125 -2.15625 2.3125 -3.234375 C 2.3125 -4.375 2.484375 -5.703125 4.15625 -5.703125 C 4.953125 -5.703125 5.5 -5.5625 6.203125 -5.015625 C 6.28125 -4.96875 6.375 -4.859375 6.46875 -4.859375 C 6.625 -4.859375 6.625 -5.09375 6.640625 -5.171875 L 6.734375 -5.6875 C 6.734375 -5.765625 6.765625 -5.84375 6.765625 -5.90625 C 6.765625 -6.203125 5.703125 -6.53125 5.296875 -6.59375 C 4.953125 -6.671875 4.609375 -6.6875 4.265625 -6.6875 Z M 3.78125 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 3.4375 -8.5 L 3.4375 -0.890625 L 1.859375 -0.890625 C 1.546875 -0.890625 1.375 -0.734375 1.375 -0.4375 C 1.375 -0.171875 1.546875 -0.015625 1.859375 -0.015625 L 6.734375 -0.015625 C 6.984375 -0.046875 7.078125 -0.25 7.078125 -0.46875 C 7.078125 -0.71875 6.921875 -0.90625 6.59375 -0.90625 C 6.5 -0.90625 6.40625 -0.890625 6.328125 -0.890625 L 5.1875 -0.890625 L 5.1875 -9.703125 C 5.1875 -10.0625 4.9375 -10.109375 4.6875 -10.109375 C 4.265625 -10.109375 4.046875 -9.734375 3.703125 -9.546875 C 3.140625 -9.25 2.5 -9.15625 1.859375 -9.140625 C 1.59375 -9.140625 1.296875 -9.109375 1.296875 -8.671875 C 1.296875 -8.390625 1.484375 -8.25 1.796875 -8.25 C 2.359375 -8.296875 2.890625 -8.328125 3.4375 -8.5 Z M 3.4375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 4.65625 -8.609375 L 4.65625 -0.4375 C 4.65625 -0.171875 4.8125 -0.015625 5.109375 -0.015625 L 6 -0.015625 C 6.4375 -0.015625 6.46875 -0.265625 6.46875 -0.5 L 6.46875 -8.609375 C 7.609375 -8.609375 8.765625 -8.546875 9.90625 -8.546875 L 10.078125 -8.546875 C 10.5 -8.546875 10.546875 -8.796875 10.546875 -9.015625 L 10.546875 -9.3125 C 10.546875 -9.5 10.515625 -9.78125 10.125 -9.78125 L 1.34375 -9.78125 C 1.265625 -9.78125 1.171875 -9.796875 1.078125 -9.796875 C 0.765625 -9.796875 0.59375 -9.625 0.59375 -9.328125 L 0.59375 -9.03125 C 0.59375 -8.75 0.640625 -8.53125 1.140625 -8.53125 C 1.265625 -8.53125 1.40625 -8.546875 1.53125 -8.5625 L 1.984375 -8.5625 C 2.125 -8.5625 2.28125 -8.5625 2.4375 -8.578125 L 3.1875 -8.578125 C 3.671875 -8.59375 4.171875 -8.609375 4.65625 -8.609375 Z M 4.65625 -8.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 2.015625 -9.828125 C 1.8125 -9.78125 1.71875 -9.609375 1.71875 -9.375 L 1.71875 -8.5 C 1.71875 -8.265625 1.828125 -8.03125 2.109375 -8.03125 L 3.03125 -8.03125 C 3.296875 -8.03125 3.53125 -8.109375 3.53125 -8.453125 L 3.53125 -9.40625 C 3.53125 -9.765625 3.296875 -9.84375 3.0625 -9.84375 L 2.203125 -9.84375 C 2.140625 -9.84375 2.078125 -9.84375 2.015625 -9.828125 Z M 5.21875 -9.828125 C 5 -9.78125 4.9375 -9.625 4.9375 -9.40625 L 4.9375 -8.46875 C 4.9375 -8.1875 5.078125 -8.03125 5.359375 -8.03125 L 6.25 -8.03125 C 6.515625 -8.03125 6.734375 -8.125 6.734375 -8.5 L 6.734375 -9.296875 C 6.734375 -9.625 6.640625 -9.84375 6.28125 -9.84375 L 5.40625 -9.84375 C 5.328125 -9.84375 5.28125 -9.84375 5.21875 -9.828125 Z M 5.21875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 1.421875 -6.484375 L 0.953125 -6.484375 C 0.640625 -6.484375 0.4375 -6.359375 0.4375 -6.03125 C 0.4375 -5.75 0.609375 -5.609375 0.953125 -5.609375 L 1.421875 -5.609375 L 1.421875 -0.84375 C 1.421875 -0.75 1.40625 -0.640625 1.40625 -0.53125 C 1.40625 -0.265625 1.484375 -0.015625 1.84375 -0.015625 L 2.65625 -0.015625 C 3.0625 -0.015625 3.15625 -0.234375 3.15625 -0.546875 L 3.15625 -5.609375 L 4.078125 -5.609375 C 4.140625 -5.609375 4.234375 -5.59375 4.296875 -5.59375 C 4.59375 -5.59375 4.75 -5.796875 4.75 -6.046875 C 4.75 -6.328125 4.59375 -6.484375 4.28125 -6.484375 L 3.125 -6.484375 L 3.125 -8.234375 C 3.125 -8.875 3.265625 -9.46875 4.265625 -9.46875 C 4.6875 -9.46875 5.078125 -9.34375 5.390625 -9.0625 C 5.453125 -9.015625 5.515625 -8.984375 5.578125 -8.984375 L 5.609375 -8.984375 C 5.6875 -9.015625 5.703125 -9.109375 5.703125 -9.1875 L 5.703125 -10.125 C 5.65625 -10.40625 4.515625 -10.40625 4.21875 -10.40625 C 3.40625 -10.40625 2.578125 -10.234375 2.015625 -9.65625 C 1.625 -9.234375 1.46875 -8.65625 1.421875 -8.109375 Z M 7.71875 -5.609375 L 8.640625 -5.609375 C 8.703125 -5.609375 8.796875 -5.59375 8.859375 -5.59375 C 9.15625 -5.59375 9.3125 -5.796875 9.3125 -6.046875 C 9.3125 -6.328125 9.15625 -6.484375 8.84375 -6.484375 L 7.6875 -6.484375 L 7.6875 -7.875 C 7.6875 -8.015625 7.671875 -8.15625 7.671875 -8.3125 C 7.671875 -8.921875 7.90625 -9.484375 8.828125 -9.484375 C 9.171875 -9.484375 9.515625 -9.375 9.765625 -9.203125 C 9.875 -9.15625 10.015625 -8.984375 10.140625 -8.984375 C 10.28125 -8.984375 10.28125 -9.125 10.28125 -9.203125 L 10.28125 -10.046875 C 10.28125 -10.390625 9.53125 -10.34375 9.1875 -10.390625 L 8.96875 -10.390625 C 7.953125 -10.390625 6.78125 -10.25 6.25 -9.1875 C 6.015625 -8.6875 5.984375 -8.15625 5.984375 -7.625 L 5.984375 -0.484375 C 5.984375 -0.1875 6.09375 0 6.515625 0 C 6.65625 0 6.8125 -0.015625 6.953125 -0.015625 C 7.046875 -0.015625 7.140625 0 7.234375 0 C 7.46875 0 7.71875 -0.09375 7.71875 -0.421875 Z M 7.71875 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 5.671875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 2.40625 -1.25 C 3.34375 -2.0625 4.265625 -2.921875 5.234375 -3.703125 C 6.203125 -4.46875 7.359375 -5.4375 7.40625 -6.8125 L 7.40625 -6.921875 C 7.40625 -8.875 5.765625 -10.109375 3.90625 -10.109375 C 2.6875 -10.109375 1.5625 -9.609375 0.96875 -8.515625 C 0.859375 -8.34375 0.703125 -8.09375 0.703125 -7.953125 L 0.703125 -7.921875 C 0.703125 -7.71875 1.3125 -7.125 1.4375 -6.96875 C 1.46875 -6.9375 1.515625 -6.90625 1.578125 -6.90625 L 1.609375 -6.90625 C 1.734375 -6.953125 1.84375 -7.46875 1.9375 -7.703125 C 2.234375 -8.390625 2.78125 -8.953125 3.640625 -8.953125 C 4.703125 -8.953125 5.625 -8.140625 5.625 -6.90625 C 5.625 -5.65625 4.671875 -4.65625 3.8125 -3.859375 C 2.90625 -3 2.015625 -2.140625 1.140625 -1.25 C 0.984375 -1.109375 0.796875 -0.984375 0.796875 -0.78125 C 0.796875 -0.703125 0.8125 -0.640625 0.8125 -0.59375 L 0.8125 -0.484375 C 0.8125 -0.140625 0.984375 -0.015625 1.296875 -0.015625 L 6.9375 -0.015625 C 7.171875 -0.015625 7.40625 -0.09375 7.40625 -0.4375 L 7.40625 -0.78125 C 7.40625 -1.015625 7.359375 -1.28125 6.984375 -1.28125 L 6.78125 -1.28125 C 6.484375 -1.28125 6.1875 -1.265625 5.875 -1.265625 L 4.546875 -1.265625 C 3.828125 -1.265625 3.125 -1.25 2.40625 -1.25 Z M 2.40625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 2.8125 -5.875 L 2.8125 -6.03125 C 2.8125 -6.46875 2.53125 -6.484375 2.265625 -6.484375 L 1.59375 -6.484375 C 1.34375 -6.484375 1.078125 -6.421875 1.078125 -6.046875 L 1.078125 2.421875 C 1.109375 2.671875 1.3125 2.765625 1.53125 2.765625 L 2.34375 2.765625 C 2.5625 2.765625 2.84375 2.734375 2.84375 2.359375 L 2.84375 -0.59375 C 3.328125 -0.140625 3.984375 0.109375 4.640625 0.109375 C 5.609375 0.109375 6.703125 -0.125 7.296875 -0.96875 C 7.78125 -1.609375 7.921875 -2.5 7.921875 -3.265625 C 7.921875 -4.75 7.484375 -6.609375 5.09375 -6.609375 C 4.28125 -6.609375 3.453125 -6.390625 2.8125 -5.875 Z M 6.140625 -2.953125 C 6.03125 -1.9375 5.734375 -0.796875 4.203125 -0.796875 C 3.703125 -0.796875 2.84375 -1.15625 2.84375 -1.703125 L 2.84375 -4.921875 C 2.890625 -5.3125 3.78125 -5.640625 4.359375 -5.640625 C 5.84375 -5.640625 6.15625 -4.3125 6.15625 -3.234375 C 6.15625 -3.140625 6.15625 -3.046875 6.140625 -2.953125 Z M 6.140625 -2.953125 "/>
|
||||
</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 0.453125 -7.453125 L 0.453125 -7.125 C 0.59375 -7.125 0.71875 -7.140625 0.84375 -7.140625 C 1.203125 -7.140625 1.515625 -7.09375 1.515625 -6.65625 L 1.515625 -0.984375 C 1.515625 -0.921875 1.53125 -0.84375 1.53125 -0.78125 C 1.53125 -0.375 1.171875 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 3.46875 -0.015625 C 3.703125 -0.015625 3.921875 0 4.171875 0 C 5.21875 0 6.203125 -0.390625 6.90625 -1.328125 C 7.421875 -2 7.671875 -2.84375 7.671875 -3.6875 C 7.671875 -5.375 6.5625 -7.25 4.671875 -7.4375 C 4.5 -7.453125 4.3125 -7.453125 4.140625 -7.453125 Z M 6.65625 -3.8125 L 6.65625 -3.28125 C 6.59375 -2.0625 6.171875 -0.84375 4.765625 -0.421875 C 4.453125 -0.34375 4.125 -0.34375 3.796875 -0.34375 L 2.828125 -0.34375 C 2.609375 -0.34375 2.375 -0.359375 2.375 -0.734375 C 2.375 -0.8125 2.390625 -0.875 2.390625 -0.9375 L 2.390625 -6.34375 C 2.390625 -6.4375 2.375 -6.546875 2.375 -6.65625 C 2.375 -7.03125 2.421875 -7.125 3.03125 -7.125 L 4.21875 -7.125 C 4.78125 -7.125 5.375 -6.828125 5.796875 -6.4375 C 6.484375 -5.765625 6.640625 -4.75 6.65625 -3.8125 Z M 6.65625 -3.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 1.1875 -2.546875 L 4.34375 -2.546875 C 4.453125 -2.546875 4.5 -2.59375 4.5 -2.703125 C 4.5 -3.78125 3.921875 -4.859375 2.59375 -4.859375 C 1.28125 -4.859375 0.3125 -3.671875 0.3125 -2.421875 C 0.3125 -1.234375 1.171875 0.09375 2.640625 0.09375 C 3.46875 0.09375 4.171875 -0.34375 4.46875 -1.1875 C 4.484375 -1.234375 4.5 -1.265625 4.5 -1.3125 C 4.5 -1.375 4.4375 -1.421875 4.390625 -1.421875 C 4.203125 -1.421875 4.140625 -1.0625 4.078125 -0.9375 C 3.8125 -0.484375 3.296875 -0.15625 2.765625 -0.15625 C 2.15625 -0.15625 1.625 -0.59375 1.390625 -1.140625 C 1.203125 -1.578125 1.1875 -2.078125 1.1875 -2.546875 Z M 1.203125 -2.765625 C 1.203125 -3.609375 1.671875 -4.640625 2.578125 -4.640625 C 3.515625 -4.640625 3.796875 -3.546875 3.796875 -2.765625 Z M 1.203125 -2.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.484375 -4.359375 C 0.8125 -4.359375 1.140625 -4.328125 1.140625 -3.8125 L 1.140625 -0.796875 C 1.140625 -0.34375 0.84375 -0.34375 0.375 -0.34375 L 0.3125 -0.34375 L 0.3125 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.78125 -0.34375 2.65625 -0.328125 2.515625 -0.328125 C 2.171875 -0.328125 1.859375 -0.375 1.859375 -0.78125 L 1.859375 -2.265625 C 1.859375 -3.125 2.03125 -4.578125 3.125 -4.578125 C 3.171875 -4.578125 3.21875 -4.5625 3.265625 -4.5625 C 3.109375 -4.5 3.015625 -4.3125 3.015625 -4.15625 C 3.015625 -3.921875 3.203125 -3.734375 3.421875 -3.703125 C 3.734375 -3.703125 3.921875 -3.90625 3.921875 -4.171875 C 3.921875 -4.59375 3.5 -4.8125 3.140625 -4.8125 C 2.453125 -4.8125 1.9375 -4.1875 1.8125 -3.625 L 1.796875 -4.8125 Z M 0.3125 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 0.953125 -0.40625 C 1.140625 -0.078125 1.71875 0.09375 2.109375 0.09375 C 2.875 0.09375 3.8125 -0.15625 3.90625 -1.3125 C 3.90625 -2.03125 3.515625 -2.515625 2.90625 -2.765625 C 2.640625 -2.875 2.34375 -2.90625 2.078125 -2.96875 L 1.84375 -3.015625 C 1.421875 -3.09375 0.859375 -3.3125 0.859375 -3.84375 C 0.859375 -4.484375 1.578125 -4.671875 2.109375 -4.671875 C 2.90625 -4.671875 3.28125 -4.171875 3.375 -3.453125 C 3.375 -3.359375 3.375 -3.25 3.5 -3.25 C 3.625 -3.25 3.625 -3.359375 3.625 -3.453125 L 3.625 -4.734375 C 3.625 -4.78125 3.59375 -4.859375 3.515625 -4.859375 C 3.34375 -4.859375 3.234375 -4.5625 3.125 -4.5625 C 3.046875 -4.578125 2.984375 -4.640625 2.921875 -4.671875 C 2.6875 -4.8125 2.40625 -4.859375 2.125 -4.859375 C 1.46875 -4.859375 0.359375 -4.640625 0.359375 -3.5625 C 0.359375 -2.375 1.671875 -2.25 2.4375 -2.09375 C 2.90625 -2 3.390625 -1.671875 3.40625 -1.140625 C 3.40625 -0.34375 2.703125 -0.125 2.140625 -0.125 C 1.28125 -0.125 0.875 -0.796875 0.671875 -1.53125 C 0.640625 -1.640625 0.671875 -1.875 0.484375 -1.875 C 0.421875 -1.875 0.359375 -1.828125 0.359375 -1.75 L 0.359375 -0.3125 C 0.359375 -0.25 0.34375 -0.1875 0.34375 -0.125 C 0.34375 -0.03125 0.375 0.09375 0.484375 0.09375 C 0.640625 0.078125 0.78125 -0.265625 0.953125 -0.40625 Z M 0.953125 -0.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 1.609375 -6.71875 C 1.609375 -5.984375 1.3125 -4.609375 0.203125 -4.609375 L 0.203125 -4.375 L 1.140625 -4.375 L 1.140625 -1.46875 C 1.140625 -1.140625 1.15625 -0.8125 1.3125 -0.53125 C 1.578125 -0.09375 2.078125 0.09375 2.546875 0.09375 C 3.421875 0.09375 3.609375 -0.859375 3.609375 -1.5625 L 3.609375 -1.984375 L 3.34375 -1.984375 C 3.34375 -1.828125 3.359375 -1.65625 3.359375 -1.5 C 3.359375 -0.984375 3.25 -0.15625 2.609375 -0.15625 C 1.984375 -0.15625 1.875 -0.921875 1.875 -1.421875 L 1.875 -4.375 L 3.421875 -4.375 L 3.421875 -4.703125 L 1.875 -4.703125 L 1.875 -6.71875 Z M 1.609375 -6.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 0.34375 -0.34375 L 0.34375 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.34375 C 2.25 -0.34375 1.796875 -0.5 1.796875 -0.875 L 1.796875 -0.890625 C 1.796875 -1.0625 1.90625 -1.25 1.96875 -1.421875 C 2.109375 -1.78125 2.28125 -2.1875 2.359375 -2.546875 L 5.03125 -2.546875 C 5.234375 -2.546875 5.34375 -1.984375 5.4375 -1.703125 C 5.546875 -1.375 5.796875 -0.890625 5.796875 -0.671875 C 5.796875 -0.34375 5.265625 -0.34375 4.96875 -0.34375 L 4.96875 -0.015625 L 6.21875 -0.015625 L 6.453125 -0.046875 L 7.234375 -0.046875 L 7.765625 -0.015625 L 7.765625 -0.34375 L 7.484375 -0.34375 C 7.25 -0.34375 7.015625 -0.359375 6.859375 -0.484375 C 6.71875 -0.625 6.671875 -0.84375 6.625 -1.03125 C 6.046875 -2.625 5.46875 -4.234375 4.90625 -5.84375 L 4.28125 -7.609375 C 4.234375 -7.734375 4.203125 -7.796875 4.0625 -7.796875 C 3.84375 -7.796875 3.8125 -7.5625 3.734375 -7.359375 C 3 -5.328125 2.296875 -3.28125 1.578125 -1.21875 C 1.390625 -0.78125 1.21875 -0.34375 0.34375 -0.34375 Z M 2.46875 -2.875 L 3.75 -6.46875 L 5.03125 -2.875 Z M 2.46875 -2.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 0.3125 -7.453125 L 0.3125 -7.125 L 0.46875 -7.125 C 0.8125 -7.125 1.140625 -7.09375 1.140625 -6.59375 L 1.140625 -0.015625 L 1.390625 -0.03125 L 1.8125 -0.703125 C 2.078125 -0.1875 2.6875 0.09375 3.25 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.59375 4.71875 -4.8125 3.28125 -4.8125 C 2.703125 -4.8125 2.25 -4.53125 1.859375 -4.09375 L 1.859375 -7.578125 Z M 4.75 -2.109375 C 4.71875 -1.578125 4.640625 -1.078125 4.28125 -0.671875 C 4.015625 -0.34375 3.59375 -0.140625 3.171875 -0.140625 C 2.71875 -0.140625 2.328125 -0.375 2.0625 -0.765625 C 1.96875 -0.890625 1.890625 -1.03125 1.890625 -1.1875 L 1.890625 -3.015625 C 1.890625 -3.15625 1.875 -3.28125 1.875 -3.421875 C 1.875 -4.0625 2.640625 -4.578125 3.28125 -4.578125 C 4.46875 -4.578125 4.765625 -3.25 4.765625 -2.34375 C 4.765625 -2.265625 4.765625 -2.1875 4.75 -2.109375 Z M 4.75 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 3.953125 -4.140625 C 3.671875 -4.140625 3.453125 -3.953125 3.453125 -3.671875 C 3.453125 -3.421875 3.65625 -3.1875 3.921875 -3.1875 C 4.171875 -3.1875 4.390625 -3.390625 4.390625 -3.6875 L 4.390625 -3.78125 C 4.28125 -4.609375 3.296875 -4.859375 2.6875 -4.859375 C 1.359375 -4.859375 0.375 -3.625 0.375 -2.359375 C 0.375 -1.078125 1.359375 0.09375 2.71875 0.09375 C 3.421875 0.09375 4.140625 -0.3125 4.421875 -1.0625 C 4.453125 -1.140625 4.5 -1.21875 4.5 -1.296875 L 4.5 -1.34375 C 4.46875 -1.390625 4.421875 -1.421875 4.375 -1.421875 C 4.203125 -1.421875 4.140625 -0.96875 4 -0.8125 C 3.734375 -0.40625 3.296875 -0.15625 2.8125 -0.15625 C 1.65625 -0.15625 1.25 -1.421875 1.25 -2.359375 C 1.25 -3.265625 1.546875 -4.53125 2.65625 -4.609375 L 2.734375 -4.609375 C 3.140625 -4.609375 3.671875 -4.484375 3.953125 -4.140625 Z M 3.953125 -4.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 0.359375 -7.453125 L 0.359375 -7.125 L 0.5625 -7.125 C 0.90625 -7.125 1.1875 -7.09375 1.1875 -6.59375 L 1.1875 -0.78125 C 1.1875 -0.375 0.921875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.78125 L 4.921875 -3.21875 C 4.921875 -3.5625 4.921875 -3.921875 4.734375 -4.21875 C 4.484375 -4.65625 3.984375 -4.8125 3.484375 -4.8125 C 2.8125 -4.8125 2.078125 -4.390625 1.90625 -3.75 L 1.890625 -7.578125 Z M 0.359375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.765625 L 4.921875 -3.234375 C 4.921875 -3.5625 4.921875 -3.890625 4.75 -4.1875 C 4.5 -4.671875 3.953125 -4.8125 3.4375 -4.8125 C 2.75 -4.8125 2.078125 -4.3125 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 0.421875 -4.6875 L 0.421875 -4.359375 L 0.59375 -4.359375 C 0.9375 -4.359375 1.203125 -4.3125 1.203125 -3.8125 L 1.203125 -0.796875 C 1.203125 -0.359375 0.921875 -0.34375 0.375 -0.34375 L 0.375 -0.015625 L 2.65625 -0.015625 L 2.65625 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.71875 L 1.90625 -4.8125 Z M 1.3125 -7.265625 C 1 -7.21875 0.84375 -6.96875 0.84375 -6.734375 C 0.84375 -6.484375 1.03125 -6.1875 1.375 -6.1875 C 1.71875 -6.1875 1.921875 -6.453125 1.921875 -6.734375 C 1.921875 -6.984375 1.75 -7.28125 1.390625 -7.28125 C 1.359375 -7.28125 1.328125 -7.265625 1.3125 -7.265625 Z M 1.3125 -7.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 1.421875 -1.09375 C 1.125 -1.046875 0.96875 -0.796875 0.96875 -0.5625 C 0.96875 -0.3125 1.140625 -0.015625 1.5 -0.015625 C 1.828125 -0.015625 2.046875 -0.28125 2.046875 -0.5625 C 2.046875 -0.8125 1.859375 -1.09375 1.515625 -1.09375 C 1.484375 -1.09375 1.453125 -1.09375 1.421875 -1.09375 Z M 1.421875 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.09375 L 0.8125 -7.09375 C 1.171875 -7.09375 1.515625 -7.0625 1.515625 -6.65625 C 1.515625 -6.59375 1.5 -6.515625 1.5 -6.453125 L 1.5 -0.8125 C 1.5 -0.375 1.15625 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 6.625 -0.015625 L 7.0625 -2.8125 L 6.796875 -2.8125 C 6.671875 -2.15625 6.609375 -1.328125 6.125 -0.84375 C 5.640625 -0.34375 4.875 -0.34375 4.234375 -0.34375 L 2.875 -0.34375 C 2.609375 -0.34375 2.40625 -0.375 2.40625 -0.734375 L 2.40625 -3.703125 L 3.375 -3.703125 C 3.75 -3.703125 4.1875 -3.671875 4.421875 -3.375 C 4.578125 -3.140625 4.59375 -2.8125 4.59375 -2.515625 L 4.59375 -2.421875 L 4.859375 -2.421875 L 4.859375 -5.296875 L 4.59375 -5.296875 L 4.59375 -5.203125 C 4.59375 -4.90625 4.578125 -4.578125 4.421875 -4.34375 C 4.1875 -4.046875 3.75 -4.03125 3.375 -4.03125 L 2.40625 -4.03125 L 2.40625 -6.734375 C 2.40625 -7.0625 2.625 -7.09375 2.875 -7.09375 L 4.25 -7.09375 C 4.859375 -7.09375 5.59375 -7.09375 6.015625 -6.59375 C 6.375 -6.15625 6.421875 -5.53125 6.5 -4.984375 L 6.765625 -4.984375 L 6.46875 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.125 C 0.59375 -7.125 0.734375 -7.140625 0.84375 -7.140625 C 1.21875 -7.140625 1.515625 -7.09375 1.515625 -6.65625 C 1.515625 -6.546875 1.5 -6.453125 1.5 -6.375 L 1.5 -2.65625 C 1.5 -1.21875 2.40625 0.21875 4.265625 0.21875 C 5.46875 0.21875 6.375 -0.875 6.5625 -1.96875 C 6.609375 -2.21875 6.625 -2.46875 6.625 -2.71875 C 6.625 -2.9375 6.609375 -3.15625 6.609375 -3.375 L 6.609375 -6.265625 C 6.609375 -6.484375 6.625 -6.6875 6.765625 -6.859375 C 6.984375 -7.09375 7.34375 -7.125 7.65625 -7.125 L 7.65625 -7.453125 L 5.25 -7.453125 L 5.25 -7.125 C 5.75 -7.125 6.296875 -7.03125 6.296875 -6.3125 L 6.296875 -2.796875 C 6.296875 -1.78125 6.078125 -0.734375 4.890625 -0.234375 C 4.671875 -0.15625 4.421875 -0.109375 4.1875 -0.109375 C 3.390625 -0.109375 2.765625 -0.703125 2.546875 -1.4375 C 2.421875 -1.828125 2.40625 -2.234375 2.40625 -2.65625 L 2.40625 -6.390625 C 2.40625 -6.484375 2.40625 -6.5625 2.40625 -6.65625 C 2.40625 -7.078125 2.75 -7.140625 3.09375 -7.140625 C 3.21875 -7.140625 3.34375 -7.125 3.453125 -7.125 L 3.453125 -7.453125 L 2.21875 -7.453125 L 1.953125 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 0.203125 -4.703125 L 0.203125 -4.375 L 0.34375 -4.375 C 0.953125 -4.375 1 -4 1.25 -3.28125 C 1.609375 -2.234375 1.984375 -1.21875 2.34375 -0.1875 C 2.390625 -0.078125 2.421875 0.078125 2.5625 0.09375 L 2.578125 0.09375 C 2.828125 0.09375 2.984375 -0.625 3.125 -1 C 3.34375 -1.5625 3.53125 -2.125 3.734375 -2.6875 C 3.796875 -2.859375 3.859375 -3.015625 3.90625 -3.203125 L 3.921875 -3.203125 C 4.09375 -2.4375 4.453125 -1.71875 4.703125 -0.984375 C 4.828125 -0.609375 5 0.09375 5.21875 0.09375 L 5.25 0.09375 C 5.40625 0.09375 5.4375 -0.0625 5.46875 -0.1875 C 5.78125 -1.09375 6.125 -2 6.453125 -2.921875 C 6.703125 -3.609375 6.859375 -4.375 7.625 -4.375 L 7.625 -4.703125 L 6.875 -4.671875 L 5.859375 -4.671875 L 5.859375 -4.375 C 6.140625 -4.359375 6.4375 -4.203125 6.46875 -3.90625 L 6.46875 -3.859375 C 6.46875 -3.71875 6.40625 -3.578125 6.34375 -3.4375 C 6.078125 -2.65625 5.8125 -1.875 5.515625 -1.109375 C 5.484375 -1.03125 5.453125 -0.9375 5.4375 -0.84375 L 5.421875 -0.84375 C 5.140625 -1.84375 4.71875 -2.84375 4.359375 -3.8125 C 4.328125 -3.890625 4.28125 -3.984375 4.28125 -4.078125 C 4.28125 -4.359375 4.6875 -4.375 4.90625 -4.375 L 4.90625 -4.703125 L 2.828125 -4.703125 L 2.828125 -4.375 L 2.984375 -4.375 C 3.40625 -4.375 3.546875 -4.25 3.671875 -3.84375 C 3.703125 -3.78125 3.75 -3.671875 3.75 -3.59375 L 3.75 -3.5625 C 3.71875 -3.359375 3.59375 -3.109375 3.515625 -2.890625 C 3.375 -2.46875 3.234375 -2.078125 3.078125 -1.65625 C 3 -1.421875 2.890625 -1.203125 2.828125 -0.953125 C 2.765625 -1.21875 2.65625 -1.46875 2.5625 -1.71875 C 2.3125 -2.4375 2.046875 -3.140625 1.796875 -3.84375 C 1.78125 -3.921875 1.734375 -4 1.734375 -4.078125 C 1.734375 -4.359375 2.109375 -4.375 2.296875 -4.375 L 2.359375 -4.375 L 2.359375 -4.703125 Z M 0.203125 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 0.125 -2.671875 L 0.125 -2.046875 L 3.015625 -2.046875 L 3.015625 -2.671875 Z M 0.125 -2.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 0.484375 -7.453125 L 0.484375 -7.125 C 0.609375 -7.125 0.734375 -7.140625 0.875 -7.140625 C 1.234375 -7.140625 1.5625 -7.09375 1.5625 -6.6875 C 1.5625 -6.609375 1.546875 -6.546875 1.546875 -6.484375 L 1.546875 -1.125 C 1.546875 -0.421875 0.96875 -0.34375 0.484375 -0.34375 L 0.484375 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.421875 -0.34375 1.828125 -0.421875 1.828125 -1.15625 C 1.828125 -1.28125 1.84375 -1.390625 1.84375 -1.5 L 1.859375 -7.0625 C 1.90625 -6.84375 2 -6.625 2.09375 -6.40625 L 2.515625 -5.328125 C 3.15625 -3.703125 3.8125 -2.046875 4.421875 -0.390625 C 4.46875 -0.265625 4.515625 -0.015625 4.6875 -0.015625 C 4.859375 -0.015625 4.90625 -0.28125 4.953125 -0.40625 L 5.4375 -1.671875 C 6.0625 -3.265625 6.65625 -4.84375 7.28125 -6.421875 C 7.375 -6.65625 7.484375 -6.90625 7.546875 -7.140625 L 7.5625 -1.0625 C 7.5625 -0.984375 7.5625 -0.890625 7.5625 -0.796875 C 7.5625 -0.375 7.234375 -0.328125 6.875 -0.328125 C 6.75 -0.328125 6.609375 -0.34375 6.5 -0.34375 L 6.5 -0.015625 L 7.703125 -0.015625 L 7.96875 -0.046875 L 9.4375 -0.046875 L 9.4375 -0.34375 C 9.3125 -0.34375 9.1875 -0.328125 9.046875 -0.328125 C 8.703125 -0.328125 8.359375 -0.375 8.359375 -0.78125 C 8.359375 -0.84375 8.375 -0.921875 8.375 -0.984375 L 8.375 -6.65625 C 8.375 -7.078125 8.71875 -7.140625 9.046875 -7.140625 C 9.1875 -7.140625 9.3125 -7.125 9.4375 -7.125 L 9.4375 -7.453125 L 7.65625 -7.453125 L 7.453125 -7.421875 L 7.359375 -7.265625 L 4.96875 -1.046875 L 2.578125 -7.265625 L 2.46875 -7.421875 L 2.28125 -7.453125 Z M 0.484375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.125 L 0.8125 -7.125 C 1.171875 -7.125 1.515625 -7.09375 1.515625 -6.703125 C 1.515625 -6.625 1.5 -6.546875 1.5 -6.484375 L 1.5 -0.8125 C 1.5 -0.375 1.15625 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 6.015625 -0.015625 L 6.3125 -2.8125 L 6.046875 -2.8125 C 5.9375 -1.8125 5.84375 -0.75 4.515625 -0.40625 C 4.203125 -0.34375 3.90625 -0.34375 3.59375 -0.34375 L 2.796875 -0.34375 C 2.578125 -0.34375 2.40625 -0.390625 2.40625 -0.703125 L 2.40625 -6.65625 C 2.40625 -7.09375 2.78125 -7.140625 3.125 -7.140625 C 3.234375 -7.140625 3.34375 -7.125 3.4375 -7.125 L 3.734375 -7.125 L 3.734375 -7.453125 L 2.25 -7.453125 L 1.984375 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 0.375 -7.453125 L 0.375 -7.125 L 0.5625 -7.125 C 0.921875 -7.125 1.203125 -7.09375 1.203125 -6.578125 L 1.203125 -0.78125 C 1.203125 -0.375 0.90625 -0.34375 0.59375 -0.34375 L 0.375 -0.34375 L 0.375 -0.015625 L 2.734375 -0.015625 L 2.734375 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.765625 L 1.90625 -7.578125 Z M 0.375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<path style="stroke:none;" d="M 1.15625 -2.109375 C 0.9375 -1.890625 0.8125 -1.5 0.8125 -1.203125 C 0.8125 -0.8125 1 -0.53125 1.28125 -0.234375 C 0.78125 -0.140625 0.3125 0.3125 0.3125 0.84375 C 0.3125 1.96875 2.078125 2.234375 2.71875 2.234375 C 3.6875 2.234375 5.109375 1.859375 5.109375 0.796875 C 5.109375 -0.4375 3.859375 -0.71875 2.71875 -0.71875 L 1.96875 -0.71875 C 1.421875 -0.71875 1.140625 -1.015625 1.140625 -1.46875 C 1.140625 -1.671875 1.25 -1.828125 1.3125 -1.96875 C 1.609375 -1.78125 1.9375 -1.65625 2.296875 -1.640625 L 2.375 -1.640625 C 3.25 -1.640625 4 -2.171875 4.140625 -3.09375 L 4.140625 -3.203125 C 4.140625 -3.5625 4.015625 -3.921875 3.78125 -4.1875 C 3.765625 -4.21875 3.734375 -4.25 3.734375 -4.28125 L 3.734375 -4.296875 C 3.875 -4.515625 4.390625 -4.703125 4.703125 -4.703125 C 4.75 -4.703125 4.78125 -4.6875 4.828125 -4.6875 C 4.75 -4.625 4.671875 -4.5625 4.65625 -4.453125 L 4.65625 -4.421875 C 4.65625 -4.25 4.796875 -4.109375 4.96875 -4.109375 C 5.171875 -4.109375 5.25 -4.265625 5.25 -4.421875 C 5.25 -4.765625 4.9375 -4.921875 4.671875 -4.921875 C 4.3125 -4.921875 3.9375 -4.765625 3.65625 -4.53125 C 3.625 -4.5 3.59375 -4.453125 3.546875 -4.453125 L 3.53125 -4.453125 C 3.46875 -4.453125 3.25 -4.640625 3.09375 -4.671875 C 2.875 -4.765625 2.640625 -4.8125 2.40625 -4.8125 C 1.578125 -4.8125 0.75 -4.21875 0.65625 -3.359375 L 0.65625 -3.25 C 0.65625 -2.828125 0.8125 -2.375 1.15625 -2.109375 Z M 0.859375 0.921875 L 0.859375 0.828125 C 0.859375 0.234375 1.390625 -0.09375 1.96875 -0.09375 L 3.015625 -0.09375 C 3.609375 -0.09375 4.4375 0.046875 4.546875 0.765625 L 4.546875 0.84375 C 4.546875 1.65625 3.375 1.984375 2.6875 1.984375 C 1.96875 1.984375 0.96875 1.65625 0.859375 0.921875 Z M 1.4375 -3.015625 L 1.4375 -3.140625 C 1.4375 -3.734375 1.578125 -4.546875 2.390625 -4.546875 C 3.09375 -4.546875 3.359375 -3.921875 3.359375 -3.21875 C 3.359375 -2.671875 3.21875 -1.890625 2.40625 -1.890625 C 1.78125 -1.890625 1.515625 -2.40625 1.4375 -3.015625 Z M 1.4375 -3.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-22">
|
||||
<path style="stroke:none;" d="M 0.5625 -4.703125 L 0.453125 -2.953125 L 0.703125 -2.953125 C 0.734375 -3.328125 0.75 -3.78125 1 -4.09375 C 1.25 -4.4375 1.765625 -4.46875 2.203125 -4.46875 L 3.4375 -4.46875 C 2.484375 -3.09375 1.4375 -1.75 0.4375 -0.40625 C 0.375 -0.34375 0.3125 -0.25 0.3125 -0.15625 C 0.3125 -0.046875 0.375 -0.015625 0.46875 -0.015625 L 4.1875 -0.015625 L 4.359375 -2.046875 L 4.09375 -2.046875 C 4.0625 -1.578125 4.03125 -1.046875 3.765625 -0.703125 C 3.453125 -0.3125 2.921875 -0.265625 2.4375 -0.265625 L 1.203125 -0.265625 C 1.296875 -0.421875 1.40625 -0.546875 1.515625 -0.6875 C 2.390625 -1.90625 3.3125 -3.09375 4.1875 -4.3125 C 4.25 -4.390625 4.328125 -4.46875 4.328125 -4.5625 C 4.328125 -4.671875 4.25 -4.703125 4.171875 -4.703125 Z M 0.5625 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-23">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.546875 -4.359375 C 0.859375 -4.359375 1.140625 -4.3125 1.140625 -3.875 L 1.140625 1.3125 C 1.140625 1.765625 0.84375 1.78125 0.3125 1.78125 L 0.3125 2.109375 L 2.71875 2.109375 L 2.71875 1.78125 L 2.46875 1.78125 C 2.15625 1.78125 1.890625 1.734375 1.890625 1.34375 L 1.890625 -0.578125 C 2.140625 -0.125 2.78125 0.09375 3.265625 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.5625 4.734375 -4.8125 3.40625 -4.8125 C 2.796875 -4.8125 2.296875 -4.578125 1.859375 -4.09375 L 1.859375 -4.8125 Z M 4.75 -2.171875 C 4.71875 -1.34375 4.265625 -0.203125 3.265625 -0.125 L 3.15625 -0.125 C 2.640625 -0.125 1.890625 -0.625 1.890625 -1.171875 L 1.890625 -3 C 1.890625 -3.140625 1.875 -3.265625 1.875 -3.40625 C 1.875 -4 2.609375 -4.546875 3.265625 -4.546875 C 4.390625 -4.546875 4.765625 -3.140625 4.765625 -2.34375 C 4.765625 -2.296875 4.765625 -2.21875 4.75 -2.171875 Z M 4.75 -2.171875 "/>
|
||||
</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 2.8125 -6.75 L 2.8125 -0.765625 L 1.84375 -0.765625 C 1.75 -0.765625 1.671875 -0.78125 1.578125 -0.78125 C 1.28125 -0.78125 1.140625 -0.59375 1.140625 -0.375 C 1.140625 -0.15625 1.296875 -0.015625 1.578125 -0.015625 L 5.34375 -0.015625 C 5.609375 -0.015625 5.765625 -0.15625 5.765625 -0.375 C 5.765625 -0.625 5.59375 -0.765625 5.328125 -0.765625 L 4.21875 -0.765625 L 4.21875 -7.703125 C 4.21875 -8.015625 4 -8.09375 3.78125 -8.09375 C 3.515625 -8.09375 3.46875 -7.984375 3.3125 -7.875 C 2.8125 -7.421875 2.109375 -7.34375 1.46875 -7.3125 C 1.25 -7.296875 1.0625 -7.203125 1.0625 -6.9375 C 1.0625 -6.734375 1.1875 -6.5625 1.40625 -6.546875 C 1.875 -6.546875 2.359375 -6.625 2.8125 -6.75 Z M 2.8125 -6.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 1.28125 -1.328125 C 1.203125 -1.296875 1.1875 -1.21875 1.1875 -1.140625 L 1.1875 -0.21875 C 1.1875 -0.0625 1.25 -0.015625 1.40625 -0.015625 L 2.140625 -0.015625 C 2.203125 -0.015625 2.265625 0 2.3125 0 C 2.46875 0 2.515625 -0.078125 2.515625 -0.203125 L 2.515625 -1.140625 C 2.515625 -1.296875 2.46875 -1.34375 2.3125 -1.34375 L 1.578125 -1.34375 C 1.515625 -1.34375 1.453125 -1.34375 1.40625 -1.34375 C 1.34375 -1.34375 1.3125 -1.34375 1.28125 -1.328125 Z M 1.28125 -1.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 3.40625 -8.5625 C 2.703125 -8.46875 2.046875 -8.40625 1.484375 -7.9375 C 0.953125 -7.5 0.734375 -6.796875 0.734375 -6.140625 C 0.734375 -4.921875 1.75 -4.0625 2.875 -3.78125 C 3.859375 -3.53125 5.4375 -3.484375 5.4375 -2.203125 C 5.4375 -1.140625 4.546875 -0.890625 3.734375 -0.890625 C 2.8125 -0.890625 1.859375 -1.21875 1.15625 -1.765625 C 1.09375 -1.8125 1.015625 -1.921875 0.921875 -1.921875 C 0.78125 -1.921875 0.78125 -1.734375 0.75 -1.640625 C 0.703125 -1.34375 0.59375 -1 0.59375 -0.734375 C 0.59375 -0.640625 0.65625 -0.59375 0.734375 -0.5625 L 0.984375 -0.421875 C 1.828125 0.015625 2.8125 0.25 3.765625 0.25 C 5.15625 0.25 6.71875 -0.28125 6.71875 -2.3125 C 6.71875 -3.53125 5.828125 -4.5 4.703125 -4.84375 C 3.75 -5.125 2.015625 -5.125 2.015625 -6.3125 L 2.015625 -6.34375 C 2.015625 -7.359375 3.0625 -7.5 3.734375 -7.5 C 4.484375 -7.5 5.109375 -7.28125 5.71875 -6.78125 C 5.765625 -6.734375 5.859375 -6.640625 5.9375 -6.640625 C 6.109375 -6.640625 6.234375 -7.609375 6.234375 -7.8125 C 6.234375 -8.015625 5.765625 -8.15625 5.53125 -8.265625 C 4.921875 -8.5 4.265625 -8.5625 3.609375 -8.5625 Z M 3.40625 -8.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 4.65625 -0.53125 L 4.65625 -0.390625 C 4.65625 -0.046875 4.921875 0 5.140625 0 C 5.21875 0 5.3125 -0.015625 5.40625 -0.015625 L 5.5625 -0.015625 C 5.78125 -0.015625 6.015625 -0.046875 6.015625 -0.484375 L 6.015625 -4.859375 C 6.015625 -4.921875 6.03125 -5 6.03125 -5.0625 C 6.03125 -5.421875 5.765625 -5.484375 5.53125 -5.484375 L 5.0625 -5.484375 C 4.75 -5.484375 4.625 -5.328125 4.625 -5.03125 L 4.625 -2.390625 C 4.625 -2.234375 4.640625 -2.078125 4.640625 -1.90625 C 4.640625 -1.046875 4.03125 -0.53125 3.171875 -0.53125 L 3.0625 -0.53125 C 2.625 -0.53125 2.28125 -0.578125 2.28125 -1.40625 L 2.28125 -5.1875 C 2.25 -5.359375 2.078125 -5.484375 1.90625 -5.484375 L 1.34375 -5.484375 C 1.046875 -5.484375 0.890625 -5.328125 0.890625 -5.015625 C 0.890625 -4.9375 0.890625 -4.859375 0.890625 -4.78125 L 0.890625 -1.5 C 0.890625 -1.171875 0.90625 -0.84375 1.046875 -0.53125 C 1.359375 0.046875 2.125 0.109375 2.703125 0.109375 C 3.40625 0.109375 4.09375 -0.0625 4.65625 -0.53125 Z M 4.65625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 3.078125 -5.671875 C 1.859375 -5.5 0.4375 -5.171875 0.4375 -2.71875 C 0.4375 -1.984375 0.609375 -1.203125 1.109375 -0.671875 C 1.671875 -0.046875 2.578125 0.109375 3.375 0.109375 C 4.09375 0.109375 4.828125 -0.03125 5.46875 -0.375 C 5.5625 -0.421875 5.59375 -0.484375 5.59375 -0.5625 C 5.59375 -0.75 5.546875 -0.9375 5.53125 -1.125 C 5.53125 -1.203125 5.53125 -1.34375 5.421875 -1.375 L 5.390625 -1.375 C 5.265625 -1.375 5 -1.140625 4.8125 -1.046875 C 4.40625 -0.828125 3.9375 -0.734375 3.484375 -0.703125 L 3.40625 -0.703125 C 2.375 -0.703125 1.828125 -1.296875 1.828125 -2.71875 C 1.828125 -3.28125 1.84375 -3.953125 2.21875 -4.40625 C 2.515625 -4.75 2.96875 -4.859375 3.421875 -4.859375 C 4.046875 -4.859375 4.5 -4.71875 5.0625 -4.265625 C 5.109375 -4.21875 5.1875 -4.140625 5.265625 -4.140625 C 5.453125 -4.140625 5.46875 -4.65625 5.5 -4.84375 C 5.515625 -4.875 5.515625 -4.9375 5.515625 -4.984375 C 5.515625 -5.15625 4.8125 -5.453125 4.453125 -5.5625 C 4.078125 -5.65625 3.671875 -5.671875 3.28125 -5.671875 Z M 3.078125 -5.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 2.265625 -4.65625 C 2.265625 -4.703125 2.265625 -4.75 2.265625 -4.8125 L 2.265625 -8.03125 C 2.265625 -8.109375 2.265625 -8.171875 2.265625 -8.265625 C 2.265625 -8.671875 2.015625 -8.71875 1.75 -8.71875 L 1.328125 -8.71875 C 1.09375 -8.71875 0.890625 -8.625 0.890625 -8.3125 L 0.890625 -0.5 C 0.890625 -0.234375 0.9375 -0.015625 1.34375 -0.015625 L 1.796875 -0.015625 C 2.015625 -0.015625 2.28125 -0.0625 2.28125 -0.4375 L 2.28125 -2.75 C 2.28125 -3.640625 2.65625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.625 -4.75 4.625 -4.140625 4.625 -3.578125 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.859375 -0.015625 6.015625 -0.15625 6.015625 -0.484375 L 6.015625 -3.578125 C 6.015625 -4.609375 5.828125 -5.609375 4.15625 -5.609375 C 3.46875 -5.609375 2.578125 -5.234375 2.265625 -4.65625 Z M 2.265625 -4.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.703125 -2.28125 L 5.296875 -2.28125 C 5.609375 -2.28125 5.734375 -2.46875 5.734375 -2.765625 C 5.734375 -3.5625 5.5625 -4.53125 5 -5.0625 C 4.5 -5.515625 3.875 -5.671875 3.21875 -5.671875 C 2.46875 -5.671875 1.65625 -5.484375 1.09375 -4.9375 C 0.546875 -4.390625 0.375 -3.578125 0.375 -2.828125 C 0.375 -2.09375 0.53125 -1.3125 1.015625 -0.75 C 1.5625 -0.125 2.46875 0.109375 3.28125 0.109375 C 3.984375 0.109375 4.65625 0 5.296875 -0.28125 L 5.515625 -0.390625 C 5.59375 -0.421875 5.65625 -0.484375 5.65625 -0.578125 C 5.65625 -0.609375 5.640625 -0.640625 5.640625 -0.6875 L 5.609375 -1.09375 C 5.609375 -1.1875 5.609375 -1.359375 5.46875 -1.359375 C 5.40625 -1.359375 5.3125 -1.296875 5.265625 -1.25 C 4.734375 -0.859375 4.09375 -0.640625 3.421875 -0.640625 C 2.609375 -0.640625 1.75 -1.09375 1.703125 -2.28125 Z M 1.671875 -2.96875 C 1.734375 -3.890625 2 -4.90625 3.21875 -4.90625 C 4.34375 -4.90625 4.578125 -3.84375 4.578125 -2.96875 Z M 1.671875 -2.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.453125 2.03125 -5.5625 1.71875 -5.5625 C 1.625 -5.5625 1.53125 -5.546875 1.453125 -5.546875 L 1.296875 -5.546875 C 1.0625 -5.546875 0.890625 -5.40625 0.890625 -5.109375 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.28125 2.28125 -0.5 L 2.28125 -3.109375 C 2.359375 -3.953125 2.828125 -4.859375 3.734375 -4.859375 C 4.59375 -4.859375 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.4375 C 4.625 -0.03125 4.90625 -0.015625 5.140625 -0.015625 L 5.578125 -0.015625 C 5.84375 -0.015625 6.015625 -0.125 6.015625 -0.484375 L 6.015625 -2.015625 C 6.015625 -2.234375 6 -2.4375 6 -2.65625 C 6 -3.359375 6.109375 -4.34375 6.953125 -4.734375 C 7.109375 -4.8125 7.28125 -4.859375 7.453125 -4.859375 C 8.3125 -4.859375 8.359375 -4.25 8.359375 -3.71875 L 8.359375 -0.328125 C 8.453125 -0.03125 8.625 -0.015625 8.875 -0.015625 L 9.328125 -0.015625 C 9.671875 -0.015625 9.734375 -0.234375 9.734375 -0.46875 L 9.734375 -3.5625 C 9.734375 -4.5625 9.59375 -5.609375 7.859375 -5.609375 C 7.0625 -5.609375 6.359375 -5.1875 5.921875 -4.5625 C 5.65625 -5.375 5.015625 -5.609375 4.25 -5.609375 C 3.40625 -5.609375 2.828125 -5.3125 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 1.203125 -5.46875 C 0.953125 -5.4375 0.90625 -5.234375 0.90625 -4.96875 L 0.90625 -0.4375 C 0.90625 -0.0625 1.15625 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.046875 -0.015625 2.234375 -0.109375 2.265625 -0.3125 L 2.265625 -5.0625 C 2.265625 -5.375 2.0625 -5.5 1.78125 -5.5 C 1.6875 -5.5 1.578125 -5.484375 1.5 -5.484375 L 1.34375 -5.484375 C 1.296875 -5.484375 1.25 -5.484375 1.203125 -5.46875 Z M 1.140625 -8.578125 C 0.890625 -8.578125 0.828125 -8.296875 0.828125 -8.109375 C 0.828125 -8.03125 0.84375 -7.953125 0.84375 -7.875 L 0.84375 -7.515625 C 0.84375 -7.140625 1.09375 -7.09375 1.34375 -7.09375 L 1.890625 -7.09375 C 2.109375 -7.09375 2.328125 -7.1875 2.328125 -7.484375 L 2.328125 -8.140625 C 2.328125 -8.546875 2.09375 -8.59375 1.828125 -8.59375 L 1.28125 -8.59375 C 1.234375 -8.59375 1.1875 -8.59375 1.140625 -8.578125 Z M 1.140625 -8.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 1.21875 -5.484375 L 0.65625 -5.484375 C 0.40625 -5.484375 0.25 -5.328125 0.25 -5.109375 C 0.25 -4.84375 0.453125 -4.734375 0.734375 -4.734375 L 1.1875 -4.734375 L 1.1875 -1.515625 C 1.1875 -0.734375 1.390625 0.109375 2.40625 0.109375 C 3.0625 0.109375 3.6875 -0.046875 4.296875 -0.3125 C 4.359375 -0.34375 4.453125 -0.375 4.46875 -0.484375 C 4.46875 -0.78125 4.296875 -1.09375 4.21875 -1.09375 C 4.125 -1.09375 3.96875 -0.953125 3.859375 -0.890625 C 3.59375 -0.8125 3.34375 -0.703125 3.0625 -0.703125 C 2.53125 -0.703125 2.515625 -1.28125 2.515625 -1.75 L 2.515625 -4.734375 L 3.796875 -4.734375 C 4 -4.734375 4.25 -4.828125 4.25 -5.109375 C 4.25 -5.359375 4.0625 -5.484375 3.796875 -5.484375 L 2.515625 -5.484375 L 2.515625 -6.609375 C 2.515625 -6.84375 2.421875 -7.046875 2.109375 -7.046875 L 1.96875 -7.046875 C 1.90625 -7.046875 1.8125 -7.0625 1.71875 -7.0625 C 1.453125 -7.0625 1.21875 -6.984375 1.21875 -6.59375 Z M 1.21875 -5.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 4.375 -4.09375 L 4.390625 -4.09375 C 4.40625 -3.75 4.546875 -3.390625 4.640625 -3.0625 C 4.859375 -2.21875 5.109375 -1.375 5.375 -0.546875 C 5.53125 -0.078125 5.75 -0.015625 6.09375 -0.015625 L 6.84375 -0.015625 C 7.28125 -0.015625 7.359375 -0.265625 7.453125 -0.53125 C 7.921875 -1.953125 8.3125 -3.390625 8.75 -4.8125 C 8.78125 -4.9375 8.859375 -5.078125 8.859375 -5.21875 C 8.859375 -5.421875 8.671875 -5.484375 8.46875 -5.484375 L 8.265625 -5.484375 C 8.03125 -5.484375 7.796875 -5.46875 7.65625 -5.21875 C 7.578125 -5.03125 7.53125 -4.8125 7.46875 -4.609375 C 7.1875 -3.6875 6.890625 -2.765625 6.640625 -1.84375 C 6.546875 -1.578125 6.4375 -1.3125 6.390625 -1.046875 C 6.375 -1.140625 6.328125 -1.234375 6.3125 -1.3125 L 6.171875 -1.78125 C 5.875 -2.703125 5.59375 -3.625 5.328125 -4.546875 C 5.15625 -4.96875 5.21875 -5.484375 4.515625 -5.484375 C 4.09375 -5.484375 3.96875 -5.25 3.890625 -4.953125 C 3.609375 -4.0625 3.34375 -3.171875 3.078125 -2.28125 C 2.96875 -1.921875 2.875 -1.546875 2.734375 -1.203125 C 2.40625 -2.390625 2.046875 -3.5625 1.65625 -4.71875 C 1.53125 -5.109375 1.5 -5.484375 0.90625 -5.484375 L 0.703125 -5.484375 C 0.53125 -5.484375 0.28125 -5.46875 0.28125 -5.203125 C 0.28125 -5.078125 0.359375 -4.953125 0.375 -4.84375 L 1.671875 -0.609375 C 1.71875 -0.453125 1.75 -0.28125 1.859375 -0.171875 C 1.984375 -0.03125 2.171875 0 2.359375 0 C 2.46875 0 2.5625 -0.015625 2.65625 -0.015625 L 2.78125 -0.015625 C 3.375 -0.015625 3.421875 -0.671875 3.53125 -1.046875 C 3.734375 -1.734375 3.9375 -2.421875 4.140625 -3.109375 C 4.21875 -3.4375 4.34375 -3.765625 4.375 -4.09375 Z M 4.375 -4.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-12">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.3125 2.171875 -5.546875 1.8125 -5.546875 L 1.65625 -5.546875 C 1.578125 -5.546875 1.5 -5.5625 1.40625 -5.5625 C 1.140625 -5.5625 0.890625 -5.5 0.890625 -5.125 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.265625 2.28125 -0.5 L 2.28125 -2.5625 C 2.28125 -3.03125 2.28125 -3.453125 2.46875 -3.890625 C 2.671875 -4.40625 3.15625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.609375 -4.78125 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.875 -0.015625 6.03125 -0.171875 6.03125 -0.46875 C 6.03125 -0.546875 6.015625 -0.625 6.015625 -0.6875 L 6.015625 -3.5625 C 6.015625 -4.5625 5.859375 -5.609375 4.140625 -5.609375 L 4 -5.609375 C 3.265625 -5.5625 2.71875 -5.1875 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-13">
|
||||
<path style="stroke:none;" d="M 2.046875 -1.09375 C 2.578125 -1.5625 3.140625 -2.078125 3.703125 -2.515625 L 4.5 -3.125 C 5.21875 -3.6875 5.96875 -4.40625 6.03125 -5.375 L 6.03125 -5.484375 C 6.03125 -7.125 4.65625 -8.09375 3.15625 -8.09375 C 2.0625 -8.09375 1.1875 -7.59375 0.703125 -6.640625 C 0.65625 -6.53125 0.578125 -6.390625 0.578125 -6.296875 L 0.578125 -6.28125 C 0.578125 -6.203125 0.640625 -6.140625 0.6875 -6.078125 L 0.96875 -5.765625 C 1.046875 -5.671875 1.15625 -5.484375 1.265625 -5.484375 C 1.40625 -5.484375 1.484375 -5.90625 1.5625 -6.078125 C 1.8125 -6.640625 2.265625 -7.0625 2.984375 -7.0625 C 3.828125 -7.0625 4.609375 -6.484375 4.609375 -5.515625 C 4.609375 -4.546875 3.9375 -3.875 3.3125 -3.265625 C 2.515625 -2.515625 1.703125 -1.78125 0.921875 -1.046875 C 0.8125 -0.9375 0.65625 -0.84375 0.65625 -0.671875 C 0.65625 -0.328125 0.671875 -0.015625 1.171875 -0.015625 L 5.625 -0.015625 C 6 -0.015625 6.03125 -0.265625 6.03125 -0.484375 L 6.03125 -0.59375 C 6.03125 -0.84375 6.015625 -1.125 5.609375 -1.125 L 4.84375 -1.125 C 3.90625 -1.125 2.96875 -1.125 2.046875 -1.09375 Z M 2.046875 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<path style="stroke:none;" d="M 3.09375 -5.671875 C 2.375 -5.578125 1.6875 -5.46875 1.140625 -4.953125 C 0.53125 -4.375 0.375 -3.5 0.375 -2.71875 C 0.375 -1.96875 0.53125 -1.15625 1.078125 -0.625 C 1.703125 0 2.625 0.109375 3.484375 0.109375 C 4.21875 0.109375 5.09375 -0.078125 5.640625 -0.640625 C 6.1875 -1.171875 6.328125 -1.953125 6.328125 -2.6875 C 6.328125 -3.453125 6.1875 -4.296875 5.640625 -4.875 C 5.03125 -5.515625 4.109375 -5.671875 3.265625 -5.671875 Z M 1.75 -2.421875 L 1.75 -2.953125 C 1.75 -3.796875 1.84375 -4.90625 3.34375 -4.90625 C 4.8125 -4.90625 4.953125 -3.8125 4.953125 -2.875 L 4.953125 -2.796875 C 4.953125 -1.90625 4.90625 -0.703125 3.328125 -0.703125 C 2.890625 -0.703125 2.421875 -0.828125 2.125 -1.171875 C 1.828125 -1.515625 1.8125 -1.984375 1.75 -2.421875 Z M 1.75 -2.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.5 -6.0625 L 2.5 -0.75 L 1.453125 -0.75 C 1.15625 -0.75 1 -0.609375 1 -0.375 C 1 -0.15625 1.171875 -0.015625 1.421875 -0.015625 L 4.75 -0.015625 C 5.015625 -0.015625 5.171875 -0.171875 5.171875 -0.375 C 5.171875 -0.609375 5 -0.75 4.75 -0.75 L 3.78125 -0.75 L 3.78125 -6.90625 C 3.78125 -7.21875 3.625 -7.359375 3.375 -7.359375 C 3.125 -7.359375 3.046875 -7.234375 2.90625 -7.125 C 2.515625 -6.78125 1.921875 -6.640625 1.453125 -6.640625 L 1.265625 -6.640625 C 1.0625 -6.625 0.921875 -6.484375 0.921875 -6.265625 C 0.921875 -6.0625 1.09375 -5.90625 1.296875 -5.90625 C 1.71875 -5.90625 2.09375 -6 2.5 -6.0625 Z M 2.5 -6.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 1.125 -1.25 C 1.0625 -1.21875 1.046875 -1.140625 1.046875 -1.0625 L 1.046875 -0.203125 C 1.046875 -0.0625 1.078125 -0.015625 1.234375 -0.015625 L 1.9375 -0.015625 C 2 -0.015625 2.046875 0 2.109375 0 C 2.25 0 2.296875 -0.0625 2.296875 -0.203125 L 2.296875 -1.0625 C 2.296875 -1.203125 2.25 -1.25 2.09375 -1.25 L 1.390625 -1.25 C 1.34375 -1.25 1.28125 -1.265625 1.234375 -1.265625 C 1.1875 -1.265625 1.15625 -1.25 1.125 -1.25 Z M 1.125 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 1.890625 -1.078125 C 2.578125 -1.71875 3.34375 -2.296875 4.0625 -2.890625 C 4.703125 -3.390625 5.359375 -4.03125 5.40625 -4.875 L 5.40625 -5 C 5.40625 -5.609375 5.171875 -6.203125 4.734375 -6.640625 C 4.21875 -7.125 3.515625 -7.34375 2.8125 -7.34375 C 1.75 -7.34375 1 -6.828125 0.5625 -5.96875 C 0.546875 -5.921875 0.515625 -5.859375 0.515625 -5.796875 L 0.515625 -5.765625 C 0.546875 -5.578125 1.109375 -4.984375 1.203125 -4.984375 C 1.328125 -4.984375 1.34375 -5.1875 1.375 -5.296875 C 1.578125 -5.828125 1.953125 -6.34375 2.671875 -6.34375 C 3.4375 -6.34375 4.078125 -5.78125 4.078125 -4.96875 C 4.0625 -3.8125 2.796875 -2.875 2.21875 -2.3125 L 1.53125 -1.65625 C 1.3125 -1.4375 1.078125 -1.21875 0.84375 -1.015625 C 0.765625 -0.9375 0.609375 -0.84375 0.59375 -0.703125 L 0.59375 -0.515625 C 0.59375 -0.265625 0.625 -0.015625 1.046875 -0.015625 L 4.984375 -0.015625 C 5.375 -0.015625 5.40625 -0.28125 5.40625 -0.515625 L 5.40625 -0.609375 C 5.40625 -0.828125 5.375 -1.09375 4.984375 -1.09375 L 4.390625 -1.09375 C 4.0625 -1.09375 3.734375 -1.09375 3.40625 -1.09375 L 2.1875 -1.09375 C 2.078125 -1.09375 2 -1.09375 1.890625 -1.078125 Z M 1.890625 -1.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 5.609375 -6.40625 C 6.15625 -4.453125 6.71875 -2.515625 7.234375 -0.5625 C 7.328125 -0.265625 7.40625 -0.015625 7.890625 -0.015625 L 8.5 -0.015625 C 8.71875 -0.015625 8.9375 -0.03125 9.046875 -0.234375 C 9.15625 -0.375 9.171875 -0.59375 9.234375 -0.765625 C 9.65625 -2.359375 10.09375 -3.953125 10.546875 -5.53125 L 10.96875 -7.03125 C 11 -7.125 11.03125 -7.21875 11.03125 -7.3125 C 11.03125 -7.453125 10.921875 -7.578125 10.703125 -7.578125 L 10.46875 -7.578125 C 10.015625 -7.578125 9.953125 -7.3125 9.859375 -7.046875 C 9.375 -5.328125 8.890625 -3.59375 8.421875 -1.875 C 8.359375 -1.65625 8.3125 -1.421875 8.234375 -1.21875 C 7.6875 -3.140625 7.171875 -5.078125 6.625 -6.984375 C 6.546875 -7.296875 6.46875 -7.578125 6.015625 -7.578125 L 5.4375 -7.578125 C 5 -7.578125 4.890625 -7.5625 4.65625 -6.75 L 4.296875 -5.46875 C 4.046875 -4.5625 3.796875 -3.625 3.53125 -2.71875 L 3.265625 -1.765625 C 3.234375 -1.609375 3.15625 -1.421875 3.15625 -1.265625 C 3.078125 -1.421875 3.046875 -1.625 3 -1.796875 L 2.703125 -2.890625 C 2.40625 -3.96875 2.078125 -5.03125 1.796875 -6.125 L 1.578125 -6.96875 C 1.46875 -7.34375 1.359375 -7.578125 0.9375 -7.578125 L 0.609375 -7.578125 C 0.453125 -7.578125 0.265625 -7.515625 0.265625 -7.3125 C 0.265625 -7.234375 0.296875 -7.140625 0.3125 -7.0625 C 0.78125 -5.3125 1.28125 -3.578125 1.765625 -1.84375 C 1.859375 -1.484375 1.96875 -1.109375 2.078125 -0.75 C 2.1875 -0.3125 2.25 -0.015625 2.765625 -0.015625 L 3.34375 -0.015625 C 3.84375 -0.015625 3.90625 -0.28125 4 -0.609375 C 4.453125 -2.453125 5.03125 -4.28125 5.53125 -6.109375 C 5.5625 -6.203125 5.59375 -6.296875 5.609375 -6.40625 Z M 5.609375 -6.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 1.5625 -2.140625 L 4.65625 -2.140625 C 4.9375 -2.140625 5.140625 -2.21875 5.140625 -2.578125 C 5.140625 -3.234375 5.03125 -3.96875 4.609375 -4.5 C 4.1875 -5.03125 3.5 -5.1875 2.875 -5.1875 C 2.25 -5.1875 1.5625 -5.015625 1.09375 -4.609375 C 0.5 -4.09375 0.34375 -3.28125 0.34375 -2.53125 C 0.34375 -1.859375 0.484375 -1.1875 0.921875 -0.671875 C 1.421875 -0.125 2.21875 0.09375 2.9375 0.09375 C 3.625 0.09375 4.25 -0.03125 4.90625 -0.34375 C 4.984375 -0.375 5.078125 -0.421875 5.078125 -0.515625 C 5.078125 -0.828125 5.0625 -1.296875 4.90625 -1.296875 C 4.84375 -1.296875 4.765625 -1.234375 4.71875 -1.1875 C 4.25 -0.8125 3.6875 -0.609375 3.078125 -0.609375 C 2.203125 -0.609375 1.578125 -1.1875 1.5625 -2.140625 Z M 1.546875 -2.78125 C 1.546875 -3.546875 1.828125 -4.46875 2.90625 -4.46875 C 3.625 -4.46875 4.09375 -3.90625 4.09375 -2.78125 Z M 1.546875 -2.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 2 -4.109375 C 1.984375 -4.171875 1.96875 -4.25 1.96875 -4.328125 C 1.96875 -4.421875 1.984375 -4.53125 1.984375 -4.625 C 1.984375 -4.984375 1.78125 -5.078125 1.53125 -5.078125 C 1.4375 -5.078125 1.359375 -5.078125 1.28125 -5.078125 L 1.1875 -5.078125 C 0.96875 -5.078125 0.78125 -4.96875 0.78125 -4.640625 L 0.78125 -0.46875 C 0.78125 -0.109375 0.921875 0 1.546875 0 C 1.796875 0 2.046875 -0.078125 2.046875 -0.421875 L 2.046875 -2.46875 C 2.109375 -3.203125 2.59375 -3.828125 3.3125 -4.046875 C 3.4375 -4.078125 3.5625 -4.09375 3.671875 -4.109375 L 3.75 -4.109375 C 3.875 -4.109375 3.90625 -4.203125 3.90625 -4.296875 L 3.90625 -4.9375 C 3.90625 -5.109375 3.84375 -5.125 3.734375 -5.125 C 3.046875 -5.125 2.296875 -4.671875 2 -4.109375 Z M 2 -4.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 2.015625 -4.28125 L 2 -4.625 C 2 -4.921875 1.859375 -5.078125 1.546875 -5.078125 C 1.46875 -5.078125 1.375 -5.078125 1.296875 -5.078125 L 1.1875 -5.078125 C 0.9375 -5.078125 0.78125 -4.953125 0.78125 -4.609375 L 0.78125 -0.421875 C 0.78125 -0.015625 1.046875 -0.015625 1.28125 -0.015625 L 1.65625 -0.015625 C 2.046875 -0.015625 2.0625 -0.28125 2.0625 -0.5 L 2.0625 -2.4375 C 2.0625 -3.171875 2.234375 -4.421875 3.359375 -4.421875 C 4.0625 -4.421875 4.09375 -3.84375 4.09375 -3.40625 L 4.09375 -0.4375 C 4.09375 -0.03125 4.359375 -0.015625 4.59375 -0.015625 L 5 -0.015625 C 5.25 -0.015625 5.390625 -0.15625 5.390625 -0.453125 L 5.390625 -2.890625 C 5.4375 -3.515625 5.8125 -4.421875 6.625 -4.421875 C 7.390625 -4.421875 7.421875 -3.875 7.421875 -3.421875 L 7.421875 -0.328125 C 7.53125 -0.046875 7.671875 0 7.921875 0 C 8 0 8.109375 -0.015625 8.171875 -0.015625 L 8.296875 -0.015625 C 8.59375 -0.015625 8.71875 -0.1875 8.71875 -0.453125 L 8.71875 -3.28125 C 8.71875 -3.703125 8.71875 -4.171875 8.484375 -4.53125 C 8.171875 -5.046875 7.59375 -5.125 7.046875 -5.125 C 6.390625 -5.125 5.578125 -4.75 5.296875 -4.21875 C 5.015625 -4.90625 4.53125 -5.125 3.78125 -5.125 C 3.15625 -5.125 2.3125 -4.828125 2.015625 -4.28125 Z M 2.015625 -4.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 3.671875 -2.890625 C 2.46875 -2.890625 0.359375 -2.75 0.359375 -1.34375 C 0.359375 -0.53125 1.0625 0.09375 1.859375 0.09375 C 2.546875 0.09375 3.109375 -0.046875 3.703125 -0.40625 C 3.703125 -0.046875 3.96875 -0.015625 4.203125 -0.015625 L 4.484375 -0.015625 C 4.6875 -0.015625 4.96875 -0.046875 4.96875 -0.40625 L 4.96875 -3.484375 C 4.890625 -4.828125 3.875 -5.1875 2.875 -5.1875 C 2.25 -5.1875 1.671875 -5.078125 1.09375 -4.796875 C 1 -4.734375 0.8125 -4.6875 0.8125 -4.546875 C 0.8125 -4.5 0.828125 -4.453125 0.828125 -4.40625 L 0.859375 -3.984375 C 0.890625 -3.875 0.875 -3.703125 1 -3.703125 C 1.09375 -3.703125 1.296875 -3.921875 1.4375 -4.046875 C 1.78125 -4.3125 2.21875 -4.484375 2.65625 -4.484375 L 2.859375 -4.484375 C 3.640625 -4.484375 3.671875 -3.71875 3.671875 -3.234375 Z M 3.671875 -2.296875 L 3.671875 -1.515625 C 3.671875 -0.90625 3.09375 -0.59375 2.53125 -0.59375 C 2.078125 -0.59375 1.59375 -0.890625 1.59375 -1.390625 C 1.609375 -1.9375 2.34375 -2.140625 2.765625 -2.203125 C 3.0625 -2.25 3.375 -2.296875 3.671875 -2.296875 Z M 3.671875 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.1875 C 2.15625 -5.109375 1.578125 -5 1.125 -4.578125 C 0.5625 -4.046875 0.40625 -3.25 0.40625 -2.515625 C 0.40625 -1.859375 0.53125 -1.125 0.984375 -0.625 C 1.5 -0.0625 2.265625 0.09375 3 0.09375 C 3.625 0.09375 4.25 -0.03125 4.828125 -0.3125 C 4.90625 -0.34375 5 -0.375 5 -0.5 C 5 -0.671875 4.96875 -0.84375 4.953125 -1.015625 C 4.9375 -1.09375 4.953125 -1.28125 4.84375 -1.3125 L 4.8125 -1.3125 C 4.703125 -1.3125 4.453125 -1.078125 4.296875 -0.984375 C 3.9375 -0.78125 3.53125 -0.671875 3.125 -0.65625 L 3 -0.65625 C 1.90625 -0.65625 1.703125 -1.5625 1.6875 -2.296875 L 1.6875 -2.578125 C 1.6875 -3.09375 1.71875 -3.671875 2.0625 -4.0625 C 2.328125 -4.34375 2.6875 -4.421875 3.046875 -4.421875 C 3.375 -4.421875 3.703125 -4.390625 4 -4.25 C 4.25 -4.109375 4.5625 -3.734375 4.6875 -3.734375 C 4.859375 -3.734375 4.921875 -4.453125 4.921875 -4.53125 C 4.921875 -4.78125 4.171875 -5.046875 3.875 -5.109375 C 3.625 -5.171875 3.359375 -5.1875 3.09375 -5.1875 Z M 2.765625 -5.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 2.046875 -4.3125 C 2.03125 -4.359375 2.03125 -4.390625 2.03125 -4.4375 L 2.03125 -7.328125 C 2.03125 -7.390625 2.046875 -7.46875 2.046875 -7.53125 C 2.046875 -7.875 1.8125 -7.96875 1.5625 -7.96875 C 1.46875 -7.96875 1.375 -7.96875 1.28125 -7.96875 L 1.1875 -7.96875 C 0.9375 -7.96875 0.78125 -7.859375 0.78125 -7.484375 L 0.78125 -0.34375 C 0.78125 -0.109375 0.984375 -0.015625 1.203125 -0.015625 L 1.359375 -0.015625 C 1.421875 -0.015625 1.515625 0 1.609375 0 C 1.9375 0 2.0625 -0.15625 2.0625 -0.484375 L 2.0625 -2.546875 C 2.0625 -3.3125 2.34375 -4.421875 3.34375 -4.421875 L 3.4375 -4.421875 C 4.03125 -4.34375 4.09375 -3.890625 4.09375 -3.453125 L 4.09375 -0.453125 C 4.09375 -0.15625 4.171875 -0.015625 4.5625 -0.015625 L 4.9375 -0.015625 C 5.1875 -0.015625 5.375 -0.109375 5.375 -0.4375 L 5.375 -3.28125 C 5.375 -4.203125 5.21875 -5.125 3.71875 -5.125 C 3.09375 -5.125 2.359375 -4.8125 2.046875 -4.3125 Z M 2.046875 -4.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 1.078125 -5.015625 L 0.6875 -5.015625 C 0.40625 -5.015625 0.21875 -4.890625 0.21875 -4.640625 C 0.21875 -4.375 0.421875 -4.28125 0.6875 -4.28125 L 1.046875 -4.28125 L 1.046875 -1.375 C 1.046875 -0.671875 1.234375 0.09375 2.15625 0.09375 C 2.71875 0.09375 3.328125 -0.03125 3.84375 -0.296875 C 3.921875 -0.328125 3.984375 -0.359375 4 -0.453125 C 4 -0.515625 3.921875 -1.03125 3.78125 -1.03125 C 3.703125 -1.03125 3.5625 -0.890625 3.453125 -0.84375 C 3.234375 -0.75 3.03125 -0.65625 2.765625 -0.65625 C 2.296875 -0.65625 2.28125 -1.171875 2.28125 -1.609375 L 2.28125 -4.28125 L 3.375 -4.28125 C 3.59375 -4.28125 3.8125 -4.390625 3.8125 -4.640625 C 3.8125 -4.875 3.671875 -5.015625 3.359375 -5.015625 L 2.28125 -5.015625 L 2.28125 -6.015625 C 2.28125 -6.234375 2.203125 -6.453125 1.890625 -6.453125 L 1.765625 -6.453125 C 1.703125 -6.453125 1.609375 -6.453125 1.53125 -6.453125 C 1.296875 -6.453125 1.078125 -6.375 1.078125 -6.015625 Z M 1.078125 -5.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 4.109375 -4.640625 C 3.734375 -4.953125 3.234375 -5.125 2.765625 -5.125 C 2.15625 -5.125 1.5 -4.984375 1.0625 -4.546875 C 0.515625 -4.015625 0.40625 -3.21875 0.40625 -2.484375 C 0.40625 -1.875 0.484375 -1.25 0.84375 -0.734375 C 1.25 -0.140625 1.9375 0.09375 2.625 0.09375 C 3.15625 0.09375 3.671875 -0.09375 4.078125 -0.453125 C 4.078125 -0.046875 4.296875 0 4.5625 0 C 4.640625 0 4.734375 -0.015625 4.8125 -0.015625 L 4.921875 -0.015625 C 5.140625 -0.015625 5.28125 -0.03125 5.359375 -0.3125 L 5.359375 -7.53125 C 5.359375 -7.890625 5.140625 -7.96875 4.890625 -7.96875 C 4.78125 -7.96875 4.703125 -7.96875 4.609375 -7.96875 L 4.515625 -7.96875 C 4.25 -7.96875 4.109375 -7.8125 4.109375 -7.53125 Z M 1.6875 -2.109375 L 1.6875 -2.59375 C 1.6875 -3.375 1.78125 -4.421875 3.078125 -4.421875 C 3.40625 -4.421875 3.703125 -4.296875 3.984375 -4.03125 C 4.03125 -3.984375 4.0625 -3.9375 4.078125 -3.875 L 4.078125 -1.421875 C 4.078125 -0.90625 3.34375 -0.609375 2.9375 -0.609375 C 2.609375 -0.609375 2.25 -0.734375 2.03125 -0.984375 C 1.75 -1.296875 1.734375 -1.71875 1.6875 -2.109375 Z M 1.6875 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 2 -4.28125 L 2 -4.625 C 2 -4.921875 1.859375 -5.078125 1.5625 -5.078125 C 1.46875 -5.078125 1.390625 -5.078125 1.3125 -5.078125 L 1.171875 -5.078125 C 0.890625 -5.078125 0.78125 -4.875 0.78125 -4.609375 L 0.78125 -0.421875 C 0.78125 -0.03125 1.046875 -0.015625 1.28125 -0.015625 L 1.65625 -0.015625 C 2.03125 -0.015625 2.0625 -0.265625 2.0625 -0.484375 L 2.0625 -2.40625 C 2.0625 -2.796875 2.0625 -3.203125 2.21875 -3.5625 C 2.40625 -4.03125 2.828125 -4.421875 3.34375 -4.421875 L 3.4375 -4.421875 C 4.0625 -4.359375 4.09375 -3.828125 4.09375 -3.375 L 4.09375 -0.46875 C 4.09375 -0.1875 4.171875 -0.015625 4.546875 -0.015625 L 4.921875 -0.015625 C 5.21875 -0.015625 5.375 -0.15625 5.375 -0.453125 L 5.375 -3.265625 C 5.375 -3.671875 5.375 -4.109375 5.171875 -4.5 C 4.875 -5.03125 4.28125 -5.125 3.734375 -5.125 C 3.03125 -5.125 2.515625 -4.828125 2 -4.28125 Z M 2 -4.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 2.078125 -5.1875 C 1.390625 -5.0625 0.40625 -4.984375 0.40625 -3.6875 C 0.40625 -2.90625 1.03125 -2.328125 1.8125 -2.15625 C 2.40625 -2.03125 3.375 -2.03125 3.375 -1.359375 C 3.375 -0.78125 2.859375 -0.671875 2.421875 -0.671875 C 1.765625 -0.671875 1.1875 -0.921875 0.734375 -1.40625 C 0.703125 -1.453125 0.671875 -1.5 0.59375 -1.5 C 0.421875 -1.5 0.390625 -0.921875 0.359375 -0.703125 C 0.34375 -0.65625 0.328125 -0.59375 0.328125 -0.53125 C 0.328125 -0.4375 0.421875 -0.390625 0.484375 -0.359375 C 1.0625 -0.046875 1.71875 0.09375 2.375 0.09375 C 3.21875 0.09375 4.3125 -0.109375 4.3125 -1.46875 C 4.3125 -2.296875 3.6875 -2.90625 2.90625 -3.09375 C 2.375 -3.234375 1.34375 -3.203125 1.34375 -3.875 L 1.34375 -3.921875 C 1.421875 -4.421875 1.84375 -4.484375 2.296875 -4.484375 C 2.828125 -4.484375 3.296875 -4.3125 3.734375 -3.953125 C 3.78125 -3.921875 3.84375 -3.875 3.875 -3.875 C 4.03125 -3.875 4.125 -4.53125 4.125 -4.6875 C 4.125 -5 2.96875 -5.1875 2.40625 -5.1875 Z M 2.078125 -5.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-15">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.1875 C 2.109375 -5.09375 1.53125 -5 1.046875 -4.546875 C 0.484375 -4.015625 0.34375 -3.203125 0.34375 -2.46875 C 0.34375 -1.78125 0.484375 -1.0625 0.96875 -0.5625 C 1.53125 0 2.359375 0.09375 3.109375 0.09375 C 3.78125 0.09375 4.5625 -0.078125 5.046875 -0.59375 C 5.515625 -1.09375 5.65625 -1.78125 5.65625 -2.453125 C 5.65625 -3.15625 5.53125 -3.921875 5.046875 -4.453125 C 4.515625 -5.03125 3.6875 -5.1875 2.921875 -5.1875 Z M 1.625 -2.203125 L 1.625 -2.6875 C 1.625 -3.453125 1.671875 -4.46875 3.015625 -4.46875 C 3.859375 -4.46875 4.28125 -3.953125 4.359375 -3.171875 C 4.375 -2.96875 4.375 -2.765625 4.375 -2.546875 C 4.375 -1.71875 4.34375 -0.65625 2.984375 -0.65625 C 2.59375 -0.65625 2.21875 -0.765625 1.96875 -1.046875 C 1.6875 -1.375 1.671875 -1.78125 1.625 -2.203125 Z M 1.625 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-16">
|
||||
<path style="stroke:none;" d="M 3.90625 -3.71875 L 3.921875 -3.71875 C 3.9375 -3.375 4.0625 -3.015625 4.15625 -2.671875 C 4.3125 -2.109375 4.46875 -1.546875 4.640625 -0.984375 L 4.75 -0.546875 C 4.828125 -0.265625 4.921875 -0.015625 5.359375 -0.015625 L 5.984375 -0.015625 C 6.5625 -0.015625 6.59375 -0.203125 6.921875 -1.3125 C 7.21875 -2.34375 7.484375 -3.390625 7.8125 -4.40625 C 7.859375 -4.515625 7.890625 -4.625 7.890625 -4.75 L 7.890625 -4.78125 C 7.875 -4.96875 7.6875 -5.015625 7.53125 -5.015625 L 7.34375 -5.015625 C 6.9375 -5.015625 6.828125 -4.859375 6.65625 -4.25 C 6.421875 -3.4375 6.171875 -2.625 5.9375 -1.828125 C 5.875 -1.53125 5.765625 -1.265625 5.703125 -0.984375 L 5.6875 -0.984375 C 5.640625 -1.296875 5.5 -1.640625 5.40625 -1.96875 C 5.21875 -2.65625 5 -3.34375 4.8125 -4.03125 C 4.671875 -4.5 4.65625 -5.015625 4.0625 -5.015625 C 3.609375 -5.015625 3.515625 -4.78125 3.375 -4.28125 C 3.09375 -3.328125 2.796875 -2.359375 2.546875 -1.40625 C 2.515625 -1.3125 2.46875 -1.234375 2.46875 -1.140625 C 2.359375 -1.3125 2.3125 -1.609375 2.25 -1.828125 C 2.015625 -2.65625 1.78125 -3.484375 1.53125 -4.3125 C 1.40625 -4.71875 1.328125 -5.015625 0.8125 -5.015625 L 0.609375 -5.015625 C 0.453125 -5.015625 0.28125 -4.96875 0.265625 -4.78125 L 0.265625 -4.75 C 0.265625 -4.625 0.3125 -4.484375 0.359375 -4.359375 C 0.703125 -3.109375 1.0625 -1.84375 1.46875 -0.59375 C 1.609375 -0.0625 1.78125 -0.015625 2.109375 -0.015625 L 2.4375 -0.015625 C 2.984375 -0.015625 3 -0.375 3.125 -0.71875 C 3.328125 -1.484375 3.546875 -2.234375 3.75 -3 C 3.8125 -3.234375 3.890625 -3.484375 3.90625 -3.71875 Z M 3.90625 -3.71875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="89.291" y="95.148"/>
|
||||
<use xlink:href="#glyph0-2" x="93.887522" y="95.148"/>
|
||||
<use xlink:href="#glyph0-3" x="102.363257" y="95.148"/>
|
||||
<use xlink:href="#glyph0-4" x="110.838992" y="95.148"/>
|
||||
<use xlink:href="#glyph0-5" x="118.739445" y="95.148"/>
|
||||
<use xlink:href="#glyph0-6" x="122.637307" y="95.148"/>
|
||||
<use xlink:href="#glyph0-7" x="128.588111" y="95.148"/>
|
||||
<use xlink:href="#glyph0-8" x="134.906178" y="95.148"/>
|
||||
<use xlink:href="#glyph0-9" x="142.466625" y="95.148"/>
|
||||
<use xlink:href="#glyph0-10" x="149.982599" y="95.148"/>
|
||||
<use xlink:href="#glyph0-11" x="155.594833" y="95.148"/>
|
||||
<use xlink:href="#glyph0-9" x="162.749282" y="95.148"/>
|
||||
<use xlink:href="#glyph0-12" x="170.265257" y="95.148"/>
|
||||
<use xlink:href="#glyph0-13" x="174.163119" y="95.148"/>
|
||||
<use xlink:href="#glyph0-3" x="181.488289" y="95.148"/>
|
||||
<use xlink:href="#glyph0-2" x="189.964024" y="95.148"/>
|
||||
<use xlink:href="#glyph0-12" x="198.439759" y="95.148"/>
|
||||
<use xlink:href="#glyph0-7" x="202.337621" y="95.148"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="89.291" y="129.516"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="105.766176" y="129.516"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="115.545981" y="129.516"/>
|
||||
<use xlink:href="#glyph0-16" x="121.158214" y="129.516"/>
|
||||
<use xlink:href="#glyph0-17" x="129.633949" y="129.516"/>
|
||||
<use xlink:href="#glyph0-9" x="139.247338" y="129.516"/>
|
||||
<use xlink:href="#glyph0-5" x="146.763312" y="129.516"/>
|
||||
<use xlink:href="#glyph0-7" x="150.661174" y="129.516"/>
|
||||
<use xlink:href="#glyph0-18" x="156.979241" y="129.516"/>
|
||||
<use xlink:href="#glyph0-13" x="165.454976" y="129.516"/>
|
||||
<use xlink:href="#glyph0-3" x="172.780146" y="129.516"/>
|
||||
<use xlink:href="#glyph0-9" x="181.25588" y="129.516"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="89.291" y="153.866"/>
|
||||
<use xlink:href="#glyph1-2" x="97.573189" y="153.866"/>
|
||||
<use xlink:href="#glyph1-3" x="102.395011" y="153.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="110.236472" y="153.866"/>
|
||||
<use xlink:href="#glyph1-3" x="115.058294" y="153.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="119.267025" y="153.866"/>
|
||||
<use xlink:href="#glyph1-5" x="123.546665" y="153.866"/>
|
||||
<use xlink:href="#glyph1-2" x="127.766305" y="153.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="136.209948" y="153.866"/>
|
||||
<use xlink:href="#glyph1-7" x="144.3405" y="153.866"/>
|
||||
<use xlink:href="#glyph1-4" x="150.366687" y="153.866"/>
|
||||
<use xlink:href="#glyph1-8" x="154.646327" y="153.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="159.162695" y="153.866"/>
|
||||
<use xlink:href="#glyph1-10" x="165.188881" y="153.866"/>
|
||||
<use xlink:href="#glyph1-11" x="171.215068" y="153.866"/>
|
||||
<use xlink:href="#glyph1-5" x="174.230344" y="153.866"/>
|
||||
<use xlink:href="#glyph1-5" x="178.449983" y="153.866"/>
|
||||
<use xlink:href="#glyph1-12" x="182.669623" y="153.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="89.291" y="183.075"/>
|
||||
<use xlink:href="#glyph2-2" x="96.014604" y="183.075"/>
|
||||
<use xlink:href="#glyph2-1" x="99.749409" y="183.075"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="113.191836" y="183.075"/>
|
||||
<use xlink:href="#glyph2-4" x="120.661445" y="183.075"/>
|
||||
<use xlink:href="#glyph2-5" x="127.578724" y="183.075"/>
|
||||
<use xlink:href="#glyph2-6" x="133.555128" y="183.075"/>
|
||||
<use xlink:href="#glyph2-7" x="140.472407" y="183.075"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="151.063518" y="183.075"/>
|
||||
<use xlink:href="#glyph2-9" x="161.715602" y="183.075"/>
|
||||
<use xlink:href="#glyph2-10" x="164.89688" y="183.075"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="174.235087" y="183.075"/>
|
||||
<use xlink:href="#glyph2-5" x="181.704696" y="183.075"/>
|
||||
<use xlink:href="#glyph2-6" x="187.6811" y="183.075"/>
|
||||
<use xlink:href="#glyph2-11" x="194.598379" y="183.075"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="203.385451" y="183.075"/>
|
||||
<use xlink:href="#glyph2-9" x="209.493363" y="183.075"/>
|
||||
<use xlink:href="#glyph2-12" x="212.674642" y="183.075"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="89.291" y="203.668"/>
|
||||
<use xlink:href="#glyph1-11" x="96.669915" y="203.668"/>
|
||||
<use xlink:href="#glyph1-10" x="99.68519" y="203.668"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="109.333199" y="203.668"/>
|
||||
<use xlink:href="#glyph1-10" x="117.463751" y="203.668"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="123.184483" y="203.668"/>
|
||||
<use xlink:href="#glyph1-2" x="127.404123" y="203.668"/>
|
||||
<use xlink:href="#glyph1-3" x="132.225945" y="203.668"/>
|
||||
<use xlink:href="#glyph1-15" x="136.445585" y="203.668"/>
|
||||
<use xlink:href="#glyph1-7" x="141.869589" y="203.668"/>
|
||||
<use xlink:href="#glyph1-4" x="147.895776" y="203.668"/>
|
||||
<use xlink:href="#glyph1-8" x="152.175416" y="203.668"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="156.691783" y="203.668"/>
|
||||
<use xlink:href="#glyph1-10" x="162.71797" y="203.668"/>
|
||||
<use xlink:href="#glyph1-11" x="168.744157" y="203.668"/>
|
||||
<use xlink:href="#glyph1-5" x="171.759432" y="203.668"/>
|
||||
<use xlink:href="#glyph1-5" x="175.979072" y="203.668"/>
|
||||
<use xlink:href="#glyph1-12" x="180.198712" y="203.668"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="89.291" y="232.877"/>
|
||||
<use xlink:href="#glyph2-2" x="96.014604" y="232.877"/>
|
||||
<use xlink:href="#glyph2-13" x="99.749409" y="232.877"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="113.191836" y="232.877"/>
|
||||
<use xlink:href="#glyph2-4" x="120.661445" y="232.877"/>
|
||||
<use xlink:href="#glyph2-5" x="127.578724" y="232.877"/>
|
||||
<use xlink:href="#glyph2-6" x="133.555128" y="232.877"/>
|
||||
<use xlink:href="#glyph2-7" x="140.472407" y="232.877"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="151.063518" y="232.877"/>
|
||||
<use xlink:href="#glyph2-6" x="157.787123" y="232.877"/>
|
||||
<use xlink:href="#glyph2-12" x="164.704402" y="232.877"/>
|
||||
<use xlink:href="#glyph2-7" x="171.62168" y="232.877"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="182.212792" y="232.877"/>
|
||||
<use xlink:href="#glyph2-5" x="189.682401" y="232.877"/>
|
||||
<use xlink:href="#glyph2-6" x="195.658805" y="232.877"/>
|
||||
<use xlink:href="#glyph2-11" x="202.576084" y="232.877"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="211.363156" y="232.877"/>
|
||||
<use xlink:href="#glyph2-9" x="217.471068" y="232.877"/>
|
||||
<use xlink:href="#glyph2-12" x="220.652347" y="232.877"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="89.291" y="253.47"/>
|
||||
<use xlink:href="#glyph1-11" x="96.669915" y="253.47"/>
|
||||
<use xlink:href="#glyph1-10" x="99.68519" y="253.47"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="109.333199" y="253.47"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="116.860478" y="253.47"/>
|
||||
<use xlink:href="#glyph1-11" x="121.6823" y="253.47"/>
|
||||
<use xlink:href="#glyph1-5" x="124.697575" y="253.47"/>
|
||||
<use xlink:href="#glyph1-2" x="128.917215" y="253.47"/>
|
||||
<use xlink:href="#glyph1-3" x="133.739037" y="253.47"/>
|
||||
<use xlink:href="#glyph1-2" x="137.958677" y="253.47"/>
|
||||
<use xlink:href="#glyph1-3" x="142.780499" y="253.47"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="150.611051" y="253.47"/>
|
||||
<use xlink:href="#glyph1-10" x="158.741603" y="253.47"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="164.473244" y="253.47"/>
|
||||
<use xlink:href="#glyph1-2" x="168.692884" y="253.47"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="173.503797" y="253.47"/>
|
||||
<use xlink:href="#glyph1-15" x="177.723437" y="253.47"/>
|
||||
<use xlink:href="#glyph1-7" x="183.147442" y="253.47"/>
|
||||
<use xlink:href="#glyph1-4" x="189.173629" y="253.47"/>
|
||||
<use xlink:href="#glyph1-8" x="193.453269" y="253.47"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="197.980545" y="253.47"/>
|
||||
<use xlink:href="#glyph1-11" x="204.006732" y="253.47"/>
|
||||
<use xlink:href="#glyph1-5" x="207.022007" y="253.47"/>
|
||||
<use xlink:href="#glyph1-5" x="211.241647" y="253.47"/>
|
||||
<use xlink:href="#glyph1-12" x="215.461287" y="253.47"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="89.291" y="282.28"/>
|
||||
<use xlink:href="#glyph3-2" x="95.299732" y="282.28"/>
|
||||
<use xlink:href="#glyph3-3" x="98.637917" y="282.28"/>
|
||||
<use xlink:href="#glyph3-2" x="104.646649" y="282.28"/>
|
||||
<use xlink:href="#glyph3-1" x="107.984834" y="282.28"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-4" x="120.00448" y="282.28"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-5" x="130.971398" y="282.28"/>
|
||||
<use xlink:href="#glyph3-6" x="136.453221" y="282.28"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="144.540137" y="282.28"/>
|
||||
<use xlink:href="#glyph3-8" x="154.041963" y="282.28"/>
|
||||
<use xlink:href="#glyph3-9" x="159.794331" y="282.28"/>
|
||||
<use xlink:href="#glyph3-10" x="165.135427" y="282.28"/>
|
||||
<use xlink:href="#glyph3-11" x="171.299068" y="282.28"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-12" x="179.642348" y="282.28"/>
|
||||
<use xlink:href="#glyph3-5" x="185.80599" y="282.28"/>
|
||||
<use xlink:href="#glyph3-13" x="191.287812" y="282.28"/>
|
||||
<use xlink:href="#glyph3-13" x="197.451454" y="282.28"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="207.629644" y="282.28"/>
|
||||
<use xlink:href="#glyph3-15" x="212.236557" y="282.28"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-16" x="217.907107" y="282.28"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-8" x="225.735477" y="282.28"/>
|
||||
<use xlink:href="#glyph3-14" x="231.487846" y="282.28"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="89.291" y="302.873"/>
|
||||
<use xlink:href="#glyph1-10" x="97.421552" y="302.873"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="103.142284" y="302.873"/>
|
||||
<use xlink:href="#glyph1-2" x="107.361924" y="302.873"/>
|
||||
<use xlink:href="#glyph1-3" x="112.183746" y="302.873"/>
|
||||
<use xlink:href="#glyph1-17" x="116.403386" y="302.873"/>
|
||||
<use xlink:href="#glyph1-14" x="120.020844" y="302.873"/>
|
||||
<use xlink:href="#glyph1-10" x="128.151396" y="302.873"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="133.883037" y="302.873"/>
|
||||
<use xlink:href="#glyph1-2" x="138.102677" y="302.873"/>
|
||||
<use xlink:href="#glyph1-3" x="142.924499" y="302.873"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="147.13323" y="302.873"/>
|
||||
<use xlink:href="#glyph1-7" x="152.557235" y="302.873"/>
|
||||
<use xlink:href="#glyph1-4" x="158.583421" y="302.873"/>
|
||||
<use xlink:href="#glyph1-8" x="162.863061" y="302.873"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="167.390338" y="302.873"/>
|
||||
<use xlink:href="#glyph1-10" x="173.416525" y="302.873"/>
|
||||
<use xlink:href="#glyph1-11" x="179.442711" y="302.873"/>
|
||||
<use xlink:href="#glyph1-5" x="182.457987" y="302.873"/>
|
||||
<use xlink:href="#glyph1-5" x="186.677627" y="302.873"/>
|
||||
<use xlink:href="#glyph1-12" x="190.897266" y="302.873"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-19" x="89.291" y="337.241"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="105.766176" y="337.241"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="115.545981" y="337.241"/>
|
||||
<use xlink:href="#glyph0-16" x="121.158214" y="337.241"/>
|
||||
<use xlink:href="#glyph0-17" x="129.633949" y="337.241"/>
|
||||
<use xlink:href="#glyph0-9" x="139.247338" y="337.241"/>
|
||||
<use xlink:href="#glyph0-5" x="146.763312" y="337.241"/>
|
||||
<use xlink:href="#glyph0-10" x="150.661174" y="337.241"/>
|
||||
<use xlink:href="#glyph0-9" x="156.273408" y="337.241"/>
|
||||
<use xlink:href="#glyph0-11" x="163.789382" y="337.241"/>
|
||||
<use xlink:href="#glyph0-9" x="170.943832" y="337.241"/>
|
||||
<use xlink:href="#glyph0-20" x="178.459806" y="337.241"/>
|
||||
<use xlink:href="#glyph0-6" x="186.935541" y="337.241"/>
|
||||
<use xlink:href="#glyph0-9" x="192.886345" y="337.241"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="89.291" y="361.591"/>
|
||||
<use xlink:href="#glyph1-2" x="99.228099" y="361.591"/>
|
||||
<use xlink:href="#glyph1-11" x="104.049921" y="361.591"/>
|
||||
<use xlink:href="#glyph1-10" x="107.065197" y="361.591"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-19" x="116.702296" y="361.591"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="123.489938" y="361.591"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="126.494304" y="361.591"/>
|
||||
<use xlink:href="#glyph1-7" x="131.316126" y="361.591"/>
|
||||
<use xlink:href="#glyph1-20" x="137.342313" y="361.591"/>
|
||||
<use xlink:href="#glyph1-11" x="140.357588" y="361.591"/>
|
||||
<use xlink:href="#glyph1-10" x="143.372863" y="361.591"/>
|
||||
<use xlink:href="#glyph1-21" x="149.39905" y="361.591"/>
|
||||
<use xlink:href="#glyph1-4" x="154.823055" y="361.591"/>
|
||||
<use xlink:href="#glyph1-3" x="159.102695" y="361.591"/>
|
||||
<use xlink:href="#glyph1-2" x="163.322334" y="361.591"/>
|
||||
<use xlink:href="#glyph1-22" x="168.144157" y="361.591"/>
|
||||
<use xlink:href="#glyph1-2" x="172.965979" y="361.591"/>
|
||||
<use xlink:href="#glyph1-23" x="177.787801" y="361.591"/>
|
||||
<use xlink:href="#glyph1-5" x="183.813988" y="361.591"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 90 KiB |
18
sections/german/03/contents.tex
Normal file
@ -0,0 +1,18 @@
|
||||
\documentclass[ngerman]{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\tableofcontents
|
||||
\section{Trüffelsuche}
|
||||
Der erste Abschnitt.
|
||||
\subsection{Suche mit Schwein}
|
||||
Ein Unterabschnitt.
|
||||
\subsection{Suche ohne Schwein}
|
||||
Ein weiterer Unterabschitt.
|
||||
\subsubsection{Wer macht denn sowas}
|
||||
Unter-Unterabschnitt.
|
||||
\section{Trüffelrezepte}
|
||||
Mein Lieblingsrezept
|
||||
\end{document}
|
||||
56
sections/german/03/hallo-crop.svg
Normal file
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="57pt" height="11pt" viewBox="0 0 57 11" 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 7.8125 0 L 7.8125 -0.34375 L 7.546875 -0.34375 C 6.703125 -0.34375 6.6875 -0.453125 6.6875 -0.84375 L 6.6875 -6.59375 C 6.6875 -6.984375 6.703125 -7.109375 7.546875 -7.109375 L 7.8125 -7.109375 L 7.8125 -7.453125 C 7.421875 -7.421875 6.625 -7.421875 6.203125 -7.421875 C 5.796875 -7.421875 4.96875 -7.421875 4.59375 -7.453125 L 4.59375 -7.109375 L 4.859375 -7.109375 C 5.6875 -7.109375 5.71875 -6.984375 5.71875 -6.59375 L 5.71875 -4.046875 L 2.453125 -4.046875 L 2.453125 -6.59375 C 2.453125 -6.984375 2.46875 -7.109375 3.3125 -7.109375 L 3.578125 -7.109375 L 3.578125 -7.453125 C 3.203125 -7.421875 2.390625 -7.421875 1.96875 -7.421875 C 1.5625 -7.421875 0.734375 -7.421875 0.359375 -7.453125 L 0.359375 -7.109375 L 0.625 -7.109375 C 1.46875 -7.109375 1.484375 -6.984375 1.484375 -6.59375 L 1.484375 -0.84375 C 1.484375 -0.453125 1.46875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 0 C 0.734375 -0.03125 1.546875 -0.03125 1.96875 -0.03125 C 2.375 -0.03125 3.203125 -0.03125 3.578125 0 L 3.578125 -0.34375 L 3.3125 -0.34375 C 2.46875 -0.34375 2.453125 -0.453125 2.453125 -0.84375 L 2.453125 -3.703125 L 5.71875 -3.703125 L 5.71875 -0.84375 C 5.71875 -0.453125 5.6875 -0.34375 4.859375 -0.34375 L 4.59375 -0.34375 L 4.59375 0 C 4.96875 -0.03125 5.78125 -0.03125 6.1875 -0.03125 C 6.609375 -0.03125 7.421875 -0.03125 7.8125 0 Z M 7.8125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.265625 -0.96875 L 5.265625 -1.578125 L 5 -1.578125 L 5 -0.96875 C 5 -0.34375 4.71875 -0.265625 4.609375 -0.265625 C 4.25 -0.265625 4.203125 -0.765625 4.203125 -0.8125 L 4.203125 -3 C 4.203125 -3.453125 4.203125 -3.875 3.8125 -4.28125 C 3.375 -4.71875 2.828125 -4.890625 2.3125 -4.890625 C 1.421875 -4.890625 0.671875 -4.375 0.671875 -3.65625 C 0.671875 -3.328125 0.890625 -3.140625 1.171875 -3.140625 C 1.46875 -3.140625 1.671875 -3.359375 1.671875 -3.640625 C 1.671875 -3.78125 1.609375 -4.140625 1.109375 -4.140625 C 1.40625 -4.53125 1.9375 -4.640625 2.296875 -4.640625 C 2.828125 -4.640625 3.453125 -4.21875 3.453125 -3.25 L 3.453125 -2.84375 C 2.890625 -2.8125 2.125 -2.78125 1.4375 -2.453125 C 0.625 -2.078125 0.34375 -1.515625 0.34375 -1.03125 C 0.34375 -0.15625 1.40625 0.125 2.09375 0.125 C 2.8125 0.125 3.3125 -0.3125 3.515625 -0.828125 C 3.5625 -0.390625 3.859375 0.0625 4.375 0.0625 C 4.609375 0.0625 5.265625 -0.09375 5.265625 -0.96875 Z M 3.453125 -1.53125 C 3.453125 -0.484375 2.65625 -0.125 2.171875 -0.125 C 1.640625 -0.125 1.1875 -0.5 1.1875 -1.046875 C 1.1875 -1.640625 1.640625 -2.546875 3.453125 -2.625 Z M 3.453125 -1.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.78125 0 L 2.78125 -0.34375 C 2.046875 -0.34375 1.9375 -0.34375 1.9375 -0.828125 L 1.9375 -7.5625 L 0.359375 -7.453125 L 0.359375 -7.109375 C 1.125 -7.109375 1.203125 -7.03125 1.203125 -6.5 L 1.203125 -0.828125 C 1.203125 -0.34375 1.09375 -0.34375 0.359375 -0.34375 L 0.359375 0 L 1.578125 -0.03125 Z M 2.78125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.140625 -2.328125 C 5.140625 -3.734375 4.046875 -4.890625 2.71875 -4.890625 C 1.359375 -4.890625 0.3125 -3.703125 0.3125 -2.328125 C 0.3125 -0.921875 1.4375 0.125 2.71875 0.125 C 4.03125 0.125 5.140625 -0.953125 5.140625 -2.328125 Z M 4.234375 -2.421875 C 4.234375 -2.03125 4.234375 -1.4375 3.984375 -0.953125 C 3.75 -0.46875 3.265625 -0.15625 2.71875 -0.15625 C 2.25 -0.15625 1.78125 -0.375 1.484375 -0.890625 C 1.203125 -1.359375 1.203125 -2.03125 1.203125 -2.421875 C 1.203125 -2.84375 1.203125 -3.4375 1.46875 -3.921875 C 1.765625 -4.421875 2.28125 -4.640625 2.71875 -4.640625 C 3.203125 -4.640625 3.671875 -4.40625 3.953125 -3.9375 C 4.234375 -3.46875 4.234375 -2.828125 4.234375 -2.421875 Z M 4.234375 -2.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 2.21875 -0.015625 C 2.21875 -0.703125 1.953125 -1.15625 1.515625 -1.15625 C 1.140625 -1.15625 0.9375 -0.859375 0.9375 -0.578125 C 0.9375 -0.296875 1.125 0 1.515625 0 C 1.671875 0 1.828125 -0.0625 1.953125 -0.171875 C 1.96875 0.6875 1.671875 1.359375 1.1875 1.859375 C 1.125 1.9375 1.109375 1.9375 1.109375 1.984375 C 1.109375 2.0625 1.171875 2.109375 1.21875 2.109375 C 1.359375 2.109375 2.21875 1.25 2.21875 -0.015625 Z M 2.21875 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 11 -7.109375 L 11 -7.453125 C 10.671875 -7.421875 10.34375 -7.421875 10.015625 -7.421875 L 8.71875 -7.453125 L 8.71875 -7.109375 C 9.4375 -7.09375 9.65625 -6.734375 9.65625 -6.53125 C 9.65625 -6.46875 9.625 -6.375 9.609375 -6.3125 L 7.96875 -1.28125 L 6.234375 -6.625 C 6.21875 -6.65625 6.1875 -6.734375 6.1875 -6.78125 C 6.1875 -7.109375 6.828125 -7.109375 7.109375 -7.109375 L 7.109375 -7.453125 C 6.71875 -7.421875 5.984375 -7.421875 5.5625 -7.421875 L 4.234375 -7.453125 L 4.234375 -7.109375 C 4.859375 -7.109375 5.078125 -7.109375 5.21875 -6.71875 L 5.453125 -5.953125 L 3.9375 -1.28125 L 2.1875 -6.640625 C 2.171875 -6.671875 2.15625 -6.75 2.15625 -6.78125 C 2.15625 -7.109375 2.796875 -7.109375 3.078125 -7.109375 L 3.078125 -7.453125 C 2.6875 -7.421875 1.9375 -7.421875 1.53125 -7.421875 L 0.203125 -7.453125 L 0.203125 -7.109375 C 1.015625 -7.109375 1.0625 -7.0625 1.1875 -6.65625 L 3.375 0.03125 C 3.40625 0.125 3.4375 0.234375 3.578125 0.234375 C 3.734375 0.234375 3.75 0.15625 3.796875 0.015625 L 5.59375 -5.515625 L 7.40625 0.03125 C 7.4375 0.125 7.46875 0.234375 7.609375 0.234375 C 7.765625 0.234375 7.78125 0.15625 7.828125 0.015625 L 9.90625 -6.375 C 10.109375 -7 10.578125 -7.109375 11 -7.109375 Z M 11 -7.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.53125 -1.296875 C 4.53125 -1.40625 4.4375 -1.421875 4.390625 -1.421875 C 4.28125 -1.421875 4.265625 -1.359375 4.25 -1.28125 C 3.859375 -0.15625 2.875 -0.15625 2.765625 -0.15625 C 2.21875 -0.15625 1.78125 -0.484375 1.53125 -0.890625 C 1.203125 -1.40625 1.203125 -2.125 1.203125 -2.515625 L 4.25 -2.515625 C 4.5 -2.515625 4.53125 -2.515625 4.53125 -2.75 C 4.53125 -3.828125 3.9375 -4.890625 2.578125 -4.890625 C 1.3125 -4.890625 0.3125 -3.765625 0.3125 -2.40625 C 0.3125 -0.9375 1.453125 0.125 2.703125 0.125 C 4.03125 0.125 4.53125 -1.09375 4.53125 -1.296875 Z M 3.8125 -2.75 L 1.21875 -2.75 C 1.28125 -4.375 2.203125 -4.640625 2.578125 -4.640625 C 3.703125 -4.640625 3.8125 -3.171875 3.8125 -2.75 Z M 3.8125 -2.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 3.625 -1.359375 L 3.625 -1.96875 L 3.34375 -1.96875 L 3.34375 -1.375 C 3.34375 -0.5625 3.015625 -0.15625 2.625 -0.15625 C 1.890625 -0.15625 1.890625 -1.140625 1.890625 -1.328125 L 1.890625 -4.359375 L 3.453125 -4.359375 L 3.453125 -4.703125 L 1.890625 -4.703125 L 1.890625 -6.703125 L 1.609375 -6.703125 C 1.609375 -5.8125 1.28125 -4.640625 0.203125 -4.609375 L 0.203125 -4.359375 L 1.140625 -4.359375 L 1.140625 -1.359375 C 1.140625 -0.015625 2.15625 0.125 2.546875 0.125 C 3.3125 0.125 3.625 -0.65625 3.625 -1.359375 Z M 3.625 -1.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 2.09375 -7.25 C 2.09375 -7.609375 1.796875 -7.8125 1.515625 -7.8125 C 1.234375 -7.8125 0.9375 -7.609375 0.9375 -7.25 L 1.359375 -2.296875 C 1.375 -2.125 1.390625 -2.046875 1.515625 -2.046875 C 1.625 -2.046875 1.65625 -2.09375 1.671875 -2.28125 Z M 2.09375 -0.578125 C 2.09375 -0.890625 1.828125 -1.15625 1.515625 -1.15625 C 1.203125 -1.15625 0.9375 -0.890625 0.9375 -0.578125 C 0.9375 -0.265625 1.203125 0 1.515625 0 C 1.828125 0 2.09375 -0.265625 2.09375 -0.578125 Z M 2.09375 -0.578125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.2" y="8.258"/>
|
||||
<use xlink:href="#glyph0-2" x="8.381825" y="8.258"/>
|
||||
<use xlink:href="#glyph0-3" x="13.836375" y="8.258"/>
|
||||
<use xlink:href="#glyph0-3" x="16.866923" y="8.258"/>
|
||||
<use xlink:href="#glyph0-4" x="19.897471" y="8.258"/>
|
||||
<use xlink:href="#glyph0-5" x="25.352021" y="8.258"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="32.015299" y="8.258"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="42.322217" y="8.258"/>
|
||||
<use xlink:href="#glyph0-3" x="47.171312" y="8.258"/>
|
||||
<use xlink:href="#glyph0-8" x="50.20186" y="8.258"/>
|
||||
<use xlink:href="#glyph0-9" x="54.444409" y="8.258"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
56
sections/german/03/hallo-orig.svg
Normal file
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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 7.8125 0 L 7.8125 -0.34375 L 7.546875 -0.34375 C 6.703125 -0.34375 6.6875 -0.453125 6.6875 -0.84375 L 6.6875 -6.59375 C 6.6875 -6.984375 6.703125 -7.109375 7.546875 -7.109375 L 7.8125 -7.109375 L 7.8125 -7.453125 C 7.421875 -7.421875 6.625 -7.421875 6.203125 -7.421875 C 5.796875 -7.421875 4.96875 -7.421875 4.59375 -7.453125 L 4.59375 -7.109375 L 4.859375 -7.109375 C 5.6875 -7.109375 5.71875 -6.984375 5.71875 -6.59375 L 5.71875 -4.046875 L 2.453125 -4.046875 L 2.453125 -6.59375 C 2.453125 -6.984375 2.46875 -7.109375 3.3125 -7.109375 L 3.578125 -7.109375 L 3.578125 -7.453125 C 3.203125 -7.421875 2.390625 -7.421875 1.96875 -7.421875 C 1.5625 -7.421875 0.734375 -7.421875 0.359375 -7.453125 L 0.359375 -7.109375 L 0.625 -7.109375 C 1.46875 -7.109375 1.484375 -6.984375 1.484375 -6.59375 L 1.484375 -0.84375 C 1.484375 -0.453125 1.46875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 0 C 0.734375 -0.03125 1.546875 -0.03125 1.96875 -0.03125 C 2.375 -0.03125 3.203125 -0.03125 3.578125 0 L 3.578125 -0.34375 L 3.3125 -0.34375 C 2.46875 -0.34375 2.453125 -0.453125 2.453125 -0.84375 L 2.453125 -3.703125 L 5.71875 -3.703125 L 5.71875 -0.84375 C 5.71875 -0.453125 5.6875 -0.34375 4.859375 -0.34375 L 4.59375 -0.34375 L 4.59375 0 C 4.96875 -0.03125 5.78125 -0.03125 6.1875 -0.03125 C 6.609375 -0.03125 7.421875 -0.03125 7.8125 0 Z M 7.8125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.265625 -0.96875 L 5.265625 -1.578125 L 5 -1.578125 L 5 -0.96875 C 5 -0.34375 4.71875 -0.265625 4.609375 -0.265625 C 4.25 -0.265625 4.203125 -0.765625 4.203125 -0.8125 L 4.203125 -3 C 4.203125 -3.453125 4.203125 -3.875 3.8125 -4.28125 C 3.375 -4.71875 2.828125 -4.890625 2.3125 -4.890625 C 1.421875 -4.890625 0.671875 -4.375 0.671875 -3.65625 C 0.671875 -3.328125 0.890625 -3.140625 1.171875 -3.140625 C 1.46875 -3.140625 1.671875 -3.359375 1.671875 -3.640625 C 1.671875 -3.78125 1.609375 -4.140625 1.109375 -4.140625 C 1.40625 -4.53125 1.9375 -4.640625 2.296875 -4.640625 C 2.828125 -4.640625 3.453125 -4.21875 3.453125 -3.25 L 3.453125 -2.84375 C 2.890625 -2.8125 2.125 -2.78125 1.4375 -2.453125 C 0.625 -2.078125 0.34375 -1.515625 0.34375 -1.03125 C 0.34375 -0.15625 1.40625 0.125 2.09375 0.125 C 2.8125 0.125 3.3125 -0.3125 3.515625 -0.828125 C 3.5625 -0.390625 3.859375 0.0625 4.375 0.0625 C 4.609375 0.0625 5.265625 -0.09375 5.265625 -0.96875 Z M 3.453125 -1.53125 C 3.453125 -0.484375 2.65625 -0.125 2.171875 -0.125 C 1.640625 -0.125 1.1875 -0.5 1.1875 -1.046875 C 1.1875 -1.640625 1.640625 -2.546875 3.453125 -2.625 Z M 3.453125 -1.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.78125 0 L 2.78125 -0.34375 C 2.046875 -0.34375 1.9375 -0.34375 1.9375 -0.828125 L 1.9375 -7.5625 L 0.359375 -7.453125 L 0.359375 -7.109375 C 1.125 -7.109375 1.203125 -7.03125 1.203125 -6.5 L 1.203125 -0.828125 C 1.203125 -0.34375 1.09375 -0.34375 0.359375 -0.34375 L 0.359375 0 L 1.578125 -0.03125 Z M 2.78125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.140625 -2.328125 C 5.140625 -3.734375 4.046875 -4.890625 2.71875 -4.890625 C 1.359375 -4.890625 0.3125 -3.703125 0.3125 -2.328125 C 0.3125 -0.921875 1.4375 0.125 2.71875 0.125 C 4.03125 0.125 5.140625 -0.953125 5.140625 -2.328125 Z M 4.234375 -2.421875 C 4.234375 -2.03125 4.234375 -1.4375 3.984375 -0.953125 C 3.75 -0.46875 3.265625 -0.15625 2.71875 -0.15625 C 2.25 -0.15625 1.78125 -0.375 1.484375 -0.890625 C 1.203125 -1.359375 1.203125 -2.03125 1.203125 -2.421875 C 1.203125 -2.84375 1.203125 -3.4375 1.46875 -3.921875 C 1.765625 -4.421875 2.28125 -4.640625 2.71875 -4.640625 C 3.203125 -4.640625 3.671875 -4.40625 3.953125 -3.9375 C 4.234375 -3.46875 4.234375 -2.828125 4.234375 -2.421875 Z M 4.234375 -2.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 2.21875 -0.015625 C 2.21875 -0.703125 1.953125 -1.15625 1.515625 -1.15625 C 1.140625 -1.15625 0.9375 -0.859375 0.9375 -0.578125 C 0.9375 -0.296875 1.125 0 1.515625 0 C 1.671875 0 1.828125 -0.0625 1.953125 -0.171875 C 1.96875 0.6875 1.671875 1.359375 1.1875 1.859375 C 1.125 1.9375 1.109375 1.9375 1.109375 1.984375 C 1.109375 2.0625 1.171875 2.109375 1.21875 2.109375 C 1.359375 2.109375 2.21875 1.25 2.21875 -0.015625 Z M 2.21875 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 11 -7.109375 L 11 -7.453125 C 10.671875 -7.421875 10.34375 -7.421875 10.015625 -7.421875 L 8.71875 -7.453125 L 8.71875 -7.109375 C 9.4375 -7.09375 9.65625 -6.734375 9.65625 -6.53125 C 9.65625 -6.46875 9.625 -6.375 9.609375 -6.3125 L 7.96875 -1.28125 L 6.234375 -6.625 C 6.21875 -6.65625 6.1875 -6.734375 6.1875 -6.78125 C 6.1875 -7.109375 6.828125 -7.109375 7.109375 -7.109375 L 7.109375 -7.453125 C 6.71875 -7.421875 5.984375 -7.421875 5.5625 -7.421875 L 4.234375 -7.453125 L 4.234375 -7.109375 C 4.859375 -7.109375 5.078125 -7.109375 5.21875 -6.71875 L 5.453125 -5.953125 L 3.9375 -1.28125 L 2.1875 -6.640625 C 2.171875 -6.671875 2.15625 -6.75 2.15625 -6.78125 C 2.15625 -7.109375 2.796875 -7.109375 3.078125 -7.109375 L 3.078125 -7.453125 C 2.6875 -7.421875 1.9375 -7.421875 1.53125 -7.421875 L 0.203125 -7.453125 L 0.203125 -7.109375 C 1.015625 -7.109375 1.0625 -7.0625 1.1875 -6.65625 L 3.375 0.03125 C 3.40625 0.125 3.4375 0.234375 3.578125 0.234375 C 3.734375 0.234375 3.75 0.15625 3.796875 0.015625 L 5.59375 -5.515625 L 7.40625 0.03125 C 7.4375 0.125 7.46875 0.234375 7.609375 0.234375 C 7.765625 0.234375 7.78125 0.15625 7.828125 0.015625 L 9.90625 -6.375 C 10.109375 -7 10.578125 -7.109375 11 -7.109375 Z M 11 -7.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.53125 -1.296875 C 4.53125 -1.40625 4.4375 -1.421875 4.390625 -1.421875 C 4.28125 -1.421875 4.265625 -1.359375 4.25 -1.28125 C 3.859375 -0.15625 2.875 -0.15625 2.765625 -0.15625 C 2.21875 -0.15625 1.78125 -0.484375 1.53125 -0.890625 C 1.203125 -1.40625 1.203125 -2.125 1.203125 -2.515625 L 4.25 -2.515625 C 4.5 -2.515625 4.53125 -2.515625 4.53125 -2.75 C 4.53125 -3.828125 3.9375 -4.890625 2.578125 -4.890625 C 1.3125 -4.890625 0.3125 -3.765625 0.3125 -2.40625 C 0.3125 -0.9375 1.453125 0.125 2.703125 0.125 C 4.03125 0.125 4.53125 -1.09375 4.53125 -1.296875 Z M 3.8125 -2.75 L 1.21875 -2.75 C 1.28125 -4.375 2.203125 -4.640625 2.578125 -4.640625 C 3.703125 -4.640625 3.8125 -3.171875 3.8125 -2.75 Z M 3.8125 -2.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 3.625 -1.359375 L 3.625 -1.96875 L 3.34375 -1.96875 L 3.34375 -1.375 C 3.34375 -0.5625 3.015625 -0.15625 2.625 -0.15625 C 1.890625 -0.15625 1.890625 -1.140625 1.890625 -1.328125 L 1.890625 -4.359375 L 3.453125 -4.359375 L 3.453125 -4.703125 L 1.890625 -4.703125 L 1.890625 -6.703125 L 1.609375 -6.703125 C 1.609375 -5.8125 1.28125 -4.640625 0.203125 -4.609375 L 0.203125 -4.359375 L 1.140625 -4.359375 L 1.140625 -1.359375 C 1.140625 -0.015625 2.15625 0.125 2.546875 0.125 C 3.3125 0.125 3.625 -0.65625 3.625 -1.359375 Z M 3.625 -1.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 2.09375 -7.25 C 2.09375 -7.609375 1.796875 -7.8125 1.515625 -7.8125 C 1.234375 -7.8125 0.9375 -7.609375 0.9375 -7.25 L 1.359375 -2.296875 C 1.375 -2.125 1.390625 -2.046875 1.515625 -2.046875 C 1.625 -2.046875 1.65625 -2.09375 1.671875 -2.28125 Z M 2.09375 -0.578125 C 2.09375 -0.890625 1.828125 -1.15625 1.515625 -1.15625 C 1.203125 -1.15625 0.9375 -0.890625 0.9375 -0.578125 C 0.9375 -0.265625 1.203125 0 1.515625 0 C 1.828125 0 2.09375 -0.265625 2.09375 -0.578125 Z M 2.09375 -0.578125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="100.2" y="95.148"/>
|
||||
<use xlink:href="#glyph0-2" x="108.381825" y="95.148"/>
|
||||
<use xlink:href="#glyph0-3" x="113.836375" y="95.148"/>
|
||||
<use xlink:href="#glyph0-3" x="116.866923" y="95.148"/>
|
||||
<use xlink:href="#glyph0-4" x="119.897471" y="95.148"/>
|
||||
<use xlink:href="#glyph0-5" x="125.352021" y="95.148"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="132.015299" y="95.148"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="142.322217" y="95.148"/>
|
||||
<use xlink:href="#glyph0-3" x="147.171312" y="95.148"/>
|
||||
<use xlink:href="#glyph0-8" x="150.20186" y="95.148"/>
|
||||
<use xlink:href="#glyph0-9" x="154.444409" y="95.148"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
11
sections/german/03/hallo.tex
Normal file
@ -0,0 +1,11 @@
|
||||
\documentclass{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
|
||||
\usepackage{lmodern}
|
||||
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
Hallo, Welt!
|
||||
\end{document}
|
||||
222
sections/german/03/languages-crop.svg
Normal file
@ -0,0 +1,222 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64pt" height="79pt" viewBox="0 0 64 79" 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 9.59375 0 L 9.59375 -0.34375 L 9.328125 -0.34375 C 8.484375 -0.34375 8.46875 -0.453125 8.46875 -0.84375 L 8.46875 -6.59375 C 8.46875 -6.984375 8.484375 -7.109375 9.328125 -7.109375 L 9.59375 -7.109375 L 9.59375 -7.453125 L 7.75 -7.453125 C 7.453125 -7.453125 7.453125 -7.4375 7.390625 -7.234375 L 5 -1.09375 L 2.625 -7.203125 C 2.53125 -7.453125 2.5 -7.453125 2.25 -7.453125 L 0.40625 -7.453125 L 0.40625 -7.109375 L 0.671875 -7.109375 C 1.5 -7.109375 1.53125 -6.984375 1.53125 -6.59375 L 1.53125 -1.140625 C 1.53125 -0.84375 1.53125 -0.34375 0.40625 -0.34375 L 0.40625 0 L 1.671875 -0.03125 L 2.953125 0 L 2.953125 -0.34375 C 1.828125 -0.34375 1.828125 -0.84375 1.828125 -1.140625 L 1.828125 -7.03125 L 1.84375 -7.03125 L 4.46875 -0.234375 C 4.53125 -0.09375 4.578125 0 4.6875 0 C 4.8125 0 4.84375 -0.09375 4.890625 -0.203125 L 7.5625 -7.109375 L 7.578125 -7.109375 L 7.578125 -0.84375 C 7.578125 -0.453125 7.5625 -0.34375 6.71875 -0.34375 L 6.453125 -0.34375 L 6.453125 0 C 6.859375 -0.03125 7.609375 -0.03125 8.03125 -0.03125 C 8.453125 -0.03125 9.1875 -0.03125 9.59375 0 Z M 9.59375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.265625 -0.96875 L 5.265625 -1.578125 L 5 -1.578125 L 5 -0.96875 C 5 -0.34375 4.71875 -0.265625 4.609375 -0.265625 C 4.25 -0.265625 4.203125 -0.765625 4.203125 -0.8125 L 4.203125 -3 C 4.203125 -3.453125 4.203125 -3.875 3.8125 -4.28125 C 3.375 -4.71875 2.828125 -4.890625 2.3125 -4.890625 C 1.421875 -4.890625 0.671875 -4.375 0.671875 -3.65625 C 0.671875 -3.328125 0.890625 -3.140625 1.171875 -3.140625 C 1.46875 -3.140625 1.671875 -3.359375 1.671875 -3.640625 C 1.671875 -3.78125 1.609375 -4.140625 1.109375 -4.140625 C 1.40625 -4.53125 1.9375 -4.640625 2.296875 -4.640625 C 2.828125 -4.640625 3.453125 -4.21875 3.453125 -3.25 L 3.453125 -2.84375 C 2.890625 -2.8125 2.125 -2.78125 1.4375 -2.453125 C 0.625 -2.078125 0.34375 -1.515625 0.34375 -1.03125 C 0.34375 -0.15625 1.40625 0.125 2.09375 0.125 C 2.8125 0.125 3.3125 -0.3125 3.515625 -0.828125 C 3.5625 -0.390625 3.859375 0.0625 4.375 0.0625 C 4.609375 0.0625 5.265625 -0.09375 5.265625 -0.96875 Z M 3.453125 -1.53125 C 3.453125 -0.484375 2.65625 -0.125 2.171875 -0.125 C 1.640625 -0.125 1.1875 -0.5 1.1875 -1.046875 C 1.1875 -1.640625 1.640625 -2.546875 3.453125 -2.625 Z M 3.453125 -1.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.546875 -4.359375 L 5.546875 -4.703125 C 5.296875 -4.671875 4.96875 -4.671875 4.71875 -4.671875 L 3.78125 -4.703125 L 3.78125 -4.359375 C 4.109375 -4.359375 4.28125 -4.171875 4.28125 -3.890625 C 4.28125 -3.78125 4.28125 -3.765625 4.21875 -3.625 L 3.125 -0.953125 L 1.90625 -3.875 C 1.859375 -3.984375 1.84375 -4.03125 1.84375 -4.078125 C 1.84375 -4.359375 2.25 -4.359375 2.453125 -4.359375 L 2.453125 -4.703125 L 1.265625 -4.671875 C 0.96875 -4.671875 0.53125 -4.671875 0.203125 -4.703125 L 0.203125 -4.359375 C 0.734375 -4.359375 0.9375 -4.359375 1.09375 -3.984375 L 2.71875 0 L 2.453125 0.640625 C 2.21875 1.25 1.90625 2 1.203125 2 C 1.15625 2 0.90625 2 0.703125 1.796875 C 1.03125 1.75 1.125 1.515625 1.125 1.34375 C 1.125 1.0625 0.921875 0.890625 0.671875 0.890625 C 0.453125 0.890625 0.203125 1.03125 0.203125 1.359375 C 0.203125 1.84375 0.671875 2.234375 1.203125 2.234375 C 1.890625 2.234375 2.34375 1.609375 2.609375 1 L 4.53125 -3.671875 C 4.8125 -4.359375 5.359375 -4.359375 5.546875 -4.359375 Z M 5.546875 -4.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 4.984375 -2.21875 C 4.984375 -3.609375 4.015625 -4.65625 2.796875 -4.65625 C 2.0625 -4.65625 1.65625 -4.09375 1.4375 -3.578125 L 1.4375 -3.84375 C 1.4375 -6.59375 2.796875 -6.984375 3.34375 -6.984375 C 3.609375 -6.984375 4.0625 -6.921875 4.3125 -6.546875 C 4.140625 -6.546875 3.703125 -6.546875 3.703125 -6.0625 C 3.703125 -5.71875 3.96875 -5.5625 4.203125 -5.5625 C 4.390625 -5.5625 4.71875 -5.65625 4.71875 -6.078125 C 4.71875 -6.734375 4.234375 -7.265625 3.328125 -7.265625 C 1.9375 -7.265625 0.453125 -5.859375 0.453125 -3.453125 C 0.453125 -0.53125 1.71875 0.234375 2.734375 0.234375 C 3.953125 0.234375 4.984375 -0.78125 4.984375 -2.21875 Z M 4 -2.234375 C 4 -1.71875 4 -1.171875 3.8125 -0.78125 C 3.484375 -0.125 2.984375 -0.0625 2.734375 -0.0625 C 2.046875 -0.0625 1.71875 -0.71875 1.65625 -0.890625 C 1.46875 -1.390625 1.46875 -2.265625 1.46875 -2.46875 C 1.46875 -3.3125 1.8125 -4.40625 2.796875 -4.40625 C 2.96875 -4.40625 3.46875 -4.40625 3.8125 -3.734375 C 4 -3.328125 4 -2.765625 4 -2.234375 Z M 4 -2.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 2.21875 -0.015625 C 2.21875 -0.703125 1.953125 -1.15625 1.515625 -1.15625 C 1.140625 -1.15625 0.9375 -0.859375 0.9375 -0.578125 C 0.9375 -0.296875 1.125 0 1.515625 0 C 1.671875 0 1.828125 -0.0625 1.953125 -0.171875 C 1.96875 0.6875 1.671875 1.359375 1.1875 1.859375 C 1.125 1.9375 1.109375 1.9375 1.109375 1.984375 C 1.109375 2.0625 1.171875 2.109375 1.21875 2.109375 C 1.359375 2.109375 2.21875 1.25 2.21875 -0.015625 Z M 2.21875 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 4.890625 -1.890625 L 4.625 -1.890625 C 4.5625 -1.578125 4.5 -1.09375 4.390625 -0.921875 C 4.3125 -0.84375 3.59375 -0.84375 3.34375 -0.84375 L 1.390625 -0.84375 L 2.546875 -1.96875 C 4.25 -3.46875 4.890625 -4.0625 4.890625 -5.140625 C 4.890625 -6.390625 3.921875 -7.265625 2.578125 -7.265625 C 1.359375 -7.265625 0.546875 -6.265625 0.546875 -5.296875 C 0.546875 -4.671875 1.09375 -4.671875 1.125 -4.671875 C 1.3125 -4.671875 1.6875 -4.8125 1.6875 -5.25 C 1.6875 -5.546875 1.5 -5.828125 1.109375 -5.828125 C 1.03125 -5.828125 1 -5.828125 0.96875 -5.8125 C 1.21875 -6.515625 1.8125 -6.921875 2.4375 -6.921875 C 3.4375 -6.921875 3.90625 -6.046875 3.90625 -5.140625 C 3.90625 -4.28125 3.359375 -3.40625 2.765625 -2.734375 L 0.671875 -0.40625 C 0.546875 -0.28125 0.546875 -0.265625 0.546875 0 L 4.59375 0 Z M 4.890625 -1.890625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 5.015625 -3.484375 C 5.015625 -4.359375 4.96875 -5.234375 4.578125 -6.046875 C 4.078125 -7.09375 3.1875 -7.265625 2.71875 -7.265625 C 2.078125 -7.265625 1.28125 -6.984375 0.828125 -5.96875 C 0.484375 -5.21875 0.421875 -4.359375 0.421875 -3.484375 C 0.421875 -2.671875 0.46875 -1.6875 0.921875 -0.859375 C 1.390625 0.015625 2.1875 0.234375 2.71875 0.234375 C 3.296875 0.234375 4.140625 0.015625 4.609375 -1.03125 C 4.96875 -1.78125 5.015625 -2.625 5.015625 -3.484375 Z M 4.109375 -3.625 C 4.109375 -2.796875 4.109375 -2.0625 3.984375 -1.359375 C 3.828125 -0.328125 3.203125 0 2.71875 0 C 2.296875 0 1.640625 -0.265625 1.453125 -1.3125 C 1.328125 -1.96875 1.328125 -2.984375 1.328125 -3.625 C 1.328125 -4.3125 1.328125 -5.03125 1.421875 -5.625 C 1.625 -6.921875 2.4375 -7.03125 2.71875 -7.03125 C 3.078125 -7.03125 3.796875 -6.828125 4 -5.75 C 4.109375 -5.140625 4.109375 -4.3125 4.109375 -3.625 Z M 4.109375 -3.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.5625 0 L 4.5625 -0.34375 L 4.21875 -0.34375 C 3.234375 -0.34375 3.203125 -0.453125 3.203125 -0.859375 L 3.203125 -6.984375 C 3.203125 -7.234375 3.203125 -7.265625 2.953125 -7.265625 C 2.28125 -6.5625 1.3125 -6.5625 0.96875 -6.5625 L 0.96875 -6.234375 C 1.1875 -6.234375 1.828125 -6.234375 2.40625 -6.515625 L 2.40625 -0.859375 C 2.40625 -0.46875 2.359375 -0.34375 1.390625 -0.34375 L 1.03125 -0.34375 L 1.03125 0 C 1.421875 -0.03125 2.359375 -0.03125 2.796875 -0.03125 C 3.234375 -0.03125 4.1875 -0.03125 4.5625 0 Z M 4.5625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 4.984375 -3.59375 C 4.984375 -6.515625 3.734375 -7.265625 2.765625 -7.265625 C 2.15625 -7.265625 1.625 -7.0625 1.15625 -6.578125 C 0.703125 -6.078125 0.453125 -5.625 0.453125 -4.8125 C 0.453125 -3.453125 1.421875 -2.375 2.640625 -2.375 C 3.296875 -2.375 3.75 -2.828125 4 -3.46875 L 4 -3.125 C 4 -0.5625 2.875 -0.0625 2.234375 -0.0625 C 2.046875 -0.0625 1.46875 -0.09375 1.171875 -0.453125 C 1.640625 -0.453125 1.734375 -0.78125 1.734375 -0.953125 C 1.734375 -1.296875 1.46875 -1.46875 1.234375 -1.46875 C 1.0625 -1.46875 0.734375 -1.359375 0.734375 -0.9375 C 0.734375 -0.203125 1.3125 0.234375 2.25 0.234375 C 3.65625 0.234375 4.984375 -1.25 4.984375 -3.59375 Z M 3.984375 -4.59375 C 3.984375 -3.6875 3.609375 -2.625 2.65625 -2.625 C 2.46875 -2.625 1.96875 -2.625 1.640625 -3.3125 C 1.4375 -3.71875 1.4375 -4.265625 1.4375 -4.796875 C 1.4375 -5.390625 1.4375 -5.90625 1.671875 -6.296875 C 1.96875 -6.84375 2.375 -6.984375 2.765625 -6.984375 C 3.265625 -6.984375 3.625 -6.625 3.8125 -6.125 C 3.9375 -5.78125 3.984375 -5.09375 3.984375 -4.59375 Z M 3.984375 -4.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 2.09375 -0.578125 C 2.09375 -0.890625 1.828125 -1.15625 1.515625 -1.15625 C 1.203125 -1.15625 0.9375 -0.890625 0.9375 -0.578125 C 0.9375 -0.265625 1.203125 0 1.515625 0 C 1.828125 0 2.09375 -0.265625 2.09375 -0.578125 Z M 2.09375 -0.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 2.6875 0 L 2.6875 -0.34375 C 1.96875 -0.34375 1.9375 -0.390625 1.9375 -0.8125 L 1.9375 -4.828125 L 0.40625 -4.703125 L 0.40625 -4.359375 C 1.109375 -4.359375 1.203125 -4.296875 1.203125 -3.765625 L 1.203125 -0.828125 C 1.203125 -0.34375 1.09375 -0.34375 0.359375 -0.34375 L 0.359375 0 L 1.5625 -0.03125 C 1.9375 -0.03125 2.328125 -0.015625 2.6875 0 Z M 2.09375 -6.59375 C 2.09375 -6.875 1.84375 -7.171875 1.515625 -7.171875 C 1.140625 -7.171875 0.921875 -6.859375 0.921875 -6.59375 C 0.921875 -6.296875 1.171875 -6.015625 1.5 -6.015625 C 1.875 -6.015625 2.09375 -6.3125 2.09375 -6.59375 Z M 2.09375 -6.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 8.859375 0 L 8.859375 -0.34375 C 8.296875 -0.34375 8.03125 -0.34375 8.015625 -0.671875 L 8.015625 -2.75 C 8.015625 -3.6875 8.015625 -4.03125 7.671875 -4.421875 C 7.53125 -4.609375 7.171875 -4.828125 6.53125 -4.828125 C 5.609375 -4.828125 5.140625 -4.171875 4.953125 -3.75 C 4.796875 -4.703125 3.984375 -4.828125 3.5 -4.828125 C 2.703125 -4.828125 2.1875 -4.359375 1.890625 -3.671875 L 1.890625 -4.828125 L 0.34375 -4.703125 L 0.34375 -4.359375 C 1.109375 -4.359375 1.203125 -4.28125 1.203125 -3.75 L 1.203125 -0.828125 C 1.203125 -0.34375 1.078125 -0.34375 0.34375 -0.34375 L 0.34375 0 L 1.578125 -0.03125 L 2.796875 0 L 2.796875 -0.34375 C 2.078125 -0.34375 1.953125 -0.34375 1.953125 -0.828125 L 1.953125 -2.828125 C 1.953125 -3.96875 2.71875 -4.578125 3.421875 -4.578125 C 4.109375 -4.578125 4.234375 -3.984375 4.234375 -3.375 L 4.234375 -0.828125 C 4.234375 -0.34375 4.109375 -0.34375 3.375 -0.34375 L 3.375 0 L 4.609375 -0.03125 L 5.828125 0 L 5.828125 -0.34375 C 5.109375 -0.34375 4.984375 -0.34375 4.984375 -0.828125 L 4.984375 -2.828125 C 4.984375 -3.96875 5.765625 -4.578125 6.453125 -4.578125 C 7.140625 -4.578125 7.265625 -3.984375 7.265625 -3.375 L 7.265625 -0.828125 C 7.265625 -0.34375 7.140625 -0.34375 6.40625 -0.34375 L 6.40625 0 L 7.640625 -0.03125 Z M 8.859375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 2.296875 0.546875 L 2.296875 -4.828125 L 0.625 -4.703125 L 0.625 -4.359375 C 1.46875 -4.359375 1.578125 -4.28125 1.578125 -3.75 L 1.578125 0.5625 C 1.578125 1.0625 1.46875 2 0.78125 2 C 0.71875 2 0.46875 2 0.1875 1.859375 C 0.34375 1.8125 0.5625 1.65625 0.5625 1.359375 C 0.5625 1.078125 0.375 0.859375 0.0625 0.859375 C -0.234375 0.859375 -0.4375 1.078125 -0.4375 1.359375 C -0.4375 1.9375 0.171875 2.234375 0.796875 2.234375 C 1.609375 2.234375 2.296875 1.53125 2.296875 0.546875 Z M 2.296875 -6.59375 C 2.296875 -6.875 2.046875 -7.171875 1.71875 -7.171875 C 1.34375 -7.171875 1.125 -6.859375 1.125 -6.59375 C 1.125 -6.296875 1.375 -6.015625 1.703125 -6.015625 C 2.078125 -6.015625 2.296875 -6.3125 2.296875 -6.59375 Z M 2.296875 -6.59375 "/>
|
||||
</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 1.390625 -3.5625 L 1.375 -3.5625 C 1.375 -4.578125 1.421875 -5.75 2.21875 -6.515625 C 2.53125 -6.8125 2.921875 -6.984375 3.34375 -6.984375 C 3.703125 -6.984375 4.09375 -6.875 4.296875 -6.5625 C 4.03125 -6.5625 3.75 -6.453125 3.75 -6.109375 C 3.75 -5.859375 3.921875 -5.625 4.203125 -5.625 C 4.453125 -5.625 4.671875 -5.796875 4.6875 -6.0625 L 4.6875 -6.09375 C 4.6875 -6.875 4.03125 -7.265625 3.328125 -7.265625 C 1.5 -7.265625 0.453125 -5.25 0.453125 -3.5625 C 0.453125 -2.28125 0.59375 -0.53125 2 0.078125 C 2.234375 0.171875 2.5 0.234375 2.765625 0.234375 C 3.5625 0.234375 4.171875 -0.234375 4.578125 -0.84375 C 4.859375 -1.265625 4.96875 -1.75 4.96875 -2.234375 C 4.96875 -3.4375 4.140625 -4.65625 2.828125 -4.65625 C 2.1875 -4.65625 1.59375 -4.234375 1.390625 -3.5625 Z M 1.390625 -2.375 L 1.390625 -2.46875 C 1.390625 -3.296875 1.71875 -4.421875 2.875 -4.421875 C 3.609375 -4.421875 3.953125 -3.59375 4.015625 -3.015625 C 4.03125 -2.71875 4.03125 -2.421875 4.03125 -2.125 C 4.03125 -1.390625 3.96875 -0.078125 2.71875 -0.078125 L 2.65625 -0.078125 C 1.6875 -0.15625 1.46875 -1.21875 1.40625 -2.046875 C 1.40625 -2.15625 1.40625 -2.265625 1.390625 -2.375 Z M 1.390625 -2.375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 0.34375 -4.703125 L 0.34375 -4.484375 L 0.5625 -4.484375 C 0.859375 -4.484375 1.171875 -4.4375 1.171875 -4.03125 L 1.171875 -1.5 C 1.171875 -1.390625 1.1875 -1.25 1.1875 -1.125 C 1.1875 -0.4375 0.796875 -0.234375 0.34375 -0.234375 L 0.34375 -0.015625 L 2.3125 -0.015625 L 2.3125 -0.234375 C 1.875 -0.234375 1.46875 -0.40625 1.46875 -1.078125 L 1.484375 -4.34375 C 1.578125 -3.96875 1.796875 -3.59375 1.953125 -3.21875 C 2.359375 -2.21875 2.796875 -1.234375 3.203125 -0.234375 C 3.234375 -0.15625 3.296875 -0.015625 3.40625 -0.015625 C 3.53125 -0.015625 3.578125 -0.15625 3.625 -0.265625 L 3.953125 -1.046875 C 4.359375 -2.015625 4.765625 -3 5.1875 -3.953125 C 5.25 -4.109375 5.328125 -4.28125 5.375 -4.4375 L 5.390625 -0.703125 C 5.390625 -0.234375 5 -0.234375 4.546875 -0.234375 L 4.546875 -0.015625 L 6.875 -0.015625 L 6.875 -0.234375 L 6.640625 -0.234375 C 6.34375 -0.234375 6.046875 -0.28125 6.046875 -0.734375 L 6.046875 -3.984375 C 6.046875 -4.4375 6.296875 -4.484375 6.875 -4.484375 L 6.875 -4.703125 L 5.484375 -4.703125 C 5.234375 -4.703125 5.203125 -4.53125 5.140625 -4.375 C 4.640625 -3.1875 4.171875 -1.96875 3.625 -0.796875 C 3.09375 -1.984375 2.625 -3.1875 2.109375 -4.375 C 2.0625 -4.53125 2.03125 -4.703125 1.78125 -4.703125 Z M 0.34375 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 2.4375 -2.390625 C 2.28125 -2.125 2.0625 -1.90625 1.875 -1.671875 C 1.421875 -1.09375 0.890625 -0.265625 0.171875 -0.234375 L 0.171875 -0.015625 L 2.296875 -0.015625 L 2.296875 -0.234375 C 2.09375 -0.234375 1.828125 -0.234375 1.828125 -0.40625 C 1.828125 -0.53125 1.984375 -0.734375 2.09375 -0.875 C 2.40625 -1.3125 2.796875 -1.75 3.09375 -2.1875 C 3.171875 -2.28125 3.1875 -2.34375 3.328125 -2.34375 L 4.015625 -2.34375 L 4.015625 -0.921875 C 4.015625 -0.859375 4.03125 -0.78125 4.03125 -0.703125 C 4.03125 -0.265625 3.71875 -0.234375 3.171875 -0.234375 L 3.171875 -0.015625 L 5.5625 -0.015625 L 5.5625 -0.234375 L 5.328125 -0.234375 C 5.015625 -0.234375 4.71875 -0.28125 4.71875 -0.734375 L 4.71875 -3.984375 C 4.71875 -4.4375 4.984375 -4.484375 5.5625 -4.484375 L 5.5625 -4.703125 L 3.296875 -4.703125 C 2.359375 -4.703125 0.75 -4.625 0.75 -3.5625 C 0.75 -2.734375 1.921875 -2.390625 2.4375 -2.390625 Z M 4.015625 -2.5625 C 3.8125 -2.5625 3.59375 -2.546875 3.390625 -2.546875 C 2.625 -2.546875 1.625 -2.5625 1.625 -3.59375 C 1.625 -4.359375 2.3125 -4.46875 3.203125 -4.46875 L 3.671875 -4.46875 C 3.890625 -4.46875 4.015625 -4.421875 4.015625 -4.03125 Z M 4.015625 -2.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 0.921875 -5.71875 C 1.09375 -6.40625 1.75 -6.9375 2.4375 -6.9375 C 3.421875 -6.9375 3.921875 -6.015625 3.921875 -5.1875 L 3.921875 -5.03125 C 3.859375 -4.03125 3.203125 -3.234375 2.546875 -2.515625 C 2 -1.90625 1.46875 -1.296875 0.921875 -0.703125 L 0.6875 -0.4375 C 0.625 -0.34375 0.53125 -0.3125 0.53125 -0.15625 C 0.53125 -0.109375 0.546875 -0.046875 0.546875 -0.015625 L 4.5625 -0.015625 L 4.859375 -1.875 L 4.609375 -1.875 C 4.53125 -1.546875 4.5 -1.015625 4.328125 -0.890625 C 4.28125 -0.84375 4.140625 -0.828125 4.015625 -0.828125 L 3.578125 -0.828125 C 3.421875 -0.8125 3.265625 -0.8125 3.125 -0.8125 L 1.359375 -0.8125 C 1.9375 -1.390625 2.515625 -1.96875 3.125 -2.515625 C 3.875 -3.203125 4.8125 -3.9375 4.859375 -5.0625 L 4.859375 -5.140625 C 4.859375 -6.484375 3.734375 -7.265625 2.578125 -7.265625 C 1.53125 -7.265625 0.53125 -6.40625 0.53125 -5.296875 C 0.53125 -5 0.6875 -4.6875 1.0625 -4.6875 C 1.359375 -4.6875 1.59375 -4.921875 1.59375 -5.21875 C 1.59375 -5.46875 1.40625 -5.734375 1.09375 -5.734375 C 1.03125 -5.734375 0.984375 -5.71875 0.921875 -5.71875 Z M 0.921875 -5.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 2.546875 -7.265625 C 0.5 -7.078125 0.4375 -4.59375 0.4375 -3.4375 C 0.4375 -2.421875 0.53125 -1.203125 1.203125 -0.4375 C 1.578125 -0.015625 2.140625 0.234375 2.6875 0.234375 C 4.328125 0.234375 4.9375 -1.46875 4.96875 -2.984375 C 4.96875 -3.1875 4.96875 -3.375 4.96875 -3.578125 C 4.96875 -4.609375 4.875 -5.8125 4.203125 -6.578125 C 3.84375 -7 3.28125 -7.28125 2.71875 -7.28125 C 2.65625 -7.28125 2.609375 -7.265625 2.546875 -7.265625 Z M 1.3125 -2.828125 C 1.296875 -2.921875 1.296875 -3.015625 1.296875 -3.125 C 1.296875 -3.8125 1.296875 -4.5 1.359375 -5.1875 C 1.390625 -5.59375 1.421875 -6.046875 1.65625 -6.40625 C 1.890625 -6.765625 2.28125 -7.03125 2.703125 -7.03125 C 3.03125 -7.03125 3.34375 -6.875 3.578125 -6.625 C 4.0625 -6.125 4.09375 -5.265625 4.09375 -4.484375 L 4.09375 -3.84375 C 4.09375 -3.5625 4.109375 -3.25 4.109375 -2.9375 C 4.109375 -1.546875 3.921875 -0.015625 2.6875 -0.015625 L 2.65625 -0.015625 C 1.3125 -0.140625 1.421875 -1.75 1.3125 -2.828125 Z M 1.3125 -2.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 1 -6.5625 L 1 -6.234375 C 1.515625 -6.234375 1.90625 -6.328125 2.421875 -6.515625 L 2.421875 -0.8125 C 2.421875 -0.375 2.015625 -0.34375 1.625 -0.34375 L 1.0625 -0.34375 L 1.0625 -0.015625 L 2.53125 -0.015625 L 2.8125 -0.046875 L 4.546875 -0.046875 L 4.546875 -0.34375 C 4.375 -0.34375 4.171875 -0.328125 4 -0.328125 C 3.5625 -0.328125 3.203125 -0.390625 3.203125 -0.8125 L 3.203125 -7.09375 C 3.203125 -7.1875 3.15625 -7.265625 3.046875 -7.265625 C 2.90625 -7.265625 2.75 -7.0625 2.625 -6.96875 C 2.140625 -6.65625 1.5625 -6.5625 1 -6.5625 Z M 1 -6.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 4.03125 -3.515625 C 4.03125 -2.546875 4.03125 -1.46875 3.375 -0.6875 C 3.09375 -0.328125 2.6875 -0.078125 2.203125 -0.078125 C 1.828125 -0.078125 1.375 -0.15625 1.125 -0.484375 C 1.390625 -0.484375 1.65625 -0.625 1.65625 -0.9375 C 1.65625 -1.171875 1.5 -1.421875 1.1875 -1.421875 C 0.953125 -1.421875 0.734375 -1.25 0.71875 -1 L 0.71875 -0.921875 C 0.71875 -0.15625 1.46875 0.21875 2.21875 0.21875 C 3.984375 0.21875 4.875 -1.71875 4.96875 -3.3125 L 4.96875 -3.515625 C 4.96875 -4.765625 4.828125 -6.453125 3.53125 -7.09375 C 3.28125 -7.203125 3 -7.265625 2.71875 -7.265625 C 1.9375 -7.265625 1.265625 -6.84375 0.828125 -6.1875 C 0.546875 -5.78125 0.453125 -5.296875 0.453125 -4.8125 C 0.453125 -3.640625 1.25 -2.40625 2.53125 -2.40625 L 2.625 -2.40625 C 3.265625 -2.40625 3.875 -2.890625 4.03125 -3.515625 Z M 4 -4.859375 C 4 -4.734375 4.015625 -4.609375 4.015625 -4.484375 C 3.96875 -3.734375 3.625 -2.625 2.625 -2.625 C 1.5 -2.625 1.359375 -3.96875 1.359375 -4.859375 C 1.359375 -5.734375 1.578125 -6.984375 2.71875 -6.984375 C 3.78125 -6.984375 4.015625 -5.609375 4.015625 -4.96875 C 4.015625 -4.921875 4 -4.890625 4 -4.859375 Z M 4 -4.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.703125 L 0.3125 -4.484375 L 0.546875 -4.484375 C 0.84375 -4.484375 1.140625 -4.4375 1.140625 -3.984375 L 1.140625 -0.734375 C 1.140625 -0.296875 0.890625 -0.234375 0.3125 -0.234375 L 0.3125 -0.015625 L 2.921875 -0.015625 L 2.921875 -0.234375 L 2.625 -0.234375 C 2.15625 -0.234375 1.875 -0.3125 1.875 -0.765625 L 1.875 -4.078125 C 1.875 -4.28125 1.9375 -4.484375 2.203125 -4.484375 L 2.90625 -4.484375 C 3.625 -4.484375 4.203125 -4.421875 4.28125 -2.96875 L 4.53125 -2.96875 L 4.421875 -4.703125 Z M 0.3125 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 1.421875 -1.09375 C 1.125 -1.046875 0.96875 -0.796875 0.96875 -0.5625 C 0.96875 -0.3125 1.140625 -0.015625 1.5 -0.015625 C 1.828125 -0.015625 2.046875 -0.28125 2.046875 -0.5625 C 2.046875 -0.8125 1.859375 -1.09375 1.515625 -1.09375 C 1.484375 -1.09375 1.453125 -1.09375 1.421875 -1.09375 Z M 1.421875 -1.09375 "/>
|
||||
</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 1.453125 -3.59375 L 1.453125 -3.921875 C 1.46875 -4.5 1.5 -4.890625 1.59375 -5.25 C 1.8125 -6.15625 2.359375 -6.8125 3.0625 -6.953125 C 3.125 -6.96875 3.234375 -6.984375 3.34375 -6.984375 C 3.875 -6.984375 4.125 -6.796875 4.25 -6.65625 C 4.328125 -6.578125 4.328125 -6.5625 4.25 -6.5625 C 3.9375 -6.546875 3.84375 -6.203125 3.921875 -5.984375 C 3.953125 -5.859375 4.0625 -5.75 4.296875 -5.75 C 4.390625 -5.75 4.40625 -5.75 4.484375 -5.78125 C 4.71875 -5.875 4.703125 -6.046875 4.703125 -6.1875 C 4.703125 -6.46875 4.609375 -6.6875 4.4375 -6.875 C 4.265625 -7.0625 4 -7.171875 3.6875 -7.234375 C 3.0625 -7.296875 2.5625 -7.21875 2.03125 -6.84375 C 0.953125 -6.15625 0.453125 -4.828125 0.453125 -3.40625 C 0.453125 -2.625 0.578125 -1.921875 0.703125 -1.546875 C 1.078125 -0.3125 1.859375 0.203125 2.65625 0.234375 C 2.984375 0.25 3.5625 0.25 4.234375 -0.375 C 4.75 -0.90625 4.984375 -1.4375 4.984375 -2.21875 C 4.984375 -2.953125 4.78125 -3.515625 4.21875 -4.0625 C 3.84375 -4.46875 3.375 -4.65625 2.828125 -4.65625 C 2.296875 -4.65625 1.765625 -4.390625 1.453125 -3.59375 Z M 3.921875 -3.328125 C 3.96875 -3.09375 3.984375 -2.921875 3.984375 -2.40625 C 3.984375 -1.46875 4.015625 -0.890625 3.515625 -0.390625 C 3.21875 -0.09375 2.90625 -0.09375 2.765625 -0.09375 C 2.1875 -0.09375 1.9375 -0.4375 1.828125 -0.609375 C 1.640625 -0.890625 1.484375 -1.3125 1.484375 -2.359375 C 1.484375 -2.578125 1.484375 -2.796875 1.5 -2.875 C 1.53125 -3.1875 1.75 -4.40625 2.796875 -4.40625 C 3.484375 -4.40625 3.84375 -3.828125 3.921875 -3.328125 Z M 3.921875 -3.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 1.515625 -6.78125 L 1.515625 -0.90625 C 1.4375 -0.71875 1.34375 -0.375 0.5625 -0.34375 L 0.390625 -0.34375 L 0.390625 0 L 0.484375 0 C 0.609375 -0.03125 2.6875 -0.03125 2.875 0 L 2.953125 0 L 2.953125 -0.34375 L 2.796875 -0.34375 C 2.40625 -0.359375 1.96875 -0.453125 1.84375 -0.90625 L 1.828125 -3.96875 C 1.828125 -6.5 1.828125 -7.03125 1.84375 -7 C 1.859375 -6.984375 2.46875 -5.421875 3.203125 -3.53125 C 3.921875 -1.640625 4.53125 -0.09375 4.53125 -0.078125 C 4.5625 -0.03125 4.640625 0 4.6875 0 C 4.734375 0 4.796875 -0.03125 4.828125 -0.078125 C 4.84375 -0.09375 5.46875 -1.671875 6.203125 -3.609375 L 7.5625 -7.109375 L 7.5625 -0.671875 L 7.546875 -0.59375 C 7.484375 -0.390625 7.3125 -0.34375 6.640625 -0.34375 L 6.453125 -0.34375 L 6.453125 0 L 6.546875 0 C 6.765625 -0.03125 9.265625 -0.03125 9.484375 0 L 9.59375 0 L 9.59375 -0.34375 L 9.390625 -0.34375 C 8.734375 -0.34375 8.578125 -0.34375 8.46875 -0.671875 L 8.46875 -6.78125 C 8.546875 -7.03125 8.59375 -7.09375 9.390625 -7.09375 L 9.59375 -7.09375 L 9.59375 -7.453125 L 8.5625 -7.453125 C 7.859375 -7.453125 7.53125 -7.453125 7.5 -7.4375 C 7.421875 -7.40625 7.5 -7.5625 6.1875 -4.25 L 5 -1.109375 L 4.96875 -1.171875 C 4.96875 -1.1875 4.421875 -2.59375 3.765625 -4.28125 C 2.890625 -6.515625 2.5625 -7.359375 2.546875 -7.390625 C 2.484375 -7.453125 2.53125 -7.453125 1.421875 -7.453125 L 0.390625 -7.453125 L 0.390625 -7.09375 L 0.59375 -7.09375 C 1.234375 -7.09375 1.40625 -7.109375 1.515625 -6.78125 Z M 1.515625 -6.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 5.46875 -0.703125 C 5.46875 -0.8125 5.4375 -0.828125 5.328125 -0.828125 C 5.25 -0.828125 5.1875 -0.8125 5.1875 -0.734375 C 5.1875 -0.609375 5 -0.59375 4.875 -0.59375 C 4.6875 -0.59375 4.359375 -0.609375 4.0625 -1.359375 C 4.0625 -1.359375 4 -1.5 4 -1.5 C 4 -1.5 4.0625 -1.609375 4.0625 -1.609375 C 4.234375 -1.96875 4.453125 -2.515625 4.65625 -3.125 C 4.8125 -3.578125 5.125 -4.609375 5.140625 -4.703125 C 5.140625 -4.75 5.140625 -4.75 5.078125 -4.8125 L 4.71875 -4.8125 C 4.375 -4.8125 4.375 -4.8125 4.359375 -4.78125 C 4.28125 -4.75 3.734375 -2.703125 3.671875 -2.703125 L 3.59375 -3 C 3.359375 -3.78125 2.984375 -4.8125 2.09375 -4.8125 C 2.046875 -4.8125 1.96875 -4.8125 1.921875 -4.796875 C 1.15625 -4.65625 0.453125 -3.71875 0.453125 -2.34375 C 0.453125 -1.90625 0.53125 -1.46875 0.671875 -1.09375 C 0.828125 -0.734375 1.25 0.109375 2.125 0.109375 C 3.046875 0.109375 3.578125 -0.75 3.75 -1.03125 L 3.8125 -1.140625 L 3.875 -0.984375 C 3.96875 -0.71875 4.25 0.125 4.84375 0.125 C 5.375 0.125 5.46875 -0.515625 5.46875 -0.703125 Z M 2.09375 -4.09375 C 2.546875 -4.09375 2.90625 -3.84375 3.203125 -3.1875 C 3.265625 -2.984375 3.484375 -2.328125 3.484375 -2.25 C 3.484375 -2.234375 3.453125 -2.171875 3.421875 -2.09375 C 2.828125 -0.671875 2.328125 -0.578125 2.046875 -0.59375 C 1.1875 -0.625 0.75 -1.359375 0.75 -2.34375 C 0.75 -3.734375 1.5625 -4.09375 2.09375 -4.09375 Z M 2.09375 -4.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 0.71875 -5.21875 L 1.421875 -6.09375 C 1.96875 -6.765625 2.203125 -7 2.203125 -7.203125 C 2.203125 -7.296875 2.15625 -7.578125 1.765625 -7.640625 C 1.578125 -7.640625 1.46875 -7.53125 1.421875 -7.421875 C 1.390625 -7.390625 0.59375 -5.359375 0.59375 -5.328125 C 0.59375 -5.296875 0.625 -5.296875 0.71875 -5.21875 Z M -0.359375 -5.6875 C -0.359375 -5.4375 -0.1875 -5.265625 0.0625 -5.265625 C 0.328125 -5.265625 0.5 -5.46875 0.5 -5.6875 C 0.5 -5.78125 0.4375 -6.109375 0.09375 -6.125 C 0.046875 -6.125 -0.015625 -6.125 -0.03125 -6.125 C -0.203125 -6.078125 -0.359375 -5.9375 -0.359375 -5.6875 Z M 1.53125 -5.6875 C 1.53125 -5.4375 1.71875 -5.265625 1.96875 -5.265625 C 2.21875 -5.265625 2.40625 -5.46875 2.40625 -5.6875 C 2.40625 -5.78125 2.328125 -6.109375 1.984375 -6.125 C 1.9375 -6.125 1.890625 -6.125 1.859375 -6.125 C 1.703125 -6.078125 1.53125 -5.9375 1.53125 -5.6875 Z M 0.59375 -4.71875 C 0.59375 -4.578125 0.6875 -1.359375 0.703125 -1.15625 C 0.71875 -0.734375 0.765625 -0.5 0.859375 -0.296875 C 0.9375 -0.15625 1.109375 0.140625 1.546875 0.140625 C 1.96875 0.140625 2.375 -0.171875 2.375 -0.703125 C 2.40625 -1.09375 2.09375 -1.359375 1.96875 -1.421875 C 1.9375 -1.4375 1.84375 -1.484375 1.828125 -1.265625 C 1.828125 -1.125 1.75 -0.921875 1.46875 -0.921875 C 1.25 -0.921875 1.09375 -1.109375 1.09375 -1.328125 C 1.09375 -1.671875 1.421875 -4.578125 1.421875 -4.71875 C 1.421875 -4.75 1.40625 -4.765625 1.359375 -4.8125 L 0.671875 -4.8125 C 0.625 -4.78125 0.59375 -4.75 0.59375 -4.71875 Z M 0.59375 -4.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 0.46875 -2.34375 C 0.46875 -2.0625 0.484375 -1.9375 0.546875 -1.671875 C 0.875 -0.5 1.90625 0.125 2.875 0.125 C 3.203125 0.125 3.515625 0.046875 3.84375 -0.09375 C 4.265625 -0.265625 5.28125 -0.90625 5.28125 -2.34375 C 5.28125 -2.625 5.265625 -2.765625 5.203125 -3.015625 C 4.875 -4.1875 3.84375 -4.8125 2.875 -4.8125 C 2.796875 -4.8125 2.6875 -4.796875 2.59375 -4.78125 C 1.5625 -4.65625 0.46875 -3.8125 0.46875 -2.34375 Z M 4.453125 -2.875 C 4.453125 -1.78125 3.78125 -0.1875 2.578125 -0.1875 C 1.796875 -0.1875 1.28125 -0.859375 1.28125 -1.84375 C 1.28125 -2.171875 1.359375 -2.515625 1.46875 -2.875 C 1.71875 -3.625 2.21875 -4.359375 2.96875 -4.5 C 3.015625 -4.5 3.0625 -4.5 3.078125 -4.5 C 3.484375 -4.578125 4.453125 -4.25 4.453125 -2.875 Z M 4.453125 -2.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 0.453125 -4.578125 C 0.453125 -4.484375 0.453125 -4.46875 0.515625 -4.3125 L 0.65625 -3.9375 C 1.03125 -2.8125 0.8125 -2.375 1 -1.6875 C 1.25 -0.484375 2.140625 0.109375 2.9375 0.109375 C 4.09375 0.109375 4.96875 -0.953125 4.96875 -2.359375 C 4.96875 -3.03125 4.875 -3.578125 4.53125 -4.265625 C 4.40625 -4.53125 4.203125 -4.859375 4.140625 -4.90625 C 4.0625 -4.953125 3.8125 -4.921875 3.984375 -4.625 C 4.296875 -4.171875 4.453125 -3.640625 4.453125 -3.109375 C 4.453125 -1.953125 3.5625 -0.34375 2.46875 -0.34375 C 2.375 -0.34375 2.28125 -0.359375 2.1875 -0.390625 C 1.890625 -0.5 1.28125 -1.03125 1.28125 -2 C 1.28125 -2.546875 1.453125 -3.0625 1.28125 -4.625 C 1.265625 -4.6875 1.203125 -4.96875 0.859375 -4.96875 C 0.703125 -4.96875 0.453125 -4.890625 0.453125 -4.578125 Z M 0.453125 -4.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.015625 -5.609375 C 0.984375 -5.609375 0.953125 -5.609375 0.953125 -5.609375 C 0.953125 -5.625 0.96875 -5.6875 1 -5.75 C 1.359375 -6.921875 2.53125 -7.15625 3.203125 -6.703125 C 3.609375 -6.40625 3.859375 -5.890625 3.890625 -5.234375 C 3.921875 -4.53125 3.625 -3.84375 2.984375 -3.046875 C 2.625 -2.578125 0.5625 -0.3125 0.5625 -0.3125 C 0.546875 -0.265625 0.546875 -0.234375 0.546875 -0.125 L 0.546875 0 L 4.59375 0 L 4.59375 -0.03125 C 4.609375 -0.046875 4.671875 -0.46875 4.75 -0.984375 C 4.828125 -1.484375 4.890625 -1.90625 4.890625 -1.921875 L 4.890625 -1.953125 L 4.609375 -1.953125 L 4.609375 -1.921875 C 4.59375 -1.765625 4.46875 -1.03125 4.34375 -0.953125 C 4.265625 -0.90625 3.59375 -0.890625 2.359375 -0.890625 L 1.4375 -0.90625 C 2.03125 -1.484375 2.640625 -2.046875 3.25 -2.59375 C 3.84375 -3.125 4.09375 -3.375 4.3125 -3.65625 C 4.828125 -4.28125 4.890625 -4.828125 4.890625 -5.140625 C 4.890625 -6.484375 3.734375 -7.390625 2.3125 -7.25 C 1.09375 -7.0625 0.546875 -5.96875 0.546875 -5.171875 C 0.546875 -4.90625 0.6875 -4.734375 0.9375 -4.6875 C 1.203125 -4.640625 1.46875 -4.828125 1.46875 -5.140625 C 1.46875 -5.421875 1.28125 -5.609375 1.015625 -5.609375 Z M 1.015625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 1.046875 -6.375 C 0.75 -5.90625 0.421875 -5.203125 0.421875 -3.484375 C 0.421875 -2.296875 0.5625 -1.546875 0.890625 -0.90625 C 1.03125 -0.640625 1.15625 -0.453125 1.34375 -0.296875 C 1.71875 0.046875 2.21875 0.234375 2.71875 0.234375 C 3.046875 0.234375 3.34375 0.15625 3.65625 0.015625 C 4.1875 -0.25 5.015625 -0.890625 5.015625 -3.484375 C 5.015625 -4.609375 4.890625 -5.34375 4.609375 -5.984375 C 4.46875 -6.296875 4.3125 -6.515625 4.109375 -6.71875 C 3.734375 -7.0625 3.234375 -7.265625 2.71875 -7.265625 C 2.046875 -7.265625 1.421875 -6.921875 1.046875 -6.375 Z M 3.5625 -6.65625 C 3.921875 -6.28125 4.09375 -5.890625 4.09375 -3.609375 C 4.09375 -1.859375 4.03125 -1.0625 3.703125 -0.578125 C 3.59375 -0.421875 3.296875 -0.015625 2.71875 -0.015625 C 2.21875 -0.015625 1.75 -0.34375 1.546875 -0.96875 C 1.390625 -1.453125 1.359375 -2.21875 1.359375 -3.609375 C 1.359375 -5.1875 1.390625 -5.828125 1.625 -6.296875 C 1.9375 -6.90625 2.46875 -7.015625 2.71875 -7.015625 C 3.046875 -7.015625 3.328125 -6.875 3.5625 -6.65625 Z M 3.5625 -6.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 2.390625 -6.515625 C 2.40625 -6.515625 2.40625 -5.203125 2.40625 -3.578125 L 2.40625 -0.640625 C 2.234375 -0.34375 2.0625 -0.34375 1.28125 -0.34375 L 1.03125 -0.34375 L 1.03125 0 L 1.15625 0 C 1.359375 -0.03125 4.171875 -0.03125 4.390625 0 L 4.515625 0 L 4.515625 -0.34375 L 4.28125 -0.34375 C 3.359375 -0.34375 3.234375 -0.40625 3.15625 -0.640625 L 3.15625 -7.203125 C 3.078125 -7.28125 3.046875 -7.265625 2.984375 -7.265625 L 2.90625 -7.265625 L 2.828125 -7.171875 C 2.390625 -6.78125 1.75 -6.5625 1.09375 -6.5625 L 0.984375 -6.5625 L 0.984375 -6.21875 L 1.09375 -6.21875 C 1.84375 -6.21875 2.390625 -6.515625 2.390625 -6.515625 Z M 2.390625 -6.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 1.140625 -0.453125 C 1.140625 -0.453125 1.171875 -0.453125 1.203125 -0.453125 C 1.34375 -0.484375 1.484375 -0.578125 1.53125 -0.703125 C 1.625 -0.96875 1.46875 -1.28125 1.140625 -1.28125 C 1.046875 -1.28125 1.03125 -1.28125 0.953125 -1.25 C 0.734375 -1.140625 0.734375 -0.96875 0.734375 -0.828125 C 0.734375 -0.375 1.015625 0.234375 2.28125 0.234375 C 3.09375 0.234375 3.84375 -0.3125 4.3125 -1.0625 C 4.828125 -1.875 4.96875 -2.6875 4.96875 -3.640625 C 4.96875 -5.5 4.46875 -6.328125 4.03125 -6.734375 C 3.234375 -7.53125 2.15625 -7.234375 1.78125 -7.046875 C 1.46875 -6.875 0.734375 -6.328125 0.53125 -5.5 C 0.421875 -4.984375 0.265625 -3.890625 1.25 -2.9375 C 1.65625 -2.546875 2.0625 -2.375 2.609375 -2.375 C 3.171875 -2.375 3.59375 -2.59375 3.984375 -3.40625 C 3.984375 -3.40625 3.984375 -2.78125 3.96875 -2.53125 C 3.875 -1.078125 3.265625 -0.078125 2.15625 -0.078125 C 1.703125 -0.09375 1.421875 -0.15625 1.140625 -0.453125 Z M 3.625 -6.453125 C 3.8125 -6.1875 3.96875 -5.75 3.96875 -4.6875 C 3.96875 -4.40625 3.953125 -3.875 3.734375 -3.390625 C 3.625 -3.1875 3.296875 -2.625 2.671875 -2.625 C 2.09375 -2.625 1.859375 -2.984375 1.75 -3.125 C 1.5 -3.5 1.4375 -3.859375 1.453125 -4.953125 C 1.46875 -5.59375 1.484375 -5.796875 1.578125 -6.0625 C 1.765625 -6.6875 2.28125 -6.984375 2.765625 -6.984375 C 3.140625 -6.984375 3.40625 -6.765625 3.625 -6.453125 Z M 3.625 -6.453125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.2" y="8.258"/>
|
||||
<use xlink:href="#glyph0-2" x="10.200372" y="8.258"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="15.349467" y="8.258"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="24.75093" y="8.258"/>
|
||||
<use xlink:href="#glyph0-5" x="30.20548" y="8.258"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="36.868758" y="8.258"/>
|
||||
<use xlink:href="#glyph0-7" x="42.323308" y="8.258"/>
|
||||
<use xlink:href="#glyph0-8" x="47.777858" y="8.258"/>
|
||||
<use xlink:href="#glyph0-9" x="53.232408" y="8.258"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="0.2" y="21.807"/>
|
||||
<use xlink:href="#glyph0-10" x="5.65455" y="21.807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="12.317828" y="21.807"/>
|
||||
<use xlink:href="#glyph0-2" x="22.3182" y="21.807"/>
|
||||
<use xlink:href="#glyph0-11" x="27.77275" y="21.807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="34.446938" y="21.807"/>
|
||||
<use xlink:href="#glyph0-7" x="39.901488" y="21.807"/>
|
||||
<use xlink:href="#glyph0-8" x="45.356038" y="21.807"/>
|
||||
<use xlink:href="#glyph0-9" x="50.810588" y="21.807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="0.2" y="35.356"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="9.28728" y="35.356"/>
|
||||
<use xlink:href="#glyph0-2" x="18.377833" y="35.356"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="24.137838" y="35.356"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="31.114208" y="35.356"/>
|
||||
<use xlink:href="#glyph0-7" x="36.568758" y="35.356"/>
|
||||
<use xlink:href="#glyph0-8" x="42.023308" y="35.356"/>
|
||||
<use xlink:href="#glyph0-9" x="47.477858" y="35.356"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="0.2" y="48.906"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="9.245826" y="48.906"/>
|
||||
<use xlink:href="#glyph1-3" x="16.476377" y="48.906"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="21.889473" y="48.906"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="31.386935" y="48.906"/>
|
||||
<use xlink:href="#glyph1-6" x="36.81094" y="48.906"/>
|
||||
<use xlink:href="#glyph1-7" x="42.234944" y="48.906"/>
|
||||
<use xlink:href="#glyph1-8" x="47.658949" y="48.906"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="56.693865" y="48.906"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="60.621141" y="48.906"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="0.2" y="62.455"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="9.286189" y="62.455"/>
|
||||
<use xlink:href="#glyph2-3" x="19.283289" y="62.455"/>
|
||||
<use xlink:href="#glyph2-4" x="24.736748" y="62.455"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="27.168386" y="62.455"/>
|
||||
<use xlink:href="#glyph2-6" x="32.924027" y="62.455"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="42.010217" y="62.455"/>
|
||||
<use xlink:href="#glyph2-8" x="47.463676" y="62.455"/>
|
||||
<use xlink:href="#glyph2-9" x="52.917135" y="62.455"/>
|
||||
<use xlink:href="#glyph2-10" x="58.370594" y="62.455"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.2" y="76.004"/>
|
||||
<use xlink:href="#glyph0-2" x="10.200372" y="76.004"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="15.349467" y="76.004"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="24.75093" y="76.004"/>
|
||||
<use xlink:href="#glyph0-5" x="30.20548" y="76.004"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="36.868758" y="76.004"/>
|
||||
<use xlink:href="#glyph0-7" x="42.323308" y="76.004"/>
|
||||
<use xlink:href="#glyph0-8" x="47.777858" y="76.004"/>
|
||||
<use xlink:href="#glyph0-9" x="53.232408" y="76.004"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
222
sections/german/03/languages-orig.svg
Normal file
@ -0,0 +1,222 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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 9.59375 0 L 9.59375 -0.34375 L 9.328125 -0.34375 C 8.484375 -0.34375 8.46875 -0.453125 8.46875 -0.84375 L 8.46875 -6.59375 C 8.46875 -6.984375 8.484375 -7.109375 9.328125 -7.109375 L 9.59375 -7.109375 L 9.59375 -7.453125 L 7.75 -7.453125 C 7.453125 -7.453125 7.453125 -7.4375 7.390625 -7.234375 L 5 -1.09375 L 2.625 -7.203125 C 2.53125 -7.453125 2.5 -7.453125 2.25 -7.453125 L 0.40625 -7.453125 L 0.40625 -7.109375 L 0.671875 -7.109375 C 1.5 -7.109375 1.53125 -6.984375 1.53125 -6.59375 L 1.53125 -1.140625 C 1.53125 -0.84375 1.53125 -0.34375 0.40625 -0.34375 L 0.40625 0 L 1.671875 -0.03125 L 2.953125 0 L 2.953125 -0.34375 C 1.828125 -0.34375 1.828125 -0.84375 1.828125 -1.140625 L 1.828125 -7.03125 L 1.84375 -7.03125 L 4.46875 -0.234375 C 4.53125 -0.09375 4.578125 0 4.6875 0 C 4.8125 0 4.84375 -0.09375 4.890625 -0.203125 L 7.5625 -7.109375 L 7.578125 -7.109375 L 7.578125 -0.84375 C 7.578125 -0.453125 7.5625 -0.34375 6.71875 -0.34375 L 6.453125 -0.34375 L 6.453125 0 C 6.859375 -0.03125 7.609375 -0.03125 8.03125 -0.03125 C 8.453125 -0.03125 9.1875 -0.03125 9.59375 0 Z M 9.59375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.265625 -0.96875 L 5.265625 -1.578125 L 5 -1.578125 L 5 -0.96875 C 5 -0.34375 4.71875 -0.265625 4.609375 -0.265625 C 4.25 -0.265625 4.203125 -0.765625 4.203125 -0.8125 L 4.203125 -3 C 4.203125 -3.453125 4.203125 -3.875 3.8125 -4.28125 C 3.375 -4.71875 2.828125 -4.890625 2.3125 -4.890625 C 1.421875 -4.890625 0.671875 -4.375 0.671875 -3.65625 C 0.671875 -3.328125 0.890625 -3.140625 1.171875 -3.140625 C 1.46875 -3.140625 1.671875 -3.359375 1.671875 -3.640625 C 1.671875 -3.78125 1.609375 -4.140625 1.109375 -4.140625 C 1.40625 -4.53125 1.9375 -4.640625 2.296875 -4.640625 C 2.828125 -4.640625 3.453125 -4.21875 3.453125 -3.25 L 3.453125 -2.84375 C 2.890625 -2.8125 2.125 -2.78125 1.4375 -2.453125 C 0.625 -2.078125 0.34375 -1.515625 0.34375 -1.03125 C 0.34375 -0.15625 1.40625 0.125 2.09375 0.125 C 2.8125 0.125 3.3125 -0.3125 3.515625 -0.828125 C 3.5625 -0.390625 3.859375 0.0625 4.375 0.0625 C 4.609375 0.0625 5.265625 -0.09375 5.265625 -0.96875 Z M 3.453125 -1.53125 C 3.453125 -0.484375 2.65625 -0.125 2.171875 -0.125 C 1.640625 -0.125 1.1875 -0.5 1.1875 -1.046875 C 1.1875 -1.640625 1.640625 -2.546875 3.453125 -2.625 Z M 3.453125 -1.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.546875 -4.359375 L 5.546875 -4.703125 C 5.296875 -4.671875 4.96875 -4.671875 4.71875 -4.671875 L 3.78125 -4.703125 L 3.78125 -4.359375 C 4.109375 -4.359375 4.28125 -4.171875 4.28125 -3.890625 C 4.28125 -3.78125 4.28125 -3.765625 4.21875 -3.625 L 3.125 -0.953125 L 1.90625 -3.875 C 1.859375 -3.984375 1.84375 -4.03125 1.84375 -4.078125 C 1.84375 -4.359375 2.25 -4.359375 2.453125 -4.359375 L 2.453125 -4.703125 L 1.265625 -4.671875 C 0.96875 -4.671875 0.53125 -4.671875 0.203125 -4.703125 L 0.203125 -4.359375 C 0.734375 -4.359375 0.9375 -4.359375 1.09375 -3.984375 L 2.71875 0 L 2.453125 0.640625 C 2.21875 1.25 1.90625 2 1.203125 2 C 1.15625 2 0.90625 2 0.703125 1.796875 C 1.03125 1.75 1.125 1.515625 1.125 1.34375 C 1.125 1.0625 0.921875 0.890625 0.671875 0.890625 C 0.453125 0.890625 0.203125 1.03125 0.203125 1.359375 C 0.203125 1.84375 0.671875 2.234375 1.203125 2.234375 C 1.890625 2.234375 2.34375 1.609375 2.609375 1 L 4.53125 -3.671875 C 4.8125 -4.359375 5.359375 -4.359375 5.546875 -4.359375 Z M 5.546875 -4.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 4.984375 -2.21875 C 4.984375 -3.609375 4.015625 -4.65625 2.796875 -4.65625 C 2.0625 -4.65625 1.65625 -4.09375 1.4375 -3.578125 L 1.4375 -3.84375 C 1.4375 -6.59375 2.796875 -6.984375 3.34375 -6.984375 C 3.609375 -6.984375 4.0625 -6.921875 4.3125 -6.546875 C 4.140625 -6.546875 3.703125 -6.546875 3.703125 -6.0625 C 3.703125 -5.71875 3.96875 -5.5625 4.203125 -5.5625 C 4.390625 -5.5625 4.71875 -5.65625 4.71875 -6.078125 C 4.71875 -6.734375 4.234375 -7.265625 3.328125 -7.265625 C 1.9375 -7.265625 0.453125 -5.859375 0.453125 -3.453125 C 0.453125 -0.53125 1.71875 0.234375 2.734375 0.234375 C 3.953125 0.234375 4.984375 -0.78125 4.984375 -2.21875 Z M 4 -2.234375 C 4 -1.71875 4 -1.171875 3.8125 -0.78125 C 3.484375 -0.125 2.984375 -0.0625 2.734375 -0.0625 C 2.046875 -0.0625 1.71875 -0.71875 1.65625 -0.890625 C 1.46875 -1.390625 1.46875 -2.265625 1.46875 -2.46875 C 1.46875 -3.3125 1.8125 -4.40625 2.796875 -4.40625 C 2.96875 -4.40625 3.46875 -4.40625 3.8125 -3.734375 C 4 -3.328125 4 -2.765625 4 -2.234375 Z M 4 -2.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 2.21875 -0.015625 C 2.21875 -0.703125 1.953125 -1.15625 1.515625 -1.15625 C 1.140625 -1.15625 0.9375 -0.859375 0.9375 -0.578125 C 0.9375 -0.296875 1.125 0 1.515625 0 C 1.671875 0 1.828125 -0.0625 1.953125 -0.171875 C 1.96875 0.6875 1.671875 1.359375 1.1875 1.859375 C 1.125 1.9375 1.109375 1.9375 1.109375 1.984375 C 1.109375 2.0625 1.171875 2.109375 1.21875 2.109375 C 1.359375 2.109375 2.21875 1.25 2.21875 -0.015625 Z M 2.21875 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 4.890625 -1.890625 L 4.625 -1.890625 C 4.5625 -1.578125 4.5 -1.09375 4.390625 -0.921875 C 4.3125 -0.84375 3.59375 -0.84375 3.34375 -0.84375 L 1.390625 -0.84375 L 2.546875 -1.96875 C 4.25 -3.46875 4.890625 -4.0625 4.890625 -5.140625 C 4.890625 -6.390625 3.921875 -7.265625 2.578125 -7.265625 C 1.359375 -7.265625 0.546875 -6.265625 0.546875 -5.296875 C 0.546875 -4.671875 1.09375 -4.671875 1.125 -4.671875 C 1.3125 -4.671875 1.6875 -4.8125 1.6875 -5.25 C 1.6875 -5.546875 1.5 -5.828125 1.109375 -5.828125 C 1.03125 -5.828125 1 -5.828125 0.96875 -5.8125 C 1.21875 -6.515625 1.8125 -6.921875 2.4375 -6.921875 C 3.4375 -6.921875 3.90625 -6.046875 3.90625 -5.140625 C 3.90625 -4.28125 3.359375 -3.40625 2.765625 -2.734375 L 0.671875 -0.40625 C 0.546875 -0.28125 0.546875 -0.265625 0.546875 0 L 4.59375 0 Z M 4.890625 -1.890625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 5.015625 -3.484375 C 5.015625 -4.359375 4.96875 -5.234375 4.578125 -6.046875 C 4.078125 -7.09375 3.1875 -7.265625 2.71875 -7.265625 C 2.078125 -7.265625 1.28125 -6.984375 0.828125 -5.96875 C 0.484375 -5.21875 0.421875 -4.359375 0.421875 -3.484375 C 0.421875 -2.671875 0.46875 -1.6875 0.921875 -0.859375 C 1.390625 0.015625 2.1875 0.234375 2.71875 0.234375 C 3.296875 0.234375 4.140625 0.015625 4.609375 -1.03125 C 4.96875 -1.78125 5.015625 -2.625 5.015625 -3.484375 Z M 4.109375 -3.625 C 4.109375 -2.796875 4.109375 -2.0625 3.984375 -1.359375 C 3.828125 -0.328125 3.203125 0 2.71875 0 C 2.296875 0 1.640625 -0.265625 1.453125 -1.3125 C 1.328125 -1.96875 1.328125 -2.984375 1.328125 -3.625 C 1.328125 -4.3125 1.328125 -5.03125 1.421875 -5.625 C 1.625 -6.921875 2.4375 -7.03125 2.71875 -7.03125 C 3.078125 -7.03125 3.796875 -6.828125 4 -5.75 C 4.109375 -5.140625 4.109375 -4.3125 4.109375 -3.625 Z M 4.109375 -3.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.5625 0 L 4.5625 -0.34375 L 4.21875 -0.34375 C 3.234375 -0.34375 3.203125 -0.453125 3.203125 -0.859375 L 3.203125 -6.984375 C 3.203125 -7.234375 3.203125 -7.265625 2.953125 -7.265625 C 2.28125 -6.5625 1.3125 -6.5625 0.96875 -6.5625 L 0.96875 -6.234375 C 1.1875 -6.234375 1.828125 -6.234375 2.40625 -6.515625 L 2.40625 -0.859375 C 2.40625 -0.46875 2.359375 -0.34375 1.390625 -0.34375 L 1.03125 -0.34375 L 1.03125 0 C 1.421875 -0.03125 2.359375 -0.03125 2.796875 -0.03125 C 3.234375 -0.03125 4.1875 -0.03125 4.5625 0 Z M 4.5625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 4.984375 -3.59375 C 4.984375 -6.515625 3.734375 -7.265625 2.765625 -7.265625 C 2.15625 -7.265625 1.625 -7.0625 1.15625 -6.578125 C 0.703125 -6.078125 0.453125 -5.625 0.453125 -4.8125 C 0.453125 -3.453125 1.421875 -2.375 2.640625 -2.375 C 3.296875 -2.375 3.75 -2.828125 4 -3.46875 L 4 -3.125 C 4 -0.5625 2.875 -0.0625 2.234375 -0.0625 C 2.046875 -0.0625 1.46875 -0.09375 1.171875 -0.453125 C 1.640625 -0.453125 1.734375 -0.78125 1.734375 -0.953125 C 1.734375 -1.296875 1.46875 -1.46875 1.234375 -1.46875 C 1.0625 -1.46875 0.734375 -1.359375 0.734375 -0.9375 C 0.734375 -0.203125 1.3125 0.234375 2.25 0.234375 C 3.65625 0.234375 4.984375 -1.25 4.984375 -3.59375 Z M 3.984375 -4.59375 C 3.984375 -3.6875 3.609375 -2.625 2.65625 -2.625 C 2.46875 -2.625 1.96875 -2.625 1.640625 -3.3125 C 1.4375 -3.71875 1.4375 -4.265625 1.4375 -4.796875 C 1.4375 -5.390625 1.4375 -5.90625 1.671875 -6.296875 C 1.96875 -6.84375 2.375 -6.984375 2.765625 -6.984375 C 3.265625 -6.984375 3.625 -6.625 3.8125 -6.125 C 3.9375 -5.78125 3.984375 -5.09375 3.984375 -4.59375 Z M 3.984375 -4.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 2.09375 -0.578125 C 2.09375 -0.890625 1.828125 -1.15625 1.515625 -1.15625 C 1.203125 -1.15625 0.9375 -0.890625 0.9375 -0.578125 C 0.9375 -0.265625 1.203125 0 1.515625 0 C 1.828125 0 2.09375 -0.265625 2.09375 -0.578125 Z M 2.09375 -0.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 2.6875 0 L 2.6875 -0.34375 C 1.96875 -0.34375 1.9375 -0.390625 1.9375 -0.8125 L 1.9375 -4.828125 L 0.40625 -4.703125 L 0.40625 -4.359375 C 1.109375 -4.359375 1.203125 -4.296875 1.203125 -3.765625 L 1.203125 -0.828125 C 1.203125 -0.34375 1.09375 -0.34375 0.359375 -0.34375 L 0.359375 0 L 1.5625 -0.03125 C 1.9375 -0.03125 2.328125 -0.015625 2.6875 0 Z M 2.09375 -6.59375 C 2.09375 -6.875 1.84375 -7.171875 1.515625 -7.171875 C 1.140625 -7.171875 0.921875 -6.859375 0.921875 -6.59375 C 0.921875 -6.296875 1.171875 -6.015625 1.5 -6.015625 C 1.875 -6.015625 2.09375 -6.3125 2.09375 -6.59375 Z M 2.09375 -6.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 8.859375 0 L 8.859375 -0.34375 C 8.296875 -0.34375 8.03125 -0.34375 8.015625 -0.671875 L 8.015625 -2.75 C 8.015625 -3.6875 8.015625 -4.03125 7.671875 -4.421875 C 7.53125 -4.609375 7.171875 -4.828125 6.53125 -4.828125 C 5.609375 -4.828125 5.140625 -4.171875 4.953125 -3.75 C 4.796875 -4.703125 3.984375 -4.828125 3.5 -4.828125 C 2.703125 -4.828125 2.1875 -4.359375 1.890625 -3.671875 L 1.890625 -4.828125 L 0.34375 -4.703125 L 0.34375 -4.359375 C 1.109375 -4.359375 1.203125 -4.28125 1.203125 -3.75 L 1.203125 -0.828125 C 1.203125 -0.34375 1.078125 -0.34375 0.34375 -0.34375 L 0.34375 0 L 1.578125 -0.03125 L 2.796875 0 L 2.796875 -0.34375 C 2.078125 -0.34375 1.953125 -0.34375 1.953125 -0.828125 L 1.953125 -2.828125 C 1.953125 -3.96875 2.71875 -4.578125 3.421875 -4.578125 C 4.109375 -4.578125 4.234375 -3.984375 4.234375 -3.375 L 4.234375 -0.828125 C 4.234375 -0.34375 4.109375 -0.34375 3.375 -0.34375 L 3.375 0 L 4.609375 -0.03125 L 5.828125 0 L 5.828125 -0.34375 C 5.109375 -0.34375 4.984375 -0.34375 4.984375 -0.828125 L 4.984375 -2.828125 C 4.984375 -3.96875 5.765625 -4.578125 6.453125 -4.578125 C 7.140625 -4.578125 7.265625 -3.984375 7.265625 -3.375 L 7.265625 -0.828125 C 7.265625 -0.34375 7.140625 -0.34375 6.40625 -0.34375 L 6.40625 0 L 7.640625 -0.03125 Z M 8.859375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 2.296875 0.546875 L 2.296875 -4.828125 L 0.625 -4.703125 L 0.625 -4.359375 C 1.46875 -4.359375 1.578125 -4.28125 1.578125 -3.75 L 1.578125 0.5625 C 1.578125 1.0625 1.46875 2 0.78125 2 C 0.71875 2 0.46875 2 0.1875 1.859375 C 0.34375 1.8125 0.5625 1.65625 0.5625 1.359375 C 0.5625 1.078125 0.375 0.859375 0.0625 0.859375 C -0.234375 0.859375 -0.4375 1.078125 -0.4375 1.359375 C -0.4375 1.9375 0.171875 2.234375 0.796875 2.234375 C 1.609375 2.234375 2.296875 1.53125 2.296875 0.546875 Z M 2.296875 -6.59375 C 2.296875 -6.875 2.046875 -7.171875 1.71875 -7.171875 C 1.34375 -7.171875 1.125 -6.859375 1.125 -6.59375 C 1.125 -6.296875 1.375 -6.015625 1.703125 -6.015625 C 2.078125 -6.015625 2.296875 -6.3125 2.296875 -6.59375 Z M 2.296875 -6.59375 "/>
|
||||
</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 1.390625 -3.5625 L 1.375 -3.5625 C 1.375 -4.578125 1.421875 -5.75 2.21875 -6.515625 C 2.53125 -6.8125 2.921875 -6.984375 3.34375 -6.984375 C 3.703125 -6.984375 4.09375 -6.875 4.296875 -6.5625 C 4.03125 -6.5625 3.75 -6.453125 3.75 -6.109375 C 3.75 -5.859375 3.921875 -5.625 4.203125 -5.625 C 4.453125 -5.625 4.671875 -5.796875 4.6875 -6.0625 L 4.6875 -6.09375 C 4.6875 -6.875 4.03125 -7.265625 3.328125 -7.265625 C 1.5 -7.265625 0.453125 -5.25 0.453125 -3.5625 C 0.453125 -2.28125 0.59375 -0.53125 2 0.078125 C 2.234375 0.171875 2.5 0.234375 2.765625 0.234375 C 3.5625 0.234375 4.171875 -0.234375 4.578125 -0.84375 C 4.859375 -1.265625 4.96875 -1.75 4.96875 -2.234375 C 4.96875 -3.4375 4.140625 -4.65625 2.828125 -4.65625 C 2.1875 -4.65625 1.59375 -4.234375 1.390625 -3.5625 Z M 1.390625 -2.375 L 1.390625 -2.46875 C 1.390625 -3.296875 1.71875 -4.421875 2.875 -4.421875 C 3.609375 -4.421875 3.953125 -3.59375 4.015625 -3.015625 C 4.03125 -2.71875 4.03125 -2.421875 4.03125 -2.125 C 4.03125 -1.390625 3.96875 -0.078125 2.71875 -0.078125 L 2.65625 -0.078125 C 1.6875 -0.15625 1.46875 -1.21875 1.40625 -2.046875 C 1.40625 -2.15625 1.40625 -2.265625 1.390625 -2.375 Z M 1.390625 -2.375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 0.34375 -4.703125 L 0.34375 -4.484375 L 0.5625 -4.484375 C 0.859375 -4.484375 1.171875 -4.4375 1.171875 -4.03125 L 1.171875 -1.5 C 1.171875 -1.390625 1.1875 -1.25 1.1875 -1.125 C 1.1875 -0.4375 0.796875 -0.234375 0.34375 -0.234375 L 0.34375 -0.015625 L 2.3125 -0.015625 L 2.3125 -0.234375 C 1.875 -0.234375 1.46875 -0.40625 1.46875 -1.078125 L 1.484375 -4.34375 C 1.578125 -3.96875 1.796875 -3.59375 1.953125 -3.21875 C 2.359375 -2.21875 2.796875 -1.234375 3.203125 -0.234375 C 3.234375 -0.15625 3.296875 -0.015625 3.40625 -0.015625 C 3.53125 -0.015625 3.578125 -0.15625 3.625 -0.265625 L 3.953125 -1.046875 C 4.359375 -2.015625 4.765625 -3 5.1875 -3.953125 C 5.25 -4.109375 5.328125 -4.28125 5.375 -4.4375 L 5.390625 -0.703125 C 5.390625 -0.234375 5 -0.234375 4.546875 -0.234375 L 4.546875 -0.015625 L 6.875 -0.015625 L 6.875 -0.234375 L 6.640625 -0.234375 C 6.34375 -0.234375 6.046875 -0.28125 6.046875 -0.734375 L 6.046875 -3.984375 C 6.046875 -4.4375 6.296875 -4.484375 6.875 -4.484375 L 6.875 -4.703125 L 5.484375 -4.703125 C 5.234375 -4.703125 5.203125 -4.53125 5.140625 -4.375 C 4.640625 -3.1875 4.171875 -1.96875 3.625 -0.796875 C 3.09375 -1.984375 2.625 -3.1875 2.109375 -4.375 C 2.0625 -4.53125 2.03125 -4.703125 1.78125 -4.703125 Z M 0.34375 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 2.4375 -2.390625 C 2.28125 -2.125 2.0625 -1.90625 1.875 -1.671875 C 1.421875 -1.09375 0.890625 -0.265625 0.171875 -0.234375 L 0.171875 -0.015625 L 2.296875 -0.015625 L 2.296875 -0.234375 C 2.09375 -0.234375 1.828125 -0.234375 1.828125 -0.40625 C 1.828125 -0.53125 1.984375 -0.734375 2.09375 -0.875 C 2.40625 -1.3125 2.796875 -1.75 3.09375 -2.1875 C 3.171875 -2.28125 3.1875 -2.34375 3.328125 -2.34375 L 4.015625 -2.34375 L 4.015625 -0.921875 C 4.015625 -0.859375 4.03125 -0.78125 4.03125 -0.703125 C 4.03125 -0.265625 3.71875 -0.234375 3.171875 -0.234375 L 3.171875 -0.015625 L 5.5625 -0.015625 L 5.5625 -0.234375 L 5.328125 -0.234375 C 5.015625 -0.234375 4.71875 -0.28125 4.71875 -0.734375 L 4.71875 -3.984375 C 4.71875 -4.4375 4.984375 -4.484375 5.5625 -4.484375 L 5.5625 -4.703125 L 3.296875 -4.703125 C 2.359375 -4.703125 0.75 -4.625 0.75 -3.5625 C 0.75 -2.734375 1.921875 -2.390625 2.4375 -2.390625 Z M 4.015625 -2.5625 C 3.8125 -2.5625 3.59375 -2.546875 3.390625 -2.546875 C 2.625 -2.546875 1.625 -2.5625 1.625 -3.59375 C 1.625 -4.359375 2.3125 -4.46875 3.203125 -4.46875 L 3.671875 -4.46875 C 3.890625 -4.46875 4.015625 -4.421875 4.015625 -4.03125 Z M 4.015625 -2.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 0.921875 -5.71875 C 1.09375 -6.40625 1.75 -6.9375 2.4375 -6.9375 C 3.421875 -6.9375 3.921875 -6.015625 3.921875 -5.1875 L 3.921875 -5.03125 C 3.859375 -4.03125 3.203125 -3.234375 2.546875 -2.515625 C 2 -1.90625 1.46875 -1.296875 0.921875 -0.703125 L 0.6875 -0.4375 C 0.625 -0.34375 0.53125 -0.3125 0.53125 -0.15625 C 0.53125 -0.109375 0.546875 -0.046875 0.546875 -0.015625 L 4.5625 -0.015625 L 4.859375 -1.875 L 4.609375 -1.875 C 4.53125 -1.546875 4.5 -1.015625 4.328125 -0.890625 C 4.28125 -0.84375 4.140625 -0.828125 4.015625 -0.828125 L 3.578125 -0.828125 C 3.421875 -0.8125 3.265625 -0.8125 3.125 -0.8125 L 1.359375 -0.8125 C 1.9375 -1.390625 2.515625 -1.96875 3.125 -2.515625 C 3.875 -3.203125 4.8125 -3.9375 4.859375 -5.0625 L 4.859375 -5.140625 C 4.859375 -6.484375 3.734375 -7.265625 2.578125 -7.265625 C 1.53125 -7.265625 0.53125 -6.40625 0.53125 -5.296875 C 0.53125 -5 0.6875 -4.6875 1.0625 -4.6875 C 1.359375 -4.6875 1.59375 -4.921875 1.59375 -5.21875 C 1.59375 -5.46875 1.40625 -5.734375 1.09375 -5.734375 C 1.03125 -5.734375 0.984375 -5.71875 0.921875 -5.71875 Z M 0.921875 -5.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 2.546875 -7.265625 C 0.5 -7.078125 0.4375 -4.59375 0.4375 -3.4375 C 0.4375 -2.421875 0.53125 -1.203125 1.203125 -0.4375 C 1.578125 -0.015625 2.140625 0.234375 2.6875 0.234375 C 4.328125 0.234375 4.9375 -1.46875 4.96875 -2.984375 C 4.96875 -3.1875 4.96875 -3.375 4.96875 -3.578125 C 4.96875 -4.609375 4.875 -5.8125 4.203125 -6.578125 C 3.84375 -7 3.28125 -7.28125 2.71875 -7.28125 C 2.65625 -7.28125 2.609375 -7.265625 2.546875 -7.265625 Z M 1.3125 -2.828125 C 1.296875 -2.921875 1.296875 -3.015625 1.296875 -3.125 C 1.296875 -3.8125 1.296875 -4.5 1.359375 -5.1875 C 1.390625 -5.59375 1.421875 -6.046875 1.65625 -6.40625 C 1.890625 -6.765625 2.28125 -7.03125 2.703125 -7.03125 C 3.03125 -7.03125 3.34375 -6.875 3.578125 -6.625 C 4.0625 -6.125 4.09375 -5.265625 4.09375 -4.484375 L 4.09375 -3.84375 C 4.09375 -3.5625 4.109375 -3.25 4.109375 -2.9375 C 4.109375 -1.546875 3.921875 -0.015625 2.6875 -0.015625 L 2.65625 -0.015625 C 1.3125 -0.140625 1.421875 -1.75 1.3125 -2.828125 Z M 1.3125 -2.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 1 -6.5625 L 1 -6.234375 C 1.515625 -6.234375 1.90625 -6.328125 2.421875 -6.515625 L 2.421875 -0.8125 C 2.421875 -0.375 2.015625 -0.34375 1.625 -0.34375 L 1.0625 -0.34375 L 1.0625 -0.015625 L 2.53125 -0.015625 L 2.8125 -0.046875 L 4.546875 -0.046875 L 4.546875 -0.34375 C 4.375 -0.34375 4.171875 -0.328125 4 -0.328125 C 3.5625 -0.328125 3.203125 -0.390625 3.203125 -0.8125 L 3.203125 -7.09375 C 3.203125 -7.1875 3.15625 -7.265625 3.046875 -7.265625 C 2.90625 -7.265625 2.75 -7.0625 2.625 -6.96875 C 2.140625 -6.65625 1.5625 -6.5625 1 -6.5625 Z M 1 -6.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 4.03125 -3.515625 C 4.03125 -2.546875 4.03125 -1.46875 3.375 -0.6875 C 3.09375 -0.328125 2.6875 -0.078125 2.203125 -0.078125 C 1.828125 -0.078125 1.375 -0.15625 1.125 -0.484375 C 1.390625 -0.484375 1.65625 -0.625 1.65625 -0.9375 C 1.65625 -1.171875 1.5 -1.421875 1.1875 -1.421875 C 0.953125 -1.421875 0.734375 -1.25 0.71875 -1 L 0.71875 -0.921875 C 0.71875 -0.15625 1.46875 0.21875 2.21875 0.21875 C 3.984375 0.21875 4.875 -1.71875 4.96875 -3.3125 L 4.96875 -3.515625 C 4.96875 -4.765625 4.828125 -6.453125 3.53125 -7.09375 C 3.28125 -7.203125 3 -7.265625 2.71875 -7.265625 C 1.9375 -7.265625 1.265625 -6.84375 0.828125 -6.1875 C 0.546875 -5.78125 0.453125 -5.296875 0.453125 -4.8125 C 0.453125 -3.640625 1.25 -2.40625 2.53125 -2.40625 L 2.625 -2.40625 C 3.265625 -2.40625 3.875 -2.890625 4.03125 -3.515625 Z M 4 -4.859375 C 4 -4.734375 4.015625 -4.609375 4.015625 -4.484375 C 3.96875 -3.734375 3.625 -2.625 2.625 -2.625 C 1.5 -2.625 1.359375 -3.96875 1.359375 -4.859375 C 1.359375 -5.734375 1.578125 -6.984375 2.71875 -6.984375 C 3.78125 -6.984375 4.015625 -5.609375 4.015625 -4.96875 C 4.015625 -4.921875 4 -4.890625 4 -4.859375 Z M 4 -4.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.703125 L 0.3125 -4.484375 L 0.546875 -4.484375 C 0.84375 -4.484375 1.140625 -4.4375 1.140625 -3.984375 L 1.140625 -0.734375 C 1.140625 -0.296875 0.890625 -0.234375 0.3125 -0.234375 L 0.3125 -0.015625 L 2.921875 -0.015625 L 2.921875 -0.234375 L 2.625 -0.234375 C 2.15625 -0.234375 1.875 -0.3125 1.875 -0.765625 L 1.875 -4.078125 C 1.875 -4.28125 1.9375 -4.484375 2.203125 -4.484375 L 2.90625 -4.484375 C 3.625 -4.484375 4.203125 -4.421875 4.28125 -2.96875 L 4.53125 -2.96875 L 4.421875 -4.703125 Z M 0.3125 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 1.421875 -1.09375 C 1.125 -1.046875 0.96875 -0.796875 0.96875 -0.5625 C 0.96875 -0.3125 1.140625 -0.015625 1.5 -0.015625 C 1.828125 -0.015625 2.046875 -0.28125 2.046875 -0.5625 C 2.046875 -0.8125 1.859375 -1.09375 1.515625 -1.09375 C 1.484375 -1.09375 1.453125 -1.09375 1.421875 -1.09375 Z M 1.421875 -1.09375 "/>
|
||||
</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 1.453125 -3.59375 L 1.453125 -3.921875 C 1.46875 -4.5 1.5 -4.890625 1.59375 -5.25 C 1.8125 -6.15625 2.359375 -6.8125 3.0625 -6.953125 C 3.125 -6.96875 3.234375 -6.984375 3.34375 -6.984375 C 3.875 -6.984375 4.125 -6.796875 4.25 -6.65625 C 4.328125 -6.578125 4.328125 -6.5625 4.25 -6.5625 C 3.9375 -6.546875 3.84375 -6.203125 3.921875 -5.984375 C 3.953125 -5.859375 4.0625 -5.75 4.296875 -5.75 C 4.390625 -5.75 4.40625 -5.75 4.484375 -5.78125 C 4.71875 -5.875 4.703125 -6.046875 4.703125 -6.1875 C 4.703125 -6.46875 4.609375 -6.6875 4.4375 -6.875 C 4.265625 -7.0625 4 -7.171875 3.6875 -7.234375 C 3.0625 -7.296875 2.5625 -7.21875 2.03125 -6.84375 C 0.953125 -6.15625 0.453125 -4.828125 0.453125 -3.40625 C 0.453125 -2.625 0.578125 -1.921875 0.703125 -1.546875 C 1.078125 -0.3125 1.859375 0.203125 2.65625 0.234375 C 2.984375 0.25 3.5625 0.25 4.234375 -0.375 C 4.75 -0.90625 4.984375 -1.4375 4.984375 -2.21875 C 4.984375 -2.953125 4.78125 -3.515625 4.21875 -4.0625 C 3.84375 -4.46875 3.375 -4.65625 2.828125 -4.65625 C 2.296875 -4.65625 1.765625 -4.390625 1.453125 -3.59375 Z M 3.921875 -3.328125 C 3.96875 -3.09375 3.984375 -2.921875 3.984375 -2.40625 C 3.984375 -1.46875 4.015625 -0.890625 3.515625 -0.390625 C 3.21875 -0.09375 2.90625 -0.09375 2.765625 -0.09375 C 2.1875 -0.09375 1.9375 -0.4375 1.828125 -0.609375 C 1.640625 -0.890625 1.484375 -1.3125 1.484375 -2.359375 C 1.484375 -2.578125 1.484375 -2.796875 1.5 -2.875 C 1.53125 -3.1875 1.75 -4.40625 2.796875 -4.40625 C 3.484375 -4.40625 3.84375 -3.828125 3.921875 -3.328125 Z M 3.921875 -3.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 1.515625 -6.78125 L 1.515625 -0.90625 C 1.4375 -0.71875 1.34375 -0.375 0.5625 -0.34375 L 0.390625 -0.34375 L 0.390625 0 L 0.484375 0 C 0.609375 -0.03125 2.6875 -0.03125 2.875 0 L 2.953125 0 L 2.953125 -0.34375 L 2.796875 -0.34375 C 2.40625 -0.359375 1.96875 -0.453125 1.84375 -0.90625 L 1.828125 -3.96875 C 1.828125 -6.5 1.828125 -7.03125 1.84375 -7 C 1.859375 -6.984375 2.46875 -5.421875 3.203125 -3.53125 C 3.921875 -1.640625 4.53125 -0.09375 4.53125 -0.078125 C 4.5625 -0.03125 4.640625 0 4.6875 0 C 4.734375 0 4.796875 -0.03125 4.828125 -0.078125 C 4.84375 -0.09375 5.46875 -1.671875 6.203125 -3.609375 L 7.5625 -7.109375 L 7.5625 -0.671875 L 7.546875 -0.59375 C 7.484375 -0.390625 7.3125 -0.34375 6.640625 -0.34375 L 6.453125 -0.34375 L 6.453125 0 L 6.546875 0 C 6.765625 -0.03125 9.265625 -0.03125 9.484375 0 L 9.59375 0 L 9.59375 -0.34375 L 9.390625 -0.34375 C 8.734375 -0.34375 8.578125 -0.34375 8.46875 -0.671875 L 8.46875 -6.78125 C 8.546875 -7.03125 8.59375 -7.09375 9.390625 -7.09375 L 9.59375 -7.09375 L 9.59375 -7.453125 L 8.5625 -7.453125 C 7.859375 -7.453125 7.53125 -7.453125 7.5 -7.4375 C 7.421875 -7.40625 7.5 -7.5625 6.1875 -4.25 L 5 -1.109375 L 4.96875 -1.171875 C 4.96875 -1.1875 4.421875 -2.59375 3.765625 -4.28125 C 2.890625 -6.515625 2.5625 -7.359375 2.546875 -7.390625 C 2.484375 -7.453125 2.53125 -7.453125 1.421875 -7.453125 L 0.390625 -7.453125 L 0.390625 -7.09375 L 0.59375 -7.09375 C 1.234375 -7.09375 1.40625 -7.109375 1.515625 -6.78125 Z M 1.515625 -6.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 5.46875 -0.703125 C 5.46875 -0.8125 5.4375 -0.828125 5.328125 -0.828125 C 5.25 -0.828125 5.1875 -0.8125 5.1875 -0.734375 C 5.1875 -0.609375 5 -0.59375 4.875 -0.59375 C 4.6875 -0.59375 4.359375 -0.609375 4.0625 -1.359375 C 4.0625 -1.359375 4 -1.5 4 -1.5 C 4 -1.5 4.0625 -1.609375 4.0625 -1.609375 C 4.234375 -1.96875 4.453125 -2.515625 4.65625 -3.125 C 4.8125 -3.578125 5.125 -4.609375 5.140625 -4.703125 C 5.140625 -4.75 5.140625 -4.75 5.078125 -4.8125 L 4.71875 -4.8125 C 4.375 -4.8125 4.375 -4.8125 4.359375 -4.78125 C 4.28125 -4.75 3.734375 -2.703125 3.671875 -2.703125 L 3.59375 -3 C 3.359375 -3.78125 2.984375 -4.8125 2.09375 -4.8125 C 2.046875 -4.8125 1.96875 -4.8125 1.921875 -4.796875 C 1.15625 -4.65625 0.453125 -3.71875 0.453125 -2.34375 C 0.453125 -1.90625 0.53125 -1.46875 0.671875 -1.09375 C 0.828125 -0.734375 1.25 0.109375 2.125 0.109375 C 3.046875 0.109375 3.578125 -0.75 3.75 -1.03125 L 3.8125 -1.140625 L 3.875 -0.984375 C 3.96875 -0.71875 4.25 0.125 4.84375 0.125 C 5.375 0.125 5.46875 -0.515625 5.46875 -0.703125 Z M 2.09375 -4.09375 C 2.546875 -4.09375 2.90625 -3.84375 3.203125 -3.1875 C 3.265625 -2.984375 3.484375 -2.328125 3.484375 -2.25 C 3.484375 -2.234375 3.453125 -2.171875 3.421875 -2.09375 C 2.828125 -0.671875 2.328125 -0.578125 2.046875 -0.59375 C 1.1875 -0.625 0.75 -1.359375 0.75 -2.34375 C 0.75 -3.734375 1.5625 -4.09375 2.09375 -4.09375 Z M 2.09375 -4.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 0.71875 -5.21875 L 1.421875 -6.09375 C 1.96875 -6.765625 2.203125 -7 2.203125 -7.203125 C 2.203125 -7.296875 2.15625 -7.578125 1.765625 -7.640625 C 1.578125 -7.640625 1.46875 -7.53125 1.421875 -7.421875 C 1.390625 -7.390625 0.59375 -5.359375 0.59375 -5.328125 C 0.59375 -5.296875 0.625 -5.296875 0.71875 -5.21875 Z M -0.359375 -5.6875 C -0.359375 -5.4375 -0.1875 -5.265625 0.0625 -5.265625 C 0.328125 -5.265625 0.5 -5.46875 0.5 -5.6875 C 0.5 -5.78125 0.4375 -6.109375 0.09375 -6.125 C 0.046875 -6.125 -0.015625 -6.125 -0.03125 -6.125 C -0.203125 -6.078125 -0.359375 -5.9375 -0.359375 -5.6875 Z M 1.53125 -5.6875 C 1.53125 -5.4375 1.71875 -5.265625 1.96875 -5.265625 C 2.21875 -5.265625 2.40625 -5.46875 2.40625 -5.6875 C 2.40625 -5.78125 2.328125 -6.109375 1.984375 -6.125 C 1.9375 -6.125 1.890625 -6.125 1.859375 -6.125 C 1.703125 -6.078125 1.53125 -5.9375 1.53125 -5.6875 Z M 0.59375 -4.71875 C 0.59375 -4.578125 0.6875 -1.359375 0.703125 -1.15625 C 0.71875 -0.734375 0.765625 -0.5 0.859375 -0.296875 C 0.9375 -0.15625 1.109375 0.140625 1.546875 0.140625 C 1.96875 0.140625 2.375 -0.171875 2.375 -0.703125 C 2.40625 -1.09375 2.09375 -1.359375 1.96875 -1.421875 C 1.9375 -1.4375 1.84375 -1.484375 1.828125 -1.265625 C 1.828125 -1.125 1.75 -0.921875 1.46875 -0.921875 C 1.25 -0.921875 1.09375 -1.109375 1.09375 -1.328125 C 1.09375 -1.671875 1.421875 -4.578125 1.421875 -4.71875 C 1.421875 -4.75 1.40625 -4.765625 1.359375 -4.8125 L 0.671875 -4.8125 C 0.625 -4.78125 0.59375 -4.75 0.59375 -4.71875 Z M 0.59375 -4.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 0.46875 -2.34375 C 0.46875 -2.0625 0.484375 -1.9375 0.546875 -1.671875 C 0.875 -0.5 1.90625 0.125 2.875 0.125 C 3.203125 0.125 3.515625 0.046875 3.84375 -0.09375 C 4.265625 -0.265625 5.28125 -0.90625 5.28125 -2.34375 C 5.28125 -2.625 5.265625 -2.765625 5.203125 -3.015625 C 4.875 -4.1875 3.84375 -4.8125 2.875 -4.8125 C 2.796875 -4.8125 2.6875 -4.796875 2.59375 -4.78125 C 1.5625 -4.65625 0.46875 -3.8125 0.46875 -2.34375 Z M 4.453125 -2.875 C 4.453125 -1.78125 3.78125 -0.1875 2.578125 -0.1875 C 1.796875 -0.1875 1.28125 -0.859375 1.28125 -1.84375 C 1.28125 -2.171875 1.359375 -2.515625 1.46875 -2.875 C 1.71875 -3.625 2.21875 -4.359375 2.96875 -4.5 C 3.015625 -4.5 3.0625 -4.5 3.078125 -4.5 C 3.484375 -4.578125 4.453125 -4.25 4.453125 -2.875 Z M 4.453125 -2.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 0.453125 -4.578125 C 0.453125 -4.484375 0.453125 -4.46875 0.515625 -4.3125 L 0.65625 -3.9375 C 1.03125 -2.8125 0.8125 -2.375 1 -1.6875 C 1.25 -0.484375 2.140625 0.109375 2.9375 0.109375 C 4.09375 0.109375 4.96875 -0.953125 4.96875 -2.359375 C 4.96875 -3.03125 4.875 -3.578125 4.53125 -4.265625 C 4.40625 -4.53125 4.203125 -4.859375 4.140625 -4.90625 C 4.0625 -4.953125 3.8125 -4.921875 3.984375 -4.625 C 4.296875 -4.171875 4.453125 -3.640625 4.453125 -3.109375 C 4.453125 -1.953125 3.5625 -0.34375 2.46875 -0.34375 C 2.375 -0.34375 2.28125 -0.359375 2.1875 -0.390625 C 1.890625 -0.5 1.28125 -1.03125 1.28125 -2 C 1.28125 -2.546875 1.453125 -3.0625 1.28125 -4.625 C 1.265625 -4.6875 1.203125 -4.96875 0.859375 -4.96875 C 0.703125 -4.96875 0.453125 -4.890625 0.453125 -4.578125 Z M 0.453125 -4.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.015625 -5.609375 C 0.984375 -5.609375 0.953125 -5.609375 0.953125 -5.609375 C 0.953125 -5.625 0.96875 -5.6875 1 -5.75 C 1.359375 -6.921875 2.53125 -7.15625 3.203125 -6.703125 C 3.609375 -6.40625 3.859375 -5.890625 3.890625 -5.234375 C 3.921875 -4.53125 3.625 -3.84375 2.984375 -3.046875 C 2.625 -2.578125 0.5625 -0.3125 0.5625 -0.3125 C 0.546875 -0.265625 0.546875 -0.234375 0.546875 -0.125 L 0.546875 0 L 4.59375 0 L 4.59375 -0.03125 C 4.609375 -0.046875 4.671875 -0.46875 4.75 -0.984375 C 4.828125 -1.484375 4.890625 -1.90625 4.890625 -1.921875 L 4.890625 -1.953125 L 4.609375 -1.953125 L 4.609375 -1.921875 C 4.59375 -1.765625 4.46875 -1.03125 4.34375 -0.953125 C 4.265625 -0.90625 3.59375 -0.890625 2.359375 -0.890625 L 1.4375 -0.90625 C 2.03125 -1.484375 2.640625 -2.046875 3.25 -2.59375 C 3.84375 -3.125 4.09375 -3.375 4.3125 -3.65625 C 4.828125 -4.28125 4.890625 -4.828125 4.890625 -5.140625 C 4.890625 -6.484375 3.734375 -7.390625 2.3125 -7.25 C 1.09375 -7.0625 0.546875 -5.96875 0.546875 -5.171875 C 0.546875 -4.90625 0.6875 -4.734375 0.9375 -4.6875 C 1.203125 -4.640625 1.46875 -4.828125 1.46875 -5.140625 C 1.46875 -5.421875 1.28125 -5.609375 1.015625 -5.609375 Z M 1.015625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 1.046875 -6.375 C 0.75 -5.90625 0.421875 -5.203125 0.421875 -3.484375 C 0.421875 -2.296875 0.5625 -1.546875 0.890625 -0.90625 C 1.03125 -0.640625 1.15625 -0.453125 1.34375 -0.296875 C 1.71875 0.046875 2.21875 0.234375 2.71875 0.234375 C 3.046875 0.234375 3.34375 0.15625 3.65625 0.015625 C 4.1875 -0.25 5.015625 -0.890625 5.015625 -3.484375 C 5.015625 -4.609375 4.890625 -5.34375 4.609375 -5.984375 C 4.46875 -6.296875 4.3125 -6.515625 4.109375 -6.71875 C 3.734375 -7.0625 3.234375 -7.265625 2.71875 -7.265625 C 2.046875 -7.265625 1.421875 -6.921875 1.046875 -6.375 Z M 3.5625 -6.65625 C 3.921875 -6.28125 4.09375 -5.890625 4.09375 -3.609375 C 4.09375 -1.859375 4.03125 -1.0625 3.703125 -0.578125 C 3.59375 -0.421875 3.296875 -0.015625 2.71875 -0.015625 C 2.21875 -0.015625 1.75 -0.34375 1.546875 -0.96875 C 1.390625 -1.453125 1.359375 -2.21875 1.359375 -3.609375 C 1.359375 -5.1875 1.390625 -5.828125 1.625 -6.296875 C 1.9375 -6.90625 2.46875 -7.015625 2.71875 -7.015625 C 3.046875 -7.015625 3.328125 -6.875 3.5625 -6.65625 Z M 3.5625 -6.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 2.390625 -6.515625 C 2.40625 -6.515625 2.40625 -5.203125 2.40625 -3.578125 L 2.40625 -0.640625 C 2.234375 -0.34375 2.0625 -0.34375 1.28125 -0.34375 L 1.03125 -0.34375 L 1.03125 0 L 1.15625 0 C 1.359375 -0.03125 4.171875 -0.03125 4.390625 0 L 4.515625 0 L 4.515625 -0.34375 L 4.28125 -0.34375 C 3.359375 -0.34375 3.234375 -0.40625 3.15625 -0.640625 L 3.15625 -7.203125 C 3.078125 -7.28125 3.046875 -7.265625 2.984375 -7.265625 L 2.90625 -7.265625 L 2.828125 -7.171875 C 2.390625 -6.78125 1.75 -6.5625 1.09375 -6.5625 L 0.984375 -6.5625 L 0.984375 -6.21875 L 1.09375 -6.21875 C 1.84375 -6.21875 2.390625 -6.515625 2.390625 -6.515625 Z M 2.390625 -6.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 1.140625 -0.453125 C 1.140625 -0.453125 1.171875 -0.453125 1.203125 -0.453125 C 1.34375 -0.484375 1.484375 -0.578125 1.53125 -0.703125 C 1.625 -0.96875 1.46875 -1.28125 1.140625 -1.28125 C 1.046875 -1.28125 1.03125 -1.28125 0.953125 -1.25 C 0.734375 -1.140625 0.734375 -0.96875 0.734375 -0.828125 C 0.734375 -0.375 1.015625 0.234375 2.28125 0.234375 C 3.09375 0.234375 3.84375 -0.3125 4.3125 -1.0625 C 4.828125 -1.875 4.96875 -2.6875 4.96875 -3.640625 C 4.96875 -5.5 4.46875 -6.328125 4.03125 -6.734375 C 3.234375 -7.53125 2.15625 -7.234375 1.78125 -7.046875 C 1.46875 -6.875 0.734375 -6.328125 0.53125 -5.5 C 0.421875 -4.984375 0.265625 -3.890625 1.25 -2.9375 C 1.65625 -2.546875 2.0625 -2.375 2.609375 -2.375 C 3.171875 -2.375 3.59375 -2.59375 3.984375 -3.40625 C 3.984375 -3.40625 3.984375 -2.78125 3.96875 -2.53125 C 3.875 -1.078125 3.265625 -0.078125 2.15625 -0.078125 C 1.703125 -0.09375 1.421875 -0.15625 1.140625 -0.453125 Z M 3.625 -6.453125 C 3.8125 -6.1875 3.96875 -5.75 3.96875 -4.6875 C 3.96875 -4.40625 3.953125 -3.875 3.734375 -3.390625 C 3.625 -3.1875 3.296875 -2.625 2.671875 -2.625 C 2.09375 -2.625 1.859375 -2.984375 1.75 -3.125 C 1.5 -3.5 1.4375 -3.859375 1.453125 -4.953125 C 1.46875 -5.59375 1.484375 -5.796875 1.578125 -6.0625 C 1.765625 -6.6875 2.28125 -6.984375 2.765625 -6.984375 C 3.140625 -6.984375 3.40625 -6.765625 3.625 -6.453125 Z M 3.625 -6.453125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="100.2" y="95.148"/>
|
||||
<use xlink:href="#glyph0-2" x="110.200372" y="95.148"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="115.349467" y="95.148"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="124.75093" y="95.148"/>
|
||||
<use xlink:href="#glyph0-5" x="130.20548" y="95.148"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="136.868758" y="95.148"/>
|
||||
<use xlink:href="#glyph0-7" x="142.323308" y="95.148"/>
|
||||
<use xlink:href="#glyph0-8" x="147.777858" y="95.148"/>
|
||||
<use xlink:href="#glyph0-9" x="153.232408" y="95.148"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="100.2" y="108.697"/>
|
||||
<use xlink:href="#glyph0-10" x="105.65455" y="108.697"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="112.317828" y="108.697"/>
|
||||
<use xlink:href="#glyph0-2" x="122.3182" y="108.697"/>
|
||||
<use xlink:href="#glyph0-11" x="127.77275" y="108.697"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="134.446938" y="108.697"/>
|
||||
<use xlink:href="#glyph0-7" x="139.901488" y="108.697"/>
|
||||
<use xlink:href="#glyph0-8" x="145.356038" y="108.697"/>
|
||||
<use xlink:href="#glyph0-9" x="150.810588" y="108.697"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="100.2" y="122.246"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="109.28728" y="122.246"/>
|
||||
<use xlink:href="#glyph0-2" x="118.377833" y="122.246"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="124.137838" y="122.246"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="131.114208" y="122.246"/>
|
||||
<use xlink:href="#glyph0-7" x="136.568758" y="122.246"/>
|
||||
<use xlink:href="#glyph0-8" x="142.023308" y="122.246"/>
|
||||
<use xlink:href="#glyph0-9" x="147.477858" y="122.246"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="100.2" y="135.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="109.245826" y="135.796"/>
|
||||
<use xlink:href="#glyph1-3" x="116.476377" y="135.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="121.889473" y="135.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="131.386935" y="135.796"/>
|
||||
<use xlink:href="#glyph1-6" x="136.81094" y="135.796"/>
|
||||
<use xlink:href="#glyph1-7" x="142.234944" y="135.796"/>
|
||||
<use xlink:href="#glyph1-8" x="147.658949" y="135.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="156.693865" y="135.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="160.621141" y="135.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="100.2" y="149.345"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="109.286189" y="149.345"/>
|
||||
<use xlink:href="#glyph2-3" x="119.283289" y="149.345"/>
|
||||
<use xlink:href="#glyph2-4" x="124.736748" y="149.345"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="127.168386" y="149.345"/>
|
||||
<use xlink:href="#glyph2-6" x="132.924027" y="149.345"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="142.010217" y="149.345"/>
|
||||
<use xlink:href="#glyph2-8" x="147.463676" y="149.345"/>
|
||||
<use xlink:href="#glyph2-9" x="152.917135" y="149.345"/>
|
||||
<use xlink:href="#glyph2-10" x="158.370594" y="149.345"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="100.2" y="162.894"/>
|
||||
<use xlink:href="#glyph0-2" x="110.200372" y="162.894"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="115.349467" y="162.894"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="124.75093" y="162.894"/>
|
||||
<use xlink:href="#glyph0-5" x="130.20548" y="162.894"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="136.868758" y="162.894"/>
|
||||
<use xlink:href="#glyph0-7" x="142.323308" y="162.894"/>
|
||||
<use xlink:href="#glyph0-8" x="147.777858" y="162.894"/>
|
||||
<use xlink:href="#glyph0-9" x="153.232408" y="162.894"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
27
sections/german/03/languages.tex
Normal file
@ -0,0 +1,27 @@
|
||||
\documentclass{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman, swedish, russian, greek, english]{babel}
|
||||
|
||||
\usepackage{lmodern}
|
||||
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\today
|
||||
|
||||
\selectlanguage{ngerman}
|
||||
\today
|
||||
|
||||
\selectlanguage{swedish}
|
||||
\today
|
||||
|
||||
\selectlanguage{russian}
|
||||
\today
|
||||
|
||||
\selectlanguage{greek}
|
||||
\today
|
||||
|
||||
\selectlanguage{english}
|
||||
\today
|
||||
|
||||
\end{document}
|
||||
85
sections/german/03/reservierte-zeichen-crop.svg
Normal file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="88pt" height="32pt" viewBox="0 0 88 32" 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.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.109375 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 6.90625 -7.28125 C 6.90625 -7.390625 6.8125 -7.484375 6.703125 -7.484375 C 6.609375 -7.484375 6.5625 -7.40625 6.5 -7.34375 C 6 -6.65625 5.328125 -6.390625 4.609375 -6.390625 C 3.90625 -6.390625 3.296875 -6.640625 2.734375 -7.15625 C 2.546875 -7.328125 2.34375 -7.484375 2.03125 -7.484375 C 1.265625 -7.484375 0.5625 -6.640625 0.5625 -5.46875 C 0.5625 -4.265625 1.28125 -3.453125 2.03125 -3.453125 C 2.75 -3.453125 3.3125 -4.34375 3.3125 -5.46875 C 3.3125 -5.609375 3.3125 -6.078125 3.109375 -6.59375 C 3.765625 -6.21875 4.25 -6.171875 4.609375 -6.171875 C 5.375 -6.171875 5.875 -6.484375 5.9375 -6.515625 L 5.953125 -6.515625 L 1.46875 0.15625 C 1.390625 0.296875 1.390625 0.359375 1.390625 0.359375 C 1.390625 0.46875 1.484375 0.5625 1.578125 0.5625 C 1.6875 0.5625 1.703125 0.515625 1.78125 0.40625 L 6.828125 -7.09375 C 6.890625 -7.1875 6.90625 -7.21875 6.90625 -7.28125 Z M 7.734375 -1.453125 C 7.734375 -2.59375 7.140625 -3.453125 6.4375 -3.453125 C 5.6875 -3.453125 4.96875 -2.625 4.96875 -1.453125 C 4.96875 -0.25 5.6875 0.5625 6.4375 0.5625 C 7.171875 0.5625 7.734375 -0.328125 7.734375 -1.453125 Z M 3.078125 -5.46875 C 3.078125 -4.390625 2.546875 -3.671875 2.03125 -3.671875 C 1.828125 -3.671875 1.171875 -3.8125 1.171875 -5.46875 C 1.171875 -7.125 1.828125 -7.25 2.03125 -7.25 C 2.5625 -7.25 3.078125 -6.515625 3.078125 -5.46875 Z M 7.484375 -1.453125 C 7.484375 -0.375 6.96875 0.34375 6.453125 0.34375 C 6.25 0.34375 5.59375 0.203125 5.59375 -1.453125 C 5.59375 -3.109375 6.234375 -3.234375 6.453125 -3.234375 C 6.984375 -3.234375 7.484375 -2.5 7.484375 -1.453125 Z M 7.484375 -1.453125 "/>
|
||||
</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 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-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 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-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="glyph0-9">
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.890625 -0.3125 C 6.125 -0.3125 6.109375 -0.421875 6.109375 -0.78125 L 6.109375 -6.03125 C 6.109375 -6.390625 6.125 -6.5 6.890625 -6.5 L 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.78125 6.046875 -6.78125 5.671875 -6.78125 C 5.296875 -6.78125 4.546875 -6.78125 4.203125 -6.8125 L 4.203125 -6.5 L 4.4375 -6.5 C 5.203125 -6.5 5.21875 -6.390625 5.21875 -6.03125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.390625 L 5.21875 -3.390625 L 5.21875 -0.78125 C 5.21875 -0.421875 5.203125 -0.3125 4.4375 -0.3125 L 4.203125 -0.3125 L 4.203125 0 C 4.546875 -0.03125 5.28125 -0.03125 5.65625 -0.03125 C 6.046875 -0.03125 6.78125 -0.03125 7.140625 0 Z M 7.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<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 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<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-12">
|
||||
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<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-14">
|
||||
<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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.198" y="6.871"/>
|
||||
<use xlink:href="#glyph0-2" x="4.7833" y="6.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.198" y="30.781"/>
|
||||
<use xlink:href="#glyph0-2" x="4.7833" y="30.781"/>
|
||||
<use xlink:href="#glyph0-3" x="9.7646" y="30.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="21.38398" y="30.781"/>
|
||||
<use xlink:href="#glyph0-5" x="25.314226" y="30.781"/>
|
||||
<use xlink:href="#glyph0-6" x="28.081836" y="30.781"/>
|
||||
<use xlink:href="#glyph0-7" x="33.617057" y="30.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="42.479786" y="30.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="48.005044" y="30.781"/>
|
||||
<use xlink:href="#glyph0-8" x="50.772654" y="30.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="58.528538" y="30.781"/>
|
||||
<use xlink:href="#glyph0-10" x="66.000488" y="30.781"/>
|
||||
<use xlink:href="#glyph0-11" x="70.981788" y="30.781"/>
|
||||
<use xlink:href="#glyph0-12" x="73.749399" y="30.781"/>
|
||||
<use xlink:href="#glyph0-13" x="76.793969" y="30.781"/>
|
||||
<use xlink:href="#glyph0-8" x="80.668424" y="30.781"/>
|
||||
<use xlink:href="#glyph0-14" x="85.0968" y="30.781"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
85
sections/german/03/reservierte-zeichen-orig.svg
Normal file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.109375 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 6.90625 -7.28125 C 6.90625 -7.390625 6.8125 -7.484375 6.703125 -7.484375 C 6.609375 -7.484375 6.5625 -7.40625 6.5 -7.34375 C 6 -6.65625 5.328125 -6.390625 4.609375 -6.390625 C 3.90625 -6.390625 3.296875 -6.640625 2.734375 -7.15625 C 2.546875 -7.328125 2.34375 -7.484375 2.03125 -7.484375 C 1.265625 -7.484375 0.5625 -6.640625 0.5625 -5.46875 C 0.5625 -4.265625 1.28125 -3.453125 2.03125 -3.453125 C 2.75 -3.453125 3.3125 -4.34375 3.3125 -5.46875 C 3.3125 -5.609375 3.3125 -6.078125 3.109375 -6.59375 C 3.765625 -6.21875 4.25 -6.171875 4.609375 -6.171875 C 5.375 -6.171875 5.875 -6.484375 5.9375 -6.515625 L 5.953125 -6.515625 L 1.46875 0.15625 C 1.390625 0.296875 1.390625 0.359375 1.390625 0.359375 C 1.390625 0.46875 1.484375 0.5625 1.578125 0.5625 C 1.6875 0.5625 1.703125 0.515625 1.78125 0.40625 L 6.828125 -7.09375 C 6.890625 -7.1875 6.90625 -7.21875 6.90625 -7.28125 Z M 7.734375 -1.453125 C 7.734375 -2.59375 7.140625 -3.453125 6.4375 -3.453125 C 5.6875 -3.453125 4.96875 -2.625 4.96875 -1.453125 C 4.96875 -0.25 5.6875 0.5625 6.4375 0.5625 C 7.171875 0.5625 7.734375 -0.328125 7.734375 -1.453125 Z M 3.078125 -5.46875 C 3.078125 -4.390625 2.546875 -3.671875 2.03125 -3.671875 C 1.828125 -3.671875 1.171875 -3.8125 1.171875 -5.46875 C 1.171875 -7.125 1.828125 -7.25 2.03125 -7.25 C 2.5625 -7.25 3.078125 -6.515625 3.078125 -5.46875 Z M 7.484375 -1.453125 C 7.484375 -0.375 6.96875 0.34375 6.453125 0.34375 C 6.25 0.34375 5.59375 0.203125 5.59375 -1.453125 C 5.59375 -3.109375 6.234375 -3.234375 6.453125 -3.234375 C 6.984375 -3.234375 7.484375 -2.5 7.484375 -1.453125 Z M 7.484375 -1.453125 "/>
|
||||
</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 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-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 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-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="glyph0-9">
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.890625 -0.3125 C 6.125 -0.3125 6.109375 -0.421875 6.109375 -0.78125 L 6.109375 -6.03125 C 6.109375 -6.390625 6.125 -6.5 6.890625 -6.5 L 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.78125 6.046875 -6.78125 5.671875 -6.78125 C 5.296875 -6.78125 4.546875 -6.78125 4.203125 -6.8125 L 4.203125 -6.5 L 4.4375 -6.5 C 5.203125 -6.5 5.21875 -6.390625 5.21875 -6.03125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.390625 L 5.21875 -3.390625 L 5.21875 -0.78125 C 5.21875 -0.421875 5.203125 -0.3125 4.4375 -0.3125 L 4.203125 -0.3125 L 4.203125 0 C 4.546875 -0.03125 5.28125 -0.03125 5.65625 -0.03125 C 6.046875 -0.03125 6.78125 -0.03125 7.140625 0 Z M 7.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<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 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<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-12">
|
||||
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<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-14">
|
||||
<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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="124.802" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="129.7833" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="124.802" y="159.671"/>
|
||||
<use xlink:href="#glyph0-2" x="129.7833" y="159.671"/>
|
||||
<use xlink:href="#glyph0-3" x="134.7646" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="146.38398" y="159.671"/>
|
||||
<use xlink:href="#glyph0-5" x="150.314226" y="159.671"/>
|
||||
<use xlink:href="#glyph0-6" x="153.081836" y="159.671"/>
|
||||
<use xlink:href="#glyph0-7" x="158.617057" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="167.479786" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="173.005044" y="159.671"/>
|
||||
<use xlink:href="#glyph0-8" x="175.772654" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="183.528538" y="159.671"/>
|
||||
<use xlink:href="#glyph0-10" x="191.000488" y="159.671"/>
|
||||
<use xlink:href="#glyph0-11" x="195.981788" y="159.671"/>
|
||||
<use xlink:href="#glyph0-12" x="198.749399" y="159.671"/>
|
||||
<use xlink:href="#glyph0-13" x="201.793969" y="159.671"/>
|
||||
<use xlink:href="#glyph0-8" x="205.668424" y="159.671"/>
|
||||
<use xlink:href="#glyph0-14" x="210.0968" y="159.671"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
13
sections/german/03/reservierte-zeichen.tex
Normal file
@ -0,0 +1,13 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\noindent
|
||||
50% sind die Hälfte.
|
||||
\\\\
|
||||
50\% sind die Hälfte.
|
||||
\end{document}
|
||||
494
sections/german/03/title-crop.svg
Normal file
@ -0,0 +1,494 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="309pt" height="257pt" viewBox="0 0 309 257" 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 2.5625 -14.046875 C 2.296875 -13.984375 2.265625 -13.734375 2.265625 -13.515625 L 2.265625 -0.53125 C 2.265625 -0.140625 2.453125 -0.015625 2.765625 -0.015625 L 9.21875 -0.015625 C 12.640625 -0.1875 16.109375 -1.515625 16.109375 -6.84375 C 16.109375 -9.046875 15.609375 -11.4375 13.640625 -12.8125 C 12.359375 -13.671875 10.734375 -14.0625 9.1875 -14.0625 L 2.75 -14.0625 C 2.6875 -14.0625 2.625 -14.0625 2.5625 -14.046875 Z M 4.46875 -1.265625 L 4.46875 -12.828125 L 7.625 -12.828125 C 9.921875 -12.828125 12.59375 -12.515625 13.53125 -9.859375 C 13.84375 -8.9375 13.921875 -8 13.921875 -7.046875 C 13.921875 -5.203125 13.6875 -3.25 11.890625 -2.09375 C 10.65625 -1.296875 9.15625 -1.265625 7.75 -1.265625 Z M 4.46875 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.125 -9.25 C 1.859375 -9.171875 1.84375 -8.921875 1.84375 -8.703125 L 1.84375 -0.46875 C 1.84375 -0.078125 2.09375 -0.015625 2.359375 -0.015625 L 3.453125 -0.015625 C 3.90625 -0.015625 3.953125 -0.25 3.953125 -0.53125 L 3.953125 -8.8125 C 3.953125 -9.234375 3.671875 -9.28125 3.40625 -9.28125 L 2.359375 -9.28125 C 2.265625 -9.28125 2.1875 -9.28125 2.125 -9.25 Z M 2.0625 -14.328125 C 1.921875 -14.3125 1.8125 -14.1875 1.78125 -14.046875 L 1.78125 -12.640625 C 1.78125 -12.1875 2.03125 -12.140625 2.296875 -12.140625 L 3.46875 -12.140625 C 3.703125 -12.140625 3.953125 -12.203125 3.984375 -12.453125 L 3.984375 -13.859375 C 3.984375 -14.296875 3.734375 -14.359375 3.421875 -14.359375 L 2.296875 -14.359375 C 2.203125 -14.359375 2.125 -14.359375 2.0625 -14.328125 Z M 2.0625 -14.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.734375 -4.046875 L 9.703125 -4.046875 C 10.0625 -4.046875 10.125 -4.3125 10.125 -4.546875 C 10.125 -5.90625 9.921875 -7.328125 8.96875 -8.359375 C 8.140625 -9.25 6.90625 -9.5 5.71875 -9.5 C 4.46875 -9.5 3.03125 -9.28125 2.09375 -8.421875 C 1.03125 -7.484375 0.65625 -6.09375 0.65625 -4.6875 C 0.65625 -3.578125 0.90625 -2.515625 1.546875 -1.609375 C 2.578125 -0.203125 4.46875 0.125 6.09375 0.125 C 7.328125 0.125 8.71875 -0.171875 9.8125 -0.703125 C 9.9375 -0.78125 9.984375 -0.84375 9.984375 -0.984375 C 9.984375 -1.390625 9.921875 -2.1875 9.765625 -2.203125 L 9.734375 -2.203125 C 9.671875 -2.203125 9.625 -2.171875 9.5625 -2.125 L 9.1875 -1.875 C 8.234375 -1.28125 7.140625 -0.96875 6.03125 -0.96875 C 4.984375 -0.96875 3.921875 -1.28125 3.3125 -2.1875 C 2.9375 -2.75 2.8125 -3.390625 2.734375 -4.046875 Z M 2.703125 -5.015625 C 2.8125 -6.4375 3.140625 -8.40625 5.703125 -8.40625 C 7.25 -8.40625 8.015625 -7.296875 8.1875 -5.84375 C 8.203125 -5.578125 8.203125 -5.28125 8.234375 -5.015625 Z M 2.703125 -5.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 11.375 -12.46875 L 11.40625 -12.46875 C 11.421875 -12.0625 11.59375 -11.65625 11.71875 -11.25 C 12.703125 -7.75 13.90625 -4.25 15.078125 -0.8125 C 15.21875 -0.40625 15.25 -0.015625 15.859375 -0.015625 L 17.3125 -0.015625 C 17.6875 -0.015625 17.890625 -0.125 18.03125 -0.578125 L 18.21875 -1.171875 C 19.578125 -5.015625 20.78125 -8.921875 22.0625 -12.78125 L 22.28125 -13.46875 C 22.328125 -13.546875 22.375 -13.671875 22.375 -13.78125 L 22.375 -13.8125 C 22.34375 -14.046875 22.140625 -14.0625 21.953125 -14.0625 L 21.21875 -14.0625 C 20.53125 -14.0625 20.453125 -13.75 20.203125 -13 L 19.703125 -11.4375 C 18.84375 -8.703125 17.890625 -6.015625 17.0625 -3.265625 C 16.890625 -2.75 16.671875 -2.171875 16.625 -1.609375 L 16.609375 -1.609375 C 16.359375 -2.84375 15.921875 -4.0625 15.53125 -5.28125 C 14.671875 -7.9375 13.8125 -10.578125 12.953125 -13.203125 C 12.78125 -13.640625 12.765625 -14.0625 12.109375 -14.0625 L 10.828125 -14.0625 C 10.21875 -14.0625 10.15625 -13.96875 9.765625 -12.765625 C 8.671875 -9.4375 7.546875 -6.09375 6.546875 -2.734375 C 6.4375 -2.375 6.328125 -1.984375 6.296875 -1.609375 C 6.171875 -1.859375 6.109375 -2.265625 6.046875 -2.578125 C 5 -6.171875 3.78125 -9.6875 2.625 -13.265625 C 2.5 -13.65625 2.4375 -14.0625 1.796875 -14.0625 L 1.265625 -14.0625 C 1.15625 -14.0625 1.015625 -14.09375 0.890625 -14.09375 C 0.625 -14.09375 0.453125 -13.984375 0.453125 -13.78125 C 0.453125 -13.609375 0.5625 -13.40625 0.59375 -13.265625 L 0.65625 -13.078125 C 1.9375 -9.171875 3.28125 -5.265625 4.546875 -1.34375 L 4.765625 -0.6875 C 4.875 -0.375 4.953125 -0.0625 5.3125 -0.015625 L 6.8125 -0.015625 C 7.203125 -0.015625 7.453125 -0.078125 7.625 -0.59375 L 7.828125 -1.234375 C 8.46875 -3.21875 9.1875 -5.21875 9.796875 -7.234375 C 10.328125 -8.96875 10.984375 -10.703125 11.375 -12.46875 Z M 11.375 -12.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 2.125 -14.703125 C 1.875 -14.640625 1.8125 -14.421875 1.8125 -14.171875 C 1.8125 -14.046875 1.84375 -13.90625 1.84375 -13.796875 L 1.84375 -0.53125 C 1.84375 -0.234375 1.96875 -0.015625 2.3125 -0.015625 L 3.40625 -0.015625 C 3.859375 -0.015625 3.96875 -0.234375 3.96875 -0.578125 C 3.96875 -0.703125 3.953125 -0.828125 3.953125 -0.921875 L 3.953125 -14.21875 C 3.953125 -14.671875 3.734375 -14.734375 3.46875 -14.734375 L 2.359375 -14.734375 C 2.265625 -14.734375 2.1875 -14.734375 2.125 -14.703125 Z M 2.125 -14.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 2.328125 -9.28125 L 0.921875 -9.28125 C 0.5 -9.28125 0.453125 -9 0.453125 -8.734375 C 0.453125 -8.46875 0.46875 -8.15625 0.921875 -8.15625 C 1.03125 -8.15625 1.109375 -8.1875 1.203125 -8.1875 L 2.3125 -8.1875 L 2.3125 -2.25 C 2.3125 -0.90625 2.8125 0.125 4.296875 0.125 C 5.453125 0.125 6.65625 -0.0625 7.703125 -0.5625 C 7.8125 -0.59375 8 -0.640625 8 -0.78125 L 8 -0.828125 C 8 -1.078125 7.8125 -1.65625 7.6875 -1.6875 L 7.65625 -1.6875 C 7.453125 -1.6875 6.859375 -1.28125 6.546875 -1.203125 C 6.265625 -1.09375 5.890625 -1.03125 5.5 -1.03125 C 4.578125 -1.03125 4.375 -1.71875 4.375 -2.5 L 4.375 -8.1875 L 7.171875 -8.1875 C 7.625 -8.1875 7.625 -8.484375 7.625 -8.78125 C 7.625 -9.171875 7.421875 -9.296875 7.078125 -9.296875 C 6.96875 -9.296875 6.8125 -9.28125 6.71875 -9.28125 L 4.375 -9.28125 L 4.375 -11.421875 C 4.375 -11.875 4.125 -11.890625 3.859375 -11.890625 L 2.75 -11.890625 C 2.4375 -11.890625 2.3125 -11.625 2.3125 -11.359375 C 2.3125 -11.234375 2.328125 -11.09375 2.328125 -10.984375 Z M 2.328125 -9.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 8.546875 -8.234375 C 7.578125 -9.03125 6.71875 -9.421875 5.390625 -9.421875 C 2.171875 -9.421875 0.8125 -7.265625 0.8125 -4.734375 C 0.8125 -3.53125 0.984375 -2.25 1.75 -1.28125 C 2.609375 -0.234375 4.03125 0.125 5.28125 0.125 C 6.59375 0.125 7.65625 -0.40625 8.53125 -1.28125 L 8.53125 -0.53125 C 8.53125 -0.25 8.609375 -0.015625 9 -0.015625 L 10.34375 -0.015625 C 10.578125 -0.0625 10.65625 -0.265625 10.65625 -0.46875 L 10.65625 -14.234375 C 10.65625 -14.546875 10.515625 -14.734375 10.1875 -14.734375 L 8.859375 -14.734375 C 8.59375 -14.6875 8.53125 -14.390625 8.53125 -14.171875 C 8.53125 -14.046875 8.546875 -13.921875 8.546875 -13.796875 Z M 2.9375 -4.0625 L 2.9375 -4.796875 C 2.9375 -6.328125 3.3125 -8.203125 5.828125 -8.296875 L 6.140625 -8.296875 C 6.96875 -8.296875 7.71875 -8.09375 8.34375 -7.3125 C 8.421875 -7.234375 8.515625 -7.125 8.53125 -7 L 8.53125 -2.734375 C 8.53125 -2.125 7.578125 -1.390625 6.921875 -1.109375 C 6.625 -1.015625 6.328125 -0.96875 6.015625 -0.96875 C 5.125 -0.96875 4.1875 -1.203125 3.59375 -1.875 C 3.078125 -2.5 3.015625 -3.3125 2.9375 -4.0625 Z M 2.9375 -4.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 3.90625 -7.046875 C 3.890625 -7.125 3.890625 -7.203125 3.890625 -7.3125 L 3.890625 -8.84375 C 3.890625 -9.28125 3.671875 -9.34375 3.390625 -9.34375 L 2.171875 -9.34375 C 1.921875 -9.296875 1.8125 -9.046875 1.8125 -8.8125 C 1.8125 -8.703125 1.84375 -8.578125 1.84375 -8.453125 L 1.84375 -0.5625 C 1.84375 -0.234375 1.90625 -0.015625 2.359375 -0.015625 L 3.59375 -0.015625 C 3.828125 -0.0625 3.953125 -0.1875 3.953125 -0.5 L 3.953125 -4.03125 C 3.953125 -6.140625 5.390625 -7.515625 7.546875 -7.71875 L 7.6875 -7.71875 C 7.890625 -7.71875 7.90625 -7.828125 7.90625 -7.953125 L 7.90625 -9.125 C 7.90625 -9.3125 7.890625 -9.421875 7.6875 -9.421875 L 7.578125 -9.421875 C 6.09375 -9.3125 4.5625 -8.421875 3.90625 -7.046875 Z M 3.90625 -7.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 7.1875 -12.59375 L 7.1875 -0.46875 C 7.1875 -0.203125 7.328125 -0.0625 7.5625 -0.015625 L 8.640625 -0.015625 C 8.734375 -0.015625 8.84375 0 8.9375 0 C 9.359375 0 9.40625 -0.296875 9.40625 -0.515625 L 9.40625 -12.59375 C 10.390625 -12.59375 11.375 -12.53125 12.375 -12.53125 L 13.40625 -12.53125 C 13.59375 -12.515625 13.796875 -12.515625 14 -12.515625 L 14.609375 -12.515625 C 14.796875 -12.5 14.96875 -12.5 15.15625 -12.5 L 15.390625 -12.5 C 15.609375 -12.53125 15.71875 -12.71875 15.71875 -12.9375 L 15.71875 -13.078125 C 15.71875 -13.171875 15.734375 -13.328125 15.734375 -13.46875 C 15.734375 -13.734375 15.671875 -14 15.328125 -14 L 1.8125 -14 C 1.71875 -14 1.5625 -14.03125 1.453125 -14.03125 C 1.109375 -14.03125 0.875 -13.921875 0.875 -13.578125 L 0.875 -13.453125 C 0.875 -13.34375 0.84375 -13.21875 0.84375 -13.078125 C 0.84375 -12.703125 0.921875 -12.5 1.421875 -12.5 C 1.609375 -12.5 1.78125 -12.5 1.96875 -12.515625 L 2.5625 -12.515625 C 2.765625 -12.515625 2.953125 -12.515625 3.15625 -12.53125 L 4.1875 -12.53125 C 5.1875 -12.53125 6.203125 -12.59375 7.1875 -12.59375 Z M 7.1875 -12.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 8.546875 -1.140625 L 8.546875 -0.53125 C 8.546875 -0.203125 8.671875 -0.015625 9.03125 -0.015625 L 10.1875 -0.015625 C 10.453125 -0.015625 10.671875 -0.125 10.671875 -0.515625 C 10.671875 -0.640625 10.65625 -0.765625 10.65625 -0.875 L 10.65625 -8.78125 C 10.65625 -9.1875 10.46875 -9.28125 10.1875 -9.28125 L 9 -9.28125 C 8.65625 -9.28125 8.53125 -9.09375 8.53125 -8.765625 L 8.53125 -3.953125 C 8.53125 -3.703125 8.546875 -3.453125 8.546875 -3.203125 C 8.546875 -1.515625 7.109375 -0.875 5.6875 -0.875 L 5.59375 -0.875 C 4.9375 -0.875 4.0625 -0.890625 3.984375 -1.796875 C 3.96875 -2 3.96875 -2.203125 3.96875 -2.4375 L 3.96875 -8.34375 C 3.96875 -8.46875 3.984375 -8.59375 3.984375 -8.71875 C 3.984375 -9.03125 3.890625 -9.28125 3.453125 -9.28125 L 2.3125 -9.28125 C 1.96875 -9.28125 1.84375 -9.09375 1.84375 -8.765625 L 1.84375 -2.484375 C 1.84375 -1.921875 1.859375 -1.359375 2.125 -0.875 C 2.640625 0.046875 3.859375 0.125 4.765625 0.125 C 6.140625 0.125 7.546875 -0.171875 8.546875 -1.140625 Z M 7.765625 -14.046875 C 7.625 -14 7.515625 -13.90625 7.5 -13.75 L 7.5 -12.296875 C 7.5 -11.890625 7.765625 -11.859375 8.015625 -11.859375 L 9.1875 -11.859375 C 9.484375 -11.859375 9.625 -11.9375 9.703125 -12.203125 L 9.703125 -13.546875 C 9.703125 -13.875 9.5625 -14.0625 9.234375 -14.0625 L 8 -14.0625 C 7.90625 -14.0625 7.828125 -14.0625 7.765625 -14.046875 Z M 3.078125 -14.046875 C 2.90625 -14 2.828125 -13.875 2.78125 -13.71875 L 2.78125 -12.375 C 2.78125 -11.890625 3.0625 -11.859375 3.34375 -11.859375 L 4.484375 -11.859375 C 4.703125 -11.859375 4.953125 -11.921875 5 -12.171875 L 5 -13.578125 C 5 -14 4.75 -14.0625 4.4375 -14.0625 L 3.3125 -14.0625 C 3.21875 -14.0625 3.140625 -14.0625 3.078125 -14.046875 Z M 3.078125 -14.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 2.296875 -9.28125 L 1.140625 -9.28125 C 0.65625 -9.28125 0.640625 -9 0.640625 -8.71875 C 0.640625 -8.46875 0.640625 -8.1875 1.109375 -8.1875 L 2.296875 -8.1875 L 2.296875 -0.5625 C 2.296875 -0.140625 2.453125 -0.015625 2.75 -0.015625 L 3.921875 -0.015625 C 4.3125 -0.015625 4.40625 -0.265625 4.40625 -0.53125 L 4.40625 -8.1875 L 6.375 -8.1875 C 6.921875 -8.1875 6.921875 -8.421875 6.921875 -8.765625 C 6.921875 -9.09375 6.78125 -9.296875 6.421875 -9.296875 C 6.328125 -9.296875 6.203125 -9.28125 6.109375 -9.28125 L 4.375 -9.28125 L 4.375 -11.875 C 4.375 -12.375 4.375 -12.90625 4.75 -13.296875 C 5.125 -13.671875 5.6875 -13.78125 6.21875 -13.78125 C 6.875 -13.78125 7.484375 -13.640625 8 -13.21875 C 8.0625 -13.171875 8.15625 -13.09375 8.234375 -13.09375 L 8.28125 -13.09375 C 8.359375 -13.109375 8.359375 -13.203125 8.359375 -13.28125 L 8.359375 -14.578125 C 8.296875 -14.859375 7.265625 -14.875 6.65625 -14.875 L 6.296875 -14.875 C 5.171875 -14.875 3.96875 -14.703125 3.125 -13.859375 C 2.5625 -13.28125 2.359375 -12.5 2.296875 -11.71875 Z M 11.09375 -8.1875 L 13.078125 -8.1875 C 13.609375 -8.1875 13.609375 -8.421875 13.609375 -8.765625 C 13.609375 -9.09375 13.46875 -9.296875 13.109375 -9.296875 C 13.015625 -9.296875 12.890625 -9.28125 12.8125 -9.28125 L 11.078125 -9.28125 L 11.078125 -12.046875 C 11.078125 -12.828125 11.25 -13.796875 12.953125 -13.796875 C 13.71875 -13.796875 14.171875 -13.546875 14.828125 -13.140625 C 14.875 -13.109375 14.90625 -13.09375 14.953125 -13.09375 C 15.078125 -13.09375 15.078125 -13.28125 15.078125 -13.359375 L 15.078125 -14.5 C 15.078125 -14.875 14.0625 -14.8125 13.546875 -14.875 L 12.90625 -14.875 C 11.5625 -14.875 10.125 -14.609375 9.375 -13.234375 C 9.03125 -12.5625 8.984375 -11.8125 8.984375 -11.078125 L 8.984375 -0.53125 C 8.984375 -0.046875 9.25 -0.015625 9.546875 -0.015625 L 10.734375 -0.015625 C 10.984375 -0.0625 11.09375 -0.203125 11.09375 -0.46875 Z M 11.09375 -8.1875 "/>
|
||||
</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 0.6875 -9.78125 L 0.6875 -9.375 L 1.078125 -9.375 C 1.515625 -9.375 1.953125 -9.328125 1.953125 -8.796875 C 1.953125 -8.6875 1.9375 -8.578125 1.9375 -8.484375 L 1.9375 -1.296875 C 1.9375 -1.203125 1.953125 -1.109375 1.953125 -1 C 1.953125 -0.46875 1.5 -0.421875 1.0625 -0.421875 L 0.6875 -0.421875 L 0.6875 -0.015625 L 4.546875 -0.015625 L 4.546875 -0.421875 L 4.03125 -0.421875 C 3.40625 -0.421875 2.984375 -0.4375 2.984375 -1.0625 L 2.984375 -4.703125 L 4.171875 -4.703125 C 4.953125 -4.703125 5.71875 -4.640625 5.71875 -3.265625 L 5.71875 -3.03125 L 6.015625 -3.03125 L 6.015625 -6.78125 L 5.71875 -6.78125 L 5.71875 -6.546875 C 5.71875 -5.8125 5.53125 -5.21875 4.734375 -5.140625 C 4.46875 -5.109375 4.21875 -5.109375 3.953125 -5.109375 L 2.984375 -5.109375 L 2.984375 -8.890625 C 2.984375 -9.3125 3.1875 -9.375 3.546875 -9.375 L 5.25 -9.375 C 5.984375 -9.375 6.84375 -9.359375 7.375 -8.796875 C 7.90625 -8.21875 7.9375 -7.328125 8.03125 -6.59375 L 8.3125 -6.59375 L 7.953125 -9.78125 Z M 0.6875 -9.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 3.21875 -6.390625 C 1.484375 -6.140625 0.4375 -4.71875 0.4375 -3.09375 L 0.4375 -2.90625 C 0.546875 -1.3125 1.71875 0.109375 3.421875 0.109375 L 3.578125 0.109375 C 3.9375 0.078125 4.28125 0 4.609375 -0.15625 C 5.71875 -0.6875 6.375 -1.890625 6.375 -3.109375 L 6.375 -3.234375 C 6.3125 -4.8125 5.140625 -6.390625 3.390625 -6.390625 Z M 1.453125 -2.78125 C 1.453125 -2.890625 1.4375 -3.03125 1.4375 -3.15625 C 1.4375 -4.1875 1.5625 -5.40625 2.6875 -5.96875 C 2.90625 -6.0625 3.15625 -6.125 3.40625 -6.125 C 4.9375 -6.125 5.359375 -4.53125 5.359375 -3.28125 C 5.359375 -2.1875 5.28125 -0.59375 3.796875 -0.21875 C 3.671875 -0.1875 3.5625 -0.171875 3.421875 -0.171875 C 2.328125 -0.171875 1.65625 -1.140625 1.5 -2.21875 C 1.484375 -2.40625 1.484375 -2.59375 1.453125 -2.78125 Z M 1.453125 -2.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 0.5 -9.8125 L 0.5 -9.40625 L 0.71875 -9.40625 C 1.109375 -9.40625 1.5 -9.359375 1.5 -8.71875 L 1.5 -0.015625 L 1.78125 -0.046875 L 2.21875 -0.984375 L 2.25 -0.984375 C 2.578125 -0.28125 3.359375 0.109375 4.109375 0.109375 C 5.84375 0.109375 7.0625 -1.484375 7.0625 -3.140625 C 7.0625 -4.765625 5.859375 -6.3125 4.21875 -6.3125 C 3.40625 -6.3125 2.78125 -5.90625 2.296875 -5.3125 L 2.296875 -9.96875 Z M 6.03125 -2.765625 C 5.984375 -2.109375 5.890625 -1.4375 5.46875 -0.90625 C 5.109375 -0.4375 4.578125 -0.140625 4.015625 -0.140625 C 3.234375 -0.140625 2.328125 -0.859375 2.328125 -1.609375 L 2.328125 -3.953125 C 2.328125 -4.125 2.3125 -4.3125 2.3125 -4.484375 C 2.3125 -5.3125 3.265625 -6.046875 4.140625 -6.046875 C 4.46875 -6.046875 4.78125 -5.9375 5.046875 -5.765625 C 5.90625 -5.15625 6.046875 -4.046875 6.046875 -3.078125 C 6.046875 -2.984375 6.046875 -2.875 6.03125 -2.765625 Z M 6.03125 -2.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 1.421875 -5.140625 C 1.671875 -5.71875 2.359375 -6.125 3 -6.125 C 4.0625 -6.125 4.515625 -5.109375 4.515625 -4.171875 L 4.515625 -3.6875 C 3.03125 -3.6875 1.140625 -3.328125 0.671875 -1.734375 C 0.640625 -1.609375 0.625 -1.484375 0.625 -1.328125 L 0.625 -1.234375 C 0.71875 -0.265625 1.875 0.109375 2.671875 0.109375 C 3.453125 0.109375 4.28125 -0.265625 4.59375 -1.140625 L 4.609375 -1.140625 C 4.609375 -0.53125 5.03125 0.0625 5.671875 0.0625 C 6.234375 0.0625 6.6875 -0.4375 6.734375 -1.046875 L 6.734375 -2.09375 L 6.453125 -2.09375 L 6.453125 -1.359375 C 6.453125 -0.953125 6.375 -0.3125 5.890625 -0.3125 C 5.421875 -0.3125 5.328125 -0.9375 5.328125 -1.3125 C 5.328125 -1.484375 5.328125 -1.625 5.328125 -1.765625 L 5.328125 -4.203125 C 5.328125 -5.59375 4.25 -6.390625 3.0625 -6.390625 C 2.265625 -6.390625 1.46875 -5.984375 1.125 -5.171875 C 1.0625 -5.015625 1 -4.8125 1 -4.640625 C 1 -4.28125 1.28125 -4.015625 1.59375 -4.015625 C 1.890625 -4.015625 2.15625 -4.28125 2.15625 -4.578125 C 2.15625 -4.890625 1.921875 -5.15625 1.5625 -5.15625 C 1.5 -5.15625 1.46875 -5.15625 1.421875 -5.140625 Z M 4.515625 -3.4375 L 4.515625 -2.015625 C 4.515625 -1.09375 3.90625 -0.171875 2.890625 -0.140625 L 2.84375 -0.140625 C 2.203125 -0.140625 1.578125 -0.625 1.578125 -1.34375 C 1.578125 -2.84375 3.25 -3.4375 4.515625 -3.4375 Z M 4.515625 -3.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 0.484375 -6.15625 L 0.484375 -5.75 L 0.703125 -5.75 C 1.109375 -5.75 1.484375 -5.703125 1.484375 -5.03125 L 1.484375 -0.90625 C 1.484375 -0.4375 1.109375 -0.421875 0.6875 -0.421875 L 0.484375 -0.421875 L 0.484375 -0.015625 L 3.53125 -0.015625 L 3.53125 -0.421875 C 3.390625 -0.421875 3.234375 -0.40625 3.078125 -0.40625 C 2.671875 -0.40625 2.28125 -0.46875 2.28125 -1 L 2.28125 -2.171875 C 2.28125 -2.46875 2.265625 -2.765625 2.265625 -3.0625 C 2.265625 -4.21875 2.53125 -6.03125 3.9375 -6.03125 C 4.015625 -6.03125 4.109375 -6.03125 4.203125 -6.03125 L 4.203125 -6.015625 C 4 -5.9375 3.859375 -5.734375 3.859375 -5.515625 C 3.859375 -5.25 4.078125 -4.984375 4.40625 -4.984375 C 4.71875 -4.984375 4.921875 -5.265625 4.921875 -5.515625 C 4.921875 -6.03125 4.421875 -6.3125 3.9375 -6.3125 C 3.046875 -6.3125 2.421875 -5.5 2.234375 -4.703125 L 2.21875 -6.3125 Z M 0.484375 -6.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 0.6875 -9.8125 L 0.6875 -9.40625 L 1.046875 -9.40625 C 1.515625 -9.40625 1.96875 -9.359375 1.96875 -8.828125 C 1.96875 -8.71875 1.953125 -8.625 1.953125 -8.53125 L 1.953125 -1.3125 C 1.953125 -1.21875 1.96875 -1.109375 1.96875 -1 C 1.96875 -0.46875 1.515625 -0.421875 1.078125 -0.421875 L 0.6875 -0.421875 L 0.6875 -0.015625 L 4.234375 -0.015625 L 4.234375 -0.421875 L 3.78125 -0.421875 C 3.34375 -0.421875 2.96875 -0.46875 2.96875 -1.015625 L 2.96875 -4.796875 L 4.5 -4.796875 C 5.625 -4.796875 6.625 -4.203125 6.625 -2.734375 C 6.625 -2.453125 6.59375 -2.171875 6.59375 -1.875 C 6.59375 -0.734375 7.15625 0.09375 8.609375 0.25 L 8.734375 0.25 C 9.53125 0.25 10 -0.5 10 -1.21875 C 10 -1.296875 10 -1.4375 9.875 -1.4375 C 9.578125 -1.4375 9.75 -0.015625 8.78125 -0.015625 C 8.09375 -0.015625 7.9375 -0.921875 7.859375 -1.59375 C 7.65625 -2.796875 7.75 -3.890625 6.578125 -4.578125 C 6.359375 -4.703125 6.078125 -4.828125 5.828125 -4.890625 C 6.0625 -4.984375 6.3125 -5.015625 6.546875 -5.109375 C 7.46875 -5.5 8.328125 -6.21875 8.328125 -7.265625 C 8.328125 -8.9375 6.328125 -9.734375 4.953125 -9.8125 Z M 2.96875 -5.046875 L 2.96875 -9 C 2.96875 -9.375 3.234375 -9.40625 3.484375 -9.40625 L 4.578125 -9.40625 C 5.796875 -9.40625 7.109375 -8.984375 7.109375 -7.1875 C 7.109375 -5.984375 6.34375 -5.3125 5.265625 -5.109375 C 4.921875 -5.046875 4.578125 -5.046875 4.234375 -5.046875 Z M 2.96875 -5.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 0.546875 -6.15625 L 0.546875 -5.75 L 0.78125 -5.75 C 1.21875 -5.75 1.5625 -5.6875 1.5625 -4.8125 C 1.5625 -4.609375 1.546875 -4.40625 1.546875 -4.203125 L 1.546875 -1.875 C 1.546875 -1.46875 1.578125 -1.046875 1.78125 -0.671875 C 2.125 -0.078125 2.875 0.125 3.53125 0.125 C 4.328125 0.125 5.125 -0.4375 5.328125 -1.203125 L 5.34375 0.109375 L 7.140625 -0.015625 L 7.140625 -0.421875 L 6.921875 -0.421875 C 6.53125 -0.421875 6.140625 -0.453125 6.140625 -1.125 L 6.140625 -6.3125 L 4.3125 -6.15625 L 4.3125 -5.75 L 4.46875 -5.75 C 4.921875 -5.75 5.328125 -5.71875 5.328125 -5.046875 L 5.328125 -2.1875 C 5.25 -1.171875 4.671875 -0.140625 3.578125 -0.140625 C 3.03125 -0.140625 2.515625 -0.34375 2.390625 -1.09375 C 2.359375 -1.34375 2.359375 -1.625 2.359375 -1.875 L 2.359375 -6.3125 Z M 5.0625 -9.203125 C 4.71875 -9.15625 4.53125 -8.859375 4.53125 -8.578125 C 4.53125 -8.296875 4.765625 -7.953125 5.15625 -7.953125 C 5.53125 -7.953125 5.8125 -8.265625 5.8125 -8.59375 C 5.8125 -8.90625 5.546875 -9.21875 5.171875 -9.21875 C 5.140625 -9.21875 5.109375 -9.203125 5.0625 -9.203125 Z M 2.421875 -9.203125 C 2.109375 -9.203125 1.875 -8.859375 1.875 -8.59375 C 1.875 -8.203125 2.1875 -7.953125 2.609375 -7.953125 C 2.9375 -8 3.15625 -8.296875 3.15625 -8.578125 C 3.15625 -8.84375 2.921875 -9.21875 2.53125 -9.21875 C 2.5 -9.21875 2.46875 -9.203125 2.421875 -9.203125 Z M 2.421875 -9.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 1.15625 -0.609375 C 1.484375 -0.109375 2.109375 0.109375 2.671875 0.109375 C 3.703125 0.109375 4.90625 -0.296875 4.90625 -1.828125 C 4.90625 -2.5 4.5 -3.09375 3.9375 -3.421875 C 3.078125 -3.921875 1.25 -3.640625 1.03125 -4.921875 C 1.03125 -5.84375 1.796875 -6.15625 2.609375 -6.15625 C 3.5 -6.15625 4.109375 -5.6875 4.28125 -4.609375 L 4.28125 -4.484375 C 4.28125 -4.359375 4.28125 -4.203125 4.4375 -4.203125 C 4.546875 -4.203125 4.578125 -4.296875 4.578125 -4.390625 L 4.578125 -6.21875 C 4.578125 -6.296875 4.546875 -6.390625 4.453125 -6.390625 C 4.28125 -6.390625 4.03125 -5.984375 3.984375 -5.90625 C 3.59375 -6.234375 3.140625 -6.390625 2.640625 -6.390625 C 1.6875 -6.390625 0.453125 -6.015625 0.453125 -4.671875 C 0.453125 -3.015625 2.546875 -3.046875 3.421875 -2.71875 C 3.921875 -2.5 4.328125 -2.0625 4.328125 -1.5 C 4.328125 -0.453125 3.421875 -0.140625 2.703125 -0.140625 C 1.28125 -0.140625 1.03125 -1.40625 0.75 -2.421875 C 0.734375 -2.484375 0.65625 -2.53125 0.609375 -2.53125 C 0.5 -2.53125 0.453125 -2.4375 0.453125 -2.359375 L 0.453125 0 C 0.46875 0.0625 0.5 0.09375 0.5625 0.09375 L 0.59375 0.09375 C 0.671875 0.09375 0.71875 0.015625 0.78125 -0.046875 Z M 1.15625 -0.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 1.453125 -3.375 L 5.484375 -3.375 C 5.625 -3.375 5.6875 -3.40625 5.6875 -3.5625 C 5.6875 -4.90625 5 -6.390625 3.28125 -6.390625 C 1.5625 -6.390625 0.4375 -4.765625 0.4375 -3.171875 C 0.4375 -1.640625 1.453125 0.015625 3.265625 0.109375 L 3.359375 0.109375 C 4.359375 0.109375 5.34375 -0.546875 5.640625 -1.546875 C 5.65625 -1.59375 5.6875 -1.65625 5.6875 -1.703125 C 5.6875 -1.765625 5.609375 -1.84375 5.546875 -1.84375 C 5.34375 -1.84375 5.28125 -1.375 5.15625 -1.15625 C 4.8125 -0.59375 4.171875 -0.171875 3.5 -0.171875 L 3.40625 -0.171875 C 3.015625 -0.203125 2.65625 -0.359375 2.34375 -0.609375 C 1.515625 -1.296875 1.453125 -2.390625 1.453125 -3.375 Z M 1.46875 -3.609375 C 1.46875 -4.703125 2.015625 -6.109375 3.234375 -6.109375 C 4.46875 -6.109375 4.828125 -4.671875 4.828125 -3.609375 Z M 1.46875 -3.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 0.546875 -9.8125 L 0.546875 -9.40625 L 0.734375 -9.40625 C 1.203125 -9.40625 1.546875 -9.359375 1.546875 -8.65625 L 1.546875 -0.96875 C 1.546875 -0.453125 1.171875 -0.421875 0.78125 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.34375 -0.015625 L 3.34375 -0.421875 L 3.03125 -0.421875 C 2.65625 -0.421875 2.34375 -0.453125 2.34375 -0.953125 L 2.34375 -9.96875 Z M 0.546875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 1.6875 -4.5625 L 1.671875 -4.5625 C 1.671875 -5.9375 1.71875 -7.484375 2.78125 -8.546875 C 3.1875 -8.953125 3.6875 -9.171875 4.234375 -9.171875 C 4.6875 -9.171875 5.21875 -9 5.484375 -8.578125 C 5.15625 -8.578125 4.78125 -8.484375 4.78125 -8.03125 C 4.78125 -7.75 4.984375 -7.4375 5.328125 -7.4375 C 5.640625 -7.4375 5.890625 -7.671875 5.90625 -8 L 5.90625 -8.046875 C 5.90625 -9 5.125 -9.515625 4.15625 -9.515625 C 1.796875 -9.515625 0.609375 -6.71875 0.609375 -4.6875 C 0.609375 -3.015625 0.796875 -0.609375 2.625 0.09375 C 2.890625 0.203125 3.171875 0.25 3.453125 0.25 C 4.640625 0.25 5.59375 -0.625 6 -1.65625 C 6.171875 -2.0625 6.203125 -2.53125 6.203125 -2.96875 C 6.203125 -4.40625 5.25 -6.078125 3.578125 -6.078125 C 2.78125 -6.078125 1.921875 -5.53125 1.6875 -4.5625 Z M 1.703125 -3.15625 L 1.703125 -3.265625 C 1.703125 -4.265625 2.09375 -5.828125 3.515625 -5.828125 L 3.625 -5.828125 C 5.125 -5.578125 5.140625 -3.953125 5.140625 -2.8125 C 5.140625 -1.84375 5.0625 -0.125 3.421875 -0.125 L 3.34375 -0.125 C 2.09375 -0.21875 1.796875 -1.65625 1.71875 -2.71875 C 1.71875 -2.875 1.71875 -3.015625 1.703125 -3.15625 Z M 1.703125 -3.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 1.78125 -1.28125 C 1.46875 -1.21875 1.25 -0.953125 1.25 -0.65625 C 1.25 -0.328125 1.515625 -0.015625 1.875 -0.015625 C 2.234375 -0.015625 2.53125 -0.296875 2.53125 -0.640625 C 2.53125 -0.96875 2.25 -1.296875 1.890625 -1.296875 C 1.84375 -1.296875 1.828125 -1.296875 1.78125 -1.28125 Z M 1.78125 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 0.71875 -9.8125 L 0.71875 -9.40625 L 1.125 -9.40625 C 1.578125 -9.40625 2 -9.359375 2 -8.8125 C 2 -8.703125 1.984375 -8.625 1.984375 -8.53125 L 1.984375 -1.4375 C 1.984375 -0.546875 1.328125 -0.421875 0.71875 -0.421875 L 0.71875 -0.015625 L 3.5625 -0.015625 L 3.5625 -0.421875 C 2.984375 -0.421875 2.296875 -0.5 2.296875 -1.453125 L 2.3125 -9.359375 C 2.34375 -9.25 2.375 -9.140625 2.421875 -9.015625 L 2.625 -8.484375 C 3.625 -5.84375 4.578125 -3.171875 5.59375 -0.53125 L 5.71875 -0.1875 C 5.75 -0.09375 5.8125 -0.03125 5.90625 -0.015625 C 6.109375 -0.015625 6.171875 -0.34375 6.234375 -0.515625 C 7.21875 -3.25 8.328125 -5.953125 9.28125 -8.703125 C 9.375 -8.953125 9.5 -9.1875 9.546875 -9.453125 L 9.5625 -1 C 9.5625 -0.46875 9.140625 -0.421875 8.65625 -0.421875 L 8.3125 -0.421875 L 8.3125 -0.015625 L 11.796875 -0.015625 L 11.796875 -0.421875 L 11.4375 -0.421875 C 10.953125 -0.421875 10.515625 -0.46875 10.515625 -1 C 10.515625 -1.109375 10.53125 -1.203125 10.53125 -1.296875 L 10.53125 -8.515625 C 10.53125 -8.609375 10.515625 -8.71875 10.515625 -8.828125 C 10.515625 -9.359375 10.9375 -9.421875 11.359375 -9.421875 C 11.515625 -9.421875 11.65625 -9.40625 11.796875 -9.40625 L 11.796875 -9.8125 L 9.671875 -9.8125 L 9.453125 -9.765625 L 9.34375 -9.5625 L 6.265625 -1.296875 L 6.234375 -1.296875 L 3.171875 -9.5625 L 3.0625 -9.765625 L 2.84375 -9.8125 Z M 0.71875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 0.609375 -6.15625 L 0.609375 -5.75 L 0.765625 -5.75 C 1.203125 -5.75 1.546875 -5.6875 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.4375 1.15625 -0.421875 0.75 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.234375 -0.015625 L 3.234375 -0.421875 L 3 -0.421875 C 2.671875 -0.421875 2.34375 -0.453125 2.34375 -0.921875 L 2.34375 -6.3125 Z M 1.640625 -9.46875 C 1.296875 -9.40625 1.109375 -9.125 1.109375 -8.828125 C 1.109375 -8.546875 1.328125 -8.203125 1.71875 -8.203125 C 2.109375 -8.203125 2.375 -8.5 2.375 -8.828125 C 2.375 -9.15625 2.125 -9.484375 1.765625 -9.484375 C 1.71875 -9.484375 1.671875 -9.46875 1.640625 -9.46875 Z M 1.640625 -9.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 1.09375 -7.4375 C 1.375 -8.296875 1.96875 -9.109375 3.0625 -9.109375 C 4.28125 -9.109375 5.046875 -8.015625 5.046875 -6.84375 L 5.046875 -6.65625 C 4.875 -4.71875 3.265625 -3.34375 2.109375 -1.984375 C 1.640625 -1.484375 0.671875 -0.53125 0.671875 -0.171875 L 0.671875 -0.015625 L 5.78125 -0.015625 L 6.140625 -2.3125 L 5.859375 -2.3125 C 5.734375 -1.65625 5.765625 -0.953125 5.171875 -0.953125 C 4.78125 -0.953125 4.375 -0.921875 3.96875 -0.921875 L 1.515625 -0.921875 C 2.28125 -1.671875 3.046875 -2.46875 3.828125 -3.21875 C 4.8125 -4.125 6.140625 -5.203125 6.140625 -6.71875 C 6.140625 -8.5625 4.734375 -9.515625 3.171875 -9.515625 L 3.03125 -9.515625 C 1.75 -9.375 0.671875 -8.25 0.671875 -6.90625 C 0.671875 -6.5625 0.796875 -6.1875 1.3125 -6.1875 C 1.671875 -6.1875 1.96875 -6.4375 1.96875 -6.796875 C 1.96875 -7.125 1.71875 -7.453125 1.3125 -7.453125 C 1.25 -7.453125 1.15625 -7.4375 1.09375 -7.4375 Z M 1.09375 -7.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 3.234375 -9.515625 C 0.65625 -9.234375 0.609375 -6.03125 0.609375 -4.65625 L 0.609375 -4.5 C 0.609375 -3.1875 0.703125 -1.609375 1.578125 -0.609375 C 2.015625 -0.09375 2.71875 0.25 3.40625 0.25 L 3.578125 0.25 C 6.03125 0.015625 6.203125 -2.9375 6.203125 -4.765625 C 6.203125 -6.0625 6.078125 -7.578125 5.296875 -8.59375 C 4.84375 -9.15625 4.125 -9.53125 3.40625 -9.53125 C 3.359375 -9.53125 3.28125 -9.515625 3.234375 -9.515625 Z M 1.609375 -3.765625 C 1.5625 -4.15625 1.578125 -4.71875 1.578125 -5.359375 C 1.578125 -7.078125 1.75 -9.25 3.40625 -9.25 C 5.109375 -9.25 5.203125 -6.984375 5.203125 -5.546875 L 5.203125 -5.03125 C 5.203125 -4.421875 5.203125 -3.796875 5.171875 -3.1875 C 5.15625 -2.0625 5.046875 -0.5625 3.875 -0.09375 C 3.71875 -0.046875 3.5625 -0.015625 3.40625 -0.015625 C 1.640625 -0.015625 1.71875 -2.5625 1.609375 -3.765625 Z M 1.609375 -3.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 1.3125 -8.59375 L 1.3125 -8.1875 C 1.921875 -8.1875 2.53125 -8.296875 3.078125 -8.59375 L 3.078125 -1.03125 C 3.078125 -0.484375 2.546875 -0.40625 2.015625 -0.40625 C 1.796875 -0.40625 1.5625 -0.421875 1.375 -0.421875 L 1.375 -0.015625 L 5.671875 -0.015625 L 5.671875 -0.421875 C 5.453125 -0.421875 5.21875 -0.40625 4.984375 -0.40625 C 4.453125 -0.40625 3.953125 -0.484375 3.953125 -1.015625 L 3.953125 -9.3125 C 3.953125 -9.375 3.9375 -9.515625 3.8125 -9.515625 C 3.765625 -9.515625 3.734375 -9.5 3.703125 -9.484375 L 3.5625 -9.34375 C 2.90625 -8.78125 2.125 -8.59375 1.3125 -8.59375 Z M 1.3125 -8.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 5.125 -4.71875 L 5.140625 -4.71875 C 5.140625 -3.234375 5.125 -1.265625 3.71875 -0.40625 C 3.40625 -0.203125 3.078125 -0.125 2.734375 -0.125 C 2.234375 -0.125 1.65625 -0.265625 1.34375 -0.6875 L 1.4375 -0.6875 C 1.765625 -0.6875 2.03125 -0.875 2.03125 -1.234375 C 2.03125 -1.515625 1.8125 -1.828125 1.484375 -1.828125 C 1.1875 -1.828125 0.9375 -1.609375 0.90625 -1.296875 L 0.90625 -1.203125 C 0.90625 -0.203125 1.90625 0.25 2.765625 0.25 C 5.1875 0.25 6.203125 -2.609375 6.203125 -4.8125 C 6.203125 -6.40625 5.984375 -8.625 4.25 -9.359375 C 3.984375 -9.46875 3.71875 -9.53125 3.421875 -9.53125 C 1.734375 -9.53125 0.609375 -7.890625 0.609375 -6.3125 C 0.609375 -4.875 1.53125 -3.203125 3.234375 -3.203125 C 4.109375 -3.203125 4.921875 -3.828125 5.125 -4.71875 Z M 5.09375 -6.375 C 5.09375 -6.203125 5.109375 -6.03125 5.109375 -5.875 C 5.046875 -4.890625 4.625 -3.453125 3.328125 -3.453125 C 2.75 -3.453125 2.359375 -3.765625 2.046875 -4.21875 C 1.6875 -4.796875 1.671875 -5.5 1.671875 -6.140625 L 1.671875 -6.296875 C 1.671875 -7.25 1.703125 -8.453125 2.6875 -8.984375 C 2.890625 -9.09375 3.171875 -9.171875 3.421875 -9.171875 C 4.890625 -9.171875 5.09375 -7.203125 5.09375 -6.484375 Z M 5.09375 -6.375 "/>
|
||||
</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 3.4375 -8.5 L 3.4375 -0.890625 L 1.859375 -0.890625 C 1.546875 -0.890625 1.375 -0.734375 1.375 -0.4375 C 1.375 -0.171875 1.546875 -0.015625 1.859375 -0.015625 L 6.734375 -0.015625 C 6.984375 -0.046875 7.078125 -0.25 7.078125 -0.46875 C 7.078125 -0.71875 6.921875 -0.90625 6.59375 -0.90625 C 6.5 -0.90625 6.40625 -0.890625 6.328125 -0.890625 L 5.1875 -0.890625 L 5.1875 -9.703125 C 5.1875 -10.0625 4.9375 -10.109375 4.6875 -10.109375 C 4.265625 -10.109375 4.046875 -9.734375 3.703125 -9.546875 C 3.140625 -9.25 2.5 -9.15625 1.859375 -9.140625 C 1.59375 -9.140625 1.296875 -9.109375 1.296875 -8.671875 C 1.296875 -8.390625 1.484375 -8.25 1.796875 -8.25 C 2.359375 -8.296875 2.890625 -8.328125 3.4375 -8.5 Z M 3.4375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.65625 -8.609375 L 4.65625 -0.4375 C 4.65625 -0.171875 4.8125 -0.015625 5.109375 -0.015625 L 6 -0.015625 C 6.4375 -0.015625 6.46875 -0.265625 6.46875 -0.5 L 6.46875 -8.609375 C 7.609375 -8.609375 8.765625 -8.546875 9.90625 -8.546875 L 10.078125 -8.546875 C 10.5 -8.546875 10.546875 -8.796875 10.546875 -9.015625 L 10.546875 -9.3125 C 10.546875 -9.5 10.515625 -9.78125 10.125 -9.78125 L 1.34375 -9.78125 C 1.265625 -9.78125 1.171875 -9.796875 1.078125 -9.796875 C 0.765625 -9.796875 0.59375 -9.625 0.59375 -9.328125 L 0.59375 -9.03125 C 0.59375 -8.75 0.640625 -8.53125 1.140625 -8.53125 C 1.265625 -8.53125 1.40625 -8.546875 1.53125 -8.5625 L 1.984375 -8.5625 C 2.125 -8.5625 2.28125 -8.5625 2.4375 -8.578125 L 3.1875 -8.578125 C 3.671875 -8.59375 4.171875 -8.609375 4.65625 -8.609375 Z M 4.65625 -8.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.21875 C 2.75 -5.328125 2.75 -5.421875 2.75 -5.515625 L 2.75 -6.09375 C 2.75 -6.484375 2.515625 -6.546875 2.25 -6.546875 L 1.5 -6.546875 C 1.265625 -6.546875 1.0625 -6.40625 1.0625 -6.0625 C 1.0625 -5.984375 1.078125 -5.90625 1.078125 -5.84375 L 1.078125 -0.546875 C 1.078125 -0.296875 1.109375 -0.015625 1.5 -0.015625 L 2.3125 -0.015625 C 2.546875 -0.015625 2.8125 -0.078125 2.8125 -0.4375 L 2.8125 -2.765625 C 2.8125 -3.25 2.8125 -3.71875 3.0625 -4.140625 C 3.46875 -4.859375 4.265625 -5.234375 5.0625 -5.3125 L 5.15625 -5.3125 C 5.3125 -5.3125 5.359375 -5.34375 5.359375 -5.515625 L 5.359375 -6.375 C 5.359375 -6.546875 5.3125 -6.609375 5.140625 -6.609375 C 4.21875 -6.609375 3.0625 -5.921875 2.765625 -5.21875 Z M 2.765625 -5.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 2.015625 -9.828125 C 1.8125 -9.78125 1.71875 -9.609375 1.71875 -9.375 L 1.71875 -8.5 C 1.71875 -8.265625 1.828125 -8.03125 2.109375 -8.03125 L 3.03125 -8.03125 C 3.296875 -8.03125 3.53125 -8.109375 3.53125 -8.453125 L 3.53125 -9.40625 C 3.53125 -9.765625 3.296875 -9.84375 3.0625 -9.84375 L 2.203125 -9.84375 C 2.140625 -9.84375 2.078125 -9.84375 2.015625 -9.828125 Z M 5.21875 -9.828125 C 5 -9.78125 4.9375 -9.625 4.9375 -9.40625 L 4.9375 -8.46875 C 4.9375 -8.1875 5.078125 -8.03125 5.359375 -8.03125 L 6.25 -8.03125 C 6.515625 -8.03125 6.734375 -8.125 6.734375 -8.5 L 6.734375 -9.296875 C 6.734375 -9.625 6.640625 -9.84375 6.28125 -9.84375 L 5.40625 -9.84375 C 5.328125 -9.84375 5.28125 -9.84375 5.21875 -9.828125 Z M 5.21875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 1.421875 -6.484375 L 0.953125 -6.484375 C 0.640625 -6.484375 0.4375 -6.359375 0.4375 -6.03125 C 0.4375 -5.75 0.609375 -5.609375 0.953125 -5.609375 L 1.421875 -5.609375 L 1.421875 -0.84375 C 1.421875 -0.75 1.40625 -0.640625 1.40625 -0.53125 C 1.40625 -0.265625 1.484375 -0.015625 1.84375 -0.015625 L 2.65625 -0.015625 C 3.0625 -0.015625 3.15625 -0.234375 3.15625 -0.546875 L 3.15625 -5.609375 L 4.078125 -5.609375 C 4.140625 -5.609375 4.234375 -5.59375 4.296875 -5.59375 C 4.59375 -5.59375 4.75 -5.796875 4.75 -6.046875 C 4.75 -6.328125 4.59375 -6.484375 4.28125 -6.484375 L 3.125 -6.484375 L 3.125 -8.234375 C 3.125 -8.875 3.265625 -9.46875 4.265625 -9.46875 C 4.6875 -9.46875 5.078125 -9.34375 5.390625 -9.0625 C 5.453125 -9.015625 5.515625 -8.984375 5.578125 -8.984375 L 5.609375 -8.984375 C 5.6875 -9.015625 5.703125 -9.109375 5.703125 -9.1875 L 5.703125 -10.125 C 5.65625 -10.40625 4.515625 -10.40625 4.21875 -10.40625 C 3.40625 -10.40625 2.578125 -10.234375 2.015625 -9.65625 C 1.625 -9.234375 1.46875 -8.65625 1.421875 -8.109375 Z M 7.71875 -5.609375 L 8.640625 -5.609375 C 8.703125 -5.609375 8.796875 -5.59375 8.859375 -5.59375 C 9.15625 -5.59375 9.3125 -5.796875 9.3125 -6.046875 C 9.3125 -6.328125 9.15625 -6.484375 8.84375 -6.484375 L 7.6875 -6.484375 L 7.6875 -7.875 C 7.6875 -8.015625 7.671875 -8.15625 7.671875 -8.3125 C 7.671875 -8.921875 7.90625 -9.484375 8.828125 -9.484375 C 9.171875 -9.484375 9.515625 -9.375 9.765625 -9.203125 C 9.875 -9.15625 10.015625 -8.984375 10.140625 -8.984375 C 10.28125 -8.984375 10.28125 -9.125 10.28125 -9.203125 L 10.28125 -10.046875 C 10.28125 -10.390625 9.53125 -10.34375 9.1875 -10.390625 L 8.96875 -10.390625 C 7.953125 -10.390625 6.78125 -10.25 6.25 -9.1875 C 6.015625 -8.6875 5.984375 -8.15625 5.984375 -7.625 L 5.984375 -0.484375 C 5.984375 -0.1875 6.09375 0 6.515625 0 C 6.65625 0 6.8125 -0.015625 6.953125 -0.015625 C 7.046875 -0.015625 7.140625 0 7.234375 0 C 7.46875 0 7.71875 -0.09375 7.71875 -0.421875 Z M 7.71875 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 2.15625 -3 L 6.5625 -3 C 6.9375 -3 7.0625 -3.203125 7.0625 -3.484375 C 7.0625 -5.140625 6.375 -6.6875 3.9375 -6.6875 C 3 -6.6875 2 -6.46875 1.3125 -5.796875 C 0.65625 -5.140625 0.453125 -4.171875 0.453125 -3.28125 C 0.453125 -2.5 0.609375 -1.671875 1.125 -1.0625 C 1.84375 -0.140625 3.0625 0.109375 4.15625 0.109375 C 4.984375 0.109375 5.828125 -0.0625 6.5625 -0.40625 C 6.6875 -0.453125 6.921875 -0.53125 6.953125 -0.671875 L 6.953125 -0.734375 C 6.953125 -1.03125 6.9375 -1.65625 6.78125 -1.703125 L 6.75 -1.703125 C 6.625 -1.703125 6.484375 -1.5625 6.390625 -1.484375 C 5.78125 -1.046875 4.984375 -0.796875 4.21875 -0.796875 C 3.234375 -0.796875 2.15625 -1.3125 2.15625 -2.890625 Z M 2.171875 -3.796875 C 2.171875 -4.859375 2.828125 -5.765625 3.9375 -5.765625 C 5.28125 -5.765625 5.4375 -4.6875 5.515625 -3.796875 Z M 2.171875 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.375 -10.234375 C 1.125 -10.234375 1.078125 -9.90625 1.078125 -9.734375 L 1.078125 -0.78125 C 1.078125 -0.703125 1.0625 -0.609375 1.0625 -0.5 C 1.0625 -0.265625 1.171875 -0.046875 1.40625 -0.015625 L 2.265625 -0.015625 C 2.75 -0.015625 2.8125 -0.21875 2.8125 -0.484375 L 2.8125 -9.484375 C 2.8125 -9.5625 2.828125 -9.65625 2.828125 -9.75 C 2.828125 -10 2.734375 -10.234375 2.46875 -10.25 L 1.59375 -10.25 C 1.515625 -10.25 1.453125 -10.25 1.375 -10.234375 Z M 1.375 -10.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 2.84375 -6.6875 C 1.84375 -6.578125 0.546875 -6.34375 0.546875 -4.703125 C 0.546875 -3.59375 1.5 -2.9375 2.5 -2.71875 C 3.25 -2.5625 4.640625 -2.53125 4.640625 -1.703125 C 4.640625 -0.96875 3.796875 -0.890625 3.328125 -0.890625 C 2.4375 -0.890625 1.671875 -1.1875 0.984375 -1.828125 C 0.953125 -1.859375 0.859375 -1.9375 0.78125 -1.9375 C 0.609375 -1.9375 0.625 -1.65625 0.609375 -1.5 C 0.578125 -1.25 0.453125 -0.96875 0.453125 -0.703125 C 0.453125 -0.5625 0.578125 -0.53125 0.6875 -0.453125 C 1.515625 -0.09375 2.421875 0.125 3.328125 0.125 C 4.484375 0.125 5.9375 -0.21875 5.9375 -2 C 5.9375 -3.015625 5.109375 -3.75 4.171875 -4.015625 C 3.734375 -4.125 3.265625 -4.1875 2.828125 -4.265625 C 2.4375 -4.34375 1.84375 -4.515625 1.84375 -5 L 1.84375 -5.078125 C 1.96875 -5.71875 2.625 -5.75 3.140625 -5.75 C 3.90625 -5.75 4.5625 -5.53125 5.15625 -5.09375 C 5.203125 -5.0625 5.265625 -5 5.328125 -5 C 5.53125 -5 5.640625 -5.875 5.640625 -6.0625 C 5.640625 -6.265625 5.21875 -6.359375 4.984375 -6.421875 C 4.453125 -6.609375 3.890625 -6.6875 3.3125 -6.6875 Z M 2.84375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 5.671875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 3.78125 -6.6875 C 3.578125 -6.65625 3.359375 -6.640625 3.140625 -6.609375 C 2.515625 -6.5 1.890625 -6.25 1.421875 -5.8125 C 0.765625 -5.171875 0.546875 -4.21875 0.546875 -3.3125 C 0.546875 -2.4375 0.703125 -1.53125 1.3125 -0.859375 C 2.015625 -0.09375 3.109375 0.109375 4.109375 0.109375 C 5.015625 0.109375 5.9375 -0.078125 6.734375 -0.5 C 6.828125 -0.546875 6.859375 -0.609375 6.859375 -0.6875 C 6.859375 -1.03125 6.8125 -1.71875 6.65625 -1.734375 L 6.640625 -1.734375 C 6.484375 -1.734375 6.171875 -1.4375 5.953125 -1.3125 C 5.40625 -1 4.78125 -0.859375 4.15625 -0.859375 C 2.53125 -0.859375 2.3125 -2.15625 2.3125 -3.234375 C 2.3125 -4.375 2.484375 -5.703125 4.15625 -5.703125 C 4.953125 -5.703125 5.5 -5.5625 6.203125 -5.015625 C 6.28125 -4.96875 6.375 -4.859375 6.46875 -4.859375 C 6.625 -4.859375 6.625 -5.09375 6.640625 -5.171875 L 6.734375 -5.6875 C 6.734375 -5.765625 6.765625 -5.84375 6.765625 -5.90625 C 6.765625 -6.203125 5.703125 -6.53125 5.296875 -6.59375 C 4.953125 -6.671875 4.609375 -6.6875 4.265625 -6.6875 Z M 3.78125 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 2.796875 -5.515625 L 2.796875 -9.765625 C 2.796875 -10.078125 2.703125 -10.265625 2.25 -10.265625 C 2.09375 -10.265625 1.9375 -10.25 1.78125 -10.25 C 1.6875 -10.25 1.609375 -10.265625 1.515625 -10.265625 C 1.296875 -10.265625 1.0625 -10.140625 1.0625 -9.859375 L 1.0625 -0.53125 C 1.0625 -0.296875 1.078125 -0.109375 1.375 -0.015625 L 2.3125 -0.015625 C 2.671875 -0.015625 2.828125 -0.171875 2.828125 -0.53125 L 2.828125 -3.5625 C 2.828125 -4.515625 3.3125 -5.6875 4.53125 -5.6875 C 5.5 -5.6875 5.640625 -5.125 5.640625 -4.484375 L 5.640625 -0.515625 C 5.640625 -0.1875 5.75 -0.015625 6.078125 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.421875 -0.15625 7.421875 -0.5 C 7.421875 -0.609375 7.40625 -0.703125 7.40625 -0.78125 L 7.40625 -4.21875 C 7.40625 -4.765625 7.40625 -5.328125 7.125 -5.828125 C 6.734375 -6.53125 5.859375 -6.609375 5.15625 -6.609375 C 4.1875 -6.609375 3.390625 -6.203125 2.796875 -5.515625 Z M 2.796875 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-12">
|
||||
<path style="stroke:none;" d="M 2.40625 -1.25 C 3.34375 -2.0625 4.265625 -2.921875 5.234375 -3.703125 C 6.203125 -4.46875 7.359375 -5.4375 7.40625 -6.8125 L 7.40625 -6.921875 C 7.40625 -8.875 5.765625 -10.109375 3.90625 -10.109375 C 2.6875 -10.109375 1.5625 -9.609375 0.96875 -8.515625 C 0.859375 -8.34375 0.703125 -8.09375 0.703125 -7.953125 L 0.703125 -7.921875 C 0.703125 -7.71875 1.3125 -7.125 1.4375 -6.96875 C 1.46875 -6.9375 1.515625 -6.90625 1.578125 -6.90625 L 1.609375 -6.90625 C 1.734375 -6.953125 1.84375 -7.46875 1.9375 -7.703125 C 2.234375 -8.390625 2.78125 -8.953125 3.640625 -8.953125 C 4.703125 -8.953125 5.625 -8.140625 5.625 -6.90625 C 5.625 -5.65625 4.671875 -4.65625 3.8125 -3.859375 C 2.90625 -3 2.015625 -2.140625 1.140625 -1.25 C 0.984375 -1.109375 0.796875 -0.984375 0.796875 -0.78125 C 0.796875 -0.703125 0.8125 -0.640625 0.8125 -0.59375 L 0.8125 -0.484375 C 0.8125 -0.140625 0.984375 -0.015625 1.296875 -0.015625 L 6.9375 -0.015625 C 7.171875 -0.015625 7.40625 -0.09375 7.40625 -0.4375 L 7.40625 -0.78125 C 7.40625 -1.015625 7.359375 -1.28125 6.984375 -1.28125 L 6.78125 -1.28125 C 6.484375 -1.28125 6.1875 -1.265625 5.875 -1.265625 L 4.546875 -1.265625 C 3.828125 -1.265625 3.125 -1.25 2.40625 -1.25 Z M 2.40625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-13">
|
||||
<path style="stroke:none;" d="M 4.5625 -5.609375 C 4.15625 -5.09375 3.71875 -4.609375 3.28125 -4.109375 C 2.453125 -3.109375 1.640625 -2.140625 0.796875 -1.171875 C 0.65625 -1 0.453125 -0.84375 0.453125 -0.59375 L 0.453125 -0.46875 C 0.453125 -0.171875 0.578125 -0.015625 0.953125 -0.015625 L 5.921875 -0.015625 C 6 -0.015625 6.0625 0 6.15625 0 C 6.578125 0 6.625 -0.265625 6.625 -0.53125 C 6.625 -0.75 6.5625 -1 6.203125 -1 L 6.09375 -1 C 4.890625 -1 3.703125 -0.953125 2.5 -0.953125 C 2.84375 -1.375 3.21875 -1.796875 3.578125 -2.203125 L 6.234375 -5.359375 C 6.40625 -5.546875 6.59375 -5.703125 6.59375 -6.015625 C 6.59375 -6.40625 6.375 -6.484375 6.109375 -6.484375 L 1.171875 -6.484375 C 0.78125 -6.484375 0.6875 -6.28125 0.6875 -6.03125 C 0.6875 -5.78125 0.78125 -5.5625 1.109375 -5.5625 L 1.21875 -5.5625 C 1.390625 -5.5625 1.578125 -5.5625 1.75 -5.578125 L 1.921875 -5.578125 C 2.140625 -5.578125 2.359375 -5.5625 2.5625 -5.5625 C 2.796875 -5.5625 3.015625 -5.59375 3.234375 -5.59375 L 3.625 -5.59375 C 3.9375 -5.59375 4.25 -5.609375 4.5625 -5.609375 Z M 4.5625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<path style="stroke:none;" d="M 2.8125 -5.875 L 2.8125 -6.03125 C 2.8125 -6.46875 2.53125 -6.484375 2.265625 -6.484375 L 1.59375 -6.484375 C 1.34375 -6.484375 1.078125 -6.421875 1.078125 -6.046875 L 1.078125 2.421875 C 1.109375 2.671875 1.3125 2.765625 1.53125 2.765625 L 2.34375 2.765625 C 2.5625 2.765625 2.84375 2.734375 2.84375 2.359375 L 2.84375 -0.59375 C 3.328125 -0.140625 3.984375 0.109375 4.640625 0.109375 C 5.609375 0.109375 6.703125 -0.125 7.296875 -0.96875 C 7.78125 -1.609375 7.921875 -2.5 7.921875 -3.265625 C 7.921875 -4.75 7.484375 -6.609375 5.09375 -6.609375 C 4.28125 -6.609375 3.453125 -6.390625 2.8125 -5.875 Z M 6.140625 -2.953125 C 6.03125 -1.9375 5.734375 -0.796875 4.203125 -0.796875 C 3.703125 -0.796875 2.84375 -1.15625 2.84375 -1.703125 L 2.84375 -4.921875 C 2.890625 -5.3125 3.78125 -5.640625 4.359375 -5.640625 C 5.84375 -5.640625 6.15625 -4.3125 6.15625 -3.234375 C 6.15625 -3.140625 6.15625 -3.046875 6.140625 -2.953125 Z M 6.140625 -2.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-15">
|
||||
<path style="stroke:none;" d="M 1.46875 -6.484375 L 0.75 -6.484375 C 0.46875 -6.484375 0.28125 -6.3125 0.28125 -6.03125 C 0.28125 -5.765625 0.453125 -5.609375 0.71875 -5.609375 L 1.4375 -5.609375 L 1.4375 -1.828125 C 1.4375 -0.890625 1.671875 0.109375 2.890625 0.109375 C 3.703125 0.109375 4.5625 -0.046875 5.265625 -0.421875 C 5.34375 -0.453125 5.46875 -0.5 5.46875 -0.609375 L 5.46875 -0.640625 C 5.46875 -0.828125 5.328125 -1.34375 5.171875 -1.34375 C 5.046875 -1.34375 4.875 -1.1875 4.734375 -1.109375 C 4.453125 -0.953125 4.109375 -0.859375 3.796875 -0.859375 C 3.234375 -0.859375 3.140625 -1.390625 3.140625 -2.140625 L 3.140625 -5.609375 L 4.734375 -5.609375 C 5 -5.609375 5.21875 -5.75 5.21875 -6.03125 C 5.21875 -6.34375 5.03125 -6.484375 4.71875 -6.484375 L 3.140625 -6.484375 L 3.140625 -7.84375 C 3.140625 -8.1875 3.015625 -8.34375 2.609375 -8.34375 C 2.515625 -8.34375 2.390625 -8.328125 2.296875 -8.328125 C 2.1875 -8.328125 2.09375 -8.34375 2 -8.34375 C 1.71875 -8.34375 1.46875 -8.28125 1.46875 -7.84375 Z M 1.46875 -6.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.8125 -6.75 L 2.8125 -0.765625 L 1.84375 -0.765625 C 1.75 -0.765625 1.671875 -0.78125 1.578125 -0.78125 C 1.28125 -0.78125 1.140625 -0.59375 1.140625 -0.375 C 1.140625 -0.15625 1.296875 -0.015625 1.578125 -0.015625 L 5.34375 -0.015625 C 5.609375 -0.015625 5.765625 -0.15625 5.765625 -0.375 C 5.765625 -0.625 5.59375 -0.765625 5.328125 -0.765625 L 4.21875 -0.765625 L 4.21875 -7.703125 C 4.21875 -8.015625 4 -8.09375 3.78125 -8.09375 C 3.515625 -8.09375 3.46875 -7.984375 3.3125 -7.875 C 2.8125 -7.421875 2.109375 -7.34375 1.46875 -7.3125 C 1.25 -7.296875 1.0625 -7.203125 1.0625 -6.9375 C 1.0625 -6.734375 1.1875 -6.5625 1.40625 -6.546875 C 1.875 -6.546875 2.359375 -6.625 2.8125 -6.75 Z M 2.8125 -6.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 1.28125 -1.328125 C 1.203125 -1.296875 1.1875 -1.21875 1.1875 -1.140625 L 1.1875 -0.21875 C 1.1875 -0.0625 1.25 -0.015625 1.40625 -0.015625 L 2.140625 -0.015625 C 2.203125 -0.015625 2.265625 0 2.3125 0 C 2.46875 0 2.515625 -0.078125 2.515625 -0.203125 L 2.515625 -1.140625 C 2.515625 -1.296875 2.46875 -1.34375 2.3125 -1.34375 L 1.578125 -1.34375 C 1.515625 -1.34375 1.453125 -1.34375 1.40625 -1.34375 C 1.34375 -1.34375 1.3125 -1.34375 1.28125 -1.328125 Z M 1.28125 -1.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 3.40625 -8.5625 C 2.703125 -8.46875 2.046875 -8.40625 1.484375 -7.9375 C 0.953125 -7.5 0.734375 -6.796875 0.734375 -6.140625 C 0.734375 -4.921875 1.75 -4.0625 2.875 -3.78125 C 3.859375 -3.53125 5.4375 -3.484375 5.4375 -2.203125 C 5.4375 -1.140625 4.546875 -0.890625 3.734375 -0.890625 C 2.8125 -0.890625 1.859375 -1.21875 1.15625 -1.765625 C 1.09375 -1.8125 1.015625 -1.921875 0.921875 -1.921875 C 0.78125 -1.921875 0.78125 -1.734375 0.75 -1.640625 C 0.703125 -1.34375 0.59375 -1 0.59375 -0.734375 C 0.59375 -0.640625 0.65625 -0.59375 0.734375 -0.5625 L 0.984375 -0.421875 C 1.828125 0.015625 2.8125 0.25 3.765625 0.25 C 5.15625 0.25 6.71875 -0.28125 6.71875 -2.3125 C 6.71875 -3.53125 5.828125 -4.5 4.703125 -4.84375 C 3.75 -5.125 2.015625 -5.125 2.015625 -6.3125 L 2.015625 -6.34375 C 2.015625 -7.359375 3.0625 -7.5 3.734375 -7.5 C 4.484375 -7.5 5.109375 -7.28125 5.71875 -6.78125 C 5.765625 -6.734375 5.859375 -6.640625 5.9375 -6.640625 C 6.109375 -6.640625 6.234375 -7.609375 6.234375 -7.8125 C 6.234375 -8.015625 5.765625 -8.15625 5.53125 -8.265625 C 4.921875 -8.5 4.265625 -8.5625 3.609375 -8.5625 Z M 3.40625 -8.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 4.65625 -0.53125 L 4.65625 -0.390625 C 4.65625 -0.046875 4.921875 0 5.140625 0 C 5.21875 0 5.3125 -0.015625 5.40625 -0.015625 L 5.5625 -0.015625 C 5.78125 -0.015625 6.015625 -0.046875 6.015625 -0.484375 L 6.015625 -4.859375 C 6.015625 -4.921875 6.03125 -5 6.03125 -5.0625 C 6.03125 -5.421875 5.765625 -5.484375 5.53125 -5.484375 L 5.0625 -5.484375 C 4.75 -5.484375 4.625 -5.328125 4.625 -5.03125 L 4.625 -2.390625 C 4.625 -2.234375 4.640625 -2.078125 4.640625 -1.90625 C 4.640625 -1.046875 4.03125 -0.53125 3.171875 -0.53125 L 3.0625 -0.53125 C 2.625 -0.53125 2.28125 -0.578125 2.28125 -1.40625 L 2.28125 -5.1875 C 2.25 -5.359375 2.078125 -5.484375 1.90625 -5.484375 L 1.34375 -5.484375 C 1.046875 -5.484375 0.890625 -5.328125 0.890625 -5.015625 C 0.890625 -4.9375 0.890625 -4.859375 0.890625 -4.78125 L 0.890625 -1.5 C 0.890625 -1.171875 0.90625 -0.84375 1.046875 -0.53125 C 1.359375 0.046875 2.125 0.109375 2.703125 0.109375 C 3.40625 0.109375 4.09375 -0.0625 4.65625 -0.53125 Z M 4.65625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 3.078125 -5.671875 C 1.859375 -5.5 0.4375 -5.171875 0.4375 -2.71875 C 0.4375 -1.984375 0.609375 -1.203125 1.109375 -0.671875 C 1.671875 -0.046875 2.578125 0.109375 3.375 0.109375 C 4.09375 0.109375 4.828125 -0.03125 5.46875 -0.375 C 5.5625 -0.421875 5.59375 -0.484375 5.59375 -0.5625 C 5.59375 -0.75 5.546875 -0.9375 5.53125 -1.125 C 5.53125 -1.203125 5.53125 -1.34375 5.421875 -1.375 L 5.390625 -1.375 C 5.265625 -1.375 5 -1.140625 4.8125 -1.046875 C 4.40625 -0.828125 3.9375 -0.734375 3.484375 -0.703125 L 3.40625 -0.703125 C 2.375 -0.703125 1.828125 -1.296875 1.828125 -2.71875 C 1.828125 -3.28125 1.84375 -3.953125 2.21875 -4.40625 C 2.515625 -4.75 2.96875 -4.859375 3.421875 -4.859375 C 4.046875 -4.859375 4.5 -4.71875 5.0625 -4.265625 C 5.109375 -4.21875 5.1875 -4.140625 5.265625 -4.140625 C 5.453125 -4.140625 5.46875 -4.65625 5.5 -4.84375 C 5.515625 -4.875 5.515625 -4.9375 5.515625 -4.984375 C 5.515625 -5.15625 4.8125 -5.453125 4.453125 -5.5625 C 4.078125 -5.65625 3.671875 -5.671875 3.28125 -5.671875 Z M 3.078125 -5.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 2.265625 -4.65625 C 2.265625 -4.703125 2.265625 -4.75 2.265625 -4.8125 L 2.265625 -8.03125 C 2.265625 -8.109375 2.265625 -8.171875 2.265625 -8.265625 C 2.265625 -8.671875 2.015625 -8.71875 1.75 -8.71875 L 1.328125 -8.71875 C 1.09375 -8.71875 0.890625 -8.625 0.890625 -8.3125 L 0.890625 -0.5 C 0.890625 -0.234375 0.9375 -0.015625 1.34375 -0.015625 L 1.796875 -0.015625 C 2.015625 -0.015625 2.28125 -0.0625 2.28125 -0.4375 L 2.28125 -2.75 C 2.28125 -3.640625 2.65625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.625 -4.75 4.625 -4.140625 4.625 -3.578125 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.859375 -0.015625 6.015625 -0.15625 6.015625 -0.484375 L 6.015625 -3.578125 C 6.015625 -4.609375 5.828125 -5.609375 4.15625 -5.609375 C 3.46875 -5.609375 2.578125 -5.234375 2.265625 -4.65625 Z M 2.265625 -4.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 1.703125 -2.28125 L 5.296875 -2.28125 C 5.609375 -2.28125 5.734375 -2.46875 5.734375 -2.765625 C 5.734375 -3.5625 5.5625 -4.53125 5 -5.0625 C 4.5 -5.515625 3.875 -5.671875 3.21875 -5.671875 C 2.46875 -5.671875 1.65625 -5.484375 1.09375 -4.9375 C 0.546875 -4.390625 0.375 -3.578125 0.375 -2.828125 C 0.375 -2.09375 0.53125 -1.3125 1.015625 -0.75 C 1.5625 -0.125 2.46875 0.109375 3.28125 0.109375 C 3.984375 0.109375 4.65625 0 5.296875 -0.28125 L 5.515625 -0.390625 C 5.59375 -0.421875 5.65625 -0.484375 5.65625 -0.578125 C 5.65625 -0.609375 5.640625 -0.640625 5.640625 -0.6875 L 5.609375 -1.09375 C 5.609375 -1.1875 5.609375 -1.359375 5.46875 -1.359375 C 5.40625 -1.359375 5.3125 -1.296875 5.265625 -1.25 C 4.734375 -0.859375 4.09375 -0.640625 3.421875 -0.640625 C 2.609375 -0.640625 1.75 -1.09375 1.703125 -2.28125 Z M 1.671875 -2.96875 C 1.734375 -3.890625 2 -4.90625 3.21875 -4.90625 C 4.34375 -4.90625 4.578125 -3.84375 4.578125 -2.96875 Z M 1.671875 -2.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.453125 2.03125 -5.5625 1.71875 -5.5625 C 1.625 -5.5625 1.53125 -5.546875 1.453125 -5.546875 L 1.296875 -5.546875 C 1.0625 -5.546875 0.890625 -5.40625 0.890625 -5.109375 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.28125 2.28125 -0.5 L 2.28125 -3.109375 C 2.359375 -3.953125 2.828125 -4.859375 3.734375 -4.859375 C 4.59375 -4.859375 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.4375 C 4.625 -0.03125 4.90625 -0.015625 5.140625 -0.015625 L 5.578125 -0.015625 C 5.84375 -0.015625 6.015625 -0.125 6.015625 -0.484375 L 6.015625 -2.015625 C 6.015625 -2.234375 6 -2.4375 6 -2.65625 C 6 -3.359375 6.109375 -4.34375 6.953125 -4.734375 C 7.109375 -4.8125 7.28125 -4.859375 7.453125 -4.859375 C 8.3125 -4.859375 8.359375 -4.25 8.359375 -3.71875 L 8.359375 -0.328125 C 8.453125 -0.03125 8.625 -0.015625 8.875 -0.015625 L 9.328125 -0.015625 C 9.671875 -0.015625 9.734375 -0.234375 9.734375 -0.46875 L 9.734375 -3.5625 C 9.734375 -4.5625 9.59375 -5.609375 7.859375 -5.609375 C 7.0625 -5.609375 6.359375 -5.1875 5.921875 -4.5625 C 5.65625 -5.375 5.015625 -5.609375 4.25 -5.609375 C 3.40625 -5.609375 2.828125 -5.3125 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 1.203125 -5.46875 C 0.953125 -5.4375 0.90625 -5.234375 0.90625 -4.96875 L 0.90625 -0.4375 C 0.90625 -0.0625 1.15625 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.046875 -0.015625 2.234375 -0.109375 2.265625 -0.3125 L 2.265625 -5.0625 C 2.265625 -5.375 2.0625 -5.5 1.78125 -5.5 C 1.6875 -5.5 1.578125 -5.484375 1.5 -5.484375 L 1.34375 -5.484375 C 1.296875 -5.484375 1.25 -5.484375 1.203125 -5.46875 Z M 1.140625 -8.578125 C 0.890625 -8.578125 0.828125 -8.296875 0.828125 -8.109375 C 0.828125 -8.03125 0.84375 -7.953125 0.84375 -7.875 L 0.84375 -7.515625 C 0.84375 -7.140625 1.09375 -7.09375 1.34375 -7.09375 L 1.890625 -7.09375 C 2.109375 -7.09375 2.328125 -7.1875 2.328125 -7.484375 L 2.328125 -8.140625 C 2.328125 -8.546875 2.09375 -8.59375 1.828125 -8.59375 L 1.28125 -8.59375 C 1.234375 -8.59375 1.1875 -8.59375 1.140625 -8.578125 Z M 1.140625 -8.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 1.21875 -5.484375 L 0.65625 -5.484375 C 0.40625 -5.484375 0.25 -5.328125 0.25 -5.109375 C 0.25 -4.84375 0.453125 -4.734375 0.734375 -4.734375 L 1.1875 -4.734375 L 1.1875 -1.515625 C 1.1875 -0.734375 1.390625 0.109375 2.40625 0.109375 C 3.0625 0.109375 3.6875 -0.046875 4.296875 -0.3125 C 4.359375 -0.34375 4.453125 -0.375 4.46875 -0.484375 C 4.46875 -0.78125 4.296875 -1.09375 4.21875 -1.09375 C 4.125 -1.09375 3.96875 -0.953125 3.859375 -0.890625 C 3.59375 -0.8125 3.34375 -0.703125 3.0625 -0.703125 C 2.53125 -0.703125 2.515625 -1.28125 2.515625 -1.75 L 2.515625 -4.734375 L 3.796875 -4.734375 C 4 -4.734375 4.25 -4.828125 4.25 -5.109375 C 4.25 -5.359375 4.0625 -5.484375 3.796875 -5.484375 L 2.515625 -5.484375 L 2.515625 -6.609375 C 2.515625 -6.84375 2.421875 -7.046875 2.109375 -7.046875 L 1.96875 -7.046875 C 1.90625 -7.046875 1.8125 -7.0625 1.71875 -7.0625 C 1.453125 -7.0625 1.21875 -6.984375 1.21875 -6.59375 Z M 1.21875 -5.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 4.375 -4.09375 L 4.390625 -4.09375 C 4.40625 -3.75 4.546875 -3.390625 4.640625 -3.0625 C 4.859375 -2.21875 5.109375 -1.375 5.375 -0.546875 C 5.53125 -0.078125 5.75 -0.015625 6.09375 -0.015625 L 6.84375 -0.015625 C 7.28125 -0.015625 7.359375 -0.265625 7.453125 -0.53125 C 7.921875 -1.953125 8.3125 -3.390625 8.75 -4.8125 C 8.78125 -4.9375 8.859375 -5.078125 8.859375 -5.21875 C 8.859375 -5.421875 8.671875 -5.484375 8.46875 -5.484375 L 8.265625 -5.484375 C 8.03125 -5.484375 7.796875 -5.46875 7.65625 -5.21875 C 7.578125 -5.03125 7.53125 -4.8125 7.46875 -4.609375 C 7.1875 -3.6875 6.890625 -2.765625 6.640625 -1.84375 C 6.546875 -1.578125 6.4375 -1.3125 6.390625 -1.046875 C 6.375 -1.140625 6.328125 -1.234375 6.3125 -1.3125 L 6.171875 -1.78125 C 5.875 -2.703125 5.59375 -3.625 5.328125 -4.546875 C 5.15625 -4.96875 5.21875 -5.484375 4.515625 -5.484375 C 4.09375 -5.484375 3.96875 -5.25 3.890625 -4.953125 C 3.609375 -4.0625 3.34375 -3.171875 3.078125 -2.28125 C 2.96875 -1.921875 2.875 -1.546875 2.734375 -1.203125 C 2.40625 -2.390625 2.046875 -3.5625 1.65625 -4.71875 C 1.53125 -5.109375 1.5 -5.484375 0.90625 -5.484375 L 0.703125 -5.484375 C 0.53125 -5.484375 0.28125 -5.46875 0.28125 -5.203125 C 0.28125 -5.078125 0.359375 -4.953125 0.375 -4.84375 L 1.671875 -0.609375 C 1.71875 -0.453125 1.75 -0.28125 1.859375 -0.171875 C 1.984375 -0.03125 2.171875 0 2.359375 0 C 2.46875 0 2.5625 -0.015625 2.65625 -0.015625 L 2.78125 -0.015625 C 3.375 -0.015625 3.421875 -0.671875 3.53125 -1.046875 C 3.734375 -1.734375 3.9375 -2.421875 4.140625 -3.109375 C 4.21875 -3.4375 4.34375 -3.765625 4.375 -4.09375 Z M 4.375 -4.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.3125 2.171875 -5.546875 1.8125 -5.546875 L 1.65625 -5.546875 C 1.578125 -5.546875 1.5 -5.5625 1.40625 -5.5625 C 1.140625 -5.5625 0.890625 -5.5 0.890625 -5.125 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.265625 2.28125 -0.5 L 2.28125 -2.5625 C 2.28125 -3.03125 2.28125 -3.453125 2.46875 -3.890625 C 2.671875 -4.40625 3.15625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.609375 -4.78125 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.875 -0.015625 6.03125 -0.171875 6.03125 -0.46875 C 6.03125 -0.546875 6.015625 -0.625 6.015625 -0.6875 L 6.015625 -3.5625 C 6.015625 -4.5625 5.859375 -5.609375 4.140625 -5.609375 L 4 -5.609375 C 3.265625 -5.5625 2.71875 -5.1875 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 2.046875 -1.09375 C 2.578125 -1.5625 3.140625 -2.078125 3.703125 -2.515625 L 4.5 -3.125 C 5.21875 -3.6875 5.96875 -4.40625 6.03125 -5.375 L 6.03125 -5.484375 C 6.03125 -7.125 4.65625 -8.09375 3.15625 -8.09375 C 2.0625 -8.09375 1.1875 -7.59375 0.703125 -6.640625 C 0.65625 -6.53125 0.578125 -6.390625 0.578125 -6.296875 L 0.578125 -6.28125 C 0.578125 -6.203125 0.640625 -6.140625 0.6875 -6.078125 L 0.96875 -5.765625 C 1.046875 -5.671875 1.15625 -5.484375 1.265625 -5.484375 C 1.40625 -5.484375 1.484375 -5.90625 1.5625 -6.078125 C 1.8125 -6.640625 2.265625 -7.0625 2.984375 -7.0625 C 3.828125 -7.0625 4.609375 -6.484375 4.609375 -5.515625 C 4.609375 -4.546875 3.9375 -3.875 3.3125 -3.265625 C 2.515625 -2.515625 1.703125 -1.78125 0.921875 -1.046875 C 0.8125 -0.9375 0.65625 -0.84375 0.65625 -0.671875 C 0.65625 -0.328125 0.671875 -0.015625 1.171875 -0.015625 L 5.625 -0.015625 C 6 -0.015625 6.03125 -0.265625 6.03125 -0.484375 L 6.03125 -0.59375 C 6.03125 -0.84375 6.015625 -1.125 5.609375 -1.125 L 4.84375 -1.125 C 3.90625 -1.125 2.96875 -1.125 2.046875 -1.09375 Z M 2.046875 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 3.09375 -5.671875 C 2.375 -5.578125 1.6875 -5.46875 1.140625 -4.953125 C 0.53125 -4.375 0.375 -3.5 0.375 -2.71875 C 0.375 -1.96875 0.53125 -1.15625 1.078125 -0.625 C 1.703125 0 2.625 0.109375 3.484375 0.109375 C 4.21875 0.109375 5.09375 -0.078125 5.640625 -0.640625 C 6.1875 -1.171875 6.328125 -1.953125 6.328125 -2.6875 C 6.328125 -3.453125 6.1875 -4.296875 5.640625 -4.875 C 5.03125 -5.515625 4.109375 -5.671875 3.265625 -5.671875 Z M 1.75 -2.421875 L 1.75 -2.953125 C 1.75 -3.796875 1.84375 -4.90625 3.34375 -4.90625 C 4.8125 -4.90625 4.953125 -3.8125 4.953125 -2.875 L 4.953125 -2.796875 C 4.953125 -1.90625 4.90625 -0.703125 3.328125 -0.703125 C 2.890625 -0.703125 2.421875 -0.828125 2.125 -1.171875 C 1.828125 -1.515625 1.8125 -1.984375 1.75 -2.421875 Z M 1.75 -2.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 0.203125 -7.421875 L 0.203125 -7.125 L 0.4375 -7.125 C 0.984375 -7.125 1.0625 -6.890625 1.203125 -6.453125 C 1.75 -4.859375 2.234375 -3.265625 2.765625 -1.671875 C 2.9375 -1.171875 3.09375 -0.703125 3.25 -0.203125 C 3.296875 -0.046875 3.328125 0.21875 3.53125 0.21875 L 3.5625 0.21875 C 3.71875 0.1875 3.765625 -0.09375 3.8125 -0.25 C 4.296875 -1.703125 4.765625 -3.15625 5.21875 -4.59375 C 5.328125 -4.921875 5.4375 -5.28125 5.5625 -5.609375 C 5.875 -4.828125 6.078125 -4.046875 6.34375 -3.234375 C 6.640625 -2.25 6.984375 -1.25 7.3125 -0.25 L 7.40625 0.046875 C 7.421875 0.125 7.46875 0.203125 7.5625 0.21875 L 7.59375 0.21875 C 7.78125 0.21875 7.8125 -0.03125 7.875 -0.1875 C 8.015625 -0.671875 8.1875 -1.140625 8.34375 -1.625 C 8.796875 -3.015625 9.234375 -4.421875 9.703125 -5.8125 C 9.90625 -6.390625 9.984375 -7.125 10.921875 -7.125 L 10.921875 -7.453125 L 8.765625 -7.453125 L 8.765625 -7.125 C 9.125 -7.125 9.65625 -6.96875 9.65625 -6.5625 C 9.65625 -6.390625 9.546875 -6.1875 9.484375 -6.015625 C 9.375 -5.65625 9.265625 -5.296875 9.140625 -4.9375 L 8.359375 -2.515625 C 8.21875 -2.078125 8.0625 -1.640625 7.921875 -1.203125 C 7.75 -1.625 7.640625 -2.078125 7.5 -2.515625 C 7.0625 -3.890625 6.65625 -5.296875 6.15625 -6.65625 C 6.140625 -6.703125 6.125 -6.765625 6.125 -6.8125 C 6.125 -7.125 6.65625 -7.125 6.96875 -7.125 L 6.96875 -7.453125 L 5.71875 -7.453125 L 5.484375 -7.421875 L 4.28125 -7.421875 L 4.28125 -7.125 L 4.46875 -7.125 C 4.671875 -7.125 4.890625 -7.125 5.03125 -7.03125 C 5.25 -6.84375 5.328125 -6.328125 5.375 -6.1875 C 5.40625 -6.140625 5.40625 -6.109375 5.40625 -6.0625 L 5.40625 -6.03125 C 5.40625 -5.921875 5.328125 -5.796875 5.296875 -5.6875 C 4.890625 -4.3125 4.390625 -2.953125 3.96875 -1.578125 C 3.921875 -1.453125 3.875 -1.328125 3.84375 -1.203125 C 3.78125 -1.609375 3.5625 -2.078125 3.421875 -2.484375 C 3.015625 -3.796875 2.59375 -5.109375 2.15625 -6.40625 C 2.109375 -6.53125 2.046875 -6.703125 2.046875 -6.828125 L 2.046875 -6.859375 C 2.109375 -7.125 2.546875 -7.125 2.828125 -7.125 L 2.890625 -7.125 L 2.890625 -7.453125 L 1.640625 -7.453125 L 1.40625 -7.421875 Z M 0.203125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 1.1875 -2.546875 L 4.34375 -2.546875 C 4.453125 -2.546875 4.5 -2.59375 4.5 -2.703125 C 4.5 -3.78125 3.921875 -4.859375 2.59375 -4.859375 C 1.28125 -4.859375 0.3125 -3.671875 0.3125 -2.421875 C 0.3125 -1.234375 1.171875 0.09375 2.640625 0.09375 C 3.46875 0.09375 4.171875 -0.34375 4.46875 -1.1875 C 4.484375 -1.234375 4.5 -1.265625 4.5 -1.3125 C 4.5 -1.375 4.4375 -1.421875 4.390625 -1.421875 C 4.203125 -1.421875 4.140625 -1.0625 4.078125 -0.9375 C 3.8125 -0.484375 3.296875 -0.15625 2.765625 -0.15625 C 2.15625 -0.15625 1.625 -0.59375 1.390625 -1.140625 C 1.203125 -1.578125 1.1875 -2.078125 1.1875 -2.546875 Z M 1.203125 -2.765625 C 1.203125 -3.609375 1.671875 -4.640625 2.578125 -4.640625 C 3.515625 -4.640625 3.796875 -3.546875 3.796875 -2.765625 Z M 1.203125 -2.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.484375 -4.359375 C 0.8125 -4.359375 1.140625 -4.328125 1.140625 -3.8125 L 1.140625 -0.796875 C 1.140625 -0.34375 0.84375 -0.34375 0.375 -0.34375 L 0.3125 -0.34375 L 0.3125 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.78125 -0.34375 2.65625 -0.328125 2.515625 -0.328125 C 2.171875 -0.328125 1.859375 -0.375 1.859375 -0.78125 L 1.859375 -2.265625 C 1.859375 -3.125 2.03125 -4.578125 3.125 -4.578125 C 3.171875 -4.578125 3.21875 -4.5625 3.265625 -4.5625 C 3.109375 -4.5 3.015625 -4.3125 3.015625 -4.15625 C 3.015625 -3.921875 3.203125 -3.734375 3.421875 -3.703125 C 3.734375 -3.703125 3.921875 -3.90625 3.921875 -4.171875 C 3.921875 -4.59375 3.5 -4.8125 3.140625 -4.8125 C 2.453125 -4.8125 1.9375 -4.1875 1.8125 -3.625 L 1.796875 -4.8125 Z M 0.3125 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-4">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.828125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.0625 -4.578125 4.203125 -3.921875 4.203125 -3.34375 L 4.203125 -0.75 C 4.203125 -0.375 3.90625 -0.34375 3.609375 -0.34375 L 3.375 -0.34375 L 3.375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.515625 -0.34375 C 5.203125 -0.34375 4.9375 -0.375 4.9375 -0.78125 L 4.9375 -2.828125 C 4.9375 -3.59375 5.359375 -4.578125 6.421875 -4.578125 C 7.078125 -4.578125 7.203125 -3.921875 7.203125 -3.34375 L 7.203125 -0.75 C 7.203125 -0.375 6.921875 -0.34375 6.625 -0.34375 L 6.375 -0.34375 L 6.375 -0.015625 L 8.78125 -0.015625 L 8.78125 -0.34375 L 8.53125 -0.34375 C 8.234375 -0.34375 7.953125 -0.34375 7.953125 -0.78125 L 7.953125 -3.203125 C 7.953125 -3.5625 7.9375 -3.921875 7.75 -4.21875 C 7.5 -4.6875 6.9375 -4.8125 6.4375 -4.8125 L 6.3125 -4.8125 C 5.734375 -4.75 5.078125 -4.3125 4.921875 -3.75 L 4.90625 -3.75 C 4.78125 -4.53125 4.125 -4.8125 3.46875 -4.8125 C 2.78125 -4.8125 2.109375 -4.375 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-5">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-6">
|
||||
<path style="stroke:none;" d="M 3.953125 -4.140625 C 3.671875 -4.140625 3.453125 -3.953125 3.453125 -3.671875 C 3.453125 -3.421875 3.65625 -3.1875 3.921875 -3.1875 C 4.171875 -3.1875 4.390625 -3.390625 4.390625 -3.6875 L 4.390625 -3.78125 C 4.28125 -4.609375 3.296875 -4.859375 2.6875 -4.859375 C 1.359375 -4.859375 0.375 -3.625 0.375 -2.359375 C 0.375 -1.078125 1.359375 0.09375 2.71875 0.09375 C 3.421875 0.09375 4.140625 -0.3125 4.421875 -1.0625 C 4.453125 -1.140625 4.5 -1.21875 4.5 -1.296875 L 4.5 -1.34375 C 4.46875 -1.390625 4.421875 -1.421875 4.375 -1.421875 C 4.203125 -1.421875 4.140625 -0.96875 4 -0.8125 C 3.734375 -0.40625 3.296875 -0.15625 2.8125 -0.15625 C 1.65625 -0.15625 1.25 -1.421875 1.25 -2.359375 C 1.25 -3.265625 1.546875 -4.53125 2.65625 -4.609375 L 2.734375 -4.609375 C 3.140625 -4.609375 3.671875 -4.484375 3.953125 -4.140625 Z M 3.953125 -4.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-7">
|
||||
<path style="stroke:none;" d="M 0.359375 -7.453125 L 0.359375 -7.125 L 0.5625 -7.125 C 0.90625 -7.125 1.1875 -7.09375 1.1875 -6.59375 L 1.1875 -0.78125 C 1.1875 -0.375 0.921875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.78125 L 4.921875 -3.21875 C 4.921875 -3.5625 4.921875 -3.921875 4.734375 -4.21875 C 4.484375 -4.65625 3.984375 -4.8125 3.484375 -4.8125 C 2.8125 -4.8125 2.078125 -4.390625 1.90625 -3.75 L 1.890625 -7.578125 Z M 0.359375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-8">
|
||||
<path style="stroke:none;" d="M 1.609375 -6.71875 C 1.609375 -5.984375 1.3125 -4.609375 0.203125 -4.609375 L 0.203125 -4.375 L 1.140625 -4.375 L 1.140625 -1.46875 C 1.140625 -1.140625 1.15625 -0.8125 1.3125 -0.53125 C 1.578125 -0.09375 2.078125 0.09375 2.546875 0.09375 C 3.421875 0.09375 3.609375 -0.859375 3.609375 -1.5625 L 3.609375 -1.984375 L 3.34375 -1.984375 C 3.34375 -1.828125 3.359375 -1.65625 3.359375 -1.5 C 3.359375 -0.984375 3.25 -0.15625 2.609375 -0.15625 C 1.984375 -0.15625 1.875 -0.921875 1.875 -1.421875 L 1.875 -4.375 L 3.421875 -4.375 L 3.421875 -4.703125 L 1.875 -4.703125 L 1.875 -6.71875 Z M 1.609375 -6.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-9">
|
||||
<path style="stroke:none;" d="M 3.328125 -7.453125 L 3.328125 -7.125 L 3.453125 -7.125 C 3.875 -7.125 4.15625 -7.109375 4.15625 -6.453125 L 4.15625 -4.140625 C 3.796875 -4.546875 3.34375 -4.8125 2.765625 -4.8125 C 1.46875 -4.8125 0.375 -3.703125 0.375 -2.34375 C 0.375 -1.140625 1.296875 0.09375 2.65625 0.09375 C 3.25 0.09375 3.703125 -0.15625 4.125 -0.625 L 4.125 0.09375 L 5.6875 -0.015625 L 5.6875 -0.34375 L 5.546875 -0.34375 C 5.1875 -0.34375 4.859375 -0.375 4.859375 -0.890625 L 4.859375 -7.578125 Z M 1.25 -2.09375 L 1.25 -2.25 C 1.25 -3.0625 1.359375 -3.875 2.109375 -4.390625 C 2.328125 -4.515625 2.578125 -4.5625 2.8125 -4.5625 C 3.375 -4.5625 4.140625 -4.140625 4.140625 -3.453125 C 4.140625 -3.3125 4.125 -3.171875 4.125 -3.03125 L 4.125 -1.21875 C 4.125 -1.0625 4.0625 -0.984375 3.984375 -0.859375 C 3.703125 -0.4375 3.21875 -0.125 2.71875 -0.125 C 1.890625 -0.125 1.390625 -0.90625 1.28125 -1.640625 C 1.265625 -1.78125 1.265625 -1.9375 1.25 -2.09375 Z M 1.25 -2.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-10">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.765625 L 4.921875 -3.234375 C 4.921875 -3.5625 4.921875 -3.890625 4.75 -4.1875 C 4.5 -4.671875 3.953125 -4.8125 3.4375 -4.8125 C 2.75 -4.8125 2.078125 -4.3125 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-11">
|
||||
<path style="stroke:none;" d="M 0.953125 -0.40625 C 1.140625 -0.078125 1.71875 0.09375 2.109375 0.09375 C 2.875 0.09375 3.8125 -0.15625 3.90625 -1.3125 C 3.90625 -2.03125 3.515625 -2.515625 2.90625 -2.765625 C 2.640625 -2.875 2.34375 -2.90625 2.078125 -2.96875 L 1.84375 -3.015625 C 1.421875 -3.09375 0.859375 -3.3125 0.859375 -3.84375 C 0.859375 -4.484375 1.578125 -4.671875 2.109375 -4.671875 C 2.90625 -4.671875 3.28125 -4.171875 3.375 -3.453125 C 3.375 -3.359375 3.375 -3.25 3.5 -3.25 C 3.625 -3.25 3.625 -3.359375 3.625 -3.453125 L 3.625 -4.734375 C 3.625 -4.78125 3.59375 -4.859375 3.515625 -4.859375 C 3.34375 -4.859375 3.234375 -4.5625 3.125 -4.5625 C 3.046875 -4.578125 2.984375 -4.640625 2.921875 -4.671875 C 2.6875 -4.8125 2.40625 -4.859375 2.125 -4.859375 C 1.46875 -4.859375 0.359375 -4.640625 0.359375 -3.5625 C 0.359375 -2.375 1.671875 -2.25 2.4375 -2.09375 C 2.90625 -2 3.390625 -1.671875 3.40625 -1.140625 C 3.40625 -0.34375 2.703125 -0.125 2.140625 -0.125 C 1.28125 -0.125 0.875 -0.796875 0.671875 -1.53125 C 0.640625 -1.640625 0.671875 -1.875 0.484375 -1.875 C 0.421875 -1.875 0.359375 -1.828125 0.359375 -1.75 L 0.359375 -0.3125 C 0.359375 -0.25 0.34375 -0.1875 0.34375 -0.125 C 0.34375 -0.03125 0.375 0.09375 0.484375 0.09375 C 0.640625 0.078125 0.78125 -0.265625 0.953125 -0.40625 Z M 0.953125 -0.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-12">
|
||||
<path style="stroke:none;" d="M 2.546875 -4.859375 C 1.15625 -4.703125 0.3125 -3.5625 0.3125 -2.328125 C 0.3125 -1.171875 1.203125 0.109375 2.703125 0.109375 C 4.0625 0.109375 5.09375 -1.0625 5.09375 -2.34375 C 5.09375 -3.625 4.125 -4.859375 2.65625 -4.859375 Z M 1.1875 -2.09375 C 1.171875 -2.1875 1.171875 -2.28125 1.171875 -2.359375 C 1.171875 -3.234375 1.375 -4.625 2.703125 -4.625 C 3.84375 -4.625 4.21875 -3.546875 4.21875 -2.5 C 4.21875 -1.609375 4.109375 -0.234375 2.765625 -0.15625 L 2.703125 -0.15625 C 1.828125 -0.15625 1.296875 -0.921875 1.21875 -1.765625 C 1.203125 -1.875 1.203125 -1.984375 1.1875 -2.09375 Z M 1.1875 -2.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-13">
|
||||
<path style="stroke:none;" d="M 0.203125 -4.703125 L 0.203125 -4.375 L 0.34375 -4.375 C 0.953125 -4.375 1 -4 1.25 -3.28125 C 1.609375 -2.234375 1.984375 -1.21875 2.34375 -0.1875 C 2.390625 -0.078125 2.421875 0.078125 2.5625 0.09375 L 2.578125 0.09375 C 2.828125 0.09375 2.984375 -0.625 3.125 -1 C 3.34375 -1.5625 3.53125 -2.125 3.734375 -2.6875 C 3.796875 -2.859375 3.859375 -3.015625 3.90625 -3.203125 L 3.921875 -3.203125 C 4.09375 -2.4375 4.453125 -1.71875 4.703125 -0.984375 C 4.828125 -0.609375 5 0.09375 5.21875 0.09375 L 5.25 0.09375 C 5.40625 0.09375 5.4375 -0.0625 5.46875 -0.1875 C 5.78125 -1.09375 6.125 -2 6.453125 -2.921875 C 6.703125 -3.609375 6.859375 -4.375 7.625 -4.375 L 7.625 -4.703125 L 6.875 -4.671875 L 5.859375 -4.671875 L 5.859375 -4.375 C 6.140625 -4.359375 6.4375 -4.203125 6.46875 -3.90625 L 6.46875 -3.859375 C 6.46875 -3.71875 6.40625 -3.578125 6.34375 -3.4375 C 6.078125 -2.65625 5.8125 -1.875 5.515625 -1.109375 C 5.484375 -1.03125 5.453125 -0.9375 5.4375 -0.84375 L 5.421875 -0.84375 C 5.140625 -1.84375 4.71875 -2.84375 4.359375 -3.8125 C 4.328125 -3.890625 4.28125 -3.984375 4.28125 -4.078125 C 4.28125 -4.359375 4.6875 -4.375 4.90625 -4.375 L 4.90625 -4.703125 L 2.828125 -4.703125 L 2.828125 -4.375 L 2.984375 -4.375 C 3.40625 -4.375 3.546875 -4.25 3.671875 -3.84375 C 3.703125 -3.78125 3.75 -3.671875 3.75 -3.59375 L 3.75 -3.5625 C 3.71875 -3.359375 3.59375 -3.109375 3.515625 -2.890625 C 3.375 -2.46875 3.234375 -2.078125 3.078125 -1.65625 C 3 -1.421875 2.890625 -1.203125 2.828125 -0.953125 C 2.765625 -1.21875 2.65625 -1.46875 2.5625 -1.71875 C 2.3125 -2.4375 2.046875 -3.140625 1.796875 -3.84375 C 1.78125 -3.921875 1.734375 -4 1.734375 -4.078125 C 1.734375 -4.359375 2.109375 -4.375 2.296875 -4.375 L 2.359375 -4.375 L 2.359375 -4.703125 Z M 0.203125 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-14">
|
||||
<path style="stroke:none;" d="M 0.953125 -6.65625 C 1.296875 -7.21875 1.828125 -7.453125 2.4375 -7.453125 C 3.109375 -7.453125 3.640625 -7.25 3.640625 -6.234375 C 3.640625 -5.78125 3.515625 -5.46875 3.171875 -5.125 C 2.515625 -4.328125 2.28125 -3.5 2.28125 -2.359375 L 2.28125 -2.15625 C 2.28125 -2.078125 2.3125 -2 2.40625 -2 C 2.515625 -2 2.546875 -2.09375 2.546875 -2.203125 C 2.546875 -2.265625 2.546875 -2.328125 2.546875 -2.375 C 2.546875 -3.46875 2.875 -4.265625 3.78125 -4.96875 C 4.21875 -5.328125 4.453125 -5.578125 4.515625 -6.078125 L 4.515625 -6.1875 C 4.515625 -7.125 3.703125 -7.6875 2.40625 -7.6875 L 2.28125 -7.6875 C 1.5 -7.640625 0.59375 -7.125 0.59375 -6.234375 C 0.59375 -5.921875 0.828125 -5.734375 1.0625 -5.734375 C 1.3125 -5.734375 1.53125 -5.921875 1.53125 -6.1875 C 1.53125 -6.46875 1.34375 -6.671875 1.0625 -6.671875 C 1.03125 -6.671875 1 -6.65625 0.953125 -6.65625 Z M 2.328125 -1.09375 C 2.03125 -1.046875 1.875 -0.796875 1.875 -0.5625 C 1.875 -0.3125 2.046875 -0.015625 2.40625 -0.015625 C 2.734375 -0.015625 2.9375 -0.28125 2.9375 -0.5625 C 2.9375 -0.8125 2.765625 -1.09375 2.421875 -1.09375 C 2.390625 -1.09375 2.359375 -1.09375 2.328125 -1.09375 Z M 2.328125 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-15">
|
||||
<path style="stroke:none;" d="M 0.484375 -7.453125 L 0.484375 -7.125 C 0.609375 -7.125 0.734375 -7.140625 0.875 -7.140625 C 1.234375 -7.140625 1.5625 -7.09375 1.5625 -6.6875 C 1.5625 -6.609375 1.546875 -6.546875 1.546875 -6.484375 L 1.546875 -1.125 C 1.546875 -0.421875 0.96875 -0.34375 0.484375 -0.34375 L 0.484375 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.421875 -0.34375 1.828125 -0.421875 1.828125 -1.15625 C 1.828125 -1.28125 1.84375 -1.390625 1.84375 -1.5 L 1.859375 -7.0625 C 1.90625 -6.84375 2 -6.625 2.09375 -6.40625 L 2.515625 -5.328125 C 3.15625 -3.703125 3.8125 -2.046875 4.421875 -0.390625 C 4.46875 -0.265625 4.515625 -0.015625 4.6875 -0.015625 C 4.859375 -0.015625 4.90625 -0.28125 4.953125 -0.40625 L 5.4375 -1.671875 C 6.0625 -3.265625 6.65625 -4.84375 7.28125 -6.421875 C 7.375 -6.65625 7.484375 -6.90625 7.546875 -7.140625 L 7.5625 -1.0625 C 7.5625 -0.984375 7.5625 -0.890625 7.5625 -0.796875 C 7.5625 -0.375 7.234375 -0.328125 6.875 -0.328125 C 6.75 -0.328125 6.609375 -0.34375 6.5 -0.34375 L 6.5 -0.015625 L 7.703125 -0.015625 L 7.96875 -0.046875 L 9.4375 -0.046875 L 9.4375 -0.34375 C 9.3125 -0.34375 9.1875 -0.328125 9.046875 -0.328125 C 8.703125 -0.328125 8.359375 -0.375 8.359375 -0.78125 C 8.359375 -0.84375 8.375 -0.921875 8.375 -0.984375 L 8.375 -6.65625 C 8.375 -7.078125 8.71875 -7.140625 9.046875 -7.140625 C 9.1875 -7.140625 9.3125 -7.125 9.4375 -7.125 L 9.4375 -7.453125 L 7.65625 -7.453125 L 7.453125 -7.421875 L 7.359375 -7.265625 L 4.96875 -1.046875 L 2.578125 -7.265625 L 2.46875 -7.421875 L 2.28125 -7.453125 Z M 0.484375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-16">
|
||||
<path style="stroke:none;" d="M 0.421875 -4.6875 L 0.421875 -4.359375 L 0.59375 -4.359375 C 0.9375 -4.359375 1.203125 -4.3125 1.203125 -3.8125 L 1.203125 -0.796875 C 1.203125 -0.359375 0.921875 -0.34375 0.375 -0.34375 L 0.375 -0.015625 L 2.65625 -0.015625 L 2.65625 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.71875 L 1.90625 -4.8125 Z M 1.3125 -7.265625 C 1 -7.21875 0.84375 -6.96875 0.84375 -6.734375 C 0.84375 -6.484375 1.03125 -6.1875 1.375 -6.1875 C 1.71875 -6.1875 1.921875 -6.453125 1.921875 -6.734375 C 1.921875 -6.984375 1.75 -7.28125 1.390625 -7.28125 C 1.359375 -7.28125 1.328125 -7.265625 1.3125 -7.265625 Z M 1.3125 -7.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-17">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.125 L 0.8125 -7.125 C 1.171875 -7.125 1.515625 -7.09375 1.515625 -6.703125 C 1.515625 -6.625 1.5 -6.546875 1.5 -6.484375 L 1.5 -0.8125 C 1.5 -0.375 1.15625 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 6.015625 -0.015625 L 6.3125 -2.8125 L 6.046875 -2.8125 C 5.9375 -1.8125 5.84375 -0.75 4.515625 -0.40625 C 4.203125 -0.34375 3.90625 -0.34375 3.59375 -0.34375 L 2.796875 -0.34375 C 2.578125 -0.34375 2.40625 -0.390625 2.40625 -0.703125 L 2.40625 -6.65625 C 2.40625 -7.09375 2.78125 -7.140625 3.125 -7.140625 C 3.234375 -7.140625 3.34375 -7.125 3.4375 -7.125 L 3.734375 -7.125 L 3.734375 -7.453125 L 2.25 -7.453125 L 1.984375 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-18">
|
||||
<path style="stroke:none;" d="M 0.3125 -7.453125 L 0.3125 -7.125 L 0.46875 -7.125 C 0.8125 -7.125 1.140625 -7.09375 1.140625 -6.59375 L 1.140625 -0.015625 L 1.390625 -0.03125 L 1.8125 -0.703125 C 2.078125 -0.1875 2.6875 0.09375 3.25 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.59375 4.71875 -4.8125 3.28125 -4.8125 C 2.703125 -4.8125 2.25 -4.53125 1.859375 -4.09375 L 1.859375 -7.578125 Z M 4.75 -2.109375 C 4.71875 -1.578125 4.640625 -1.078125 4.28125 -0.671875 C 4.015625 -0.34375 3.59375 -0.140625 3.171875 -0.140625 C 2.71875 -0.140625 2.328125 -0.375 2.0625 -0.765625 C 1.96875 -0.890625 1.890625 -1.03125 1.890625 -1.1875 L 1.890625 -3.015625 C 1.890625 -3.15625 1.875 -3.28125 1.875 -3.421875 C 1.875 -4.0625 2.640625 -4.578125 3.28125 -4.578125 C 4.46875 -4.578125 4.765625 -3.25 4.765625 -2.34375 C 4.765625 -2.265625 4.765625 -2.1875 4.75 -2.109375 Z M 4.75 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-19">
|
||||
<path style="stroke:none;" d="M 0.375 -7.453125 L 0.375 -7.125 L 0.5625 -7.125 C 0.921875 -7.125 1.203125 -7.09375 1.203125 -6.578125 L 1.203125 -0.78125 C 1.203125 -0.375 0.90625 -0.34375 0.59375 -0.34375 L 0.375 -0.34375 L 0.375 -0.015625 L 2.734375 -0.015625 L 2.734375 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.765625 L 1.90625 -7.578125 Z M 0.375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-20">
|
||||
<path style="stroke:none;" d="M 1.15625 -2.109375 C 0.9375 -1.890625 0.8125 -1.5 0.8125 -1.203125 C 0.8125 -0.8125 1 -0.53125 1.28125 -0.234375 C 0.78125 -0.140625 0.3125 0.3125 0.3125 0.84375 C 0.3125 1.96875 2.078125 2.234375 2.71875 2.234375 C 3.6875 2.234375 5.109375 1.859375 5.109375 0.796875 C 5.109375 -0.4375 3.859375 -0.71875 2.71875 -0.71875 L 1.96875 -0.71875 C 1.421875 -0.71875 1.140625 -1.015625 1.140625 -1.46875 C 1.140625 -1.671875 1.25 -1.828125 1.3125 -1.96875 C 1.609375 -1.78125 1.9375 -1.65625 2.296875 -1.640625 L 2.375 -1.640625 C 3.25 -1.640625 4 -2.171875 4.140625 -3.09375 L 4.140625 -3.203125 C 4.140625 -3.5625 4.015625 -3.921875 3.78125 -4.1875 C 3.765625 -4.21875 3.734375 -4.25 3.734375 -4.28125 L 3.734375 -4.296875 C 3.875 -4.515625 4.390625 -4.703125 4.703125 -4.703125 C 4.75 -4.703125 4.78125 -4.6875 4.828125 -4.6875 C 4.75 -4.625 4.671875 -4.5625 4.65625 -4.453125 L 4.65625 -4.421875 C 4.65625 -4.25 4.796875 -4.109375 4.96875 -4.109375 C 5.171875 -4.109375 5.25 -4.265625 5.25 -4.421875 C 5.25 -4.765625 4.9375 -4.921875 4.671875 -4.921875 C 4.3125 -4.921875 3.9375 -4.765625 3.65625 -4.53125 C 3.625 -4.5 3.59375 -4.453125 3.546875 -4.453125 L 3.53125 -4.453125 C 3.46875 -4.453125 3.25 -4.640625 3.09375 -4.671875 C 2.875 -4.765625 2.640625 -4.8125 2.40625 -4.8125 C 1.578125 -4.8125 0.75 -4.21875 0.65625 -3.359375 L 0.65625 -3.25 C 0.65625 -2.828125 0.8125 -2.375 1.15625 -2.109375 Z M 0.859375 0.921875 L 0.859375 0.828125 C 0.859375 0.234375 1.390625 -0.09375 1.96875 -0.09375 L 3.015625 -0.09375 C 3.609375 -0.09375 4.4375 0.046875 4.546875 0.765625 L 4.546875 0.84375 C 4.546875 1.65625 3.375 1.984375 2.6875 1.984375 C 1.96875 1.984375 0.96875 1.65625 0.859375 0.921875 Z M 1.4375 -3.015625 L 1.4375 -3.140625 C 1.4375 -3.734375 1.578125 -4.546875 2.390625 -4.546875 C 3.09375 -4.546875 3.359375 -3.921875 3.359375 -3.21875 C 3.359375 -2.671875 3.21875 -1.890625 2.40625 -1.890625 C 1.78125 -1.890625 1.515625 -2.40625 1.4375 -3.015625 Z M 1.4375 -3.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-21">
|
||||
<path style="stroke:none;" d="M 0.5625 -4.703125 L 0.453125 -2.953125 L 0.703125 -2.953125 C 0.734375 -3.328125 0.75 -3.78125 1 -4.09375 C 1.25 -4.4375 1.765625 -4.46875 2.203125 -4.46875 L 3.4375 -4.46875 C 2.484375 -3.09375 1.4375 -1.75 0.4375 -0.40625 C 0.375 -0.34375 0.3125 -0.25 0.3125 -0.15625 C 0.3125 -0.046875 0.375 -0.015625 0.46875 -0.015625 L 4.1875 -0.015625 L 4.359375 -2.046875 L 4.09375 -2.046875 C 4.0625 -1.578125 4.03125 -1.046875 3.765625 -0.703125 C 3.453125 -0.3125 2.921875 -0.265625 2.4375 -0.265625 L 1.203125 -0.265625 C 1.296875 -0.421875 1.40625 -0.546875 1.515625 -0.6875 C 2.390625 -1.90625 3.3125 -3.09375 4.1875 -4.3125 C 4.25 -4.390625 4.328125 -4.46875 4.328125 -4.5625 C 4.328125 -4.671875 4.25 -4.703125 4.171875 -4.703125 Z M 0.5625 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-22">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.546875 -4.359375 C 0.859375 -4.359375 1.140625 -4.3125 1.140625 -3.875 L 1.140625 1.3125 C 1.140625 1.765625 0.84375 1.78125 0.3125 1.78125 L 0.3125 2.109375 L 2.71875 2.109375 L 2.71875 1.78125 L 2.46875 1.78125 C 2.15625 1.78125 1.890625 1.734375 1.890625 1.34375 L 1.890625 -0.578125 C 2.140625 -0.125 2.78125 0.09375 3.265625 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.5625 4.734375 -4.8125 3.40625 -4.8125 C 2.796875 -4.8125 2.296875 -4.578125 1.859375 -4.09375 L 1.859375 -4.8125 Z M 4.75 -2.171875 C 4.71875 -1.34375 4.265625 -0.203125 3.265625 -0.125 L 3.15625 -0.125 C 2.640625 -0.125 1.890625 -0.625 1.890625 -1.171875 L 1.890625 -3 C 1.890625 -3.140625 1.875 -3.265625 1.875 -3.40625 C 1.875 -4 2.609375 -4.546875 3.265625 -4.546875 C 4.390625 -4.546875 4.765625 -3.140625 4.765625 -2.34375 C 4.765625 -2.296875 4.765625 -2.21875 4.75 -2.171875 Z M 4.75 -2.171875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="106.926" y="14.859"/>
|
||||
<use xlink:href="#glyph0-2" x="124.396144" y="14.859"/>
|
||||
<use xlink:href="#glyph0-3" x="130.198174" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="149.054771" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="171.229766" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="182.048651" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="187.830019" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="204.616234" y="14.859"/>
|
||||
<use xlink:href="#glyph0-3" x="217.13151" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="227.950395" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="244.279969" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="258.859429" y="14.859"/>
|
||||
<use xlink:href="#glyph0-10" x="267.130628" y="14.859"/>
|
||||
<use xlink:href="#glyph0-11" x="279.645904" y="14.859"/>
|
||||
<use xlink:href="#glyph0-3" x="293.745994" y="14.859"/>
|
||||
<use xlink:href="#glyph0-5" x="304.544216" y="14.859"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="162.856" y="49.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="170.637379" y="49.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="177.837737" y="49.063"/>
|
||||
<use xlink:href="#glyph1-3" x="184.665093" y="49.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="192.640146" y="49.063"/>
|
||||
<use xlink:href="#glyph1-4" x="199.467502" y="49.063"/>
|
||||
<use xlink:href="#glyph1-5" x="206.294859" y="49.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="216.152133" y="49.063"/>
|
||||
<use xlink:href="#glyph1-7" x="226.20595" y="49.063"/>
|
||||
<use xlink:href="#glyph1-8" x="233.793655" y="49.063"/>
|
||||
<use xlink:href="#glyph1-8" x="239.179219" y="49.063"/>
|
||||
<use xlink:href="#glyph1-9" x="244.564782" y="49.063"/>
|
||||
<use xlink:href="#glyph1-10" x="250.633225" y="49.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="173.554" y="77.843"/>
|
||||
<use xlink:href="#glyph1-12" x="180.381357" y="77.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="188.719368" y="77.843"/>
|
||||
<use xlink:href="#glyph1-4" x="201.240731" y="77.843"/>
|
||||
<use xlink:href="#glyph1-14" x="208.068088" y="77.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="216.406099" y="77.843"/>
|
||||
<use xlink:href="#glyph1-16" x="223.233456" y="77.843"/>
|
||||
<use xlink:href="#glyph1-17" x="230.060813" y="77.843"/>
|
||||
<use xlink:href="#glyph1-18" x="236.888169" y="77.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="0.291" y="129.425"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="16.766176" y="129.425"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="26.545981" y="129.425"/>
|
||||
<use xlink:href="#glyph2-4" x="32.158214" y="129.425"/>
|
||||
<use xlink:href="#glyph2-5" x="40.633949" y="129.425"/>
|
||||
<use xlink:href="#glyph2-6" x="50.247338" y="129.425"/>
|
||||
<use xlink:href="#glyph2-7" x="57.763312" y="129.425"/>
|
||||
<use xlink:href="#glyph2-8" x="61.661174" y="129.425"/>
|
||||
<use xlink:href="#glyph2-9" x="67.979241" y="129.425"/>
|
||||
<use xlink:href="#glyph2-10" x="76.454976" y="129.425"/>
|
||||
<use xlink:href="#glyph2-11" x="83.780146" y="129.425"/>
|
||||
<use xlink:href="#glyph2-6" x="92.25588" y="129.425"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="0.291" y="154.173"/>
|
||||
<use xlink:href="#glyph3-2" x="7.014604" y="154.173"/>
|
||||
<use xlink:href="#glyph3-1" x="10.749409" y="154.173"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="24.191836" y="154.173"/>
|
||||
<use xlink:href="#glyph3-4" x="31.661445" y="154.173"/>
|
||||
<use xlink:href="#glyph3-5" x="38.578724" y="154.173"/>
|
||||
<use xlink:href="#glyph3-6" x="44.555128" y="154.173"/>
|
||||
<use xlink:href="#glyph3-7" x="51.472407" y="154.173"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-8" x="62.063518" y="154.173"/>
|
||||
<use xlink:href="#glyph3-9" x="72.715602" y="154.173"/>
|
||||
<use xlink:href="#glyph3-10" x="75.89688" y="154.173"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="85.235087" y="154.173"/>
|
||||
<use xlink:href="#glyph3-5" x="92.704696" y="154.173"/>
|
||||
<use xlink:href="#glyph3-6" x="98.6811" y="154.173"/>
|
||||
<use xlink:href="#glyph3-11" x="105.598379" y="154.173"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="114.385451" y="154.173"/>
|
||||
<use xlink:href="#glyph3-9" x="120.493363" y="154.173"/>
|
||||
<use xlink:href="#glyph3-12" x="123.674642" y="154.173"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="0.291" y="175.164"/>
|
||||
<use xlink:href="#glyph3-2" x="7.014604" y="175.164"/>
|
||||
<use xlink:href="#glyph3-13" x="10.749409" y="175.164"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="24.191836" y="175.164"/>
|
||||
<use xlink:href="#glyph3-4" x="31.661445" y="175.164"/>
|
||||
<use xlink:href="#glyph3-5" x="38.578724" y="175.164"/>
|
||||
<use xlink:href="#glyph3-6" x="44.555128" y="175.164"/>
|
||||
<use xlink:href="#glyph3-7" x="51.472407" y="175.164"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="62.063518" y="175.164"/>
|
||||
<use xlink:href="#glyph3-6" x="68.787123" y="175.164"/>
|
||||
<use xlink:href="#glyph3-12" x="75.704402" y="175.164"/>
|
||||
<use xlink:href="#glyph3-7" x="82.62168" y="175.164"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="93.212792" y="175.164"/>
|
||||
<use xlink:href="#glyph3-5" x="100.682401" y="175.164"/>
|
||||
<use xlink:href="#glyph3-6" x="106.658805" y="175.164"/>
|
||||
<use xlink:href="#glyph3-11" x="113.576084" y="175.164"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="122.363156" y="175.164"/>
|
||||
<use xlink:href="#glyph3-9" x="128.471068" y="175.164"/>
|
||||
<use xlink:href="#glyph3-12" x="131.652347" y="175.164"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="0.291" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="10.527009" y="195.757"/>
|
||||
<use xlink:href="#glyph4-3" x="15.348831" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-4" x="23.190292" y="195.757"/>
|
||||
<use xlink:href="#glyph4-5" x="32.22739" y="195.757"/>
|
||||
<use xlink:href="#glyph4-6" x="37.651395" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-7" x="42.167762" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-8" x="47.888494" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-9" x="55.729955" y="195.757"/>
|
||||
<use xlink:href="#glyph4-2" x="61.756142" y="195.757"/>
|
||||
<use xlink:href="#glyph4-10" x="66.577964" y="195.757"/>
|
||||
<use xlink:href="#glyph4-10" x="72.604151" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-11" x="82.24125" y="195.757"/>
|
||||
<use xlink:href="#glyph4-12" x="86.52089" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-13" x="91.650349" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-5" x="99.177628" y="195.757"/>
|
||||
<use xlink:href="#glyph4-11" x="104.601632" y="195.757"/>
|
||||
<use xlink:href="#glyph4-14" x="108.881272" y="195.757"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="0.291" y="230.125"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="16.766176" y="230.125"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="26.545981" y="230.125"/>
|
||||
<use xlink:href="#glyph2-4" x="32.158214" y="230.125"/>
|
||||
<use xlink:href="#glyph2-5" x="40.633949" y="230.125"/>
|
||||
<use xlink:href="#glyph2-6" x="50.247338" y="230.125"/>
|
||||
<use xlink:href="#glyph2-7" x="57.763312" y="230.125"/>
|
||||
<use xlink:href="#glyph2-3" x="61.661174" y="230.125"/>
|
||||
<use xlink:href="#glyph2-6" x="67.273408" y="230.125"/>
|
||||
<use xlink:href="#glyph2-13" x="74.789382" y="230.125"/>
|
||||
<use xlink:href="#glyph2-6" x="81.943832" y="230.125"/>
|
||||
<use xlink:href="#glyph2-14" x="89.459806" y="230.125"/>
|
||||
<use xlink:href="#glyph2-15" x="97.935541" y="230.125"/>
|
||||
<use xlink:href="#glyph2-6" x="103.886345" y="230.125"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-15" x="0.291" y="254.475"/>
|
||||
<use xlink:href="#glyph4-2" x="10.228099" y="254.475"/>
|
||||
<use xlink:href="#glyph4-16" x="15.049921" y="254.475"/>
|
||||
<use xlink:href="#glyph4-10" x="18.065197" y="254.475"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-17" x="27.702296" y="254.475"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-16" x="34.489938" y="254.475"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="37.494304" y="254.475"/>
|
||||
<use xlink:href="#glyph4-18" x="42.316126" y="254.475"/>
|
||||
<use xlink:href="#glyph4-19" x="48.342313" y="254.475"/>
|
||||
<use xlink:href="#glyph4-16" x="51.357588" y="254.475"/>
|
||||
<use xlink:href="#glyph4-10" x="54.372863" y="254.475"/>
|
||||
<use xlink:href="#glyph4-20" x="60.39905" y="254.475"/>
|
||||
<use xlink:href="#glyph4-11" x="65.823055" y="254.475"/>
|
||||
<use xlink:href="#glyph4-3" x="70.102695" y="254.475"/>
|
||||
<use xlink:href="#glyph4-2" x="74.322334" y="254.475"/>
|
||||
<use xlink:href="#glyph4-21" x="79.144157" y="254.475"/>
|
||||
<use xlink:href="#glyph4-2" x="83.965979" y="254.475"/>
|
||||
<use xlink:href="#glyph4-22" x="88.787801" y="254.475"/>
|
||||
<use xlink:href="#glyph4-8" x="94.813988" y="254.475"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
494
sections/german/03/title-orig.svg
Normal file
@ -0,0 +1,494 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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 2.5625 -14.046875 C 2.296875 -13.984375 2.265625 -13.734375 2.265625 -13.515625 L 2.265625 -0.53125 C 2.265625 -0.140625 2.453125 -0.015625 2.765625 -0.015625 L 9.21875 -0.015625 C 12.640625 -0.1875 16.109375 -1.515625 16.109375 -6.84375 C 16.109375 -9.046875 15.609375 -11.4375 13.640625 -12.8125 C 12.359375 -13.671875 10.734375 -14.0625 9.1875 -14.0625 L 2.75 -14.0625 C 2.6875 -14.0625 2.625 -14.0625 2.5625 -14.046875 Z M 4.46875 -1.265625 L 4.46875 -12.828125 L 7.625 -12.828125 C 9.921875 -12.828125 12.59375 -12.515625 13.53125 -9.859375 C 13.84375 -8.9375 13.921875 -8 13.921875 -7.046875 C 13.921875 -5.203125 13.6875 -3.25 11.890625 -2.09375 C 10.65625 -1.296875 9.15625 -1.265625 7.75 -1.265625 Z M 4.46875 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.125 -9.25 C 1.859375 -9.171875 1.84375 -8.921875 1.84375 -8.703125 L 1.84375 -0.46875 C 1.84375 -0.078125 2.09375 -0.015625 2.359375 -0.015625 L 3.453125 -0.015625 C 3.90625 -0.015625 3.953125 -0.25 3.953125 -0.53125 L 3.953125 -8.8125 C 3.953125 -9.234375 3.671875 -9.28125 3.40625 -9.28125 L 2.359375 -9.28125 C 2.265625 -9.28125 2.1875 -9.28125 2.125 -9.25 Z M 2.0625 -14.328125 C 1.921875 -14.3125 1.8125 -14.1875 1.78125 -14.046875 L 1.78125 -12.640625 C 1.78125 -12.1875 2.03125 -12.140625 2.296875 -12.140625 L 3.46875 -12.140625 C 3.703125 -12.140625 3.953125 -12.203125 3.984375 -12.453125 L 3.984375 -13.859375 C 3.984375 -14.296875 3.734375 -14.359375 3.421875 -14.359375 L 2.296875 -14.359375 C 2.203125 -14.359375 2.125 -14.359375 2.0625 -14.328125 Z M 2.0625 -14.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.734375 -4.046875 L 9.703125 -4.046875 C 10.0625 -4.046875 10.125 -4.3125 10.125 -4.546875 C 10.125 -5.90625 9.921875 -7.328125 8.96875 -8.359375 C 8.140625 -9.25 6.90625 -9.5 5.71875 -9.5 C 4.46875 -9.5 3.03125 -9.28125 2.09375 -8.421875 C 1.03125 -7.484375 0.65625 -6.09375 0.65625 -4.6875 C 0.65625 -3.578125 0.90625 -2.515625 1.546875 -1.609375 C 2.578125 -0.203125 4.46875 0.125 6.09375 0.125 C 7.328125 0.125 8.71875 -0.171875 9.8125 -0.703125 C 9.9375 -0.78125 9.984375 -0.84375 9.984375 -0.984375 C 9.984375 -1.390625 9.921875 -2.1875 9.765625 -2.203125 L 9.734375 -2.203125 C 9.671875 -2.203125 9.625 -2.171875 9.5625 -2.125 L 9.1875 -1.875 C 8.234375 -1.28125 7.140625 -0.96875 6.03125 -0.96875 C 4.984375 -0.96875 3.921875 -1.28125 3.3125 -2.1875 C 2.9375 -2.75 2.8125 -3.390625 2.734375 -4.046875 Z M 2.703125 -5.015625 C 2.8125 -6.4375 3.140625 -8.40625 5.703125 -8.40625 C 7.25 -8.40625 8.015625 -7.296875 8.1875 -5.84375 C 8.203125 -5.578125 8.203125 -5.28125 8.234375 -5.015625 Z M 2.703125 -5.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 11.375 -12.46875 L 11.40625 -12.46875 C 11.421875 -12.0625 11.59375 -11.65625 11.71875 -11.25 C 12.703125 -7.75 13.90625 -4.25 15.078125 -0.8125 C 15.21875 -0.40625 15.25 -0.015625 15.859375 -0.015625 L 17.3125 -0.015625 C 17.6875 -0.015625 17.890625 -0.125 18.03125 -0.578125 L 18.21875 -1.171875 C 19.578125 -5.015625 20.78125 -8.921875 22.0625 -12.78125 L 22.28125 -13.46875 C 22.328125 -13.546875 22.375 -13.671875 22.375 -13.78125 L 22.375 -13.8125 C 22.34375 -14.046875 22.140625 -14.0625 21.953125 -14.0625 L 21.21875 -14.0625 C 20.53125 -14.0625 20.453125 -13.75 20.203125 -13 L 19.703125 -11.4375 C 18.84375 -8.703125 17.890625 -6.015625 17.0625 -3.265625 C 16.890625 -2.75 16.671875 -2.171875 16.625 -1.609375 L 16.609375 -1.609375 C 16.359375 -2.84375 15.921875 -4.0625 15.53125 -5.28125 C 14.671875 -7.9375 13.8125 -10.578125 12.953125 -13.203125 C 12.78125 -13.640625 12.765625 -14.0625 12.109375 -14.0625 L 10.828125 -14.0625 C 10.21875 -14.0625 10.15625 -13.96875 9.765625 -12.765625 C 8.671875 -9.4375 7.546875 -6.09375 6.546875 -2.734375 C 6.4375 -2.375 6.328125 -1.984375 6.296875 -1.609375 C 6.171875 -1.859375 6.109375 -2.265625 6.046875 -2.578125 C 5 -6.171875 3.78125 -9.6875 2.625 -13.265625 C 2.5 -13.65625 2.4375 -14.0625 1.796875 -14.0625 L 1.265625 -14.0625 C 1.15625 -14.0625 1.015625 -14.09375 0.890625 -14.09375 C 0.625 -14.09375 0.453125 -13.984375 0.453125 -13.78125 C 0.453125 -13.609375 0.5625 -13.40625 0.59375 -13.265625 L 0.65625 -13.078125 C 1.9375 -9.171875 3.28125 -5.265625 4.546875 -1.34375 L 4.765625 -0.6875 C 4.875 -0.375 4.953125 -0.0625 5.3125 -0.015625 L 6.8125 -0.015625 C 7.203125 -0.015625 7.453125 -0.078125 7.625 -0.59375 L 7.828125 -1.234375 C 8.46875 -3.21875 9.1875 -5.21875 9.796875 -7.234375 C 10.328125 -8.96875 10.984375 -10.703125 11.375 -12.46875 Z M 11.375 -12.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 2.125 -14.703125 C 1.875 -14.640625 1.8125 -14.421875 1.8125 -14.171875 C 1.8125 -14.046875 1.84375 -13.90625 1.84375 -13.796875 L 1.84375 -0.53125 C 1.84375 -0.234375 1.96875 -0.015625 2.3125 -0.015625 L 3.40625 -0.015625 C 3.859375 -0.015625 3.96875 -0.234375 3.96875 -0.578125 C 3.96875 -0.703125 3.953125 -0.828125 3.953125 -0.921875 L 3.953125 -14.21875 C 3.953125 -14.671875 3.734375 -14.734375 3.46875 -14.734375 L 2.359375 -14.734375 C 2.265625 -14.734375 2.1875 -14.734375 2.125 -14.703125 Z M 2.125 -14.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 2.328125 -9.28125 L 0.921875 -9.28125 C 0.5 -9.28125 0.453125 -9 0.453125 -8.734375 C 0.453125 -8.46875 0.46875 -8.15625 0.921875 -8.15625 C 1.03125 -8.15625 1.109375 -8.1875 1.203125 -8.1875 L 2.3125 -8.1875 L 2.3125 -2.25 C 2.3125 -0.90625 2.8125 0.125 4.296875 0.125 C 5.453125 0.125 6.65625 -0.0625 7.703125 -0.5625 C 7.8125 -0.59375 8 -0.640625 8 -0.78125 L 8 -0.828125 C 8 -1.078125 7.8125 -1.65625 7.6875 -1.6875 L 7.65625 -1.6875 C 7.453125 -1.6875 6.859375 -1.28125 6.546875 -1.203125 C 6.265625 -1.09375 5.890625 -1.03125 5.5 -1.03125 C 4.578125 -1.03125 4.375 -1.71875 4.375 -2.5 L 4.375 -8.1875 L 7.171875 -8.1875 C 7.625 -8.1875 7.625 -8.484375 7.625 -8.78125 C 7.625 -9.171875 7.421875 -9.296875 7.078125 -9.296875 C 6.96875 -9.296875 6.8125 -9.28125 6.71875 -9.28125 L 4.375 -9.28125 L 4.375 -11.421875 C 4.375 -11.875 4.125 -11.890625 3.859375 -11.890625 L 2.75 -11.890625 C 2.4375 -11.890625 2.3125 -11.625 2.3125 -11.359375 C 2.3125 -11.234375 2.328125 -11.09375 2.328125 -10.984375 Z M 2.328125 -9.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 8.546875 -8.234375 C 7.578125 -9.03125 6.71875 -9.421875 5.390625 -9.421875 C 2.171875 -9.421875 0.8125 -7.265625 0.8125 -4.734375 C 0.8125 -3.53125 0.984375 -2.25 1.75 -1.28125 C 2.609375 -0.234375 4.03125 0.125 5.28125 0.125 C 6.59375 0.125 7.65625 -0.40625 8.53125 -1.28125 L 8.53125 -0.53125 C 8.53125 -0.25 8.609375 -0.015625 9 -0.015625 L 10.34375 -0.015625 C 10.578125 -0.0625 10.65625 -0.265625 10.65625 -0.46875 L 10.65625 -14.234375 C 10.65625 -14.546875 10.515625 -14.734375 10.1875 -14.734375 L 8.859375 -14.734375 C 8.59375 -14.6875 8.53125 -14.390625 8.53125 -14.171875 C 8.53125 -14.046875 8.546875 -13.921875 8.546875 -13.796875 Z M 2.9375 -4.0625 L 2.9375 -4.796875 C 2.9375 -6.328125 3.3125 -8.203125 5.828125 -8.296875 L 6.140625 -8.296875 C 6.96875 -8.296875 7.71875 -8.09375 8.34375 -7.3125 C 8.421875 -7.234375 8.515625 -7.125 8.53125 -7 L 8.53125 -2.734375 C 8.53125 -2.125 7.578125 -1.390625 6.921875 -1.109375 C 6.625 -1.015625 6.328125 -0.96875 6.015625 -0.96875 C 5.125 -0.96875 4.1875 -1.203125 3.59375 -1.875 C 3.078125 -2.5 3.015625 -3.3125 2.9375 -4.0625 Z M 2.9375 -4.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 3.90625 -7.046875 C 3.890625 -7.125 3.890625 -7.203125 3.890625 -7.3125 L 3.890625 -8.84375 C 3.890625 -9.28125 3.671875 -9.34375 3.390625 -9.34375 L 2.171875 -9.34375 C 1.921875 -9.296875 1.8125 -9.046875 1.8125 -8.8125 C 1.8125 -8.703125 1.84375 -8.578125 1.84375 -8.453125 L 1.84375 -0.5625 C 1.84375 -0.234375 1.90625 -0.015625 2.359375 -0.015625 L 3.59375 -0.015625 C 3.828125 -0.0625 3.953125 -0.1875 3.953125 -0.5 L 3.953125 -4.03125 C 3.953125 -6.140625 5.390625 -7.515625 7.546875 -7.71875 L 7.6875 -7.71875 C 7.890625 -7.71875 7.90625 -7.828125 7.90625 -7.953125 L 7.90625 -9.125 C 7.90625 -9.3125 7.890625 -9.421875 7.6875 -9.421875 L 7.578125 -9.421875 C 6.09375 -9.3125 4.5625 -8.421875 3.90625 -7.046875 Z M 3.90625 -7.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 7.1875 -12.59375 L 7.1875 -0.46875 C 7.1875 -0.203125 7.328125 -0.0625 7.5625 -0.015625 L 8.640625 -0.015625 C 8.734375 -0.015625 8.84375 0 8.9375 0 C 9.359375 0 9.40625 -0.296875 9.40625 -0.515625 L 9.40625 -12.59375 C 10.390625 -12.59375 11.375 -12.53125 12.375 -12.53125 L 13.40625 -12.53125 C 13.59375 -12.515625 13.796875 -12.515625 14 -12.515625 L 14.609375 -12.515625 C 14.796875 -12.5 14.96875 -12.5 15.15625 -12.5 L 15.390625 -12.5 C 15.609375 -12.53125 15.71875 -12.71875 15.71875 -12.9375 L 15.71875 -13.078125 C 15.71875 -13.171875 15.734375 -13.328125 15.734375 -13.46875 C 15.734375 -13.734375 15.671875 -14 15.328125 -14 L 1.8125 -14 C 1.71875 -14 1.5625 -14.03125 1.453125 -14.03125 C 1.109375 -14.03125 0.875 -13.921875 0.875 -13.578125 L 0.875 -13.453125 C 0.875 -13.34375 0.84375 -13.21875 0.84375 -13.078125 C 0.84375 -12.703125 0.921875 -12.5 1.421875 -12.5 C 1.609375 -12.5 1.78125 -12.5 1.96875 -12.515625 L 2.5625 -12.515625 C 2.765625 -12.515625 2.953125 -12.515625 3.15625 -12.53125 L 4.1875 -12.53125 C 5.1875 -12.53125 6.203125 -12.59375 7.1875 -12.59375 Z M 7.1875 -12.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 8.546875 -1.140625 L 8.546875 -0.53125 C 8.546875 -0.203125 8.671875 -0.015625 9.03125 -0.015625 L 10.1875 -0.015625 C 10.453125 -0.015625 10.671875 -0.125 10.671875 -0.515625 C 10.671875 -0.640625 10.65625 -0.765625 10.65625 -0.875 L 10.65625 -8.78125 C 10.65625 -9.1875 10.46875 -9.28125 10.1875 -9.28125 L 9 -9.28125 C 8.65625 -9.28125 8.53125 -9.09375 8.53125 -8.765625 L 8.53125 -3.953125 C 8.53125 -3.703125 8.546875 -3.453125 8.546875 -3.203125 C 8.546875 -1.515625 7.109375 -0.875 5.6875 -0.875 L 5.59375 -0.875 C 4.9375 -0.875 4.0625 -0.890625 3.984375 -1.796875 C 3.96875 -2 3.96875 -2.203125 3.96875 -2.4375 L 3.96875 -8.34375 C 3.96875 -8.46875 3.984375 -8.59375 3.984375 -8.71875 C 3.984375 -9.03125 3.890625 -9.28125 3.453125 -9.28125 L 2.3125 -9.28125 C 1.96875 -9.28125 1.84375 -9.09375 1.84375 -8.765625 L 1.84375 -2.484375 C 1.84375 -1.921875 1.859375 -1.359375 2.125 -0.875 C 2.640625 0.046875 3.859375 0.125 4.765625 0.125 C 6.140625 0.125 7.546875 -0.171875 8.546875 -1.140625 Z M 7.765625 -14.046875 C 7.625 -14 7.515625 -13.90625 7.5 -13.75 L 7.5 -12.296875 C 7.5 -11.890625 7.765625 -11.859375 8.015625 -11.859375 L 9.1875 -11.859375 C 9.484375 -11.859375 9.625 -11.9375 9.703125 -12.203125 L 9.703125 -13.546875 C 9.703125 -13.875 9.5625 -14.0625 9.234375 -14.0625 L 8 -14.0625 C 7.90625 -14.0625 7.828125 -14.0625 7.765625 -14.046875 Z M 3.078125 -14.046875 C 2.90625 -14 2.828125 -13.875 2.78125 -13.71875 L 2.78125 -12.375 C 2.78125 -11.890625 3.0625 -11.859375 3.34375 -11.859375 L 4.484375 -11.859375 C 4.703125 -11.859375 4.953125 -11.921875 5 -12.171875 L 5 -13.578125 C 5 -14 4.75 -14.0625 4.4375 -14.0625 L 3.3125 -14.0625 C 3.21875 -14.0625 3.140625 -14.0625 3.078125 -14.046875 Z M 3.078125 -14.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 2.296875 -9.28125 L 1.140625 -9.28125 C 0.65625 -9.28125 0.640625 -9 0.640625 -8.71875 C 0.640625 -8.46875 0.640625 -8.1875 1.109375 -8.1875 L 2.296875 -8.1875 L 2.296875 -0.5625 C 2.296875 -0.140625 2.453125 -0.015625 2.75 -0.015625 L 3.921875 -0.015625 C 4.3125 -0.015625 4.40625 -0.265625 4.40625 -0.53125 L 4.40625 -8.1875 L 6.375 -8.1875 C 6.921875 -8.1875 6.921875 -8.421875 6.921875 -8.765625 C 6.921875 -9.09375 6.78125 -9.296875 6.421875 -9.296875 C 6.328125 -9.296875 6.203125 -9.28125 6.109375 -9.28125 L 4.375 -9.28125 L 4.375 -11.875 C 4.375 -12.375 4.375 -12.90625 4.75 -13.296875 C 5.125 -13.671875 5.6875 -13.78125 6.21875 -13.78125 C 6.875 -13.78125 7.484375 -13.640625 8 -13.21875 C 8.0625 -13.171875 8.15625 -13.09375 8.234375 -13.09375 L 8.28125 -13.09375 C 8.359375 -13.109375 8.359375 -13.203125 8.359375 -13.28125 L 8.359375 -14.578125 C 8.296875 -14.859375 7.265625 -14.875 6.65625 -14.875 L 6.296875 -14.875 C 5.171875 -14.875 3.96875 -14.703125 3.125 -13.859375 C 2.5625 -13.28125 2.359375 -12.5 2.296875 -11.71875 Z M 11.09375 -8.1875 L 13.078125 -8.1875 C 13.609375 -8.1875 13.609375 -8.421875 13.609375 -8.765625 C 13.609375 -9.09375 13.46875 -9.296875 13.109375 -9.296875 C 13.015625 -9.296875 12.890625 -9.28125 12.8125 -9.28125 L 11.078125 -9.28125 L 11.078125 -12.046875 C 11.078125 -12.828125 11.25 -13.796875 12.953125 -13.796875 C 13.71875 -13.796875 14.171875 -13.546875 14.828125 -13.140625 C 14.875 -13.109375 14.90625 -13.09375 14.953125 -13.09375 C 15.078125 -13.09375 15.078125 -13.28125 15.078125 -13.359375 L 15.078125 -14.5 C 15.078125 -14.875 14.0625 -14.8125 13.546875 -14.875 L 12.90625 -14.875 C 11.5625 -14.875 10.125 -14.609375 9.375 -13.234375 C 9.03125 -12.5625 8.984375 -11.8125 8.984375 -11.078125 L 8.984375 -0.53125 C 8.984375 -0.046875 9.25 -0.015625 9.546875 -0.015625 L 10.734375 -0.015625 C 10.984375 -0.0625 11.09375 -0.203125 11.09375 -0.46875 Z M 11.09375 -8.1875 "/>
|
||||
</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 0.6875 -9.78125 L 0.6875 -9.375 L 1.078125 -9.375 C 1.515625 -9.375 1.953125 -9.328125 1.953125 -8.796875 C 1.953125 -8.6875 1.9375 -8.578125 1.9375 -8.484375 L 1.9375 -1.296875 C 1.9375 -1.203125 1.953125 -1.109375 1.953125 -1 C 1.953125 -0.46875 1.5 -0.421875 1.0625 -0.421875 L 0.6875 -0.421875 L 0.6875 -0.015625 L 4.546875 -0.015625 L 4.546875 -0.421875 L 4.03125 -0.421875 C 3.40625 -0.421875 2.984375 -0.4375 2.984375 -1.0625 L 2.984375 -4.703125 L 4.171875 -4.703125 C 4.953125 -4.703125 5.71875 -4.640625 5.71875 -3.265625 L 5.71875 -3.03125 L 6.015625 -3.03125 L 6.015625 -6.78125 L 5.71875 -6.78125 L 5.71875 -6.546875 C 5.71875 -5.8125 5.53125 -5.21875 4.734375 -5.140625 C 4.46875 -5.109375 4.21875 -5.109375 3.953125 -5.109375 L 2.984375 -5.109375 L 2.984375 -8.890625 C 2.984375 -9.3125 3.1875 -9.375 3.546875 -9.375 L 5.25 -9.375 C 5.984375 -9.375 6.84375 -9.359375 7.375 -8.796875 C 7.90625 -8.21875 7.9375 -7.328125 8.03125 -6.59375 L 8.3125 -6.59375 L 7.953125 -9.78125 Z M 0.6875 -9.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 3.21875 -6.390625 C 1.484375 -6.140625 0.4375 -4.71875 0.4375 -3.09375 L 0.4375 -2.90625 C 0.546875 -1.3125 1.71875 0.109375 3.421875 0.109375 L 3.578125 0.109375 C 3.9375 0.078125 4.28125 0 4.609375 -0.15625 C 5.71875 -0.6875 6.375 -1.890625 6.375 -3.109375 L 6.375 -3.234375 C 6.3125 -4.8125 5.140625 -6.390625 3.390625 -6.390625 Z M 1.453125 -2.78125 C 1.453125 -2.890625 1.4375 -3.03125 1.4375 -3.15625 C 1.4375 -4.1875 1.5625 -5.40625 2.6875 -5.96875 C 2.90625 -6.0625 3.15625 -6.125 3.40625 -6.125 C 4.9375 -6.125 5.359375 -4.53125 5.359375 -3.28125 C 5.359375 -2.1875 5.28125 -0.59375 3.796875 -0.21875 C 3.671875 -0.1875 3.5625 -0.171875 3.421875 -0.171875 C 2.328125 -0.171875 1.65625 -1.140625 1.5 -2.21875 C 1.484375 -2.40625 1.484375 -2.59375 1.453125 -2.78125 Z M 1.453125 -2.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 0.5 -9.8125 L 0.5 -9.40625 L 0.71875 -9.40625 C 1.109375 -9.40625 1.5 -9.359375 1.5 -8.71875 L 1.5 -0.015625 L 1.78125 -0.046875 L 2.21875 -0.984375 L 2.25 -0.984375 C 2.578125 -0.28125 3.359375 0.109375 4.109375 0.109375 C 5.84375 0.109375 7.0625 -1.484375 7.0625 -3.140625 C 7.0625 -4.765625 5.859375 -6.3125 4.21875 -6.3125 C 3.40625 -6.3125 2.78125 -5.90625 2.296875 -5.3125 L 2.296875 -9.96875 Z M 6.03125 -2.765625 C 5.984375 -2.109375 5.890625 -1.4375 5.46875 -0.90625 C 5.109375 -0.4375 4.578125 -0.140625 4.015625 -0.140625 C 3.234375 -0.140625 2.328125 -0.859375 2.328125 -1.609375 L 2.328125 -3.953125 C 2.328125 -4.125 2.3125 -4.3125 2.3125 -4.484375 C 2.3125 -5.3125 3.265625 -6.046875 4.140625 -6.046875 C 4.46875 -6.046875 4.78125 -5.9375 5.046875 -5.765625 C 5.90625 -5.15625 6.046875 -4.046875 6.046875 -3.078125 C 6.046875 -2.984375 6.046875 -2.875 6.03125 -2.765625 Z M 6.03125 -2.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 1.421875 -5.140625 C 1.671875 -5.71875 2.359375 -6.125 3 -6.125 C 4.0625 -6.125 4.515625 -5.109375 4.515625 -4.171875 L 4.515625 -3.6875 C 3.03125 -3.6875 1.140625 -3.328125 0.671875 -1.734375 C 0.640625 -1.609375 0.625 -1.484375 0.625 -1.328125 L 0.625 -1.234375 C 0.71875 -0.265625 1.875 0.109375 2.671875 0.109375 C 3.453125 0.109375 4.28125 -0.265625 4.59375 -1.140625 L 4.609375 -1.140625 C 4.609375 -0.53125 5.03125 0.0625 5.671875 0.0625 C 6.234375 0.0625 6.6875 -0.4375 6.734375 -1.046875 L 6.734375 -2.09375 L 6.453125 -2.09375 L 6.453125 -1.359375 C 6.453125 -0.953125 6.375 -0.3125 5.890625 -0.3125 C 5.421875 -0.3125 5.328125 -0.9375 5.328125 -1.3125 C 5.328125 -1.484375 5.328125 -1.625 5.328125 -1.765625 L 5.328125 -4.203125 C 5.328125 -5.59375 4.25 -6.390625 3.0625 -6.390625 C 2.265625 -6.390625 1.46875 -5.984375 1.125 -5.171875 C 1.0625 -5.015625 1 -4.8125 1 -4.640625 C 1 -4.28125 1.28125 -4.015625 1.59375 -4.015625 C 1.890625 -4.015625 2.15625 -4.28125 2.15625 -4.578125 C 2.15625 -4.890625 1.921875 -5.15625 1.5625 -5.15625 C 1.5 -5.15625 1.46875 -5.15625 1.421875 -5.140625 Z M 4.515625 -3.4375 L 4.515625 -2.015625 C 4.515625 -1.09375 3.90625 -0.171875 2.890625 -0.140625 L 2.84375 -0.140625 C 2.203125 -0.140625 1.578125 -0.625 1.578125 -1.34375 C 1.578125 -2.84375 3.25 -3.4375 4.515625 -3.4375 Z M 4.515625 -3.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 0.484375 -6.15625 L 0.484375 -5.75 L 0.703125 -5.75 C 1.109375 -5.75 1.484375 -5.703125 1.484375 -5.03125 L 1.484375 -0.90625 C 1.484375 -0.4375 1.109375 -0.421875 0.6875 -0.421875 L 0.484375 -0.421875 L 0.484375 -0.015625 L 3.53125 -0.015625 L 3.53125 -0.421875 C 3.390625 -0.421875 3.234375 -0.40625 3.078125 -0.40625 C 2.671875 -0.40625 2.28125 -0.46875 2.28125 -1 L 2.28125 -2.171875 C 2.28125 -2.46875 2.265625 -2.765625 2.265625 -3.0625 C 2.265625 -4.21875 2.53125 -6.03125 3.9375 -6.03125 C 4.015625 -6.03125 4.109375 -6.03125 4.203125 -6.03125 L 4.203125 -6.015625 C 4 -5.9375 3.859375 -5.734375 3.859375 -5.515625 C 3.859375 -5.25 4.078125 -4.984375 4.40625 -4.984375 C 4.71875 -4.984375 4.921875 -5.265625 4.921875 -5.515625 C 4.921875 -6.03125 4.421875 -6.3125 3.9375 -6.3125 C 3.046875 -6.3125 2.421875 -5.5 2.234375 -4.703125 L 2.21875 -6.3125 Z M 0.484375 -6.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 0.6875 -9.8125 L 0.6875 -9.40625 L 1.046875 -9.40625 C 1.515625 -9.40625 1.96875 -9.359375 1.96875 -8.828125 C 1.96875 -8.71875 1.953125 -8.625 1.953125 -8.53125 L 1.953125 -1.3125 C 1.953125 -1.21875 1.96875 -1.109375 1.96875 -1 C 1.96875 -0.46875 1.515625 -0.421875 1.078125 -0.421875 L 0.6875 -0.421875 L 0.6875 -0.015625 L 4.234375 -0.015625 L 4.234375 -0.421875 L 3.78125 -0.421875 C 3.34375 -0.421875 2.96875 -0.46875 2.96875 -1.015625 L 2.96875 -4.796875 L 4.5 -4.796875 C 5.625 -4.796875 6.625 -4.203125 6.625 -2.734375 C 6.625 -2.453125 6.59375 -2.171875 6.59375 -1.875 C 6.59375 -0.734375 7.15625 0.09375 8.609375 0.25 L 8.734375 0.25 C 9.53125 0.25 10 -0.5 10 -1.21875 C 10 -1.296875 10 -1.4375 9.875 -1.4375 C 9.578125 -1.4375 9.75 -0.015625 8.78125 -0.015625 C 8.09375 -0.015625 7.9375 -0.921875 7.859375 -1.59375 C 7.65625 -2.796875 7.75 -3.890625 6.578125 -4.578125 C 6.359375 -4.703125 6.078125 -4.828125 5.828125 -4.890625 C 6.0625 -4.984375 6.3125 -5.015625 6.546875 -5.109375 C 7.46875 -5.5 8.328125 -6.21875 8.328125 -7.265625 C 8.328125 -8.9375 6.328125 -9.734375 4.953125 -9.8125 Z M 2.96875 -5.046875 L 2.96875 -9 C 2.96875 -9.375 3.234375 -9.40625 3.484375 -9.40625 L 4.578125 -9.40625 C 5.796875 -9.40625 7.109375 -8.984375 7.109375 -7.1875 C 7.109375 -5.984375 6.34375 -5.3125 5.265625 -5.109375 C 4.921875 -5.046875 4.578125 -5.046875 4.234375 -5.046875 Z M 2.96875 -5.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 0.546875 -6.15625 L 0.546875 -5.75 L 0.78125 -5.75 C 1.21875 -5.75 1.5625 -5.6875 1.5625 -4.8125 C 1.5625 -4.609375 1.546875 -4.40625 1.546875 -4.203125 L 1.546875 -1.875 C 1.546875 -1.46875 1.578125 -1.046875 1.78125 -0.671875 C 2.125 -0.078125 2.875 0.125 3.53125 0.125 C 4.328125 0.125 5.125 -0.4375 5.328125 -1.203125 L 5.34375 0.109375 L 7.140625 -0.015625 L 7.140625 -0.421875 L 6.921875 -0.421875 C 6.53125 -0.421875 6.140625 -0.453125 6.140625 -1.125 L 6.140625 -6.3125 L 4.3125 -6.15625 L 4.3125 -5.75 L 4.46875 -5.75 C 4.921875 -5.75 5.328125 -5.71875 5.328125 -5.046875 L 5.328125 -2.1875 C 5.25 -1.171875 4.671875 -0.140625 3.578125 -0.140625 C 3.03125 -0.140625 2.515625 -0.34375 2.390625 -1.09375 C 2.359375 -1.34375 2.359375 -1.625 2.359375 -1.875 L 2.359375 -6.3125 Z M 5.0625 -9.203125 C 4.71875 -9.15625 4.53125 -8.859375 4.53125 -8.578125 C 4.53125 -8.296875 4.765625 -7.953125 5.15625 -7.953125 C 5.53125 -7.953125 5.8125 -8.265625 5.8125 -8.59375 C 5.8125 -8.90625 5.546875 -9.21875 5.171875 -9.21875 C 5.140625 -9.21875 5.109375 -9.203125 5.0625 -9.203125 Z M 2.421875 -9.203125 C 2.109375 -9.203125 1.875 -8.859375 1.875 -8.59375 C 1.875 -8.203125 2.1875 -7.953125 2.609375 -7.953125 C 2.9375 -8 3.15625 -8.296875 3.15625 -8.578125 C 3.15625 -8.84375 2.921875 -9.21875 2.53125 -9.21875 C 2.5 -9.21875 2.46875 -9.203125 2.421875 -9.203125 Z M 2.421875 -9.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 1.15625 -0.609375 C 1.484375 -0.109375 2.109375 0.109375 2.671875 0.109375 C 3.703125 0.109375 4.90625 -0.296875 4.90625 -1.828125 C 4.90625 -2.5 4.5 -3.09375 3.9375 -3.421875 C 3.078125 -3.921875 1.25 -3.640625 1.03125 -4.921875 C 1.03125 -5.84375 1.796875 -6.15625 2.609375 -6.15625 C 3.5 -6.15625 4.109375 -5.6875 4.28125 -4.609375 L 4.28125 -4.484375 C 4.28125 -4.359375 4.28125 -4.203125 4.4375 -4.203125 C 4.546875 -4.203125 4.578125 -4.296875 4.578125 -4.390625 L 4.578125 -6.21875 C 4.578125 -6.296875 4.546875 -6.390625 4.453125 -6.390625 C 4.28125 -6.390625 4.03125 -5.984375 3.984375 -5.90625 C 3.59375 -6.234375 3.140625 -6.390625 2.640625 -6.390625 C 1.6875 -6.390625 0.453125 -6.015625 0.453125 -4.671875 C 0.453125 -3.015625 2.546875 -3.046875 3.421875 -2.71875 C 3.921875 -2.5 4.328125 -2.0625 4.328125 -1.5 C 4.328125 -0.453125 3.421875 -0.140625 2.703125 -0.140625 C 1.28125 -0.140625 1.03125 -1.40625 0.75 -2.421875 C 0.734375 -2.484375 0.65625 -2.53125 0.609375 -2.53125 C 0.5 -2.53125 0.453125 -2.4375 0.453125 -2.359375 L 0.453125 0 C 0.46875 0.0625 0.5 0.09375 0.5625 0.09375 L 0.59375 0.09375 C 0.671875 0.09375 0.71875 0.015625 0.78125 -0.046875 Z M 1.15625 -0.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 1.453125 -3.375 L 5.484375 -3.375 C 5.625 -3.375 5.6875 -3.40625 5.6875 -3.5625 C 5.6875 -4.90625 5 -6.390625 3.28125 -6.390625 C 1.5625 -6.390625 0.4375 -4.765625 0.4375 -3.171875 C 0.4375 -1.640625 1.453125 0.015625 3.265625 0.109375 L 3.359375 0.109375 C 4.359375 0.109375 5.34375 -0.546875 5.640625 -1.546875 C 5.65625 -1.59375 5.6875 -1.65625 5.6875 -1.703125 C 5.6875 -1.765625 5.609375 -1.84375 5.546875 -1.84375 C 5.34375 -1.84375 5.28125 -1.375 5.15625 -1.15625 C 4.8125 -0.59375 4.171875 -0.171875 3.5 -0.171875 L 3.40625 -0.171875 C 3.015625 -0.203125 2.65625 -0.359375 2.34375 -0.609375 C 1.515625 -1.296875 1.453125 -2.390625 1.453125 -3.375 Z M 1.46875 -3.609375 C 1.46875 -4.703125 2.015625 -6.109375 3.234375 -6.109375 C 4.46875 -6.109375 4.828125 -4.671875 4.828125 -3.609375 Z M 1.46875 -3.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 0.546875 -9.8125 L 0.546875 -9.40625 L 0.734375 -9.40625 C 1.203125 -9.40625 1.546875 -9.359375 1.546875 -8.65625 L 1.546875 -0.96875 C 1.546875 -0.453125 1.171875 -0.421875 0.78125 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.34375 -0.015625 L 3.34375 -0.421875 L 3.03125 -0.421875 C 2.65625 -0.421875 2.34375 -0.453125 2.34375 -0.953125 L 2.34375 -9.96875 Z M 0.546875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 1.6875 -4.5625 L 1.671875 -4.5625 C 1.671875 -5.9375 1.71875 -7.484375 2.78125 -8.546875 C 3.1875 -8.953125 3.6875 -9.171875 4.234375 -9.171875 C 4.6875 -9.171875 5.21875 -9 5.484375 -8.578125 C 5.15625 -8.578125 4.78125 -8.484375 4.78125 -8.03125 C 4.78125 -7.75 4.984375 -7.4375 5.328125 -7.4375 C 5.640625 -7.4375 5.890625 -7.671875 5.90625 -8 L 5.90625 -8.046875 C 5.90625 -9 5.125 -9.515625 4.15625 -9.515625 C 1.796875 -9.515625 0.609375 -6.71875 0.609375 -4.6875 C 0.609375 -3.015625 0.796875 -0.609375 2.625 0.09375 C 2.890625 0.203125 3.171875 0.25 3.453125 0.25 C 4.640625 0.25 5.59375 -0.625 6 -1.65625 C 6.171875 -2.0625 6.203125 -2.53125 6.203125 -2.96875 C 6.203125 -4.40625 5.25 -6.078125 3.578125 -6.078125 C 2.78125 -6.078125 1.921875 -5.53125 1.6875 -4.5625 Z M 1.703125 -3.15625 L 1.703125 -3.265625 C 1.703125 -4.265625 2.09375 -5.828125 3.515625 -5.828125 L 3.625 -5.828125 C 5.125 -5.578125 5.140625 -3.953125 5.140625 -2.8125 C 5.140625 -1.84375 5.0625 -0.125 3.421875 -0.125 L 3.34375 -0.125 C 2.09375 -0.21875 1.796875 -1.65625 1.71875 -2.71875 C 1.71875 -2.875 1.71875 -3.015625 1.703125 -3.15625 Z M 1.703125 -3.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 1.78125 -1.28125 C 1.46875 -1.21875 1.25 -0.953125 1.25 -0.65625 C 1.25 -0.328125 1.515625 -0.015625 1.875 -0.015625 C 2.234375 -0.015625 2.53125 -0.296875 2.53125 -0.640625 C 2.53125 -0.96875 2.25 -1.296875 1.890625 -1.296875 C 1.84375 -1.296875 1.828125 -1.296875 1.78125 -1.28125 Z M 1.78125 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 0.71875 -9.8125 L 0.71875 -9.40625 L 1.125 -9.40625 C 1.578125 -9.40625 2 -9.359375 2 -8.8125 C 2 -8.703125 1.984375 -8.625 1.984375 -8.53125 L 1.984375 -1.4375 C 1.984375 -0.546875 1.328125 -0.421875 0.71875 -0.421875 L 0.71875 -0.015625 L 3.5625 -0.015625 L 3.5625 -0.421875 C 2.984375 -0.421875 2.296875 -0.5 2.296875 -1.453125 L 2.3125 -9.359375 C 2.34375 -9.25 2.375 -9.140625 2.421875 -9.015625 L 2.625 -8.484375 C 3.625 -5.84375 4.578125 -3.171875 5.59375 -0.53125 L 5.71875 -0.1875 C 5.75 -0.09375 5.8125 -0.03125 5.90625 -0.015625 C 6.109375 -0.015625 6.171875 -0.34375 6.234375 -0.515625 C 7.21875 -3.25 8.328125 -5.953125 9.28125 -8.703125 C 9.375 -8.953125 9.5 -9.1875 9.546875 -9.453125 L 9.5625 -1 C 9.5625 -0.46875 9.140625 -0.421875 8.65625 -0.421875 L 8.3125 -0.421875 L 8.3125 -0.015625 L 11.796875 -0.015625 L 11.796875 -0.421875 L 11.4375 -0.421875 C 10.953125 -0.421875 10.515625 -0.46875 10.515625 -1 C 10.515625 -1.109375 10.53125 -1.203125 10.53125 -1.296875 L 10.53125 -8.515625 C 10.53125 -8.609375 10.515625 -8.71875 10.515625 -8.828125 C 10.515625 -9.359375 10.9375 -9.421875 11.359375 -9.421875 C 11.515625 -9.421875 11.65625 -9.40625 11.796875 -9.40625 L 11.796875 -9.8125 L 9.671875 -9.8125 L 9.453125 -9.765625 L 9.34375 -9.5625 L 6.265625 -1.296875 L 6.234375 -1.296875 L 3.171875 -9.5625 L 3.0625 -9.765625 L 2.84375 -9.8125 Z M 0.71875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 0.609375 -6.15625 L 0.609375 -5.75 L 0.765625 -5.75 C 1.203125 -5.75 1.546875 -5.6875 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.4375 1.15625 -0.421875 0.75 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.234375 -0.015625 L 3.234375 -0.421875 L 3 -0.421875 C 2.671875 -0.421875 2.34375 -0.453125 2.34375 -0.921875 L 2.34375 -6.3125 Z M 1.640625 -9.46875 C 1.296875 -9.40625 1.109375 -9.125 1.109375 -8.828125 C 1.109375 -8.546875 1.328125 -8.203125 1.71875 -8.203125 C 2.109375 -8.203125 2.375 -8.5 2.375 -8.828125 C 2.375 -9.15625 2.125 -9.484375 1.765625 -9.484375 C 1.71875 -9.484375 1.671875 -9.46875 1.640625 -9.46875 Z M 1.640625 -9.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 1.09375 -7.4375 C 1.375 -8.296875 1.96875 -9.109375 3.0625 -9.109375 C 4.28125 -9.109375 5.046875 -8.015625 5.046875 -6.84375 L 5.046875 -6.65625 C 4.875 -4.71875 3.265625 -3.34375 2.109375 -1.984375 C 1.640625 -1.484375 0.671875 -0.53125 0.671875 -0.171875 L 0.671875 -0.015625 L 5.78125 -0.015625 L 6.140625 -2.3125 L 5.859375 -2.3125 C 5.734375 -1.65625 5.765625 -0.953125 5.171875 -0.953125 C 4.78125 -0.953125 4.375 -0.921875 3.96875 -0.921875 L 1.515625 -0.921875 C 2.28125 -1.671875 3.046875 -2.46875 3.828125 -3.21875 C 4.8125 -4.125 6.140625 -5.203125 6.140625 -6.71875 C 6.140625 -8.5625 4.734375 -9.515625 3.171875 -9.515625 L 3.03125 -9.515625 C 1.75 -9.375 0.671875 -8.25 0.671875 -6.90625 C 0.671875 -6.5625 0.796875 -6.1875 1.3125 -6.1875 C 1.671875 -6.1875 1.96875 -6.4375 1.96875 -6.796875 C 1.96875 -7.125 1.71875 -7.453125 1.3125 -7.453125 C 1.25 -7.453125 1.15625 -7.4375 1.09375 -7.4375 Z M 1.09375 -7.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 3.234375 -9.515625 C 0.65625 -9.234375 0.609375 -6.03125 0.609375 -4.65625 L 0.609375 -4.5 C 0.609375 -3.1875 0.703125 -1.609375 1.578125 -0.609375 C 2.015625 -0.09375 2.71875 0.25 3.40625 0.25 L 3.578125 0.25 C 6.03125 0.015625 6.203125 -2.9375 6.203125 -4.765625 C 6.203125 -6.0625 6.078125 -7.578125 5.296875 -8.59375 C 4.84375 -9.15625 4.125 -9.53125 3.40625 -9.53125 C 3.359375 -9.53125 3.28125 -9.515625 3.234375 -9.515625 Z M 1.609375 -3.765625 C 1.5625 -4.15625 1.578125 -4.71875 1.578125 -5.359375 C 1.578125 -7.078125 1.75 -9.25 3.40625 -9.25 C 5.109375 -9.25 5.203125 -6.984375 5.203125 -5.546875 L 5.203125 -5.03125 C 5.203125 -4.421875 5.203125 -3.796875 5.171875 -3.1875 C 5.15625 -2.0625 5.046875 -0.5625 3.875 -0.09375 C 3.71875 -0.046875 3.5625 -0.015625 3.40625 -0.015625 C 1.640625 -0.015625 1.71875 -2.5625 1.609375 -3.765625 Z M 1.609375 -3.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 1.3125 -8.59375 L 1.3125 -8.1875 C 1.921875 -8.1875 2.53125 -8.296875 3.078125 -8.59375 L 3.078125 -1.03125 C 3.078125 -0.484375 2.546875 -0.40625 2.015625 -0.40625 C 1.796875 -0.40625 1.5625 -0.421875 1.375 -0.421875 L 1.375 -0.015625 L 5.671875 -0.015625 L 5.671875 -0.421875 C 5.453125 -0.421875 5.21875 -0.40625 4.984375 -0.40625 C 4.453125 -0.40625 3.953125 -0.484375 3.953125 -1.015625 L 3.953125 -9.3125 C 3.953125 -9.375 3.9375 -9.515625 3.8125 -9.515625 C 3.765625 -9.515625 3.734375 -9.5 3.703125 -9.484375 L 3.5625 -9.34375 C 2.90625 -8.78125 2.125 -8.59375 1.3125 -8.59375 Z M 1.3125 -8.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 5.125 -4.71875 L 5.140625 -4.71875 C 5.140625 -3.234375 5.125 -1.265625 3.71875 -0.40625 C 3.40625 -0.203125 3.078125 -0.125 2.734375 -0.125 C 2.234375 -0.125 1.65625 -0.265625 1.34375 -0.6875 L 1.4375 -0.6875 C 1.765625 -0.6875 2.03125 -0.875 2.03125 -1.234375 C 2.03125 -1.515625 1.8125 -1.828125 1.484375 -1.828125 C 1.1875 -1.828125 0.9375 -1.609375 0.90625 -1.296875 L 0.90625 -1.203125 C 0.90625 -0.203125 1.90625 0.25 2.765625 0.25 C 5.1875 0.25 6.203125 -2.609375 6.203125 -4.8125 C 6.203125 -6.40625 5.984375 -8.625 4.25 -9.359375 C 3.984375 -9.46875 3.71875 -9.53125 3.421875 -9.53125 C 1.734375 -9.53125 0.609375 -7.890625 0.609375 -6.3125 C 0.609375 -4.875 1.53125 -3.203125 3.234375 -3.203125 C 4.109375 -3.203125 4.921875 -3.828125 5.125 -4.71875 Z M 5.09375 -6.375 C 5.09375 -6.203125 5.109375 -6.03125 5.109375 -5.875 C 5.046875 -4.890625 4.625 -3.453125 3.328125 -3.453125 C 2.75 -3.453125 2.359375 -3.765625 2.046875 -4.21875 C 1.6875 -4.796875 1.671875 -5.5 1.671875 -6.140625 L 1.671875 -6.296875 C 1.671875 -7.25 1.703125 -8.453125 2.6875 -8.984375 C 2.890625 -9.09375 3.171875 -9.171875 3.421875 -9.171875 C 4.890625 -9.171875 5.09375 -7.203125 5.09375 -6.484375 Z M 5.09375 -6.375 "/>
|
||||
</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 3.4375 -8.5 L 3.4375 -0.890625 L 1.859375 -0.890625 C 1.546875 -0.890625 1.375 -0.734375 1.375 -0.4375 C 1.375 -0.171875 1.546875 -0.015625 1.859375 -0.015625 L 6.734375 -0.015625 C 6.984375 -0.046875 7.078125 -0.25 7.078125 -0.46875 C 7.078125 -0.71875 6.921875 -0.90625 6.59375 -0.90625 C 6.5 -0.90625 6.40625 -0.890625 6.328125 -0.890625 L 5.1875 -0.890625 L 5.1875 -9.703125 C 5.1875 -10.0625 4.9375 -10.109375 4.6875 -10.109375 C 4.265625 -10.109375 4.046875 -9.734375 3.703125 -9.546875 C 3.140625 -9.25 2.5 -9.15625 1.859375 -9.140625 C 1.59375 -9.140625 1.296875 -9.109375 1.296875 -8.671875 C 1.296875 -8.390625 1.484375 -8.25 1.796875 -8.25 C 2.359375 -8.296875 2.890625 -8.328125 3.4375 -8.5 Z M 3.4375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.65625 -8.609375 L 4.65625 -0.4375 C 4.65625 -0.171875 4.8125 -0.015625 5.109375 -0.015625 L 6 -0.015625 C 6.4375 -0.015625 6.46875 -0.265625 6.46875 -0.5 L 6.46875 -8.609375 C 7.609375 -8.609375 8.765625 -8.546875 9.90625 -8.546875 L 10.078125 -8.546875 C 10.5 -8.546875 10.546875 -8.796875 10.546875 -9.015625 L 10.546875 -9.3125 C 10.546875 -9.5 10.515625 -9.78125 10.125 -9.78125 L 1.34375 -9.78125 C 1.265625 -9.78125 1.171875 -9.796875 1.078125 -9.796875 C 0.765625 -9.796875 0.59375 -9.625 0.59375 -9.328125 L 0.59375 -9.03125 C 0.59375 -8.75 0.640625 -8.53125 1.140625 -8.53125 C 1.265625 -8.53125 1.40625 -8.546875 1.53125 -8.5625 L 1.984375 -8.5625 C 2.125 -8.5625 2.28125 -8.5625 2.4375 -8.578125 L 3.1875 -8.578125 C 3.671875 -8.59375 4.171875 -8.609375 4.65625 -8.609375 Z M 4.65625 -8.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.21875 C 2.75 -5.328125 2.75 -5.421875 2.75 -5.515625 L 2.75 -6.09375 C 2.75 -6.484375 2.515625 -6.546875 2.25 -6.546875 L 1.5 -6.546875 C 1.265625 -6.546875 1.0625 -6.40625 1.0625 -6.0625 C 1.0625 -5.984375 1.078125 -5.90625 1.078125 -5.84375 L 1.078125 -0.546875 C 1.078125 -0.296875 1.109375 -0.015625 1.5 -0.015625 L 2.3125 -0.015625 C 2.546875 -0.015625 2.8125 -0.078125 2.8125 -0.4375 L 2.8125 -2.765625 C 2.8125 -3.25 2.8125 -3.71875 3.0625 -4.140625 C 3.46875 -4.859375 4.265625 -5.234375 5.0625 -5.3125 L 5.15625 -5.3125 C 5.3125 -5.3125 5.359375 -5.34375 5.359375 -5.515625 L 5.359375 -6.375 C 5.359375 -6.546875 5.3125 -6.609375 5.140625 -6.609375 C 4.21875 -6.609375 3.0625 -5.921875 2.765625 -5.21875 Z M 2.765625 -5.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 2.015625 -9.828125 C 1.8125 -9.78125 1.71875 -9.609375 1.71875 -9.375 L 1.71875 -8.5 C 1.71875 -8.265625 1.828125 -8.03125 2.109375 -8.03125 L 3.03125 -8.03125 C 3.296875 -8.03125 3.53125 -8.109375 3.53125 -8.453125 L 3.53125 -9.40625 C 3.53125 -9.765625 3.296875 -9.84375 3.0625 -9.84375 L 2.203125 -9.84375 C 2.140625 -9.84375 2.078125 -9.84375 2.015625 -9.828125 Z M 5.21875 -9.828125 C 5 -9.78125 4.9375 -9.625 4.9375 -9.40625 L 4.9375 -8.46875 C 4.9375 -8.1875 5.078125 -8.03125 5.359375 -8.03125 L 6.25 -8.03125 C 6.515625 -8.03125 6.734375 -8.125 6.734375 -8.5 L 6.734375 -9.296875 C 6.734375 -9.625 6.640625 -9.84375 6.28125 -9.84375 L 5.40625 -9.84375 C 5.328125 -9.84375 5.28125 -9.84375 5.21875 -9.828125 Z M 5.21875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 1.421875 -6.484375 L 0.953125 -6.484375 C 0.640625 -6.484375 0.4375 -6.359375 0.4375 -6.03125 C 0.4375 -5.75 0.609375 -5.609375 0.953125 -5.609375 L 1.421875 -5.609375 L 1.421875 -0.84375 C 1.421875 -0.75 1.40625 -0.640625 1.40625 -0.53125 C 1.40625 -0.265625 1.484375 -0.015625 1.84375 -0.015625 L 2.65625 -0.015625 C 3.0625 -0.015625 3.15625 -0.234375 3.15625 -0.546875 L 3.15625 -5.609375 L 4.078125 -5.609375 C 4.140625 -5.609375 4.234375 -5.59375 4.296875 -5.59375 C 4.59375 -5.59375 4.75 -5.796875 4.75 -6.046875 C 4.75 -6.328125 4.59375 -6.484375 4.28125 -6.484375 L 3.125 -6.484375 L 3.125 -8.234375 C 3.125 -8.875 3.265625 -9.46875 4.265625 -9.46875 C 4.6875 -9.46875 5.078125 -9.34375 5.390625 -9.0625 C 5.453125 -9.015625 5.515625 -8.984375 5.578125 -8.984375 L 5.609375 -8.984375 C 5.6875 -9.015625 5.703125 -9.109375 5.703125 -9.1875 L 5.703125 -10.125 C 5.65625 -10.40625 4.515625 -10.40625 4.21875 -10.40625 C 3.40625 -10.40625 2.578125 -10.234375 2.015625 -9.65625 C 1.625 -9.234375 1.46875 -8.65625 1.421875 -8.109375 Z M 7.71875 -5.609375 L 8.640625 -5.609375 C 8.703125 -5.609375 8.796875 -5.59375 8.859375 -5.59375 C 9.15625 -5.59375 9.3125 -5.796875 9.3125 -6.046875 C 9.3125 -6.328125 9.15625 -6.484375 8.84375 -6.484375 L 7.6875 -6.484375 L 7.6875 -7.875 C 7.6875 -8.015625 7.671875 -8.15625 7.671875 -8.3125 C 7.671875 -8.921875 7.90625 -9.484375 8.828125 -9.484375 C 9.171875 -9.484375 9.515625 -9.375 9.765625 -9.203125 C 9.875 -9.15625 10.015625 -8.984375 10.140625 -8.984375 C 10.28125 -8.984375 10.28125 -9.125 10.28125 -9.203125 L 10.28125 -10.046875 C 10.28125 -10.390625 9.53125 -10.34375 9.1875 -10.390625 L 8.96875 -10.390625 C 7.953125 -10.390625 6.78125 -10.25 6.25 -9.1875 C 6.015625 -8.6875 5.984375 -8.15625 5.984375 -7.625 L 5.984375 -0.484375 C 5.984375 -0.1875 6.09375 0 6.515625 0 C 6.65625 0 6.8125 -0.015625 6.953125 -0.015625 C 7.046875 -0.015625 7.140625 0 7.234375 0 C 7.46875 0 7.71875 -0.09375 7.71875 -0.421875 Z M 7.71875 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 2.15625 -3 L 6.5625 -3 C 6.9375 -3 7.0625 -3.203125 7.0625 -3.484375 C 7.0625 -5.140625 6.375 -6.6875 3.9375 -6.6875 C 3 -6.6875 2 -6.46875 1.3125 -5.796875 C 0.65625 -5.140625 0.453125 -4.171875 0.453125 -3.28125 C 0.453125 -2.5 0.609375 -1.671875 1.125 -1.0625 C 1.84375 -0.140625 3.0625 0.109375 4.15625 0.109375 C 4.984375 0.109375 5.828125 -0.0625 6.5625 -0.40625 C 6.6875 -0.453125 6.921875 -0.53125 6.953125 -0.671875 L 6.953125 -0.734375 C 6.953125 -1.03125 6.9375 -1.65625 6.78125 -1.703125 L 6.75 -1.703125 C 6.625 -1.703125 6.484375 -1.5625 6.390625 -1.484375 C 5.78125 -1.046875 4.984375 -0.796875 4.21875 -0.796875 C 3.234375 -0.796875 2.15625 -1.3125 2.15625 -2.890625 Z M 2.171875 -3.796875 C 2.171875 -4.859375 2.828125 -5.765625 3.9375 -5.765625 C 5.28125 -5.765625 5.4375 -4.6875 5.515625 -3.796875 Z M 2.171875 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.375 -10.234375 C 1.125 -10.234375 1.078125 -9.90625 1.078125 -9.734375 L 1.078125 -0.78125 C 1.078125 -0.703125 1.0625 -0.609375 1.0625 -0.5 C 1.0625 -0.265625 1.171875 -0.046875 1.40625 -0.015625 L 2.265625 -0.015625 C 2.75 -0.015625 2.8125 -0.21875 2.8125 -0.484375 L 2.8125 -9.484375 C 2.8125 -9.5625 2.828125 -9.65625 2.828125 -9.75 C 2.828125 -10 2.734375 -10.234375 2.46875 -10.25 L 1.59375 -10.25 C 1.515625 -10.25 1.453125 -10.25 1.375 -10.234375 Z M 1.375 -10.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 2.84375 -6.6875 C 1.84375 -6.578125 0.546875 -6.34375 0.546875 -4.703125 C 0.546875 -3.59375 1.5 -2.9375 2.5 -2.71875 C 3.25 -2.5625 4.640625 -2.53125 4.640625 -1.703125 C 4.640625 -0.96875 3.796875 -0.890625 3.328125 -0.890625 C 2.4375 -0.890625 1.671875 -1.1875 0.984375 -1.828125 C 0.953125 -1.859375 0.859375 -1.9375 0.78125 -1.9375 C 0.609375 -1.9375 0.625 -1.65625 0.609375 -1.5 C 0.578125 -1.25 0.453125 -0.96875 0.453125 -0.703125 C 0.453125 -0.5625 0.578125 -0.53125 0.6875 -0.453125 C 1.515625 -0.09375 2.421875 0.125 3.328125 0.125 C 4.484375 0.125 5.9375 -0.21875 5.9375 -2 C 5.9375 -3.015625 5.109375 -3.75 4.171875 -4.015625 C 3.734375 -4.125 3.265625 -4.1875 2.828125 -4.265625 C 2.4375 -4.34375 1.84375 -4.515625 1.84375 -5 L 1.84375 -5.078125 C 1.96875 -5.71875 2.625 -5.75 3.140625 -5.75 C 3.90625 -5.75 4.5625 -5.53125 5.15625 -5.09375 C 5.203125 -5.0625 5.265625 -5 5.328125 -5 C 5.53125 -5 5.640625 -5.875 5.640625 -6.0625 C 5.640625 -6.265625 5.21875 -6.359375 4.984375 -6.421875 C 4.453125 -6.609375 3.890625 -6.6875 3.3125 -6.6875 Z M 2.84375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 5.671875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 3.78125 -6.6875 C 3.578125 -6.65625 3.359375 -6.640625 3.140625 -6.609375 C 2.515625 -6.5 1.890625 -6.25 1.421875 -5.8125 C 0.765625 -5.171875 0.546875 -4.21875 0.546875 -3.3125 C 0.546875 -2.4375 0.703125 -1.53125 1.3125 -0.859375 C 2.015625 -0.09375 3.109375 0.109375 4.109375 0.109375 C 5.015625 0.109375 5.9375 -0.078125 6.734375 -0.5 C 6.828125 -0.546875 6.859375 -0.609375 6.859375 -0.6875 C 6.859375 -1.03125 6.8125 -1.71875 6.65625 -1.734375 L 6.640625 -1.734375 C 6.484375 -1.734375 6.171875 -1.4375 5.953125 -1.3125 C 5.40625 -1 4.78125 -0.859375 4.15625 -0.859375 C 2.53125 -0.859375 2.3125 -2.15625 2.3125 -3.234375 C 2.3125 -4.375 2.484375 -5.703125 4.15625 -5.703125 C 4.953125 -5.703125 5.5 -5.5625 6.203125 -5.015625 C 6.28125 -4.96875 6.375 -4.859375 6.46875 -4.859375 C 6.625 -4.859375 6.625 -5.09375 6.640625 -5.171875 L 6.734375 -5.6875 C 6.734375 -5.765625 6.765625 -5.84375 6.765625 -5.90625 C 6.765625 -6.203125 5.703125 -6.53125 5.296875 -6.59375 C 4.953125 -6.671875 4.609375 -6.6875 4.265625 -6.6875 Z M 3.78125 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 2.796875 -5.515625 L 2.796875 -9.765625 C 2.796875 -10.078125 2.703125 -10.265625 2.25 -10.265625 C 2.09375 -10.265625 1.9375 -10.25 1.78125 -10.25 C 1.6875 -10.25 1.609375 -10.265625 1.515625 -10.265625 C 1.296875 -10.265625 1.0625 -10.140625 1.0625 -9.859375 L 1.0625 -0.53125 C 1.0625 -0.296875 1.078125 -0.109375 1.375 -0.015625 L 2.3125 -0.015625 C 2.671875 -0.015625 2.828125 -0.171875 2.828125 -0.53125 L 2.828125 -3.5625 C 2.828125 -4.515625 3.3125 -5.6875 4.53125 -5.6875 C 5.5 -5.6875 5.640625 -5.125 5.640625 -4.484375 L 5.640625 -0.515625 C 5.640625 -0.1875 5.75 -0.015625 6.078125 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.421875 -0.15625 7.421875 -0.5 C 7.421875 -0.609375 7.40625 -0.703125 7.40625 -0.78125 L 7.40625 -4.21875 C 7.40625 -4.765625 7.40625 -5.328125 7.125 -5.828125 C 6.734375 -6.53125 5.859375 -6.609375 5.15625 -6.609375 C 4.1875 -6.609375 3.390625 -6.203125 2.796875 -5.515625 Z M 2.796875 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-12">
|
||||
<path style="stroke:none;" d="M 2.40625 -1.25 C 3.34375 -2.0625 4.265625 -2.921875 5.234375 -3.703125 C 6.203125 -4.46875 7.359375 -5.4375 7.40625 -6.8125 L 7.40625 -6.921875 C 7.40625 -8.875 5.765625 -10.109375 3.90625 -10.109375 C 2.6875 -10.109375 1.5625 -9.609375 0.96875 -8.515625 C 0.859375 -8.34375 0.703125 -8.09375 0.703125 -7.953125 L 0.703125 -7.921875 C 0.703125 -7.71875 1.3125 -7.125 1.4375 -6.96875 C 1.46875 -6.9375 1.515625 -6.90625 1.578125 -6.90625 L 1.609375 -6.90625 C 1.734375 -6.953125 1.84375 -7.46875 1.9375 -7.703125 C 2.234375 -8.390625 2.78125 -8.953125 3.640625 -8.953125 C 4.703125 -8.953125 5.625 -8.140625 5.625 -6.90625 C 5.625 -5.65625 4.671875 -4.65625 3.8125 -3.859375 C 2.90625 -3 2.015625 -2.140625 1.140625 -1.25 C 0.984375 -1.109375 0.796875 -0.984375 0.796875 -0.78125 C 0.796875 -0.703125 0.8125 -0.640625 0.8125 -0.59375 L 0.8125 -0.484375 C 0.8125 -0.140625 0.984375 -0.015625 1.296875 -0.015625 L 6.9375 -0.015625 C 7.171875 -0.015625 7.40625 -0.09375 7.40625 -0.4375 L 7.40625 -0.78125 C 7.40625 -1.015625 7.359375 -1.28125 6.984375 -1.28125 L 6.78125 -1.28125 C 6.484375 -1.28125 6.1875 -1.265625 5.875 -1.265625 L 4.546875 -1.265625 C 3.828125 -1.265625 3.125 -1.25 2.40625 -1.25 Z M 2.40625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-13">
|
||||
<path style="stroke:none;" d="M 4.5625 -5.609375 C 4.15625 -5.09375 3.71875 -4.609375 3.28125 -4.109375 C 2.453125 -3.109375 1.640625 -2.140625 0.796875 -1.171875 C 0.65625 -1 0.453125 -0.84375 0.453125 -0.59375 L 0.453125 -0.46875 C 0.453125 -0.171875 0.578125 -0.015625 0.953125 -0.015625 L 5.921875 -0.015625 C 6 -0.015625 6.0625 0 6.15625 0 C 6.578125 0 6.625 -0.265625 6.625 -0.53125 C 6.625 -0.75 6.5625 -1 6.203125 -1 L 6.09375 -1 C 4.890625 -1 3.703125 -0.953125 2.5 -0.953125 C 2.84375 -1.375 3.21875 -1.796875 3.578125 -2.203125 L 6.234375 -5.359375 C 6.40625 -5.546875 6.59375 -5.703125 6.59375 -6.015625 C 6.59375 -6.40625 6.375 -6.484375 6.109375 -6.484375 L 1.171875 -6.484375 C 0.78125 -6.484375 0.6875 -6.28125 0.6875 -6.03125 C 0.6875 -5.78125 0.78125 -5.5625 1.109375 -5.5625 L 1.21875 -5.5625 C 1.390625 -5.5625 1.578125 -5.5625 1.75 -5.578125 L 1.921875 -5.578125 C 2.140625 -5.578125 2.359375 -5.5625 2.5625 -5.5625 C 2.796875 -5.5625 3.015625 -5.59375 3.234375 -5.59375 L 3.625 -5.59375 C 3.9375 -5.59375 4.25 -5.609375 4.5625 -5.609375 Z M 4.5625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<path style="stroke:none;" d="M 2.8125 -5.875 L 2.8125 -6.03125 C 2.8125 -6.46875 2.53125 -6.484375 2.265625 -6.484375 L 1.59375 -6.484375 C 1.34375 -6.484375 1.078125 -6.421875 1.078125 -6.046875 L 1.078125 2.421875 C 1.109375 2.671875 1.3125 2.765625 1.53125 2.765625 L 2.34375 2.765625 C 2.5625 2.765625 2.84375 2.734375 2.84375 2.359375 L 2.84375 -0.59375 C 3.328125 -0.140625 3.984375 0.109375 4.640625 0.109375 C 5.609375 0.109375 6.703125 -0.125 7.296875 -0.96875 C 7.78125 -1.609375 7.921875 -2.5 7.921875 -3.265625 C 7.921875 -4.75 7.484375 -6.609375 5.09375 -6.609375 C 4.28125 -6.609375 3.453125 -6.390625 2.8125 -5.875 Z M 6.140625 -2.953125 C 6.03125 -1.9375 5.734375 -0.796875 4.203125 -0.796875 C 3.703125 -0.796875 2.84375 -1.15625 2.84375 -1.703125 L 2.84375 -4.921875 C 2.890625 -5.3125 3.78125 -5.640625 4.359375 -5.640625 C 5.84375 -5.640625 6.15625 -4.3125 6.15625 -3.234375 C 6.15625 -3.140625 6.15625 -3.046875 6.140625 -2.953125 Z M 6.140625 -2.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-15">
|
||||
<path style="stroke:none;" d="M 1.46875 -6.484375 L 0.75 -6.484375 C 0.46875 -6.484375 0.28125 -6.3125 0.28125 -6.03125 C 0.28125 -5.765625 0.453125 -5.609375 0.71875 -5.609375 L 1.4375 -5.609375 L 1.4375 -1.828125 C 1.4375 -0.890625 1.671875 0.109375 2.890625 0.109375 C 3.703125 0.109375 4.5625 -0.046875 5.265625 -0.421875 C 5.34375 -0.453125 5.46875 -0.5 5.46875 -0.609375 L 5.46875 -0.640625 C 5.46875 -0.828125 5.328125 -1.34375 5.171875 -1.34375 C 5.046875 -1.34375 4.875 -1.1875 4.734375 -1.109375 C 4.453125 -0.953125 4.109375 -0.859375 3.796875 -0.859375 C 3.234375 -0.859375 3.140625 -1.390625 3.140625 -2.140625 L 3.140625 -5.609375 L 4.734375 -5.609375 C 5 -5.609375 5.21875 -5.75 5.21875 -6.03125 C 5.21875 -6.34375 5.03125 -6.484375 4.71875 -6.484375 L 3.140625 -6.484375 L 3.140625 -7.84375 C 3.140625 -8.1875 3.015625 -8.34375 2.609375 -8.34375 C 2.515625 -8.34375 2.390625 -8.328125 2.296875 -8.328125 C 2.1875 -8.328125 2.09375 -8.34375 2 -8.34375 C 1.71875 -8.34375 1.46875 -8.28125 1.46875 -7.84375 Z M 1.46875 -6.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.8125 -6.75 L 2.8125 -0.765625 L 1.84375 -0.765625 C 1.75 -0.765625 1.671875 -0.78125 1.578125 -0.78125 C 1.28125 -0.78125 1.140625 -0.59375 1.140625 -0.375 C 1.140625 -0.15625 1.296875 -0.015625 1.578125 -0.015625 L 5.34375 -0.015625 C 5.609375 -0.015625 5.765625 -0.15625 5.765625 -0.375 C 5.765625 -0.625 5.59375 -0.765625 5.328125 -0.765625 L 4.21875 -0.765625 L 4.21875 -7.703125 C 4.21875 -8.015625 4 -8.09375 3.78125 -8.09375 C 3.515625 -8.09375 3.46875 -7.984375 3.3125 -7.875 C 2.8125 -7.421875 2.109375 -7.34375 1.46875 -7.3125 C 1.25 -7.296875 1.0625 -7.203125 1.0625 -6.9375 C 1.0625 -6.734375 1.1875 -6.5625 1.40625 -6.546875 C 1.875 -6.546875 2.359375 -6.625 2.8125 -6.75 Z M 2.8125 -6.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 1.28125 -1.328125 C 1.203125 -1.296875 1.1875 -1.21875 1.1875 -1.140625 L 1.1875 -0.21875 C 1.1875 -0.0625 1.25 -0.015625 1.40625 -0.015625 L 2.140625 -0.015625 C 2.203125 -0.015625 2.265625 0 2.3125 0 C 2.46875 0 2.515625 -0.078125 2.515625 -0.203125 L 2.515625 -1.140625 C 2.515625 -1.296875 2.46875 -1.34375 2.3125 -1.34375 L 1.578125 -1.34375 C 1.515625 -1.34375 1.453125 -1.34375 1.40625 -1.34375 C 1.34375 -1.34375 1.3125 -1.34375 1.28125 -1.328125 Z M 1.28125 -1.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 3.40625 -8.5625 C 2.703125 -8.46875 2.046875 -8.40625 1.484375 -7.9375 C 0.953125 -7.5 0.734375 -6.796875 0.734375 -6.140625 C 0.734375 -4.921875 1.75 -4.0625 2.875 -3.78125 C 3.859375 -3.53125 5.4375 -3.484375 5.4375 -2.203125 C 5.4375 -1.140625 4.546875 -0.890625 3.734375 -0.890625 C 2.8125 -0.890625 1.859375 -1.21875 1.15625 -1.765625 C 1.09375 -1.8125 1.015625 -1.921875 0.921875 -1.921875 C 0.78125 -1.921875 0.78125 -1.734375 0.75 -1.640625 C 0.703125 -1.34375 0.59375 -1 0.59375 -0.734375 C 0.59375 -0.640625 0.65625 -0.59375 0.734375 -0.5625 L 0.984375 -0.421875 C 1.828125 0.015625 2.8125 0.25 3.765625 0.25 C 5.15625 0.25 6.71875 -0.28125 6.71875 -2.3125 C 6.71875 -3.53125 5.828125 -4.5 4.703125 -4.84375 C 3.75 -5.125 2.015625 -5.125 2.015625 -6.3125 L 2.015625 -6.34375 C 2.015625 -7.359375 3.0625 -7.5 3.734375 -7.5 C 4.484375 -7.5 5.109375 -7.28125 5.71875 -6.78125 C 5.765625 -6.734375 5.859375 -6.640625 5.9375 -6.640625 C 6.109375 -6.640625 6.234375 -7.609375 6.234375 -7.8125 C 6.234375 -8.015625 5.765625 -8.15625 5.53125 -8.265625 C 4.921875 -8.5 4.265625 -8.5625 3.609375 -8.5625 Z M 3.40625 -8.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 4.65625 -0.53125 L 4.65625 -0.390625 C 4.65625 -0.046875 4.921875 0 5.140625 0 C 5.21875 0 5.3125 -0.015625 5.40625 -0.015625 L 5.5625 -0.015625 C 5.78125 -0.015625 6.015625 -0.046875 6.015625 -0.484375 L 6.015625 -4.859375 C 6.015625 -4.921875 6.03125 -5 6.03125 -5.0625 C 6.03125 -5.421875 5.765625 -5.484375 5.53125 -5.484375 L 5.0625 -5.484375 C 4.75 -5.484375 4.625 -5.328125 4.625 -5.03125 L 4.625 -2.390625 C 4.625 -2.234375 4.640625 -2.078125 4.640625 -1.90625 C 4.640625 -1.046875 4.03125 -0.53125 3.171875 -0.53125 L 3.0625 -0.53125 C 2.625 -0.53125 2.28125 -0.578125 2.28125 -1.40625 L 2.28125 -5.1875 C 2.25 -5.359375 2.078125 -5.484375 1.90625 -5.484375 L 1.34375 -5.484375 C 1.046875 -5.484375 0.890625 -5.328125 0.890625 -5.015625 C 0.890625 -4.9375 0.890625 -4.859375 0.890625 -4.78125 L 0.890625 -1.5 C 0.890625 -1.171875 0.90625 -0.84375 1.046875 -0.53125 C 1.359375 0.046875 2.125 0.109375 2.703125 0.109375 C 3.40625 0.109375 4.09375 -0.0625 4.65625 -0.53125 Z M 4.65625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 3.078125 -5.671875 C 1.859375 -5.5 0.4375 -5.171875 0.4375 -2.71875 C 0.4375 -1.984375 0.609375 -1.203125 1.109375 -0.671875 C 1.671875 -0.046875 2.578125 0.109375 3.375 0.109375 C 4.09375 0.109375 4.828125 -0.03125 5.46875 -0.375 C 5.5625 -0.421875 5.59375 -0.484375 5.59375 -0.5625 C 5.59375 -0.75 5.546875 -0.9375 5.53125 -1.125 C 5.53125 -1.203125 5.53125 -1.34375 5.421875 -1.375 L 5.390625 -1.375 C 5.265625 -1.375 5 -1.140625 4.8125 -1.046875 C 4.40625 -0.828125 3.9375 -0.734375 3.484375 -0.703125 L 3.40625 -0.703125 C 2.375 -0.703125 1.828125 -1.296875 1.828125 -2.71875 C 1.828125 -3.28125 1.84375 -3.953125 2.21875 -4.40625 C 2.515625 -4.75 2.96875 -4.859375 3.421875 -4.859375 C 4.046875 -4.859375 4.5 -4.71875 5.0625 -4.265625 C 5.109375 -4.21875 5.1875 -4.140625 5.265625 -4.140625 C 5.453125 -4.140625 5.46875 -4.65625 5.5 -4.84375 C 5.515625 -4.875 5.515625 -4.9375 5.515625 -4.984375 C 5.515625 -5.15625 4.8125 -5.453125 4.453125 -5.5625 C 4.078125 -5.65625 3.671875 -5.671875 3.28125 -5.671875 Z M 3.078125 -5.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 2.265625 -4.65625 C 2.265625 -4.703125 2.265625 -4.75 2.265625 -4.8125 L 2.265625 -8.03125 C 2.265625 -8.109375 2.265625 -8.171875 2.265625 -8.265625 C 2.265625 -8.671875 2.015625 -8.71875 1.75 -8.71875 L 1.328125 -8.71875 C 1.09375 -8.71875 0.890625 -8.625 0.890625 -8.3125 L 0.890625 -0.5 C 0.890625 -0.234375 0.9375 -0.015625 1.34375 -0.015625 L 1.796875 -0.015625 C 2.015625 -0.015625 2.28125 -0.0625 2.28125 -0.4375 L 2.28125 -2.75 C 2.28125 -3.640625 2.65625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.625 -4.75 4.625 -4.140625 4.625 -3.578125 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.859375 -0.015625 6.015625 -0.15625 6.015625 -0.484375 L 6.015625 -3.578125 C 6.015625 -4.609375 5.828125 -5.609375 4.15625 -5.609375 C 3.46875 -5.609375 2.578125 -5.234375 2.265625 -4.65625 Z M 2.265625 -4.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 1.703125 -2.28125 L 5.296875 -2.28125 C 5.609375 -2.28125 5.734375 -2.46875 5.734375 -2.765625 C 5.734375 -3.5625 5.5625 -4.53125 5 -5.0625 C 4.5 -5.515625 3.875 -5.671875 3.21875 -5.671875 C 2.46875 -5.671875 1.65625 -5.484375 1.09375 -4.9375 C 0.546875 -4.390625 0.375 -3.578125 0.375 -2.828125 C 0.375 -2.09375 0.53125 -1.3125 1.015625 -0.75 C 1.5625 -0.125 2.46875 0.109375 3.28125 0.109375 C 3.984375 0.109375 4.65625 0 5.296875 -0.28125 L 5.515625 -0.390625 C 5.59375 -0.421875 5.65625 -0.484375 5.65625 -0.578125 C 5.65625 -0.609375 5.640625 -0.640625 5.640625 -0.6875 L 5.609375 -1.09375 C 5.609375 -1.1875 5.609375 -1.359375 5.46875 -1.359375 C 5.40625 -1.359375 5.3125 -1.296875 5.265625 -1.25 C 4.734375 -0.859375 4.09375 -0.640625 3.421875 -0.640625 C 2.609375 -0.640625 1.75 -1.09375 1.703125 -2.28125 Z M 1.671875 -2.96875 C 1.734375 -3.890625 2 -4.90625 3.21875 -4.90625 C 4.34375 -4.90625 4.578125 -3.84375 4.578125 -2.96875 Z M 1.671875 -2.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.453125 2.03125 -5.5625 1.71875 -5.5625 C 1.625 -5.5625 1.53125 -5.546875 1.453125 -5.546875 L 1.296875 -5.546875 C 1.0625 -5.546875 0.890625 -5.40625 0.890625 -5.109375 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.28125 2.28125 -0.5 L 2.28125 -3.109375 C 2.359375 -3.953125 2.828125 -4.859375 3.734375 -4.859375 C 4.59375 -4.859375 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.4375 C 4.625 -0.03125 4.90625 -0.015625 5.140625 -0.015625 L 5.578125 -0.015625 C 5.84375 -0.015625 6.015625 -0.125 6.015625 -0.484375 L 6.015625 -2.015625 C 6.015625 -2.234375 6 -2.4375 6 -2.65625 C 6 -3.359375 6.109375 -4.34375 6.953125 -4.734375 C 7.109375 -4.8125 7.28125 -4.859375 7.453125 -4.859375 C 8.3125 -4.859375 8.359375 -4.25 8.359375 -3.71875 L 8.359375 -0.328125 C 8.453125 -0.03125 8.625 -0.015625 8.875 -0.015625 L 9.328125 -0.015625 C 9.671875 -0.015625 9.734375 -0.234375 9.734375 -0.46875 L 9.734375 -3.5625 C 9.734375 -4.5625 9.59375 -5.609375 7.859375 -5.609375 C 7.0625 -5.609375 6.359375 -5.1875 5.921875 -4.5625 C 5.65625 -5.375 5.015625 -5.609375 4.25 -5.609375 C 3.40625 -5.609375 2.828125 -5.3125 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 1.203125 -5.46875 C 0.953125 -5.4375 0.90625 -5.234375 0.90625 -4.96875 L 0.90625 -0.4375 C 0.90625 -0.0625 1.15625 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.046875 -0.015625 2.234375 -0.109375 2.265625 -0.3125 L 2.265625 -5.0625 C 2.265625 -5.375 2.0625 -5.5 1.78125 -5.5 C 1.6875 -5.5 1.578125 -5.484375 1.5 -5.484375 L 1.34375 -5.484375 C 1.296875 -5.484375 1.25 -5.484375 1.203125 -5.46875 Z M 1.140625 -8.578125 C 0.890625 -8.578125 0.828125 -8.296875 0.828125 -8.109375 C 0.828125 -8.03125 0.84375 -7.953125 0.84375 -7.875 L 0.84375 -7.515625 C 0.84375 -7.140625 1.09375 -7.09375 1.34375 -7.09375 L 1.890625 -7.09375 C 2.109375 -7.09375 2.328125 -7.1875 2.328125 -7.484375 L 2.328125 -8.140625 C 2.328125 -8.546875 2.09375 -8.59375 1.828125 -8.59375 L 1.28125 -8.59375 C 1.234375 -8.59375 1.1875 -8.59375 1.140625 -8.578125 Z M 1.140625 -8.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 1.21875 -5.484375 L 0.65625 -5.484375 C 0.40625 -5.484375 0.25 -5.328125 0.25 -5.109375 C 0.25 -4.84375 0.453125 -4.734375 0.734375 -4.734375 L 1.1875 -4.734375 L 1.1875 -1.515625 C 1.1875 -0.734375 1.390625 0.109375 2.40625 0.109375 C 3.0625 0.109375 3.6875 -0.046875 4.296875 -0.3125 C 4.359375 -0.34375 4.453125 -0.375 4.46875 -0.484375 C 4.46875 -0.78125 4.296875 -1.09375 4.21875 -1.09375 C 4.125 -1.09375 3.96875 -0.953125 3.859375 -0.890625 C 3.59375 -0.8125 3.34375 -0.703125 3.0625 -0.703125 C 2.53125 -0.703125 2.515625 -1.28125 2.515625 -1.75 L 2.515625 -4.734375 L 3.796875 -4.734375 C 4 -4.734375 4.25 -4.828125 4.25 -5.109375 C 4.25 -5.359375 4.0625 -5.484375 3.796875 -5.484375 L 2.515625 -5.484375 L 2.515625 -6.609375 C 2.515625 -6.84375 2.421875 -7.046875 2.109375 -7.046875 L 1.96875 -7.046875 C 1.90625 -7.046875 1.8125 -7.0625 1.71875 -7.0625 C 1.453125 -7.0625 1.21875 -6.984375 1.21875 -6.59375 Z M 1.21875 -5.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 4.375 -4.09375 L 4.390625 -4.09375 C 4.40625 -3.75 4.546875 -3.390625 4.640625 -3.0625 C 4.859375 -2.21875 5.109375 -1.375 5.375 -0.546875 C 5.53125 -0.078125 5.75 -0.015625 6.09375 -0.015625 L 6.84375 -0.015625 C 7.28125 -0.015625 7.359375 -0.265625 7.453125 -0.53125 C 7.921875 -1.953125 8.3125 -3.390625 8.75 -4.8125 C 8.78125 -4.9375 8.859375 -5.078125 8.859375 -5.21875 C 8.859375 -5.421875 8.671875 -5.484375 8.46875 -5.484375 L 8.265625 -5.484375 C 8.03125 -5.484375 7.796875 -5.46875 7.65625 -5.21875 C 7.578125 -5.03125 7.53125 -4.8125 7.46875 -4.609375 C 7.1875 -3.6875 6.890625 -2.765625 6.640625 -1.84375 C 6.546875 -1.578125 6.4375 -1.3125 6.390625 -1.046875 C 6.375 -1.140625 6.328125 -1.234375 6.3125 -1.3125 L 6.171875 -1.78125 C 5.875 -2.703125 5.59375 -3.625 5.328125 -4.546875 C 5.15625 -4.96875 5.21875 -5.484375 4.515625 -5.484375 C 4.09375 -5.484375 3.96875 -5.25 3.890625 -4.953125 C 3.609375 -4.0625 3.34375 -3.171875 3.078125 -2.28125 C 2.96875 -1.921875 2.875 -1.546875 2.734375 -1.203125 C 2.40625 -2.390625 2.046875 -3.5625 1.65625 -4.71875 C 1.53125 -5.109375 1.5 -5.484375 0.90625 -5.484375 L 0.703125 -5.484375 C 0.53125 -5.484375 0.28125 -5.46875 0.28125 -5.203125 C 0.28125 -5.078125 0.359375 -4.953125 0.375 -4.84375 L 1.671875 -0.609375 C 1.71875 -0.453125 1.75 -0.28125 1.859375 -0.171875 C 1.984375 -0.03125 2.171875 0 2.359375 0 C 2.46875 0 2.5625 -0.015625 2.65625 -0.015625 L 2.78125 -0.015625 C 3.375 -0.015625 3.421875 -0.671875 3.53125 -1.046875 C 3.734375 -1.734375 3.9375 -2.421875 4.140625 -3.109375 C 4.21875 -3.4375 4.34375 -3.765625 4.375 -4.09375 Z M 4.375 -4.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.3125 2.171875 -5.546875 1.8125 -5.546875 L 1.65625 -5.546875 C 1.578125 -5.546875 1.5 -5.5625 1.40625 -5.5625 C 1.140625 -5.5625 0.890625 -5.5 0.890625 -5.125 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.265625 2.28125 -0.5 L 2.28125 -2.5625 C 2.28125 -3.03125 2.28125 -3.453125 2.46875 -3.890625 C 2.671875 -4.40625 3.15625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.609375 -4.78125 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.875 -0.015625 6.03125 -0.171875 6.03125 -0.46875 C 6.03125 -0.546875 6.015625 -0.625 6.015625 -0.6875 L 6.015625 -3.5625 C 6.015625 -4.5625 5.859375 -5.609375 4.140625 -5.609375 L 4 -5.609375 C 3.265625 -5.5625 2.71875 -5.1875 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 2.046875 -1.09375 C 2.578125 -1.5625 3.140625 -2.078125 3.703125 -2.515625 L 4.5 -3.125 C 5.21875 -3.6875 5.96875 -4.40625 6.03125 -5.375 L 6.03125 -5.484375 C 6.03125 -7.125 4.65625 -8.09375 3.15625 -8.09375 C 2.0625 -8.09375 1.1875 -7.59375 0.703125 -6.640625 C 0.65625 -6.53125 0.578125 -6.390625 0.578125 -6.296875 L 0.578125 -6.28125 C 0.578125 -6.203125 0.640625 -6.140625 0.6875 -6.078125 L 0.96875 -5.765625 C 1.046875 -5.671875 1.15625 -5.484375 1.265625 -5.484375 C 1.40625 -5.484375 1.484375 -5.90625 1.5625 -6.078125 C 1.8125 -6.640625 2.265625 -7.0625 2.984375 -7.0625 C 3.828125 -7.0625 4.609375 -6.484375 4.609375 -5.515625 C 4.609375 -4.546875 3.9375 -3.875 3.3125 -3.265625 C 2.515625 -2.515625 1.703125 -1.78125 0.921875 -1.046875 C 0.8125 -0.9375 0.65625 -0.84375 0.65625 -0.671875 C 0.65625 -0.328125 0.671875 -0.015625 1.171875 -0.015625 L 5.625 -0.015625 C 6 -0.015625 6.03125 -0.265625 6.03125 -0.484375 L 6.03125 -0.59375 C 6.03125 -0.84375 6.015625 -1.125 5.609375 -1.125 L 4.84375 -1.125 C 3.90625 -1.125 2.96875 -1.125 2.046875 -1.09375 Z M 2.046875 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 3.09375 -5.671875 C 2.375 -5.578125 1.6875 -5.46875 1.140625 -4.953125 C 0.53125 -4.375 0.375 -3.5 0.375 -2.71875 C 0.375 -1.96875 0.53125 -1.15625 1.078125 -0.625 C 1.703125 0 2.625 0.109375 3.484375 0.109375 C 4.21875 0.109375 5.09375 -0.078125 5.640625 -0.640625 C 6.1875 -1.171875 6.328125 -1.953125 6.328125 -2.6875 C 6.328125 -3.453125 6.1875 -4.296875 5.640625 -4.875 C 5.03125 -5.515625 4.109375 -5.671875 3.265625 -5.671875 Z M 1.75 -2.421875 L 1.75 -2.953125 C 1.75 -3.796875 1.84375 -4.90625 3.34375 -4.90625 C 4.8125 -4.90625 4.953125 -3.8125 4.953125 -2.875 L 4.953125 -2.796875 C 4.953125 -1.90625 4.90625 -0.703125 3.328125 -0.703125 C 2.890625 -0.703125 2.421875 -0.828125 2.125 -1.171875 C 1.828125 -1.515625 1.8125 -1.984375 1.75 -2.421875 Z M 1.75 -2.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 0.203125 -7.421875 L 0.203125 -7.125 L 0.4375 -7.125 C 0.984375 -7.125 1.0625 -6.890625 1.203125 -6.453125 C 1.75 -4.859375 2.234375 -3.265625 2.765625 -1.671875 C 2.9375 -1.171875 3.09375 -0.703125 3.25 -0.203125 C 3.296875 -0.046875 3.328125 0.21875 3.53125 0.21875 L 3.5625 0.21875 C 3.71875 0.1875 3.765625 -0.09375 3.8125 -0.25 C 4.296875 -1.703125 4.765625 -3.15625 5.21875 -4.59375 C 5.328125 -4.921875 5.4375 -5.28125 5.5625 -5.609375 C 5.875 -4.828125 6.078125 -4.046875 6.34375 -3.234375 C 6.640625 -2.25 6.984375 -1.25 7.3125 -0.25 L 7.40625 0.046875 C 7.421875 0.125 7.46875 0.203125 7.5625 0.21875 L 7.59375 0.21875 C 7.78125 0.21875 7.8125 -0.03125 7.875 -0.1875 C 8.015625 -0.671875 8.1875 -1.140625 8.34375 -1.625 C 8.796875 -3.015625 9.234375 -4.421875 9.703125 -5.8125 C 9.90625 -6.390625 9.984375 -7.125 10.921875 -7.125 L 10.921875 -7.453125 L 8.765625 -7.453125 L 8.765625 -7.125 C 9.125 -7.125 9.65625 -6.96875 9.65625 -6.5625 C 9.65625 -6.390625 9.546875 -6.1875 9.484375 -6.015625 C 9.375 -5.65625 9.265625 -5.296875 9.140625 -4.9375 L 8.359375 -2.515625 C 8.21875 -2.078125 8.0625 -1.640625 7.921875 -1.203125 C 7.75 -1.625 7.640625 -2.078125 7.5 -2.515625 C 7.0625 -3.890625 6.65625 -5.296875 6.15625 -6.65625 C 6.140625 -6.703125 6.125 -6.765625 6.125 -6.8125 C 6.125 -7.125 6.65625 -7.125 6.96875 -7.125 L 6.96875 -7.453125 L 5.71875 -7.453125 L 5.484375 -7.421875 L 4.28125 -7.421875 L 4.28125 -7.125 L 4.46875 -7.125 C 4.671875 -7.125 4.890625 -7.125 5.03125 -7.03125 C 5.25 -6.84375 5.328125 -6.328125 5.375 -6.1875 C 5.40625 -6.140625 5.40625 -6.109375 5.40625 -6.0625 L 5.40625 -6.03125 C 5.40625 -5.921875 5.328125 -5.796875 5.296875 -5.6875 C 4.890625 -4.3125 4.390625 -2.953125 3.96875 -1.578125 C 3.921875 -1.453125 3.875 -1.328125 3.84375 -1.203125 C 3.78125 -1.609375 3.5625 -2.078125 3.421875 -2.484375 C 3.015625 -3.796875 2.59375 -5.109375 2.15625 -6.40625 C 2.109375 -6.53125 2.046875 -6.703125 2.046875 -6.828125 L 2.046875 -6.859375 C 2.109375 -7.125 2.546875 -7.125 2.828125 -7.125 L 2.890625 -7.125 L 2.890625 -7.453125 L 1.640625 -7.453125 L 1.40625 -7.421875 Z M 0.203125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 1.1875 -2.546875 L 4.34375 -2.546875 C 4.453125 -2.546875 4.5 -2.59375 4.5 -2.703125 C 4.5 -3.78125 3.921875 -4.859375 2.59375 -4.859375 C 1.28125 -4.859375 0.3125 -3.671875 0.3125 -2.421875 C 0.3125 -1.234375 1.171875 0.09375 2.640625 0.09375 C 3.46875 0.09375 4.171875 -0.34375 4.46875 -1.1875 C 4.484375 -1.234375 4.5 -1.265625 4.5 -1.3125 C 4.5 -1.375 4.4375 -1.421875 4.390625 -1.421875 C 4.203125 -1.421875 4.140625 -1.0625 4.078125 -0.9375 C 3.8125 -0.484375 3.296875 -0.15625 2.765625 -0.15625 C 2.15625 -0.15625 1.625 -0.59375 1.390625 -1.140625 C 1.203125 -1.578125 1.1875 -2.078125 1.1875 -2.546875 Z M 1.203125 -2.765625 C 1.203125 -3.609375 1.671875 -4.640625 2.578125 -4.640625 C 3.515625 -4.640625 3.796875 -3.546875 3.796875 -2.765625 Z M 1.203125 -2.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.484375 -4.359375 C 0.8125 -4.359375 1.140625 -4.328125 1.140625 -3.8125 L 1.140625 -0.796875 C 1.140625 -0.34375 0.84375 -0.34375 0.375 -0.34375 L 0.3125 -0.34375 L 0.3125 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.78125 -0.34375 2.65625 -0.328125 2.515625 -0.328125 C 2.171875 -0.328125 1.859375 -0.375 1.859375 -0.78125 L 1.859375 -2.265625 C 1.859375 -3.125 2.03125 -4.578125 3.125 -4.578125 C 3.171875 -4.578125 3.21875 -4.5625 3.265625 -4.5625 C 3.109375 -4.5 3.015625 -4.3125 3.015625 -4.15625 C 3.015625 -3.921875 3.203125 -3.734375 3.421875 -3.703125 C 3.734375 -3.703125 3.921875 -3.90625 3.921875 -4.171875 C 3.921875 -4.59375 3.5 -4.8125 3.140625 -4.8125 C 2.453125 -4.8125 1.9375 -4.1875 1.8125 -3.625 L 1.796875 -4.8125 Z M 0.3125 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-4">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.828125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.0625 -4.578125 4.203125 -3.921875 4.203125 -3.34375 L 4.203125 -0.75 C 4.203125 -0.375 3.90625 -0.34375 3.609375 -0.34375 L 3.375 -0.34375 L 3.375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.515625 -0.34375 C 5.203125 -0.34375 4.9375 -0.375 4.9375 -0.78125 L 4.9375 -2.828125 C 4.9375 -3.59375 5.359375 -4.578125 6.421875 -4.578125 C 7.078125 -4.578125 7.203125 -3.921875 7.203125 -3.34375 L 7.203125 -0.75 C 7.203125 -0.375 6.921875 -0.34375 6.625 -0.34375 L 6.375 -0.34375 L 6.375 -0.015625 L 8.78125 -0.015625 L 8.78125 -0.34375 L 8.53125 -0.34375 C 8.234375 -0.34375 7.953125 -0.34375 7.953125 -0.78125 L 7.953125 -3.203125 C 7.953125 -3.5625 7.9375 -3.921875 7.75 -4.21875 C 7.5 -4.6875 6.9375 -4.8125 6.4375 -4.8125 L 6.3125 -4.8125 C 5.734375 -4.75 5.078125 -4.3125 4.921875 -3.75 L 4.90625 -3.75 C 4.78125 -4.53125 4.125 -4.8125 3.46875 -4.8125 C 2.78125 -4.8125 2.109375 -4.375 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-5">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-6">
|
||||
<path style="stroke:none;" d="M 3.953125 -4.140625 C 3.671875 -4.140625 3.453125 -3.953125 3.453125 -3.671875 C 3.453125 -3.421875 3.65625 -3.1875 3.921875 -3.1875 C 4.171875 -3.1875 4.390625 -3.390625 4.390625 -3.6875 L 4.390625 -3.78125 C 4.28125 -4.609375 3.296875 -4.859375 2.6875 -4.859375 C 1.359375 -4.859375 0.375 -3.625 0.375 -2.359375 C 0.375 -1.078125 1.359375 0.09375 2.71875 0.09375 C 3.421875 0.09375 4.140625 -0.3125 4.421875 -1.0625 C 4.453125 -1.140625 4.5 -1.21875 4.5 -1.296875 L 4.5 -1.34375 C 4.46875 -1.390625 4.421875 -1.421875 4.375 -1.421875 C 4.203125 -1.421875 4.140625 -0.96875 4 -0.8125 C 3.734375 -0.40625 3.296875 -0.15625 2.8125 -0.15625 C 1.65625 -0.15625 1.25 -1.421875 1.25 -2.359375 C 1.25 -3.265625 1.546875 -4.53125 2.65625 -4.609375 L 2.734375 -4.609375 C 3.140625 -4.609375 3.671875 -4.484375 3.953125 -4.140625 Z M 3.953125 -4.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-7">
|
||||
<path style="stroke:none;" d="M 0.359375 -7.453125 L 0.359375 -7.125 L 0.5625 -7.125 C 0.90625 -7.125 1.1875 -7.09375 1.1875 -6.59375 L 1.1875 -0.78125 C 1.1875 -0.375 0.921875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.78125 L 4.921875 -3.21875 C 4.921875 -3.5625 4.921875 -3.921875 4.734375 -4.21875 C 4.484375 -4.65625 3.984375 -4.8125 3.484375 -4.8125 C 2.8125 -4.8125 2.078125 -4.390625 1.90625 -3.75 L 1.890625 -7.578125 Z M 0.359375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-8">
|
||||
<path style="stroke:none;" d="M 1.609375 -6.71875 C 1.609375 -5.984375 1.3125 -4.609375 0.203125 -4.609375 L 0.203125 -4.375 L 1.140625 -4.375 L 1.140625 -1.46875 C 1.140625 -1.140625 1.15625 -0.8125 1.3125 -0.53125 C 1.578125 -0.09375 2.078125 0.09375 2.546875 0.09375 C 3.421875 0.09375 3.609375 -0.859375 3.609375 -1.5625 L 3.609375 -1.984375 L 3.34375 -1.984375 C 3.34375 -1.828125 3.359375 -1.65625 3.359375 -1.5 C 3.359375 -0.984375 3.25 -0.15625 2.609375 -0.15625 C 1.984375 -0.15625 1.875 -0.921875 1.875 -1.421875 L 1.875 -4.375 L 3.421875 -4.375 L 3.421875 -4.703125 L 1.875 -4.703125 L 1.875 -6.71875 Z M 1.609375 -6.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-9">
|
||||
<path style="stroke:none;" d="M 3.328125 -7.453125 L 3.328125 -7.125 L 3.453125 -7.125 C 3.875 -7.125 4.15625 -7.109375 4.15625 -6.453125 L 4.15625 -4.140625 C 3.796875 -4.546875 3.34375 -4.8125 2.765625 -4.8125 C 1.46875 -4.8125 0.375 -3.703125 0.375 -2.34375 C 0.375 -1.140625 1.296875 0.09375 2.65625 0.09375 C 3.25 0.09375 3.703125 -0.15625 4.125 -0.625 L 4.125 0.09375 L 5.6875 -0.015625 L 5.6875 -0.34375 L 5.546875 -0.34375 C 5.1875 -0.34375 4.859375 -0.375 4.859375 -0.890625 L 4.859375 -7.578125 Z M 1.25 -2.09375 L 1.25 -2.25 C 1.25 -3.0625 1.359375 -3.875 2.109375 -4.390625 C 2.328125 -4.515625 2.578125 -4.5625 2.8125 -4.5625 C 3.375 -4.5625 4.140625 -4.140625 4.140625 -3.453125 C 4.140625 -3.3125 4.125 -3.171875 4.125 -3.03125 L 4.125 -1.21875 C 4.125 -1.0625 4.0625 -0.984375 3.984375 -0.859375 C 3.703125 -0.4375 3.21875 -0.125 2.71875 -0.125 C 1.890625 -0.125 1.390625 -0.90625 1.28125 -1.640625 C 1.265625 -1.78125 1.265625 -1.9375 1.25 -2.09375 Z M 1.25 -2.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-10">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.765625 L 4.921875 -3.234375 C 4.921875 -3.5625 4.921875 -3.890625 4.75 -4.1875 C 4.5 -4.671875 3.953125 -4.8125 3.4375 -4.8125 C 2.75 -4.8125 2.078125 -4.3125 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-11">
|
||||
<path style="stroke:none;" d="M 0.953125 -0.40625 C 1.140625 -0.078125 1.71875 0.09375 2.109375 0.09375 C 2.875 0.09375 3.8125 -0.15625 3.90625 -1.3125 C 3.90625 -2.03125 3.515625 -2.515625 2.90625 -2.765625 C 2.640625 -2.875 2.34375 -2.90625 2.078125 -2.96875 L 1.84375 -3.015625 C 1.421875 -3.09375 0.859375 -3.3125 0.859375 -3.84375 C 0.859375 -4.484375 1.578125 -4.671875 2.109375 -4.671875 C 2.90625 -4.671875 3.28125 -4.171875 3.375 -3.453125 C 3.375 -3.359375 3.375 -3.25 3.5 -3.25 C 3.625 -3.25 3.625 -3.359375 3.625 -3.453125 L 3.625 -4.734375 C 3.625 -4.78125 3.59375 -4.859375 3.515625 -4.859375 C 3.34375 -4.859375 3.234375 -4.5625 3.125 -4.5625 C 3.046875 -4.578125 2.984375 -4.640625 2.921875 -4.671875 C 2.6875 -4.8125 2.40625 -4.859375 2.125 -4.859375 C 1.46875 -4.859375 0.359375 -4.640625 0.359375 -3.5625 C 0.359375 -2.375 1.671875 -2.25 2.4375 -2.09375 C 2.90625 -2 3.390625 -1.671875 3.40625 -1.140625 C 3.40625 -0.34375 2.703125 -0.125 2.140625 -0.125 C 1.28125 -0.125 0.875 -0.796875 0.671875 -1.53125 C 0.640625 -1.640625 0.671875 -1.875 0.484375 -1.875 C 0.421875 -1.875 0.359375 -1.828125 0.359375 -1.75 L 0.359375 -0.3125 C 0.359375 -0.25 0.34375 -0.1875 0.34375 -0.125 C 0.34375 -0.03125 0.375 0.09375 0.484375 0.09375 C 0.640625 0.078125 0.78125 -0.265625 0.953125 -0.40625 Z M 0.953125 -0.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-12">
|
||||
<path style="stroke:none;" d="M 2.546875 -4.859375 C 1.15625 -4.703125 0.3125 -3.5625 0.3125 -2.328125 C 0.3125 -1.171875 1.203125 0.109375 2.703125 0.109375 C 4.0625 0.109375 5.09375 -1.0625 5.09375 -2.34375 C 5.09375 -3.625 4.125 -4.859375 2.65625 -4.859375 Z M 1.1875 -2.09375 C 1.171875 -2.1875 1.171875 -2.28125 1.171875 -2.359375 C 1.171875 -3.234375 1.375 -4.625 2.703125 -4.625 C 3.84375 -4.625 4.21875 -3.546875 4.21875 -2.5 C 4.21875 -1.609375 4.109375 -0.234375 2.765625 -0.15625 L 2.703125 -0.15625 C 1.828125 -0.15625 1.296875 -0.921875 1.21875 -1.765625 C 1.203125 -1.875 1.203125 -1.984375 1.1875 -2.09375 Z M 1.1875 -2.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-13">
|
||||
<path style="stroke:none;" d="M 0.203125 -4.703125 L 0.203125 -4.375 L 0.34375 -4.375 C 0.953125 -4.375 1 -4 1.25 -3.28125 C 1.609375 -2.234375 1.984375 -1.21875 2.34375 -0.1875 C 2.390625 -0.078125 2.421875 0.078125 2.5625 0.09375 L 2.578125 0.09375 C 2.828125 0.09375 2.984375 -0.625 3.125 -1 C 3.34375 -1.5625 3.53125 -2.125 3.734375 -2.6875 C 3.796875 -2.859375 3.859375 -3.015625 3.90625 -3.203125 L 3.921875 -3.203125 C 4.09375 -2.4375 4.453125 -1.71875 4.703125 -0.984375 C 4.828125 -0.609375 5 0.09375 5.21875 0.09375 L 5.25 0.09375 C 5.40625 0.09375 5.4375 -0.0625 5.46875 -0.1875 C 5.78125 -1.09375 6.125 -2 6.453125 -2.921875 C 6.703125 -3.609375 6.859375 -4.375 7.625 -4.375 L 7.625 -4.703125 L 6.875 -4.671875 L 5.859375 -4.671875 L 5.859375 -4.375 C 6.140625 -4.359375 6.4375 -4.203125 6.46875 -3.90625 L 6.46875 -3.859375 C 6.46875 -3.71875 6.40625 -3.578125 6.34375 -3.4375 C 6.078125 -2.65625 5.8125 -1.875 5.515625 -1.109375 C 5.484375 -1.03125 5.453125 -0.9375 5.4375 -0.84375 L 5.421875 -0.84375 C 5.140625 -1.84375 4.71875 -2.84375 4.359375 -3.8125 C 4.328125 -3.890625 4.28125 -3.984375 4.28125 -4.078125 C 4.28125 -4.359375 4.6875 -4.375 4.90625 -4.375 L 4.90625 -4.703125 L 2.828125 -4.703125 L 2.828125 -4.375 L 2.984375 -4.375 C 3.40625 -4.375 3.546875 -4.25 3.671875 -3.84375 C 3.703125 -3.78125 3.75 -3.671875 3.75 -3.59375 L 3.75 -3.5625 C 3.71875 -3.359375 3.59375 -3.109375 3.515625 -2.890625 C 3.375 -2.46875 3.234375 -2.078125 3.078125 -1.65625 C 3 -1.421875 2.890625 -1.203125 2.828125 -0.953125 C 2.765625 -1.21875 2.65625 -1.46875 2.5625 -1.71875 C 2.3125 -2.4375 2.046875 -3.140625 1.796875 -3.84375 C 1.78125 -3.921875 1.734375 -4 1.734375 -4.078125 C 1.734375 -4.359375 2.109375 -4.375 2.296875 -4.375 L 2.359375 -4.375 L 2.359375 -4.703125 Z M 0.203125 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-14">
|
||||
<path style="stroke:none;" d="M 0.953125 -6.65625 C 1.296875 -7.21875 1.828125 -7.453125 2.4375 -7.453125 C 3.109375 -7.453125 3.640625 -7.25 3.640625 -6.234375 C 3.640625 -5.78125 3.515625 -5.46875 3.171875 -5.125 C 2.515625 -4.328125 2.28125 -3.5 2.28125 -2.359375 L 2.28125 -2.15625 C 2.28125 -2.078125 2.3125 -2 2.40625 -2 C 2.515625 -2 2.546875 -2.09375 2.546875 -2.203125 C 2.546875 -2.265625 2.546875 -2.328125 2.546875 -2.375 C 2.546875 -3.46875 2.875 -4.265625 3.78125 -4.96875 C 4.21875 -5.328125 4.453125 -5.578125 4.515625 -6.078125 L 4.515625 -6.1875 C 4.515625 -7.125 3.703125 -7.6875 2.40625 -7.6875 L 2.28125 -7.6875 C 1.5 -7.640625 0.59375 -7.125 0.59375 -6.234375 C 0.59375 -5.921875 0.828125 -5.734375 1.0625 -5.734375 C 1.3125 -5.734375 1.53125 -5.921875 1.53125 -6.1875 C 1.53125 -6.46875 1.34375 -6.671875 1.0625 -6.671875 C 1.03125 -6.671875 1 -6.65625 0.953125 -6.65625 Z M 2.328125 -1.09375 C 2.03125 -1.046875 1.875 -0.796875 1.875 -0.5625 C 1.875 -0.3125 2.046875 -0.015625 2.40625 -0.015625 C 2.734375 -0.015625 2.9375 -0.28125 2.9375 -0.5625 C 2.9375 -0.8125 2.765625 -1.09375 2.421875 -1.09375 C 2.390625 -1.09375 2.359375 -1.09375 2.328125 -1.09375 Z M 2.328125 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-15">
|
||||
<path style="stroke:none;" d="M 0.484375 -7.453125 L 0.484375 -7.125 C 0.609375 -7.125 0.734375 -7.140625 0.875 -7.140625 C 1.234375 -7.140625 1.5625 -7.09375 1.5625 -6.6875 C 1.5625 -6.609375 1.546875 -6.546875 1.546875 -6.484375 L 1.546875 -1.125 C 1.546875 -0.421875 0.96875 -0.34375 0.484375 -0.34375 L 0.484375 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.421875 -0.34375 1.828125 -0.421875 1.828125 -1.15625 C 1.828125 -1.28125 1.84375 -1.390625 1.84375 -1.5 L 1.859375 -7.0625 C 1.90625 -6.84375 2 -6.625 2.09375 -6.40625 L 2.515625 -5.328125 C 3.15625 -3.703125 3.8125 -2.046875 4.421875 -0.390625 C 4.46875 -0.265625 4.515625 -0.015625 4.6875 -0.015625 C 4.859375 -0.015625 4.90625 -0.28125 4.953125 -0.40625 L 5.4375 -1.671875 C 6.0625 -3.265625 6.65625 -4.84375 7.28125 -6.421875 C 7.375 -6.65625 7.484375 -6.90625 7.546875 -7.140625 L 7.5625 -1.0625 C 7.5625 -0.984375 7.5625 -0.890625 7.5625 -0.796875 C 7.5625 -0.375 7.234375 -0.328125 6.875 -0.328125 C 6.75 -0.328125 6.609375 -0.34375 6.5 -0.34375 L 6.5 -0.015625 L 7.703125 -0.015625 L 7.96875 -0.046875 L 9.4375 -0.046875 L 9.4375 -0.34375 C 9.3125 -0.34375 9.1875 -0.328125 9.046875 -0.328125 C 8.703125 -0.328125 8.359375 -0.375 8.359375 -0.78125 C 8.359375 -0.84375 8.375 -0.921875 8.375 -0.984375 L 8.375 -6.65625 C 8.375 -7.078125 8.71875 -7.140625 9.046875 -7.140625 C 9.1875 -7.140625 9.3125 -7.125 9.4375 -7.125 L 9.4375 -7.453125 L 7.65625 -7.453125 L 7.453125 -7.421875 L 7.359375 -7.265625 L 4.96875 -1.046875 L 2.578125 -7.265625 L 2.46875 -7.421875 L 2.28125 -7.453125 Z M 0.484375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-16">
|
||||
<path style="stroke:none;" d="M 0.421875 -4.6875 L 0.421875 -4.359375 L 0.59375 -4.359375 C 0.9375 -4.359375 1.203125 -4.3125 1.203125 -3.8125 L 1.203125 -0.796875 C 1.203125 -0.359375 0.921875 -0.34375 0.375 -0.34375 L 0.375 -0.015625 L 2.65625 -0.015625 L 2.65625 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.71875 L 1.90625 -4.8125 Z M 1.3125 -7.265625 C 1 -7.21875 0.84375 -6.96875 0.84375 -6.734375 C 0.84375 -6.484375 1.03125 -6.1875 1.375 -6.1875 C 1.71875 -6.1875 1.921875 -6.453125 1.921875 -6.734375 C 1.921875 -6.984375 1.75 -7.28125 1.390625 -7.28125 C 1.359375 -7.28125 1.328125 -7.265625 1.3125 -7.265625 Z M 1.3125 -7.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-17">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.125 L 0.8125 -7.125 C 1.171875 -7.125 1.515625 -7.09375 1.515625 -6.703125 C 1.515625 -6.625 1.5 -6.546875 1.5 -6.484375 L 1.5 -0.8125 C 1.5 -0.375 1.15625 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 6.015625 -0.015625 L 6.3125 -2.8125 L 6.046875 -2.8125 C 5.9375 -1.8125 5.84375 -0.75 4.515625 -0.40625 C 4.203125 -0.34375 3.90625 -0.34375 3.59375 -0.34375 L 2.796875 -0.34375 C 2.578125 -0.34375 2.40625 -0.390625 2.40625 -0.703125 L 2.40625 -6.65625 C 2.40625 -7.09375 2.78125 -7.140625 3.125 -7.140625 C 3.234375 -7.140625 3.34375 -7.125 3.4375 -7.125 L 3.734375 -7.125 L 3.734375 -7.453125 L 2.25 -7.453125 L 1.984375 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-18">
|
||||
<path style="stroke:none;" d="M 0.3125 -7.453125 L 0.3125 -7.125 L 0.46875 -7.125 C 0.8125 -7.125 1.140625 -7.09375 1.140625 -6.59375 L 1.140625 -0.015625 L 1.390625 -0.03125 L 1.8125 -0.703125 C 2.078125 -0.1875 2.6875 0.09375 3.25 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.59375 4.71875 -4.8125 3.28125 -4.8125 C 2.703125 -4.8125 2.25 -4.53125 1.859375 -4.09375 L 1.859375 -7.578125 Z M 4.75 -2.109375 C 4.71875 -1.578125 4.640625 -1.078125 4.28125 -0.671875 C 4.015625 -0.34375 3.59375 -0.140625 3.171875 -0.140625 C 2.71875 -0.140625 2.328125 -0.375 2.0625 -0.765625 C 1.96875 -0.890625 1.890625 -1.03125 1.890625 -1.1875 L 1.890625 -3.015625 C 1.890625 -3.15625 1.875 -3.28125 1.875 -3.421875 C 1.875 -4.0625 2.640625 -4.578125 3.28125 -4.578125 C 4.46875 -4.578125 4.765625 -3.25 4.765625 -2.34375 C 4.765625 -2.265625 4.765625 -2.1875 4.75 -2.109375 Z M 4.75 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-19">
|
||||
<path style="stroke:none;" d="M 0.375 -7.453125 L 0.375 -7.125 L 0.5625 -7.125 C 0.921875 -7.125 1.203125 -7.09375 1.203125 -6.578125 L 1.203125 -0.78125 C 1.203125 -0.375 0.90625 -0.34375 0.59375 -0.34375 L 0.375 -0.34375 L 0.375 -0.015625 L 2.734375 -0.015625 L 2.734375 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.765625 L 1.90625 -7.578125 Z M 0.375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-20">
|
||||
<path style="stroke:none;" d="M 1.15625 -2.109375 C 0.9375 -1.890625 0.8125 -1.5 0.8125 -1.203125 C 0.8125 -0.8125 1 -0.53125 1.28125 -0.234375 C 0.78125 -0.140625 0.3125 0.3125 0.3125 0.84375 C 0.3125 1.96875 2.078125 2.234375 2.71875 2.234375 C 3.6875 2.234375 5.109375 1.859375 5.109375 0.796875 C 5.109375 -0.4375 3.859375 -0.71875 2.71875 -0.71875 L 1.96875 -0.71875 C 1.421875 -0.71875 1.140625 -1.015625 1.140625 -1.46875 C 1.140625 -1.671875 1.25 -1.828125 1.3125 -1.96875 C 1.609375 -1.78125 1.9375 -1.65625 2.296875 -1.640625 L 2.375 -1.640625 C 3.25 -1.640625 4 -2.171875 4.140625 -3.09375 L 4.140625 -3.203125 C 4.140625 -3.5625 4.015625 -3.921875 3.78125 -4.1875 C 3.765625 -4.21875 3.734375 -4.25 3.734375 -4.28125 L 3.734375 -4.296875 C 3.875 -4.515625 4.390625 -4.703125 4.703125 -4.703125 C 4.75 -4.703125 4.78125 -4.6875 4.828125 -4.6875 C 4.75 -4.625 4.671875 -4.5625 4.65625 -4.453125 L 4.65625 -4.421875 C 4.65625 -4.25 4.796875 -4.109375 4.96875 -4.109375 C 5.171875 -4.109375 5.25 -4.265625 5.25 -4.421875 C 5.25 -4.765625 4.9375 -4.921875 4.671875 -4.921875 C 4.3125 -4.921875 3.9375 -4.765625 3.65625 -4.53125 C 3.625 -4.5 3.59375 -4.453125 3.546875 -4.453125 L 3.53125 -4.453125 C 3.46875 -4.453125 3.25 -4.640625 3.09375 -4.671875 C 2.875 -4.765625 2.640625 -4.8125 2.40625 -4.8125 C 1.578125 -4.8125 0.75 -4.21875 0.65625 -3.359375 L 0.65625 -3.25 C 0.65625 -2.828125 0.8125 -2.375 1.15625 -2.109375 Z M 0.859375 0.921875 L 0.859375 0.828125 C 0.859375 0.234375 1.390625 -0.09375 1.96875 -0.09375 L 3.015625 -0.09375 C 3.609375 -0.09375 4.4375 0.046875 4.546875 0.765625 L 4.546875 0.84375 C 4.546875 1.65625 3.375 1.984375 2.6875 1.984375 C 1.96875 1.984375 0.96875 1.65625 0.859375 0.921875 Z M 1.4375 -3.015625 L 1.4375 -3.140625 C 1.4375 -3.734375 1.578125 -4.546875 2.390625 -4.546875 C 3.09375 -4.546875 3.359375 -3.921875 3.359375 -3.21875 C 3.359375 -2.671875 3.21875 -1.890625 2.40625 -1.890625 C 1.78125 -1.890625 1.515625 -2.40625 1.4375 -3.015625 Z M 1.4375 -3.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-21">
|
||||
<path style="stroke:none;" d="M 0.5625 -4.703125 L 0.453125 -2.953125 L 0.703125 -2.953125 C 0.734375 -3.328125 0.75 -3.78125 1 -4.09375 C 1.25 -4.4375 1.765625 -4.46875 2.203125 -4.46875 L 3.4375 -4.46875 C 2.484375 -3.09375 1.4375 -1.75 0.4375 -0.40625 C 0.375 -0.34375 0.3125 -0.25 0.3125 -0.15625 C 0.3125 -0.046875 0.375 -0.015625 0.46875 -0.015625 L 4.1875 -0.015625 L 4.359375 -2.046875 L 4.09375 -2.046875 C 4.0625 -1.578125 4.03125 -1.046875 3.765625 -0.703125 C 3.453125 -0.3125 2.921875 -0.265625 2.4375 -0.265625 L 1.203125 -0.265625 C 1.296875 -0.421875 1.40625 -0.546875 1.515625 -0.6875 C 2.390625 -1.90625 3.3125 -3.09375 4.1875 -4.3125 C 4.25 -4.390625 4.328125 -4.46875 4.328125 -4.5625 C 4.328125 -4.671875 4.25 -4.703125 4.171875 -4.703125 Z M 0.5625 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-22">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.546875 -4.359375 C 0.859375 -4.359375 1.140625 -4.3125 1.140625 -3.875 L 1.140625 1.3125 C 1.140625 1.765625 0.84375 1.78125 0.3125 1.78125 L 0.3125 2.109375 L 2.71875 2.109375 L 2.71875 1.78125 L 2.46875 1.78125 C 2.15625 1.78125 1.890625 1.734375 1.890625 1.34375 L 1.890625 -0.578125 C 2.140625 -0.125 2.78125 0.09375 3.265625 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.5625 4.734375 -4.8125 3.40625 -4.8125 C 2.796875 -4.8125 2.296875 -4.578125 1.859375 -4.09375 L 1.859375 -4.8125 Z M 4.75 -2.171875 C 4.71875 -1.34375 4.265625 -0.203125 3.265625 -0.125 L 3.15625 -0.125 C 2.640625 -0.125 1.890625 -0.625 1.890625 -1.171875 L 1.890625 -3 C 1.890625 -3.140625 1.875 -3.265625 1.875 -3.40625 C 1.875 -4 2.609375 -4.546875 3.265625 -4.546875 C 4.390625 -4.546875 4.765625 -3.140625 4.765625 -2.34375 C 4.765625 -2.296875 4.765625 -2.21875 4.75 -2.171875 Z M 4.75 -2.171875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="195.926" y="141.749"/>
|
||||
<use xlink:href="#glyph0-2" x="213.396144" y="141.749"/>
|
||||
<use xlink:href="#glyph0-3" x="219.198174" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="238.054771" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="260.229766" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="271.048651" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="276.830019" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="293.616234" y="141.749"/>
|
||||
<use xlink:href="#glyph0-3" x="306.13151" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="316.950395" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="333.279969" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="347.859429" y="141.749"/>
|
||||
<use xlink:href="#glyph0-10" x="356.130628" y="141.749"/>
|
||||
<use xlink:href="#glyph0-11" x="368.645904" y="141.749"/>
|
||||
<use xlink:href="#glyph0-3" x="382.745994" y="141.749"/>
|
||||
<use xlink:href="#glyph0-5" x="393.544216" y="141.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="251.856" y="175.953"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="259.637379" y="175.953"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="266.837737" y="175.953"/>
|
||||
<use xlink:href="#glyph1-3" x="273.665093" y="175.953"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="281.640146" y="175.953"/>
|
||||
<use xlink:href="#glyph1-4" x="288.467502" y="175.953"/>
|
||||
<use xlink:href="#glyph1-5" x="295.294859" y="175.953"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="305.152133" y="175.953"/>
|
||||
<use xlink:href="#glyph1-7" x="315.20595" y="175.953"/>
|
||||
<use xlink:href="#glyph1-8" x="322.793655" y="175.953"/>
|
||||
<use xlink:href="#glyph1-8" x="328.179219" y="175.953"/>
|
||||
<use xlink:href="#glyph1-9" x="333.564782" y="175.953"/>
|
||||
<use xlink:href="#glyph1-10" x="339.633225" y="175.953"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="262.554" y="204.733"/>
|
||||
<use xlink:href="#glyph1-12" x="269.381357" y="204.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="277.719368" y="204.733"/>
|
||||
<use xlink:href="#glyph1-4" x="290.240731" y="204.733"/>
|
||||
<use xlink:href="#glyph1-14" x="297.068088" y="204.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="305.406099" y="204.733"/>
|
||||
<use xlink:href="#glyph1-16" x="312.233456" y="204.733"/>
|
||||
<use xlink:href="#glyph1-17" x="319.060813" y="204.733"/>
|
||||
<use xlink:href="#glyph1-18" x="325.888169" y="204.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="89.291" y="256.315"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="105.766176" y="256.315"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="115.545981" y="256.315"/>
|
||||
<use xlink:href="#glyph2-4" x="121.158214" y="256.315"/>
|
||||
<use xlink:href="#glyph2-5" x="129.633949" y="256.315"/>
|
||||
<use xlink:href="#glyph2-6" x="139.247338" y="256.315"/>
|
||||
<use xlink:href="#glyph2-7" x="146.763312" y="256.315"/>
|
||||
<use xlink:href="#glyph2-8" x="150.661174" y="256.315"/>
|
||||
<use xlink:href="#glyph2-9" x="156.979241" y="256.315"/>
|
||||
<use xlink:href="#glyph2-10" x="165.454976" y="256.315"/>
|
||||
<use xlink:href="#glyph2-11" x="172.780146" y="256.315"/>
|
||||
<use xlink:href="#glyph2-6" x="181.25588" y="256.315"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="89.291" y="281.063"/>
|
||||
<use xlink:href="#glyph3-2" x="96.014604" y="281.063"/>
|
||||
<use xlink:href="#glyph3-1" x="99.749409" y="281.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="113.191836" y="281.063"/>
|
||||
<use xlink:href="#glyph3-4" x="120.661445" y="281.063"/>
|
||||
<use xlink:href="#glyph3-5" x="127.578724" y="281.063"/>
|
||||
<use xlink:href="#glyph3-6" x="133.555128" y="281.063"/>
|
||||
<use xlink:href="#glyph3-7" x="140.472407" y="281.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-8" x="151.063518" y="281.063"/>
|
||||
<use xlink:href="#glyph3-9" x="161.715602" y="281.063"/>
|
||||
<use xlink:href="#glyph3-10" x="164.89688" y="281.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="174.235087" y="281.063"/>
|
||||
<use xlink:href="#glyph3-5" x="181.704696" y="281.063"/>
|
||||
<use xlink:href="#glyph3-6" x="187.6811" y="281.063"/>
|
||||
<use xlink:href="#glyph3-11" x="194.598379" y="281.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="203.385451" y="281.063"/>
|
||||
<use xlink:href="#glyph3-9" x="209.493363" y="281.063"/>
|
||||
<use xlink:href="#glyph3-12" x="212.674642" y="281.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="89.291" y="302.054"/>
|
||||
<use xlink:href="#glyph3-2" x="96.014604" y="302.054"/>
|
||||
<use xlink:href="#glyph3-13" x="99.749409" y="302.054"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="113.191836" y="302.054"/>
|
||||
<use xlink:href="#glyph3-4" x="120.661445" y="302.054"/>
|
||||
<use xlink:href="#glyph3-5" x="127.578724" y="302.054"/>
|
||||
<use xlink:href="#glyph3-6" x="133.555128" y="302.054"/>
|
||||
<use xlink:href="#glyph3-7" x="140.472407" y="302.054"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="151.063518" y="302.054"/>
|
||||
<use xlink:href="#glyph3-6" x="157.787123" y="302.054"/>
|
||||
<use xlink:href="#glyph3-12" x="164.704402" y="302.054"/>
|
||||
<use xlink:href="#glyph3-7" x="171.62168" y="302.054"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="182.212792" y="302.054"/>
|
||||
<use xlink:href="#glyph3-5" x="189.682401" y="302.054"/>
|
||||
<use xlink:href="#glyph3-6" x="195.658805" y="302.054"/>
|
||||
<use xlink:href="#glyph3-11" x="202.576084" y="302.054"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="211.363156" y="302.054"/>
|
||||
<use xlink:href="#glyph3-9" x="217.471068" y="302.054"/>
|
||||
<use xlink:href="#glyph3-12" x="220.652347" y="302.054"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="89.291" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="99.527009" y="322.647"/>
|
||||
<use xlink:href="#glyph4-3" x="104.348831" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-4" x="112.190292" y="322.647"/>
|
||||
<use xlink:href="#glyph4-5" x="121.22739" y="322.647"/>
|
||||
<use xlink:href="#glyph4-6" x="126.651395" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-7" x="131.167762" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-8" x="136.888494" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-9" x="144.729955" y="322.647"/>
|
||||
<use xlink:href="#glyph4-2" x="150.756142" y="322.647"/>
|
||||
<use xlink:href="#glyph4-10" x="155.577964" y="322.647"/>
|
||||
<use xlink:href="#glyph4-10" x="161.604151" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-11" x="171.24125" y="322.647"/>
|
||||
<use xlink:href="#glyph4-12" x="175.52089" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-13" x="180.650349" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-5" x="188.177628" y="322.647"/>
|
||||
<use xlink:href="#glyph4-11" x="193.601632" y="322.647"/>
|
||||
<use xlink:href="#glyph4-14" x="197.881272" y="322.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="89.291" y="357.015"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="105.766176" y="357.015"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="115.545981" y="357.015"/>
|
||||
<use xlink:href="#glyph2-4" x="121.158214" y="357.015"/>
|
||||
<use xlink:href="#glyph2-5" x="129.633949" y="357.015"/>
|
||||
<use xlink:href="#glyph2-6" x="139.247338" y="357.015"/>
|
||||
<use xlink:href="#glyph2-7" x="146.763312" y="357.015"/>
|
||||
<use xlink:href="#glyph2-3" x="150.661174" y="357.015"/>
|
||||
<use xlink:href="#glyph2-6" x="156.273408" y="357.015"/>
|
||||
<use xlink:href="#glyph2-13" x="163.789382" y="357.015"/>
|
||||
<use xlink:href="#glyph2-6" x="170.943832" y="357.015"/>
|
||||
<use xlink:href="#glyph2-14" x="178.459806" y="357.015"/>
|
||||
<use xlink:href="#glyph2-15" x="186.935541" y="357.015"/>
|
||||
<use xlink:href="#glyph2-6" x="192.886345" y="357.015"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-15" x="89.291" y="381.365"/>
|
||||
<use xlink:href="#glyph4-2" x="99.228099" y="381.365"/>
|
||||
<use xlink:href="#glyph4-16" x="104.049921" y="381.365"/>
|
||||
<use xlink:href="#glyph4-10" x="107.065197" y="381.365"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-17" x="116.702296" y="381.365"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-16" x="123.489938" y="381.365"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="126.494304" y="381.365"/>
|
||||
<use xlink:href="#glyph4-18" x="131.316126" y="381.365"/>
|
||||
<use xlink:href="#glyph4-19" x="137.342313" y="381.365"/>
|
||||
<use xlink:href="#glyph4-16" x="140.357588" y="381.365"/>
|
||||
<use xlink:href="#glyph4-10" x="143.372863" y="381.365"/>
|
||||
<use xlink:href="#glyph4-20" x="149.39905" y="381.365"/>
|
||||
<use xlink:href="#glyph4-11" x="154.823055" y="381.365"/>
|
||||
<use xlink:href="#glyph4-3" x="159.102695" y="381.365"/>
|
||||
<use xlink:href="#glyph4-2" x="163.322334" y="381.365"/>
|
||||
<use xlink:href="#glyph4-21" x="168.144157" y="381.365"/>
|
||||
<use xlink:href="#glyph4-2" x="172.965979" y="381.365"/>
|
||||
<use xlink:href="#glyph4-22" x="177.787801" y="381.365"/>
|
||||
<use xlink:href="#glyph4-8" x="183.813988" y="381.365"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
19
sections/german/03/title.tex
Normal file
@ -0,0 +1,19 @@
|
||||
\documentclass[ngerman]{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\author{Fooboar Rüssel}
|
||||
\title{Die Welt der Trüffel}
|
||||
\date{\today}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
\thispagestyle{empty}
|
||||
\section{Trüffelsuche}
|
||||
\subsection{Suche mit Schwein}
|
||||
\subsection{Suche ohne Schwein}
|
||||
Wer macht denn sowas?
|
||||
\section{Trüffelrezepte}
|
||||
Mein Lieblingsrezept
|
||||
\end{document}
|
||||
|
||||
@ -1,163 +1,236 @@
|
||||
|
||||
<div class="layout layout-chapter-heading">
|
||||
<h1 class="layout-title">Projektstruktur</h1>
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>Projektstruktur</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## Zielsetzung
|
||||
Ein größeres LaTeX-Projekt anlegen und dabei ...
|
||||
* ... verhindern, dass LaTeX-Dokumente zu monströser Größe anwachsen 👹
|
||||
* ... den Überblick über die Struktur eines Projekts behalten
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Zielsetzung</h2>
|
||||
<p>Ein größeres LaTeX-Projekt anlegen und dabei …</p>
|
||||
<ul>
|
||||
<li>verhindern, dass LaTeX-Dokumente zu monströser Größe anwachsen 👹</li>
|
||||
<li>den Überblick über die Struktur eines Projekts behalten</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/langes-dokument.png" style="background: white; padding: .2em;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout layout-side-by-side">
|
||||
|
||||
<h2 class="layout-title">Hauptdatei 👑</h2>
|
||||
|
||||
<div class="layout-content-left">
|
||||
|
||||
<ul>
|
||||
<li>enthält Grundgerüst, Titelei, etc. </li>
|
||||
<li>bindet einzelne Kapitel ein mit
|
||||
<div class="layout layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 class="layout-title">Hauptdatei 👑</h2>
|
||||
<ul>
|
||||
<li><code>\input{filename.tex}</code> ODER</li>
|
||||
<li><code>\include{filename}</code></li>
|
||||
<li>enthält Grundgerüst, Titel, Inhaltsverzeichnis etc.</li>
|
||||
<li>bindet einzelne Kapitel ein mit<br>
|
||||
<code>\input{file.tex}</code> oder <code>\include{file}</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<pre class="lang-tex hljs" data-sourcefile="main.tex"><code>\documentclass{article}
|
||||
<pre class="lang-tex hljs" data-sourcefile="main.tex"><code>\documentclass{article}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\title{Ein Titel}
|
||||
\begin{document}
|
||||
\maketitle
|
||||
\tableofcontents
|
||||
\input{abschnitt1.tex}
|
||||
\input{abschnitt2.tex}
|
||||
\end{document}
|
||||
</code></pre>
|
||||
\maketitle
|
||||
\tableofcontents
|
||||
\input{abschnitt1.tex}
|
||||
\input{abschnitt2.tex}
|
||||
\end{document}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||

|
||||
</div>
|
||||
|
||||
</div>
|
||||
---
|
||||
|
||||
<div class="layout-content-right">
|
||||

|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Datei mit Teilabschnitt</h2>
|
||||
<ul>
|
||||
<li>enthält **keine Präambel**<li>
|
||||
<li>enthält **kein** `\begin{document}` und `\end{document}`</li>
|
||||
</ul>
|
||||
<pre data-source="abschnitt1.tex" class="hljs lang-tex"><code>\section{Dies ist Abschnitt1}
|
||||
Hier ein Absatz zum
|
||||
Inhalt von Abschnitt 1.</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<p><img src="sections/german/04/main_parts.png"></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## Datei mit Teilabschnitt
|
||||
* enthält **keine Präambel**
|
||||
* enthält **kein** `\begin{document}` und `\end{document`
|
||||
|
||||
abschnitt1.tex:
|
||||
```tex
|
||||
\section{Dies ist Abschnitt1}
|
||||
Hier ein Absatz zum Inhalt von Abschnitt 1.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Resultierende Projektstruktur
|
||||

|
||||
|
||||
---
|
||||
|
||||
## Resultierendes Dokument
|
||||

|
||||
|
||||
---
|
||||
|
||||
<div class="two-columns">
|
||||
<div class="column">
|
||||
`\input{filename.tex}`
|
||||
<ul class="fragment">
|
||||
<li>Dateiendung .tex angeben</li>
|
||||
<li>Schachtelung möglich: Unterdateien können wiederum per `\input{}` andere Unterunterdateien einbinden</li>
|
||||
<li>Unterdatei wird im fertigen Dokument ohne Sprung auf neue Seite in Hauptdatei eingefügt</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="column">
|
||||
`\include{filename}`
|
||||
<ul class="fragment">
|
||||
<li>Dateiendung .tex **nicht** angeben</li>
|
||||
<li>Schachtelung nicht möglich</li>
|
||||
<li>für jede Unterdatei wird im fertigen Dokument eine neue Seite angelegt</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-two-columns">
|
||||
<div class="layout-title">
|
||||
<h2>input oder include?</h2>
|
||||
</div>
|
||||
<div class="layout-column-one">
|
||||
<pre class="lang-tex jshl"><code>\input{filename.tex}</code></pre>
|
||||
<ul class="fragment">
|
||||
<li>Dateiendung .tex angeben</li>
|
||||
<li>**Schachtelung** möglich: Unterdateien können wiederum per `\input{}` andere Unterunterdateien einbinden</li>
|
||||
<li>Unterdatei wird im fertigen Dokument **ohne Sprung auf neue Seite** in Hauptdatei eingefügt</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-column-two">
|
||||
<pre class="lang-tex jshl"><code>\include{filename}</code></pre>
|
||||
<ul class="fragment">
|
||||
<li>Dateiendung .tex **nicht** angeben</li>
|
||||
<li>**Schachtelung** nicht möglich</li>
|
||||
<li>für jede Unterdatei wird im fertigen Dokument eine **neue Seite** angelegt</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## EXKURS: Dateipfade angeben 👣
|
||||
* wichtig für \input{}` und \include{}` sowie später für das Einbinden von Bildern
|
||||
* Datei- und Ordnerstruktur = Baumstruktur
|
||||
|
||||

|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<ul>
|
||||
<li>wichtig für `\input{}` und `\include{}` sowie später für das Einbinden von Bildern</li>
|
||||
<li>Datei- und Ordnerstruktur = Baumstruktur 🌳</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/tree.png">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Absolute Dateipfade
|
||||
* Pfad von der Wurzel des Ordnerbaums bis zur jeweiligen Datei
|
||||
* die verschiedenen Ebenen des Baums werden dabei durch folgende Zeichen getrennt:
|
||||
* / (Unix, Mac)
|
||||
* \ (Windows)
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h3>Absolute Dateipfade</h3>
|
||||
<ul>
|
||||
<li>Pfad von der Wurzel des Ordnerbaums bis zur jeweiligen Datei</li>
|
||||
<li>die verschiedenen Ebenen des Baums werden dabei durch folgende Zeichen getrennt:
|
||||
<ul>
|
||||
<li>Unter Unix: `/`</li>
|
||||
<li>Unter Windows: `\`</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
Beispiel: Absoluter Pfad zu main.tex
|
||||
<ul>
|
||||
<li>Unix: /home/knut/docs/latex/main.tex</li>
|
||||
<li>Windows: C:\knut\docs\latex\main.tex</li>
|
||||
</ul>
|
||||
<p>Allerdings muss bei LaTeX stets die Unix-Syntax für Pfadangaben verwendet werden. Deshalb werden wir im folgenden diese verwerden.</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/absolute_path.png">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
#### Beispiel
|
||||
|
||||

|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h3>Relative Dateipfade</h3>
|
||||
<ul>
|
||||
<li>Pfad von einem bestimmten Ort irgendwo im Ordnerbaum bis zur jeweiligen Datei</li>
|
||||
<li>kürzer + weniger Schreibarbeit! ☺</li>
|
||||
<li>bei `\input{}`und `\include{}` muss der Pfad zu einer Unterdatei relativ zur Hauptdatei angeben werden</li>
|
||||
</ul>
|
||||
Beispiel: Relativer Pfad von main.tex zu part1.tex
|
||||
<p>./part1.tex</p>
|
||||
<p>Der **einfache Punkt .** bezieht sich bei relativen Pfaden auf den Ordner, in dem die Ausgangsdatei liegt (hier: latex).</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/relative_path.png">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Relative Dateipfade
|
||||
* Pfad von einem bestimmten Ort irgendwo im Ordnerbaum bis zur jeweiligen Datei
|
||||
* kürzer + weniger Schreibarbeit! :)
|
||||
* bei \input{}`und \include{}` muss z.B. der Pfad zu einer Unterdatei relativ zur Hauptdatei angeben werden
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h3>Relative Dateipfade</h3>
|
||||
Beispiel: Relativer Pfad von main.tex zu part1.tex in Unterordner
|
||||
<p>./sections/part1.tex</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/relative_path_subdir.png">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
#### Beispiel
|
||||
|
||||

|
||||
Der einfache Punkt referiert bei relativen Pfaden auf den Ordner in dem die Datei liegt, im Verhältnis zu welcher der Pfad angegeben werden soll (hier: LaTeX-Tut).
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h3>Relative Dateipfade</h3>
|
||||
Beispiel: Relativer Pfad von main.tex in eigenem Unterordner zu part1.tex in anderem Unterordner
|
||||
<p>../sections/part1.tex</p>
|
||||
<p>**Zwei Punkte ..** bezeichnen den Elternordner des aktuellen Ordners (hier: Dokumente, der Elternordner latex des Ordners main).</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/relative_path_superdir.png">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||

|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Kompilieren des Projekts</h2>
|
||||
<ul>
|
||||
<li>**Nur die Hauptdatei** wird kompiliert, um das fertige PDF-Dokument zu erhalten</li>
|
||||
<li>Fehlermeldungen enthalten dann Verweis, in welcher Unterdatei sie aufgetreten sind</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||

|
||||
Zwei Punkte referieren auf den Elternordner des Ordners, in dem die Datei liegt, im Verhältnis zu welcher der Pfad angegeben werden soll (hier: Dokumente, der Elternordner von LaTeX-Tut).
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Kompilieren des Projekts</h2>
|
||||
<ul>
|
||||
<li>die Unterdateiten können wegen ihrer fehlenden Präambel nicht selbstständig kompiliert werden</li>
|
||||
<li>Trick bei `\include{}`: `\includeonly{file1,file2,...}` in die Präambel schreiben, um nur einzelne Unterdateien zu kompilieren</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## Ende des Exkurses
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Präambel ausgelagert</h2>
|
||||
<p>Was denkt ihr, passiert, wenn wir den Präambel in eine Unterdatei auslagern?</p>
|
||||
<p>Wird das Gesamtdokument kompilieren oder nicht?</p>
|
||||
<p class="fragment"><strong>Ja, es kompiliert!</strong><br>
|
||||
Ein einfacher Weg, um die Hauptdatei noch übersichtlicher zu halten.</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/main_parts_header.png">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## Kompilieren des Projekts
|
||||
* Nur die Hauptdatei wird kompiliert, um das fertige PDF-Dokument zu erhalten
|
||||
* Fehlermeldungen enthalten dann Verweis, in welcher Unterdatei sie aufgetreten sind
|
||||
|
||||
---
|
||||
|
||||
## Kompilieren des Projekts
|
||||
* die Unterdateiten können wegen ihrer fehlenden Präambel nicht selbstständig kompiliert werden
|
||||
* aber geschickter Trick bei \include{}`: \includeonly{file1,file2,...}` in die Präambel schreiben, um nur einzelne Unterdateien zu kompilieren
|
||||
|
||||
---
|
||||
|
||||
## Was denkt ihr passiert, wenn wir den Header in eine Unterdatei auslagern?
|
||||
### Wird das Gesamtdokument kompilieren oder nicht?
|
||||
|
||||
---
|
||||
|
||||
### Ja, es kompiliert!
|
||||
Ein einfacher weg, um die Hauptdatei noch übersichtlicher zu halten.
|
||||
|
||||

|
||||
<div class="layout-only">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Aufgabe">4. Projektstruktur für das Skript anlegen</h2>
|
||||
<ul>
|
||||
<li class="fragment">Teile das Skript in sinnvolle Abschnitte auf und lagere sie in separate <code>.tex</code>-Dateien aus.</li>
|
||||
<li class="fragment">Verwende zunächst <code>\input{}</code>, um die Abschnitte in deine Hauptdatei einzubinden.</li>
|
||||
<li class="fragment">Beobachte, was sich verändert, wenn du stattdessen <code>\include{}</code> einsetzt.</li>
|
||||
<li class="fragment">Verschiebe die Teildateien zur besseren Strukturierung in einen eigenen Unterordner <code>sections</code>. Was musst du nun bei der Angabe des relativen Pfades bei <code>\include{}</code> verändern?</li>
|
||||
<li class="fragment">Lagere nun noch die Präambel aus.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
BIN
sections/german/04/absolute_path.png
Normal file
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
BIN
sections/german/04/langes-dokument.png
Normal file
|
Before Width: | Height: | Size: 4.2 MiB After Width: | Height: | Size: 4.2 MiB |
2158
sections/german/04/langes-dokument.txt
Normal file
417
sections/german/04/main-crop.svg
Normal file
@ -0,0 +1,417 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="204pt" height="539pt" viewBox="0 0 204 539" 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 0.96875 -11.75 L 0.96875 -11.296875 L 1.390625 -11.296875 C 1.921875 -11.296875 2.359375 -11.234375 2.359375 -10.609375 C 2.359375 -10.484375 2.34375 -10.34375 2.34375 -10.25 L 2.34375 -1.5625 C 2.34375 -1.453125 2.359375 -1.328125 2.359375 -1.1875 C 2.359375 -0.515625 1.859375 -0.46875 1.3125 -0.46875 L 0.96875 -0.46875 L 0.96875 -0.015625 L 9.921875 -0.015625 L 10.53125 -4.375 L 10.234375 -4.375 C 10.09375 -3.28125 9.9375 -1.96875 9.21875 -1.234375 C 8.453125 -0.484375 7.296875 -0.46875 6.296875 -0.46875 L 4.078125 -0.46875 C 3.640625 -0.46875 3.484375 -0.640625 3.484375 -1.0625 L 3.484375 -5.890625 L 5 -5.890625 C 5.9375 -5.890625 6.890625 -5.8125 6.890625 -4.171875 L 6.890625 -3.875 L 7.203125 -3.875 L 7.203125 -8.34375 L 6.890625 -8.34375 L 6.890625 -8.0625 C 6.890625 -7.1875 6.640625 -6.453125 5.671875 -6.375 C 5.359375 -6.34375 5.03125 -6.34375 4.71875 -6.34375 L 3.484375 -6.34375 L 3.484375 -10.703125 C 3.484375 -11.125 3.640625 -11.296875 4.0625 -11.296875 L 6.3125 -11.296875 C 7.578125 -11.296875 8.953125 -11.265625 9.46875 -9.6875 C 9.65625 -9.140625 9.734375 -8.546875 9.78125 -7.953125 L 10.09375 -7.953125 L 9.671875 -11.75 Z M 0.96875 -11.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 0.734375 -7.375 L 0.734375 -6.921875 L 0.984375 -6.921875 C 1.53125 -6.921875 1.84375 -6.765625 1.84375 -6.046875 L 1.84375 -1.171875 C 1.84375 -0.5625 1.640625 -0.46875 0.6875 -0.46875 L 0.6875 -0.015625 L 3.75 -0.015625 L 3.75 -0.46875 L 3.515625 -0.46875 C 3.109375 -0.46875 2.71875 -0.515625 2.71875 -1.0625 L 2.71875 -7.5625 Z M 1.921875 -11.3125 C 1.546875 -11.25 1.34375 -10.921875 1.34375 -10.625 C 1.34375 -10.296875 1.625 -9.921875 2.03125 -9.921875 C 2.46875 -9.921875 2.75 -10.265625 2.75 -10.625 C 2.75 -10.9375 2.484375 -11.328125 2.0625 -11.328125 C 2.015625 -11.328125 1.96875 -11.3125 1.921875 -11.3125 Z M 1.921875 -11.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 0.6875 -7.375 L 0.6875 -6.921875 L 0.953125 -6.921875 C 1.515625 -6.921875 1.84375 -6.765625 1.84375 -6.0625 L 1.84375 -1.171875 C 1.84375 -0.578125 1.640625 -0.46875 0.6875 -0.46875 L 0.6875 -0.015625 L 3.90625 -0.015625 L 3.90625 -0.46875 L 3.59375 -0.46875 C 3.1875 -0.46875 2.75 -0.515625 2.75 -1.046875 L 2.75 -4.34375 C 2.75 -5.515625 3.234375 -7.28125 4.953125 -7.28125 C 6.0625 -7.28125 6.3125 -6.25 6.3125 -5.25 L 6.3125 -1.078125 C 6.3125 -0.5 5.84375 -0.46875 5.328125 -0.46875 L 5.171875 -0.46875 L 5.171875 -0.015625 L 8.390625 -0.015625 L 8.390625 -0.46875 L 8.109375 -0.46875 C 7.65625 -0.46875 7.234375 -0.515625 7.234375 -1.0625 L 7.234375 -5.0625 C 7.234375 -5.703125 7.21875 -6.40625 6.78125 -6.90625 C 6.34375 -7.421875 5.671875 -7.5625 5 -7.5625 C 4 -7.5625 2.9375 -6.765625 2.71875 -5.796875 L 2.703125 -7.5625 Z M 0.6875 -7.375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 0.875 -11.71875 L 0.578125 -7.9375 L 0.890625 -7.9375 C 0.96875 -8.828125 0.984375 -10.078125 1.53125 -10.65625 C 2.078125 -11.25 2.96875 -11.28125 3.71875 -11.28125 L 4.75 -11.28125 C 5.09375 -11.28125 5.28125 -11.109375 5.28125 -10.734375 C 5.28125 -10.625 5.265625 -10.5 5.265625 -10.421875 L 5.265625 -1.234375 C 5.265625 -0.53125 4.6875 -0.46875 4.125 -0.46875 L 3.328125 -0.46875 L 3.328125 -0.015625 L 8.34375 -0.015625 L 8.34375 -0.46875 L 7.53125 -0.46875 C 6.953125 -0.46875 6.40625 -0.53125 6.40625 -1.234375 L 6.40625 -10.421875 C 6.40625 -10.5 6.390625 -10.625 6.390625 -10.734375 C 6.390625 -11.109375 6.578125 -11.28125 6.921875 -11.28125 L 7.953125 -11.28125 C 9 -11.28125 10.234375 -11.203125 10.53125 -9.78125 C 10.6875 -9.171875 10.734375 -8.5625 10.78125 -7.9375 L 11.09375 -7.9375 L 10.796875 -11.71875 Z M 0.875 -11.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 2.375 -10.609375 C 2.375 -9.59375 2.078125 -7.25 0.296875 -7.25 L 0.296875 -6.96875 L 1.78125 -6.96875 L 1.78125 -3.03125 C 1.78125 -2.796875 1.75 -2.53125 1.75 -2.296875 C 1.75 -0.953125 2.359375 0.125 3.75 0.125 C 5.078125 0.125 5.375 -1.296875 5.375 -2.375 L 5.375 -3.140625 L 5.0625 -3.140625 C 5.0625 -2.875 5.078125 -2.625 5.078125 -2.34375 C 5.078125 -1.59375 4.90625 -0.1875 3.890625 -0.1875 C 2.921875 -0.1875 2.6875 -1.3125 2.6875 -2.21875 L 2.6875 -6.96875 L 5.09375 -6.96875 L 5.09375 -7.421875 L 2.6875 -7.421875 L 2.6875 -10.609375 Z M 2.375 -10.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 1.6875 -4.0625 L 6.515625 -4.0625 C 6.65625 -4.0625 6.734375 -4.09375 6.734375 -4.265625 C 6.734375 -5.953125 5.84375 -7.625 3.890625 -7.625 C 1.859375 -7.625 0.5625 -5.6875 0.5625 -3.8125 C 0.5625 -2 1.796875 0.015625 3.859375 0.125 L 4 0.125 C 5.1875 0.125 6.34375 -0.65625 6.6875 -1.875 C 6.703125 -1.921875 6.71875 -1.984375 6.71875 -2.046875 C 6.71875 -2.140625 6.65625 -2.1875 6.59375 -2.1875 C 6.375 -2.1875 6.296875 -1.71875 6.203125 -1.515625 C 5.8125 -0.78125 5.046875 -0.1875 4.1875 -0.1875 C 3.6875 -0.1875 3.140625 -0.375 2.75 -0.71875 C 1.78125 -1.546875 1.6875 -2.875 1.6875 -4.0625 Z M 1.703125 -4.34375 C 1.734375 -5.6875 2.40625 -7.328125 3.859375 -7.328125 C 5.125 -7.328125 5.625 -6.015625 5.734375 -4.96875 C 5.765625 -4.765625 5.75 -4.546875 5.78125 -4.34375 Z M 1.703125 -4.34375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 0.6875 -11.78125 L 0.6875 -11.328125 L 0.84375 -11.328125 C 1.40625 -11.328125 1.84375 -11.28125 1.84375 -10.4375 L 1.84375 -1.171875 C 1.84375 -0.546875 1.546875 -0.46875 0.6875 -0.46875 L 0.6875 -0.015625 L 3.875 -0.015625 L 3.875 -0.46875 L 3.515625 -0.46875 C 3.09375 -0.46875 2.71875 -0.515625 2.71875 -1.078125 L 2.71875 -11.96875 Z M 0.6875 -11.78125 "/>
|
||||
</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 1.484375 -3.875 L 1.46875 -3.875 C 1.46875 -5.03125 1.515625 -6.34375 2.4375 -7.203125 C 2.765625 -7.5 3.171875 -7.671875 3.609375 -7.671875 C 4 -7.671875 4.453125 -7.546875 4.65625 -7.1875 C 4.625 -7.203125 4.59375 -7.203125 4.546875 -7.203125 C 4.265625 -7.203125 4.046875 -6.984375 4.046875 -6.6875 C 4.046875 -6.421875 4.25 -6.1875 4.546875 -6.1875 C 4.828125 -6.1875 5.0625 -6.390625 5.0625 -6.75 C 5.0625 -7.578125 4.28125 -7.953125 3.5625 -7.953125 C 1.546875 -7.953125 0.484375 -5.65625 0.484375 -3.90625 C 0.484375 -2.28125 0.8125 0.234375 2.96875 0.234375 C 4.046875 0.234375 5 -0.625 5.25 -1.640625 C 5.3125 -1.90625 5.34375 -2.203125 5.34375 -2.484375 C 5.34375 -3.71875 4.5 -5.109375 3.0625 -5.109375 C 2.421875 -5.109375 1.671875 -4.6875 1.484375 -3.875 Z M 1.5 -2.59375 L 1.5 -2.71875 C 1.5 -3.578125 1.859375 -4.859375 2.984375 -4.859375 L 3.0625 -4.859375 C 4.3125 -4.75 4.359375 -3.34375 4.359375 -2.53125 L 4.359375 -2.328125 C 4.359375 -1.59375 4.34375 -0.734375 3.640625 -0.28125 C 3.4375 -0.140625 3.203125 -0.078125 2.96875 -0.078125 C 2.5 -0.078125 2.140625 -0.328125 1.875 -0.71875 C 1.515625 -1.28125 1.546875 -1.953125 1.5 -2.59375 Z M 1.5 -2.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 1.53125 -1.15625 C 1.28125 -1.109375 1.046875 -0.890625 1.046875 -0.59375 C 1.046875 -0.28125 1.296875 -0.015625 1.609375 -0.015625 C 1.921875 -0.015625 2.203125 -0.25 2.203125 -0.578125 C 2.203125 -0.890625 1.9375 -1.171875 1.625 -1.171875 C 1.59375 -1.171875 1.5625 -1.15625 1.53125 -1.15625 Z M 1.53125 -1.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 0.53125 -8.171875 L 0.53125 -7.828125 L 0.921875 -7.828125 C 1.3125 -7.828125 1.671875 -7.78125 1.671875 -7.34375 C 1.671875 -7.25 1.65625 -7.1875 1.65625 -7.109375 L 1.65625 -1.203125 C 1.65625 -0.4375 1.03125 -0.359375 0.53125 -0.359375 L 0.53125 -0.015625 L 3.078125 -0.015625 L 3.078125 -0.359375 C 2.53125 -0.359375 1.953125 -0.46875 1.953125 -1.265625 L 1.953125 -7.78125 C 2.015625 -7.578125 2.109375 -7.375 2.1875 -7.171875 C 2.875 -5.390625 3.53125 -3.625 4.21875 -1.84375 L 4.75 -0.4375 C 4.8125 -0.28125 4.859375 -0.046875 5.03125 -0.015625 L 5.046875 -0.015625 C 5.21875 -0.015625 5.265625 -0.28125 5.3125 -0.421875 L 7.4375 -5.9375 C 7.59375 -6.359375 7.75 -6.78125 7.90625 -7.203125 L 8.0625 -7.59375 C 8.09375 -7.671875 8.125 -7.75 8.15625 -7.859375 L 8.15625 -1.15625 C 8.15625 -1.0625 8.171875 -0.953125 8.171875 -0.859375 C 8.171875 -0.40625 7.8125 -0.34375 7.4375 -0.34375 C 7.296875 -0.34375 7.140625 -0.359375 7.03125 -0.359375 L 7.03125 -0.015625 L 10.1875 -0.015625 L 10.1875 -0.359375 L 9.796875 -0.359375 C 9.40625 -0.359375 9.03125 -0.40625 9.03125 -0.859375 C 9.03125 -0.9375 9.046875 -1.015625 9.046875 -1.09375 L 9.046875 -7.296875 C 9.046875 -7.765625 9.40625 -7.84375 9.765625 -7.84375 C 9.90625 -7.84375 10.046875 -7.828125 10.1875 -7.828125 L 10.1875 -8.171875 L 8.265625 -8.171875 L 8.0625 -8.140625 L 7.828125 -7.625 L 5.359375 -1.15625 L 5.34375 -1.15625 L 2.875 -7.625 L 2.640625 -8.140625 L 2.4375 -8.171875 Z M 0.53125 -8.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 1.25 -4.40625 C 1.546875 -4.859375 2.0625 -5.09375 2.59375 -5.09375 C 3.28125 -5.09375 3.828125 -4.40625 3.828125 -3.734375 L 3.828125 -3.09375 C 2.625 -3.09375 0.515625 -2.765625 0.515625 -1.125 L 0.515625 -1 C 0.625 -0.1875 1.609375 0.125 2.3125 0.125 C 2.9375 0.125 3.71875 -0.265625 3.890625 -0.921875 L 3.90625 -0.921875 C 3.9375 -0.359375 4.34375 0.046875 4.828125 0.046875 C 5.328125 0.046875 5.71875 -0.375 5.765625 -0.875 L 5.765625 -1.75 L 5.515625 -1.75 L 5.515625 -1.15625 C 5.515625 -0.8125 5.453125 -0.296875 5.0625 -0.296875 C 4.671875 -0.296875 4.59375 -0.8125 4.59375 -1.109375 C 4.59375 -1.25 4.609375 -1.375 4.609375 -1.5 L 4.609375 -3.171875 C 4.609375 -3.296875 4.609375 -3.4375 4.609375 -3.578125 C 4.609375 -4.703125 3.578125 -5.328125 2.59375 -5.328125 C 1.828125 -5.328125 0.859375 -4.875 0.859375 -3.9375 C 0.859375 -3.59375 1.09375 -3.40625 1.375 -3.40625 C 1.65625 -3.40625 1.859375 -3.640625 1.859375 -3.90625 C 1.859375 -4.203125 1.640625 -4.40625 1.34375 -4.40625 Z M 3.828125 -2.875 L 3.828125 -1.75 C 3.828125 -0.890625 3.28125 -0.125 2.4375 -0.125 C 1.984375 -0.125 1.375 -0.484375 1.375 -1.09375 C 1.375 -2.15625 2.328125 -2.6875 3.328125 -2.828125 C 3.484375 -2.859375 3.65625 -2.84375 3.828125 -2.875 Z M 3.828125 -2.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 0.4375 -5.140625 L 0.4375 -4.796875 L 0.640625 -4.796875 C 1.015625 -4.796875 1.296875 -4.734375 1.296875 -4.203125 L 1.296875 -0.859375 C 1.296875 -0.421875 1.078125 -0.359375 0.390625 -0.359375 L 0.390625 -0.015625 L 2.875 -0.015625 L 2.875 -0.359375 L 2.703125 -0.359375 C 2.359375 -0.359375 2.0625 -0.375 2.0625 -0.78125 L 2.0625 -5.265625 Z M 1.40625 -7.9375 C 1.09375 -7.890625 0.921875 -7.625 0.921875 -7.375 C 0.921875 -7.125 1.109375 -6.796875 1.484375 -6.796875 C 1.859375 -6.796875 2.078125 -7.078125 2.078125 -7.359375 C 2.078125 -7.609375 1.890625 -7.953125 1.515625 -7.953125 C 1.484375 -7.953125 1.453125 -7.9375 1.40625 -7.9375 Z M 1.40625 -7.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 0.984375 -6.25 C 1.21875 -7 1.8125 -7.609375 2.625 -7.609375 C 3.6875 -7.609375 4.25 -6.609375 4.25 -5.671875 C 4.25 -4.453125 3.375 -3.46875 2.625 -2.609375 L 1.765625 -1.640625 C 1.515625 -1.359375 1.265625 -1.078125 1.015625 -0.78125 L 0.734375 -0.484375 C 0.671875 -0.375 0.578125 -0.328125 0.578125 -0.171875 C 0.578125 -0.125 0.578125 -0.0625 0.578125 -0.015625 L 4.9375 -0.015625 L 5.25 -2.015625 L 4.984375 -2.015625 C 4.890625 -1.453125 4.921875 -0.890625 4.40625 -0.890625 C 4.078125 -0.890625 3.734375 -0.859375 3.390625 -0.859375 L 1.40625 -0.859375 C 2.03125 -1.484375 2.625 -2.09375 3.28125 -2.671875 C 4.109375 -3.4375 5.25 -4.34375 5.25 -5.59375 C 5.25 -7.09375 4.09375 -7.953125 2.796875 -7.953125 C 1.625 -7.953125 0.578125 -7 0.578125 -5.796875 C 0.578125 -5.46875 0.6875 -5.21875 1.125 -5.140625 C 1.515625 -5.140625 1.71875 -5.421875 1.71875 -5.71875 C 1.71875 -5.984375 1.546875 -6.21875 1.21875 -6.28125 C 1.140625 -6.28125 1.0625 -6.28125 0.984375 -6.25 Z M 0.984375 -6.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 2.765625 -7.953125 C 0.484375 -7.75 0.484375 -4.90625 0.484375 -3.765625 C 0.484375 -2.125 0.8125 0.234375 2.921875 0.234375 L 3.0625 0.234375 C 5.328125 0.03125 5.359375 -2.75 5.359375 -3.921875 C 5.359375 -5.546875 5.015625 -7.96875 2.921875 -7.96875 C 2.875 -7.96875 2.828125 -7.953125 2.765625 -7.953125 Z M 1.40625 -3.125 C 1.390625 -3.21875 1.390625 -3.328125 1.390625 -3.421875 C 1.390625 -4.15625 1.390625 -4.921875 1.453125 -5.671875 C 1.484375 -6.140625 1.546875 -6.671875 1.8125 -7.078125 C 2.0625 -7.453125 2.484375 -7.71875 2.921875 -7.71875 C 4.546875 -7.71875 4.453125 -5.25 4.453125 -4.125 L 4.453125 -3.234375 C 4.453125 -2.359375 4.40625 -1.40625 4.078125 -0.78125 C 3.859375 -0.359375 3.421875 0 2.921875 0 L 2.84375 0 C 1.40625 -0.125 1.5 -2.03125 1.40625 -3.125 Z M 1.40625 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 1.09375 -7.203125 L 1.09375 -6.84375 C 1.625 -6.84375 2.078125 -6.9375 2.609375 -7.15625 L 2.609375 -0.890625 C 2.609375 -0.421875 2.140625 -0.34375 1.671875 -0.34375 C 1.484375 -0.34375 1.296875 -0.359375 1.140625 -0.359375 L 1.140625 -0.015625 L 4.890625 -0.015625 L 4.890625 -0.359375 C 4.75 -0.359375 4.546875 -0.34375 4.375 -0.34375 C 3.78125 -0.34375 3.4375 -0.40625 3.4375 -0.921875 L 3.4375 -7.78125 C 3.4375 -7.859375 3.40625 -7.953125 3.28125 -7.953125 C 3.125 -7.953125 2.96875 -7.734375 2.828125 -7.65625 C 2.3125 -7.296875 1.703125 -7.203125 1.09375 -7.203125 Z M 1.09375 -7.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 4.34375 -3.859375 L 4.359375 -3.859375 C 4.359375 -2.8125 4.34375 -1.578125 3.640625 -0.734375 C 3.328125 -0.328125 2.90625 -0.09375 2.359375 -0.09375 C 1.9375 -0.09375 1.484375 -0.171875 1.1875 -0.53125 C 1.46875 -0.53125 1.78125 -0.640625 1.78125 -1.015625 C 1.78125 -1.265625 1.609375 -1.53125 1.296875 -1.53125 C 1.03125 -1.53125 0.78125 -1.34375 0.78125 -1.0625 L 0.78125 -1.015625 C 0.78125 -0.15625 1.546875 0.234375 2.421875 0.234375 C 3.390625 0.234375 4.171875 -0.40625 4.640625 -1.1875 C 5.15625 -2.015625 5.34375 -2.984375 5.34375 -3.953125 C 5.34375 -5.421875 5.0625 -7.96875 2.921875 -7.96875 C 2.078125 -7.96875 1.390625 -7.5 0.921875 -6.8125 C 0.59375 -6.34375 0.484375 -5.828125 0.484375 -5.265625 C 0.484375 -4.046875 1.3125 -2.625 2.765625 -2.625 C 3.46875 -2.625 4.203125 -3.125 4.34375 -3.859375 Z M 4.328125 -5.3125 C 4.328125 -5.1875 4.34375 -5.078125 4.34375 -4.96875 L 4.34375 -4.890625 C 4.28125 -4.046875 3.9375 -2.875 2.828125 -2.875 C 1.65625 -2.875 1.46875 -4.21875 1.46875 -5.140625 L 1.46875 -5.546875 C 1.46875 -6.359375 1.703125 -7.671875 2.921875 -7.671875 C 4.125 -7.671875 4.34375 -6.109375 4.34375 -5.4375 C 4.34375 -5.390625 4.328125 -5.359375 4.328125 -5.3125 Z M 4.328125 -5.3125 "/>
|
||||
</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 0.4375 -9.859375 L 0.4375 -9.28125 L 2.015625 -9.28125 L 2.015625 -0.59375 L 0.4375 -0.59375 L 0.4375 -0.015625 L 5.375 -0.015625 L 5.375 -0.59375 L 3.796875 -0.59375 L 3.796875 -9.28125 L 5.375 -9.28125 L 5.375 -9.859375 Z M 0.4375 -9.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 0.546875 -6.359375 L 0.546875 -5.78125 L 0.828125 -5.78125 C 1.203125 -5.78125 1.546875 -5.734375 1.546875 -5.296875 L 1.546875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 4.0625 -0.015625 L 4.0625 -0.59375 L 3.0625 -0.59375 L 3.0625 -3.5 C 3.0625 -4.65625 3.65625 -6.03125 5.046875 -6.03125 C 5.875 -6.03125 5.921875 -5.09375 5.921875 -4.28125 L 5.921875 -0.59375 L 4.921875 -0.59375 L 4.921875 -0.015625 L 8.4375 -0.015625 L 8.4375 -0.59375 L 7.4375 -0.59375 L 7.4375 -4.3125 C 7.4375 -4.8125 7.40625 -5.296875 7.125 -5.71875 C 6.734375 -6.359375 5.953125 -6.46875 5.28125 -6.46875 C 4.25 -6.46875 3.234375 -5.8125 2.953125 -4.8125 L 2.9375 -6.46875 L 1.34375 -6.46875 Z M 0.546875 -6.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 0.546875 -9.859375 L 0.546875 -9.28125 L 0.8125 -9.28125 C 1.1875 -9.28125 1.546875 -9.28125 1.546875 -8.75 L 1.546875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 4.0625 -0.015625 L 4.0625 -0.59375 L 3.0625 -0.59375 L 3.0625 -3.5 C 3.0625 -4.65625 3.65625 -6.03125 5.046875 -6.03125 C 5.875 -6.03125 5.921875 -5.09375 5.921875 -4.28125 L 5.921875 -0.59375 L 4.921875 -0.59375 L 4.921875 -0.015625 L 8.4375 -0.015625 L 8.4375 -0.59375 L 7.4375 -0.59375 L 7.4375 -4.265625 C 7.4375 -4.78125 7.40625 -5.3125 7.109375 -5.75 C 6.734375 -6.359375 5.953125 -6.46875 5.28125 -6.46875 C 4.359375 -6.46875 3.25 -5.84375 3.015625 -4.953125 L 3 -9.96875 L 1.375 -9.96875 Z M 0.546875 -9.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 2.1875 -5.875 C 2.59375 -5.984375 2.984375 -6.0625 3.40625 -6.0625 C 4.171875 -6.0625 4.9375 -5.6875 4.9375 -4.1875 L 4.9375 -3.703125 C 3.234375 -3.703125 0.5 -3.328125 0.5 -1.484375 C 0.5 -0.25 2.0625 0.078125 3 0.078125 C 3.78125 0.078125 4.828125 -0.3125 5.09375 -1.1875 L 5.109375 -1.1875 C 5.109375 -0.4375 5.6875 0.03125 6.390625 0.03125 C 7.046875 0.03125 7.78125 -0.421875 7.78125 -1.15625 L 7.78125 -2.046875 L 7.25 -2.046875 L 7.25 -1.234375 C 7.25 -0.984375 7.140625 -0.625 6.84375 -0.625 C 6.53125 -0.625 6.4375 -1.015625 6.4375 -1.234375 L 6.4375 -4.21875 C 6.4375 -5.546875 5.4375 -6.515625 3.515625 -6.515625 C 2.59375 -6.515625 1.03125 -6.359375 1.03125 -5.125 C 1.03125 -4.625 1.421875 -4.328125 1.84375 -4.328125 C 2.28125 -4.328125 2.640625 -4.65625 2.640625 -5.125 C 2.640625 -5.46875 2.453125 -5.6875 2.1875 -5.875 Z M 4.9375 -3.359375 L 4.9375 -2 C 4.9375 -1.078125 4.21875 -0.375 3.296875 -0.375 C 2.703125 -0.375 2.015625 -0.78125 2.015625 -1.5 C 2.015625 -2.96875 3.84375 -3.25 4.9375 -3.359375 Z M 4.9375 -3.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 0.59375 -9.859375 L 0.59375 -9.28125 C 0.71875 -9.28125 0.84375 -9.296875 0.96875 -9.296875 C 1.3125 -9.296875 1.578125 -9.21875 1.578125 -8.8125 L 1.578125 -0.59375 L 0.59375 -0.59375 L 0.59375 -0.015625 L 4.015625 -0.015625 L 4.015625 -0.59375 L 3.03125 -0.59375 L 3.03125 -9.96875 L 1.40625 -9.96875 Z M 0.59375 -9.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 2.390625 -9.125 C 2.390625 -8 1.828125 -6.25 0.28125 -6.25 L 0.28125 -5.8125 L 1.4375 -5.8125 L 1.4375 -1.9375 C 1.4375 -1.5 1.46875 -1.078125 1.703125 -0.703125 C 2.125 -0.078125 2.921875 0.078125 3.59375 0.078125 C 4.71875 0.078125 5.25 -0.859375 5.25 -1.984375 L 5.25 -2.546875 L 4.703125 -2.546875 C 4.703125 -2.359375 4.71875 -2.15625 4.71875 -1.9375 C 4.71875 -1.359375 4.578125 -0.421875 3.796875 -0.421875 C 3.078125 -0.421875 2.9375 -1.171875 2.9375 -1.84375 L 2.9375 -5.8125 L 4.984375 -5.8125 L 4.984375 -6.390625 L 2.9375 -6.390625 L 2.9375 -9.125 Z M 2.390625 -9.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.484375 -0.46875 C 1.9375 -0.078125 2.578125 0.078125 3.203125 0.078125 C 4.5 0.078125 5.6875 -0.515625 5.6875 -2 L 5.6875 -2.15625 C 5.609375 -2.984375 4.984375 -3.59375 4.234375 -3.890625 C 3.859375 -4.03125 3.453125 -4.09375 3.0625 -4.15625 C 2.5 -4.265625 1.46875 -4.40625 1.46875 -5.15625 C 1.46875 -5.9375 2.375 -6.109375 3.03125 -6.109375 C 3.875 -6.109375 4.640625 -5.78125 4.75 -4.765625 C 4.75 -4.640625 4.75 -4.515625 4.96875 -4.515625 L 5.0625 -4.515625 C 5.234375 -4.515625 5.3125 -4.59375 5.3125 -4.796875 C 5.3125 -4.875 5.296875 -4.96875 5.296875 -5.03125 L 5.296875 -6.3125 C 5.296875 -6.4375 5.234375 -6.515625 5.109375 -6.515625 C 4.84375 -6.515625 4.640625 -6.203125 4.484375 -6.203125 C 4.296875 -6.203125 4.015625 -6.40625 3.75 -6.453125 C 3.5 -6.5 3.25 -6.515625 3.015625 -6.515625 C 1.96875 -6.515625 0.53125 -6.234375 0.53125 -4.59375 C 0.53125 -3.125 2.25 -2.859375 3.28125 -2.671875 C 3.90625 -2.546875 4.75 -2.328125 4.75 -1.484375 C 4.75 -0.421875 3.578125 -0.375 2.984375 -0.375 C 1.90625 -0.515625 1.46875 -1 1.078125 -2.203125 C 1.03125 -2.359375 0.921875 -2.359375 0.78125 -2.359375 C 0.609375 -2.359375 0.53125 -2.296875 0.53125 -2.09375 L 0.53125 -0.34375 C 0.53125 -0.296875 0.515625 -0.234375 0.515625 -0.15625 C 0.515625 -0.03125 0.5625 0.078125 0.703125 0.078125 C 0.875 0.078125 1.0625 -0.109375 1.171875 -0.21875 C 1.28125 -0.296875 1.390625 -0.375 1.484375 -0.46875 Z M 1.484375 -0.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 0.3125 -6.390625 L 0.3125 -5.8125 L 1.078125 -5.8125 C 1.34375 -5.8125 1.5625 -5.015625 1.75 -4.640625 C 2.359375 -3.234375 2.96875 -1.828125 3.625 -0.4375 C 3.75 -0.203125 3.765625 0.0625 4.15625 0.0625 C 4.515625 0.0625 4.578125 -0.171875 4.65625 -0.421875 C 5.3125 -1.75 5.875 -3.109375 6.484375 -4.453125 L 6.859375 -5.296875 C 7.015625 -5.796875 7.421875 -5.8125 7.984375 -5.8125 L 7.984375 -6.390625 L 5.6875 -6.390625 L 5.6875 -5.8125 C 5.890625 -5.8125 6.296875 -5.796875 6.375 -5.65625 L 6.375 -5.609375 C 6.375 -5.515625 6.3125 -5.421875 6.28125 -5.359375 C 6.171875 -5.125 6.0625 -4.890625 5.953125 -4.640625 L 5.140625 -2.796875 C 4.984375 -2.453125 4.796875 -2.09375 4.65625 -1.734375 L 4.640625 -1.734375 L 2.8125 -5.8125 L 3.609375 -5.8125 L 3.609375 -6.390625 Z M 0.3125 -6.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 2.0625 -3.234375 L 6.484375 -3.234375 C 6.671875 -3.234375 6.734375 -3.328125 6.734375 -3.5 C 6.734375 -5.046875 5.96875 -6.53125 3.78125 -6.53125 C 3.015625 -6.53125 2.21875 -6.3125 1.609375 -5.84375 C 0.8125 -5.234375 0.4375 -4.25 0.4375 -3.25 C 0.4375 -1.203125 2 0.078125 3.96875 0.078125 C 5.046875 0.078125 6.234375 -0.375 6.6875 -1.53125 C 6.703125 -1.59375 6.734375 -1.640625 6.734375 -1.6875 C 6.734375 -1.828125 6.59375 -1.890625 6.4375 -1.890625 C 6.171875 -1.890625 6.09375 -1.515625 5.984375 -1.3125 C 5.609375 -0.734375 4.875 -0.421875 4.1875 -0.421875 C 3.4375 -0.421875 2.71875 -0.765625 2.359375 -1.453125 C 2.078125 -2 2.0625 -2.625 2.0625 -3.234375 Z M 2.0625 -3.609375 C 2.0625 -4.25 2.140625 -4.9375 2.53125 -5.453125 C 2.828125 -5.84375 3.3125 -6.0625 3.78125 -6.0625 C 5.09375 -6.0625 5.421875 -4.6875 5.421875 -3.609375 Z M 2.0625 -3.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 0.453125 -6.359375 L 0.453125 -5.78125 L 0.75 -5.78125 C 1.125 -5.78125 1.46875 -5.734375 1.46875 -5.296875 L 1.46875 -0.59375 L 0.453125 -0.59375 L 0.453125 -0.015625 L 4.15625 -0.015625 L 4.15625 -0.59375 L 2.90625 -0.59375 L 2.90625 -2.65625 C 2.90625 -3.9375 2.953125 -6.03125 4.65625 -6.03125 C 4.46875 -5.84375 4.359375 -5.65625 4.359375 -5.390625 C 4.359375 -4.875 4.734375 -4.578125 5.15625 -4.578125 C 5.640625 -4.578125 5.953125 -4.953125 5.953125 -5.359375 C 5.953125 -6.078125 5.203125 -6.46875 4.578125 -6.46875 C 3.6875 -6.46875 2.9375 -5.65625 2.8125 -4.796875 L 2.796875 -6.46875 L 1.25 -6.390625 Z M 0.453125 -6.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 0.8125 -6.390625 L 0.65625 -3.9375 L 1.203125 -3.9375 C 1.21875 -4.40625 1.265625 -4.9375 1.546875 -5.328125 C 1.9375 -5.875 2.609375 -5.9375 3.234375 -5.9375 L 4.484375 -5.9375 C 3.203125 -4.15625 1.890625 -2.359375 0.59375 -0.609375 C 0.515625 -0.5 0.4375 -0.375 0.4375 -0.25 C 0.4375 -0.078125 0.578125 -0.015625 0.71875 -0.015625 L 6.109375 -0.015625 L 6.34375 -2.828125 L 5.796875 -2.828125 C 5.75 -2.21875 5.6875 -1.609375 5.328125 -1.09375 C 4.84375 -0.5625 4.140625 -0.5 3.46875 -0.5 L 2.265625 -0.5 C 2.5625 -0.96875 2.9375 -1.421875 3.265625 -1.875 C 4.21875 -3.1875 5.15625 -4.484375 6.125 -5.796875 C 6.203125 -5.890625 6.296875 -6.03125 6.296875 -6.15625 C 6.296875 -6.328125 6.1875 -6.390625 6.03125 -6.390625 Z M 0.8125 -6.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-12">
|
||||
<path style="stroke:none;" d="M 0.625 -6.359375 L 0.625 -5.78125 C 0.734375 -5.78125 0.84375 -5.796875 0.96875 -5.796875 C 1.28125 -5.796875 1.578125 -5.734375 1.578125 -5.328125 L 1.578125 -0.59375 L 0.59375 -0.59375 L 0.59375 -0.015625 L 3.9375 -0.015625 L 3.9375 -0.59375 L 3.03125 -0.59375 L 3.03125 -6.46875 L 1.4375 -6.46875 Z M 1.984375 -9.984375 C 1.5 -9.890625 1.140625 -9.515625 1.140625 -9.015625 C 1.140625 -8.515625 1.515625 -8.046875 2.125 -8.046875 L 2.21875 -8.046875 C 2.703125 -8.140625 3.0625 -8.515625 3.0625 -9.015625 C 3.0625 -9.515625 2.6875 -9.984375 2.078125 -9.984375 Z M 1.984375 -9.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-13">
|
||||
<path style="stroke:none;" d="M 5.15625 -5.90625 C 4.921875 -5.734375 4.78125 -5.53125 4.78125 -5.234375 C 4.78125 -4.828125 5.0625 -4.421875 5.53125 -4.421875 L 5.625 -4.421875 C 6.125 -4.421875 6.390625 -4.828125 6.390625 -5.21875 C 6.390625 -6.5 4.546875 -6.515625 4.015625 -6.515625 L 3.984375 -6.515625 C 3.15625 -6.515625 2.3125 -6.3125 1.65625 -5.78125 C 0.90625 -5.15625 0.515625 -4.1875 0.515625 -3.21875 C 0.515625 -1.234375 1.984375 0.078125 3.9375 0.078125 C 4.9375 0.078125 5.984375 -0.359375 6.421875 -1.3125 C 6.46875 -1.421875 6.5625 -1.5625 6.5625 -1.671875 C 6.5625 -1.8125 6.4375 -1.84375 6.34375 -1.84375 L 6.234375 -1.84375 C 5.96875 -1.84375 6 -1.625 5.890625 -1.453125 C 5.578125 -0.765625 4.9375 -0.421875 4.25 -0.421875 C 2.828125 -0.421875 2.171875 -1.578125 2.171875 -3.203125 C 2.171875 -4.34375 2.3125 -6.03125 4.109375 -6.03125 C 4.453125 -6.03125 4.8125 -5.96875 5.15625 -5.90625 Z M 5.15625 -5.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<path style="stroke:none;" d="M 1.234375 -8.5 L 1.234375 -7.9375 C 1.921875 -7.9375 2.625 -7.984375 3.28125 -8.203125 L 3.28125 -0.59375 L 1.3125 -0.59375 L 1.3125 -0.015625 L 6.78125 -0.015625 L 6.78125 -0.59375 L 4.84375 -0.59375 L 4.84375 -8.859375 C 4.84375 -8.921875 4.859375 -9.015625 4.859375 -9.109375 C 4.859375 -9.3125 4.796875 -9.421875 4.578125 -9.421875 C 4.296875 -9.421875 4.015625 -9.09375 3.71875 -8.953125 C 2.9375 -8.59375 2.078125 -8.5 1.234375 -8.5 Z M 1.234375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-15">
|
||||
<path style="stroke:none;" d="M 0.515625 -9.859375 L 0.515625 -9.28125 L 2.015625 -9.28125 L 2.015625 -0.59375 L 0.515625 -0.59375 L 0.515625 -0.015625 L 5.15625 -0.015625 C 5.46875 -0.015625 5.78125 0 6.09375 0 C 7.34375 0 8.640625 -0.25 9.625 -1.09375 C 10.734375 -2.03125 11.203125 -3.40625 11.203125 -4.84375 C 11.203125 -7.25 9.890625 -9.484375 7.03125 -9.828125 C 6.71875 -9.859375 6.40625 -9.859375 6.09375 -9.859375 Z M 3.765625 -0.59375 L 3.765625 -9.28125 L 5.828125 -9.28125 C 7.25 -9.28125 8.640625 -8.640625 9.09375 -7.171875 C 9.328125 -6.46875 9.359375 -5.6875 9.359375 -4.953125 C 9.359375 -3.0625 9.109375 -0.59375 5.859375 -0.59375 Z M 3.765625 -0.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-16">
|
||||
<path style="stroke:none;" d="M 0.515625 -0.59375 L 0.515625 -0.015625 L 3.84375 -0.015625 L 3.84375 -0.59375 C 3.421875 -0.59375 2.59375 -0.59375 2.59375 -0.796875 C 2.59375 -0.890625 2.71875 -1.15625 2.796875 -1.3125 C 3 -1.84375 3.296875 -2.421875 3.421875 -2.9375 L 7.234375 -2.9375 L 8.140625 -0.59375 L 6.8125 -0.59375 L 6.8125 -0.015625 L 11.375 -0.015625 L 11.375 -0.59375 L 10.015625 -0.59375 C 9.890625 -1.015625 9.6875 -1.453125 9.515625 -1.859375 C 8.484375 -4.5 7.40625 -7.140625 6.390625 -9.78125 C 6.296875 -9.953125 6.25 -10.0625 5.96875 -10.0625 C 5.5625 -10.0625 5.515625 -9.8125 5.234375 -9.09375 C 4.203125 -6.359375 3.015625 -3.703125 2.015625 -0.953125 C 1.875 -0.625 1.453125 -0.578125 1.03125 -0.578125 C 0.84375 -0.578125 0.65625 -0.59375 0.515625 -0.59375 Z M 3.671875 -3.515625 L 5.328125 -7.71875 L 6.984375 -3.515625 Z M 3.671875 -3.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-17">
|
||||
<path style="stroke:none;" d="M 0.453125 -9.859375 L 0.453125 -9.28125 C 0.578125 -9.28125 0.71875 -9.296875 0.84375 -9.296875 C 1.15625 -9.296875 1.46875 -9.21875 1.46875 -8.78125 L 1.46875 -0.015625 L 2 -0.03125 L 2.734375 -0.875 C 3.28125 -0.28125 3.96875 0.078125 4.828125 0.078125 C 6.609375 0.078125 8.21875 -1.078125 8.21875 -3.21875 C 8.21875 -4.84375 7.171875 -6.46875 5.046875 -6.46875 C 4.234375 -6.46875 3.546875 -6.203125 2.90625 -5.71875 L 2.90625 -9.96875 L 1.296875 -9.96875 Z M 6.5625 -2.640625 C 6.53125 -2 6.453125 -1.4375 6.03125 -0.953125 C 5.6875 -0.578125 5.171875 -0.375 4.65625 -0.375 C 3.984375 -0.375 3.40625 -0.734375 3.046875 -1.28125 C 2.96875 -1.375 2.96875 -1.484375 2.96875 -1.578125 L 2.96875 -5 C 3.046875 -5.484375 4.0625 -6.03125 4.78125 -6.03125 C 6.421875 -6.03125 6.578125 -4.453125 6.578125 -3.375 L 6.578125 -3 C 6.578125 -2.875 6.578125 -2.75 6.5625 -2.640625 Z M 6.5625 -2.640625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-18">
|
||||
<path style="stroke:none;" d="M 1.65625 -7.953125 C 2.03125 -8.515625 2.71875 -8.84375 3.40625 -8.84375 C 4.625 -8.84375 5.328125 -7.796875 5.328125 -6.703125 L 5.328125 -6.53125 C 5.25 -5.171875 4.171875 -4.0625 3.28125 -3.140625 C 2.5 -2.328125 1.65625 -1.515625 0.9375 -0.65625 C 0.8125 -0.546875 0.78125 -0.46875 0.78125 -0.3125 L 0.78125 -0.015625 L 6.703125 -0.015625 L 7.078125 -3.03125 L 6.546875 -3.03125 C 6.453125 -2.4375 6.46875 -1.671875 5.90625 -1.671875 C 5.5625 -1.640625 5.21875 -1.640625 4.875 -1.640625 L 2.46875 -1.640625 C 3.234375 -2.296875 3.984375 -2.96875 4.78125 -3.578125 C 5.796875 -4.359375 7.078125 -5.21875 7.078125 -6.734375 C 7.078125 -8.625 5.25 -9.421875 3.765625 -9.421875 C 2.4375 -9.421875 0.78125 -8.65625 0.78125 -7.109375 C 0.78125 -6.515625 1.21875 -6.171875 1.6875 -6.171875 C 2.234375 -6.171875 2.578125 -6.59375 2.578125 -7.078125 C 2.578125 -7.609375 2.1875 -7.953125 1.65625 -7.953125 Z M 1.65625 -7.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 0.3125 -0.3125 L 0.3125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 C 2.15625 -0.3125 1.75 -0.46875 1.71875 -0.8125 C 1.71875 -0.921875 1.78125 -1 1.796875 -1.09375 C 1.90625 -1.421875 2.015625 -1.75 2.140625 -2.078125 C 2.171875 -2.15625 2.171875 -2.28125 2.3125 -2.28125 L 4.578125 -2.28125 C 4.6875 -2.28125 4.703125 -2.171875 4.75 -2.078125 L 4.953125 -1.453125 C 5.046875 -1.203125 5.234375 -0.8125 5.234375 -0.609375 L 5.234375 -0.5625 C 5.140625 -0.328125 4.75 -0.3125 4.46875 -0.3125 L 4.40625 -0.3125 L 4.40625 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 L 6.859375 -0.3125 C 6.625 -0.3125 6.390625 -0.34375 6.265625 -0.453125 C 6.15625 -0.578125 6.125 -0.75 6.0625 -0.890625 C 5.546875 -2.375 5.046875 -3.875 4.515625 -5.359375 C 4.34375 -5.875 4.09375 -6.4375 3.96875 -6.953125 C 3.921875 -7.09375 3.875 -7.140625 3.734375 -7.140625 C 3.53125 -7.140625 3.484375 -6.9375 3.421875 -6.734375 C 2.875 -5.046875 2.25 -3.390625 1.6875 -1.71875 L 1.46875 -1.109375 C 1.421875 -0.9375 1.359375 -0.75 1.21875 -0.625 C 0.984375 -0.375 0.640625 -0.3125 0.3125 -0.3125 Z M 2.328125 -2.59375 L 3.4375 -5.828125 L 4.5625 -2.59375 Z M 2.328125 -2.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.6875 -3.046875 0.703125 -3.453125 0.921875 -3.734375 C 1.171875 -4.046875 1.640625 -4.078125 2.03125 -4.078125 L 3.140625 -4.078125 C 2.203125 -2.875 1.3125 -1.59375 0.390625 -0.375 C 0.34375 -0.3125 0.28125 -0.21875 0.28125 -0.140625 C 0.28125 -0.046875 0.34375 -0.015625 0.453125 -0.015625 L 3.828125 -0.015625 L 4 -1.875 L 3.75 -1.875 C 3.671875 -1.203125 3.625 -0.375 2.671875 -0.28125 C 2.4375 -0.265625 2.21875 -0.265625 2 -0.265625 L 1.125 -0.265625 C 1.859375 -1.25 2.59375 -2.25 3.328125 -3.234375 C 3.546875 -3.53125 3.984375 -4 3.984375 -4.171875 C 3.984375 -4.265625 3.890625 -4.296875 3.8125 -4.296875 Z M 0.53125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.28125 2.1875 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.859375 -3.53125 3.859375 -3.078125 L 3.859375 -0.703125 C 3.859375 -0.34375 3.5625 -0.3125 3.234375 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.796875 -0.3125 4.5625 -0.359375 4.5625 -0.734375 L 4.5625 -2.546875 C 4.5625 -3.28125 4.953125 -4.1875 5.90625 -4.1875 C 6.546875 -4.1875 6.625 -3.53125 6.625 -3.078125 L 6.625 -0.703125 C 6.625 -0.34375 6.3125 -0.3125 5.984375 -0.3125 L 5.84375 -0.3125 L 5.84375 -0.015625 L 8.09375 -0.015625 L 8.09375 -0.3125 L 7.890625 -0.3125 C 7.59375 -0.3125 7.3125 -0.34375 7.3125 -0.703125 L 7.3125 -2.953125 C 7.3125 -3.3125 7.296875 -3.65625 7.0625 -3.984375 C 6.796875 -4.3125 6.375 -4.40625 5.96875 -4.40625 C 5.328125 -4.40625 4.796875 -4.03125 4.53125 -3.453125 C 4.34375 -4.15625 3.890625 -4.40625 3.203125 -4.40625 C 2.5625 -4.40625 1.953125 -4 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 0.296875 -6.8125 L 0.296875 -6.515625 C 0.421875 -6.515625 0.5625 -6.515625 0.703125 -6.515625 C 1.046875 -6.515625 1.359375 -6.46875 1.359375 -6.09375 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.703125 -0.3125 C 0.5625 -0.3125 0.40625 -0.3125 0.296875 -0.3125 L 0.296875 -0.015625 L 3.3125 -0.015625 L 3.3125 -0.3125 C 3.1875 -0.3125 3.046875 -0.3125 2.90625 -0.3125 C 2.5625 -0.3125 2.25 -0.375 2.25 -0.75 L 2.25 -6.09375 C 2.25 -6.46875 2.578125 -6.515625 2.921875 -6.515625 C 3.046875 -6.515625 3.1875 -6.515625 3.3125 -6.515625 L 3.3125 -6.8125 Z M 0.296875 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-15">
|
||||
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-16">
|
||||
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 L 0.484375 -6.515625 C 0.84375 -6.515625 1.109375 -6.46875 1.109375 -5.984375 L 1.109375 -0.953125 C 1.109375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.3125 L 2.296875 -0.3125 C 2.015625 -0.3125 1.78125 -0.359375 1.78125 -0.75 L 1.78125 -6.921875 Z M 0.328125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-17">
|
||||
<path style="stroke:none;" d="M 0.1875 -4.296875 L 0.1875 -3.984375 L 0.375 -3.984375 C 0.875 -3.984375 0.921875 -3.78125 1.21875 -3.03125 L 2.03125 -1.03125 C 2.1875 -0.640625 2.390625 0.09375 2.625 0.09375 C 2.859375 0.09375 3.046875 -0.625 3.203125 -0.984375 L 4.03125 -3.046875 C 4.28125 -3.671875 4.5 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.671875 -3.984375 3.921875 -3.8125 3.921875 -3.578125 C 3.921875 -3.453125 3.875 -3.3125 3.8125 -3.1875 C 3.53125 -2.46875 3.25 -1.78125 2.953125 -1.078125 C 2.9375 -0.984375 2.875 -0.890625 2.859375 -0.796875 L 2.84375 -0.796875 C 2.78125 -1.03125 2.671875 -1.25 2.578125 -1.484375 L 1.765625 -3.5 C 1.734375 -3.578125 1.6875 -3.65625 1.6875 -3.734375 L 1.6875 -3.78125 C 1.75 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 Z M 0.1875 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-18">
|
||||
<path style="stroke:none;" d="M 2.34375 -4.46875 C 1.09375 -4.34375 0.28125 -3.28125 0.28125 -2.125 C 0.28125 -1 1.171875 0.09375 2.5 0.09375 C 3.6875 0.09375 4.6875 -0.875 4.6875 -2.140625 C 4.6875 -3.3125 3.796875 -4.46875 2.46875 -4.46875 C 2.4375 -4.46875 2.375 -4.46875 2.34375 -4.46875 Z M 1.109375 -1.890625 L 1.109375 -2.328125 C 1.109375 -3.09375 1.359375 -4.25 2.484375 -4.25 C 3.296875 -4.25 3.75 -3.5625 3.84375 -2.8125 C 3.859375 -2.59375 3.859375 -2.375 3.859375 -2.15625 C 3.859375 -1.515625 3.78125 -0.703125 3.15625 -0.34375 C 2.953125 -0.203125 2.734375 -0.15625 2.5 -0.15625 C 1.78125 -0.15625 1.265625 -0.71875 1.15625 -1.5 C 1.140625 -1.625 1.140625 -1.765625 1.109375 -1.890625 Z M 1.109375 -1.890625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-19">
|
||||
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-20">
|
||||
<path style="stroke:none;" d="M 0.890625 -6.015625 L 0.890625 -5.703125 C 1.328125 -5.703125 1.796875 -5.75 2.1875 -5.96875 L 2.1875 -0.75 C 2.1875 -0.375 1.8125 -0.3125 1.421875 -0.3125 C 1.25 -0.3125 1.09375 -0.3125 0.953125 -0.3125 L 0.953125 -0.015625 L 4.1875 -0.015625 L 4.1875 -0.3125 C 4.015625 -0.3125 3.84375 -0.3125 3.6875 -0.3125 C 3.296875 -0.3125 2.9375 -0.375 2.9375 -0.75 L 2.9375 -6.484375 C 2.9375 -6.578125 2.90625 -6.65625 2.796875 -6.65625 C 2.65625 -6.65625 2.5 -6.453125 2.375 -6.375 C 1.9375 -6.09375 1.40625 -6.015625 0.890625 -6.015625 Z M 0.890625 -6.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-21">
|
||||
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-22">
|
||||
<path style="stroke:none;" d="M 0.890625 -5.328125 C 1.125 -5.828125 1.5 -6.34375 2.21875 -6.34375 C 3.15625 -6.34375 3.5625 -5.484375 3.5625 -4.703125 C 3.5625 -3.78125 2.953125 -3.03125 2.375 -2.375 C 1.8125 -1.703125 1.203125 -1.0625 0.625 -0.40625 C 0.53125 -0.3125 0.5 -0.265625 0.5 -0.125 L 0.5 -0.015625 L 4.203125 -0.015625 L 4.46875 -1.75 L 4.234375 -1.75 C 4.140625 -1.296875 4.203125 -0.796875 3.6875 -0.796875 L 3.296875 -0.796875 C 3 -0.78125 2.71875 -0.78125 2.421875 -0.78125 C 2.03125 -0.78125 1.65625 -0.78125 1.28125 -0.78125 L 1.96875 -1.453125 C 2.25 -1.71875 2.515625 -1.984375 2.796875 -2.234375 C 3.53125 -2.890625 4.46875 -3.609375 4.46875 -4.71875 C 4.46875 -5.84375 3.515625 -6.65625 2.390625 -6.65625 C 1.4375 -6.65625 0.5 -5.9375 0.5 -4.859375 C 0.5 -4.609375 0.59375 -4.296875 1.015625 -4.296875 C 1.3125 -4.296875 1.546875 -4.5 1.546875 -4.8125 C 1.546875 -5.078125 1.34375 -5.328125 1.03125 -5.328125 C 0.984375 -5.328125 0.9375 -5.328125 0.890625 -5.328125 Z M 0.890625 -5.328125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.617" y="12.713"/>
|
||||
<use xlink:href="#glyph0-2" x="150.622805" y="12.713"/>
|
||||
<use xlink:href="#glyph0-3" x="155.112582" y="12.713"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="169.487441" y="12.713"/>
|
||||
<use xlink:href="#glyph0-2" x="181.171533" y="12.713"/>
|
||||
<use xlink:href="#glyph0-5" x="185.661309" y="12.713"/>
|
||||
<use xlink:href="#glyph0-6" x="191.950094" y="12.713"/>
|
||||
<use xlink:href="#glyph0-7" x="199.137524" y="12.713"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="141.555" y="64.976"/>
|
||||
<use xlink:href="#glyph1-2" x="147.40707" y="64.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="154.555084" y="64.976"/>
|
||||
<use xlink:href="#glyph1-4" x="165.278899" y="64.976"/>
|
||||
<use xlink:href="#glyph1-5" x="171.130969" y="64.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="178.290939" y="64.976"/>
|
||||
<use xlink:href="#glyph1-7" x="184.143009" y="64.976"/>
|
||||
<use xlink:href="#glyph1-8" x="189.995079" y="64.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="195.835195" y="64.976"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="-0.232" y="107.881"/>
|
||||
<use xlink:href="#glyph2-2" x="5.576776" y="107.881"/>
|
||||
<use xlink:href="#glyph2-3" x="14.342305" y="107.881"/>
|
||||
<use xlink:href="#glyph2-4" x="23.107833" y="107.881"/>
|
||||
<use xlink:href="#glyph2-5" x="30.996808" y="107.881"/>
|
||||
<use xlink:href="#glyph2-6" x="35.379572" y="107.881"/>
|
||||
<use xlink:href="#glyph2-7" x="41.515442" y="107.881"/>
|
||||
<use xlink:href="#glyph2-8" x="47.738824" y="107.881"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-9" x="55.620626" y="107.881"/>
|
||||
<use xlink:href="#glyph2-10" x="62.793726" y="107.881"/>
|
||||
<use xlink:href="#glyph2-11" x="69.196435" y="107.881"/>
|
||||
<use xlink:href="#glyph2-9" x="76.208857" y="107.881"/>
|
||||
<use xlink:href="#glyph2-12" x="83.381957" y="107.881"/>
|
||||
<use xlink:href="#glyph2-13" x="87.764722" y="107.881"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="94.346758" y="107.881"/>
|
||||
<use xlink:href="#glyph2-2" x="103.112286" y="107.881"/>
|
||||
<use xlink:href="#glyph2-12" x="111.877815" y="107.881"/>
|
||||
<use xlink:href="#glyph2-7" x="116.260579" y="107.881"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="-0.232" y="140.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-15" x="23.437795" y="140.823"/>
|
||||
<use xlink:href="#glyph2-12" x="35.528773" y="140.823"/>
|
||||
<use xlink:href="#glyph2-9" x="39.911537" y="140.823"/>
|
||||
<use xlink:href="#glyph2-7" x="47.084637" y="140.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="58.558728" y="140.823"/>
|
||||
<use xlink:href="#glyph2-7" x="62.941492" y="140.823"/>
|
||||
<use xlink:href="#glyph2-6" x="69.164873" y="140.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-16" x="80.565798" y="140.823"/>
|
||||
<use xlink:href="#glyph2-17" x="92.476014" y="140.823"/>
|
||||
<use xlink:href="#glyph2-7" x="101.241542" y="140.823"/>
|
||||
<use xlink:href="#glyph2-13" x="107.464923" y="140.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="114.032614" y="140.823"/>
|
||||
<use xlink:href="#glyph2-2" x="122.798142" y="140.823"/>
|
||||
<use xlink:href="#glyph2-12" x="131.56367" y="140.823"/>
|
||||
<use xlink:href="#glyph2-6" x="135.946434" y="140.823"/>
|
||||
<use xlink:href="#glyph2-6" x="142.082304" y="140.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="153.483229" y="140.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="-0.232" y="162.641"/>
|
||||
<use xlink:href="#glyph3-2" x="7.237957" y="162.641"/>
|
||||
<use xlink:href="#glyph3-3" x="10.004571" y="162.641"/>
|
||||
<use xlink:href="#glyph3-4" x="14.430955" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="21.649855" y="162.641"/>
|
||||
<use xlink:href="#glyph3-2" x="26.076238" y="162.641"/>
|
||||
<use xlink:href="#glyph3-5" x="28.842852" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-6" x="37.703588" y="162.641"/>
|
||||
<use xlink:href="#glyph3-7" x="45.173546" y="162.641"/>
|
||||
<use xlink:href="#glyph3-8" x="50.706774" y="162.641"/>
|
||||
<use xlink:href="#glyph3-9" x="54.635027" y="162.641"/>
|
||||
<use xlink:href="#glyph3-10" x="59.615331" y="162.641"/>
|
||||
<use xlink:href="#glyph3-11" x="63.48879" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-11" x="71.232719" y="162.641"/>
|
||||
<use xlink:href="#glyph3-12" x="75.659102" y="162.641"/>
|
||||
<use xlink:href="#glyph3-13" x="81.19233" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="92.809718" y="162.641"/>
|
||||
<use xlink:href="#glyph3-5" x="96.406216" y="162.641"/>
|
||||
<use xlink:href="#glyph3-15" x="101.939444" y="162.641"/>
|
||||
<use xlink:href="#glyph3-9" x="107.472672" y="162.641"/>
|
||||
<use xlink:href="#glyph3-16" x="112.452976" y="162.641"/>
|
||||
<use xlink:href="#glyph3-10" x="115.21959" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-17" x="122.420557" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-18" x="127.398869" y="162.641"/>
|
||||
<use xlink:href="#glyph3-5" x="132.379172" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-6" x="141.229946" y="162.641"/>
|
||||
<use xlink:href="#glyph3-7" x="148.699904" y="162.641"/>
|
||||
<use xlink:href="#glyph3-8" x="154.233132" y="162.641"/>
|
||||
<use xlink:href="#glyph3-19" x="158.161385" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-15" x="162.308815" y="162.641"/>
|
||||
<use xlink:href="#glyph3-5" x="167.842043" y="162.641"/>
|
||||
<use xlink:href="#glyph3-2" x="173.375271" y="162.641"/>
|
||||
<use xlink:href="#glyph3-10" x="176.141885" y="162.641"/>
|
||||
<use xlink:href="#glyph3-10" x="180.015344" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-20" x="187.216312" y="162.641"/>
|
||||
<use xlink:href="#glyph3-21" x="192.196615" y="162.641"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-18" x="-0.232" y="195.584"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-15" x="23.437795" y="195.584"/>
|
||||
<use xlink:href="#glyph2-12" x="35.528773" y="195.584"/>
|
||||
<use xlink:href="#glyph2-9" x="39.911537" y="195.584"/>
|
||||
<use xlink:href="#glyph2-7" x="47.084637" y="195.584"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="58.558728" y="195.584"/>
|
||||
<use xlink:href="#glyph2-7" x="62.941492" y="195.584"/>
|
||||
<use xlink:href="#glyph2-6" x="69.164873" y="195.584"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-16" x="80.565798" y="195.584"/>
|
||||
<use xlink:href="#glyph2-17" x="92.476014" y="195.584"/>
|
||||
<use xlink:href="#glyph2-7" x="101.241542" y="195.584"/>
|
||||
<use xlink:href="#glyph2-13" x="107.464923" y="195.584"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="114.032614" y="195.584"/>
|
||||
<use xlink:href="#glyph2-2" x="122.798142" y="195.584"/>
|
||||
<use xlink:href="#glyph2-12" x="131.56367" y="195.584"/>
|
||||
<use xlink:href="#glyph2-6" x="135.946434" y="195.584"/>
|
||||
<use xlink:href="#glyph2-6" x="142.082304" y="195.584"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-18" x="153.483229" y="195.584"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="-0.232" y="217.402"/>
|
||||
<use xlink:href="#glyph3-2" x="7.237957" y="217.402"/>
|
||||
<use xlink:href="#glyph3-3" x="10.004571" y="217.402"/>
|
||||
<use xlink:href="#glyph3-4" x="14.430955" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="21.649855" y="217.402"/>
|
||||
<use xlink:href="#glyph3-2" x="26.076238" y="217.402"/>
|
||||
<use xlink:href="#glyph3-5" x="28.842852" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-6" x="37.703588" y="217.402"/>
|
||||
<use xlink:href="#glyph3-7" x="45.173546" y="217.402"/>
|
||||
<use xlink:href="#glyph3-8" x="50.706774" y="217.402"/>
|
||||
<use xlink:href="#glyph3-9" x="54.635027" y="217.402"/>
|
||||
<use xlink:href="#glyph3-10" x="59.615331" y="217.402"/>
|
||||
<use xlink:href="#glyph3-11" x="63.48879" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-11" x="71.232719" y="217.402"/>
|
||||
<use xlink:href="#glyph3-12" x="75.659102" y="217.402"/>
|
||||
<use xlink:href="#glyph3-13" x="81.19233" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="92.809718" y="217.402"/>
|
||||
<use xlink:href="#glyph3-5" x="96.406216" y="217.402"/>
|
||||
<use xlink:href="#glyph3-15" x="101.939444" y="217.402"/>
|
||||
<use xlink:href="#glyph3-9" x="107.472672" y="217.402"/>
|
||||
<use xlink:href="#glyph3-16" x="112.452976" y="217.402"/>
|
||||
<use xlink:href="#glyph3-10" x="115.21959" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-17" x="122.420557" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-18" x="127.398869" y="217.402"/>
|
||||
<use xlink:href="#glyph3-5" x="132.379172" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-6" x="141.229946" y="217.402"/>
|
||||
<use xlink:href="#glyph3-7" x="148.699904" y="217.402"/>
|
||||
<use xlink:href="#glyph3-8" x="154.233132" y="217.402"/>
|
||||
<use xlink:href="#glyph3-19" x="158.161385" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-15" x="162.308815" y="217.402"/>
|
||||
<use xlink:href="#glyph3-5" x="167.842043" y="217.402"/>
|
||||
<use xlink:href="#glyph3-2" x="173.375271" y="217.402"/>
|
||||
<use xlink:href="#glyph3-10" x="176.141885" y="217.402"/>
|
||||
<use xlink:href="#glyph3-10" x="180.015344" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-22" x="187.216312" y="217.402"/>
|
||||
<use xlink:href="#glyph3-21" x="192.196615" y="217.402"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-20" x="169.134" y="538.745"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
417
sections/german/04/main-orig.svg
Normal file
@ -0,0 +1,417 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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 0.96875 -11.75 L 0.96875 -11.296875 L 1.390625 -11.296875 C 1.921875 -11.296875 2.359375 -11.234375 2.359375 -10.609375 C 2.359375 -10.484375 2.34375 -10.34375 2.34375 -10.25 L 2.34375 -1.5625 C 2.34375 -1.453125 2.359375 -1.328125 2.359375 -1.1875 C 2.359375 -0.515625 1.859375 -0.46875 1.3125 -0.46875 L 0.96875 -0.46875 L 0.96875 -0.015625 L 9.921875 -0.015625 L 10.53125 -4.375 L 10.234375 -4.375 C 10.09375 -3.28125 9.9375 -1.96875 9.21875 -1.234375 C 8.453125 -0.484375 7.296875 -0.46875 6.296875 -0.46875 L 4.078125 -0.46875 C 3.640625 -0.46875 3.484375 -0.640625 3.484375 -1.0625 L 3.484375 -5.890625 L 5 -5.890625 C 5.9375 -5.890625 6.890625 -5.8125 6.890625 -4.171875 L 6.890625 -3.875 L 7.203125 -3.875 L 7.203125 -8.34375 L 6.890625 -8.34375 L 6.890625 -8.0625 C 6.890625 -7.1875 6.640625 -6.453125 5.671875 -6.375 C 5.359375 -6.34375 5.03125 -6.34375 4.71875 -6.34375 L 3.484375 -6.34375 L 3.484375 -10.703125 C 3.484375 -11.125 3.640625 -11.296875 4.0625 -11.296875 L 6.3125 -11.296875 C 7.578125 -11.296875 8.953125 -11.265625 9.46875 -9.6875 C 9.65625 -9.140625 9.734375 -8.546875 9.78125 -7.953125 L 10.09375 -7.953125 L 9.671875 -11.75 Z M 0.96875 -11.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 0.734375 -7.375 L 0.734375 -6.921875 L 0.984375 -6.921875 C 1.53125 -6.921875 1.84375 -6.765625 1.84375 -6.046875 L 1.84375 -1.171875 C 1.84375 -0.5625 1.640625 -0.46875 0.6875 -0.46875 L 0.6875 -0.015625 L 3.75 -0.015625 L 3.75 -0.46875 L 3.515625 -0.46875 C 3.109375 -0.46875 2.71875 -0.515625 2.71875 -1.0625 L 2.71875 -7.5625 Z M 1.921875 -11.3125 C 1.546875 -11.25 1.34375 -10.921875 1.34375 -10.625 C 1.34375 -10.296875 1.625 -9.921875 2.03125 -9.921875 C 2.46875 -9.921875 2.75 -10.265625 2.75 -10.625 C 2.75 -10.9375 2.484375 -11.328125 2.0625 -11.328125 C 2.015625 -11.328125 1.96875 -11.3125 1.921875 -11.3125 Z M 1.921875 -11.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 0.6875 -7.375 L 0.6875 -6.921875 L 0.953125 -6.921875 C 1.515625 -6.921875 1.84375 -6.765625 1.84375 -6.0625 L 1.84375 -1.171875 C 1.84375 -0.578125 1.640625 -0.46875 0.6875 -0.46875 L 0.6875 -0.015625 L 3.90625 -0.015625 L 3.90625 -0.46875 L 3.59375 -0.46875 C 3.1875 -0.46875 2.75 -0.515625 2.75 -1.046875 L 2.75 -4.34375 C 2.75 -5.515625 3.234375 -7.28125 4.953125 -7.28125 C 6.0625 -7.28125 6.3125 -6.25 6.3125 -5.25 L 6.3125 -1.078125 C 6.3125 -0.5 5.84375 -0.46875 5.328125 -0.46875 L 5.171875 -0.46875 L 5.171875 -0.015625 L 8.390625 -0.015625 L 8.390625 -0.46875 L 8.109375 -0.46875 C 7.65625 -0.46875 7.234375 -0.515625 7.234375 -1.0625 L 7.234375 -5.0625 C 7.234375 -5.703125 7.21875 -6.40625 6.78125 -6.90625 C 6.34375 -7.421875 5.671875 -7.5625 5 -7.5625 C 4 -7.5625 2.9375 -6.765625 2.71875 -5.796875 L 2.703125 -7.5625 Z M 0.6875 -7.375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 0.875 -11.71875 L 0.578125 -7.9375 L 0.890625 -7.9375 C 0.96875 -8.828125 0.984375 -10.078125 1.53125 -10.65625 C 2.078125 -11.25 2.96875 -11.28125 3.71875 -11.28125 L 4.75 -11.28125 C 5.09375 -11.28125 5.28125 -11.109375 5.28125 -10.734375 C 5.28125 -10.625 5.265625 -10.5 5.265625 -10.421875 L 5.265625 -1.234375 C 5.265625 -0.53125 4.6875 -0.46875 4.125 -0.46875 L 3.328125 -0.46875 L 3.328125 -0.015625 L 8.34375 -0.015625 L 8.34375 -0.46875 L 7.53125 -0.46875 C 6.953125 -0.46875 6.40625 -0.53125 6.40625 -1.234375 L 6.40625 -10.421875 C 6.40625 -10.5 6.390625 -10.625 6.390625 -10.734375 C 6.390625 -11.109375 6.578125 -11.28125 6.921875 -11.28125 L 7.953125 -11.28125 C 9 -11.28125 10.234375 -11.203125 10.53125 -9.78125 C 10.6875 -9.171875 10.734375 -8.5625 10.78125 -7.9375 L 11.09375 -7.9375 L 10.796875 -11.71875 Z M 0.875 -11.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 2.375 -10.609375 C 2.375 -9.59375 2.078125 -7.25 0.296875 -7.25 L 0.296875 -6.96875 L 1.78125 -6.96875 L 1.78125 -3.03125 C 1.78125 -2.796875 1.75 -2.53125 1.75 -2.296875 C 1.75 -0.953125 2.359375 0.125 3.75 0.125 C 5.078125 0.125 5.375 -1.296875 5.375 -2.375 L 5.375 -3.140625 L 5.0625 -3.140625 C 5.0625 -2.875 5.078125 -2.625 5.078125 -2.34375 C 5.078125 -1.59375 4.90625 -0.1875 3.890625 -0.1875 C 2.921875 -0.1875 2.6875 -1.3125 2.6875 -2.21875 L 2.6875 -6.96875 L 5.09375 -6.96875 L 5.09375 -7.421875 L 2.6875 -7.421875 L 2.6875 -10.609375 Z M 2.375 -10.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 1.6875 -4.0625 L 6.515625 -4.0625 C 6.65625 -4.0625 6.734375 -4.09375 6.734375 -4.265625 C 6.734375 -5.953125 5.84375 -7.625 3.890625 -7.625 C 1.859375 -7.625 0.5625 -5.6875 0.5625 -3.8125 C 0.5625 -2 1.796875 0.015625 3.859375 0.125 L 4 0.125 C 5.1875 0.125 6.34375 -0.65625 6.6875 -1.875 C 6.703125 -1.921875 6.71875 -1.984375 6.71875 -2.046875 C 6.71875 -2.140625 6.65625 -2.1875 6.59375 -2.1875 C 6.375 -2.1875 6.296875 -1.71875 6.203125 -1.515625 C 5.8125 -0.78125 5.046875 -0.1875 4.1875 -0.1875 C 3.6875 -0.1875 3.140625 -0.375 2.75 -0.71875 C 1.78125 -1.546875 1.6875 -2.875 1.6875 -4.0625 Z M 1.703125 -4.34375 C 1.734375 -5.6875 2.40625 -7.328125 3.859375 -7.328125 C 5.125 -7.328125 5.625 -6.015625 5.734375 -4.96875 C 5.765625 -4.765625 5.75 -4.546875 5.78125 -4.34375 Z M 1.703125 -4.34375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 0.6875 -11.78125 L 0.6875 -11.328125 L 0.84375 -11.328125 C 1.40625 -11.328125 1.84375 -11.28125 1.84375 -10.4375 L 1.84375 -1.171875 C 1.84375 -0.546875 1.546875 -0.46875 0.6875 -0.46875 L 0.6875 -0.015625 L 3.875 -0.015625 L 3.875 -0.46875 L 3.515625 -0.46875 C 3.09375 -0.46875 2.71875 -0.515625 2.71875 -1.078125 L 2.71875 -11.96875 Z M 0.6875 -11.78125 "/>
|
||||
</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 1.484375 -3.875 L 1.46875 -3.875 C 1.46875 -5.03125 1.515625 -6.34375 2.4375 -7.203125 C 2.765625 -7.5 3.171875 -7.671875 3.609375 -7.671875 C 4 -7.671875 4.453125 -7.546875 4.65625 -7.1875 C 4.625 -7.203125 4.59375 -7.203125 4.546875 -7.203125 C 4.265625 -7.203125 4.046875 -6.984375 4.046875 -6.6875 C 4.046875 -6.421875 4.25 -6.1875 4.546875 -6.1875 C 4.828125 -6.1875 5.0625 -6.390625 5.0625 -6.75 C 5.0625 -7.578125 4.28125 -7.953125 3.5625 -7.953125 C 1.546875 -7.953125 0.484375 -5.65625 0.484375 -3.90625 C 0.484375 -2.28125 0.8125 0.234375 2.96875 0.234375 C 4.046875 0.234375 5 -0.625 5.25 -1.640625 C 5.3125 -1.90625 5.34375 -2.203125 5.34375 -2.484375 C 5.34375 -3.71875 4.5 -5.109375 3.0625 -5.109375 C 2.421875 -5.109375 1.671875 -4.6875 1.484375 -3.875 Z M 1.5 -2.59375 L 1.5 -2.71875 C 1.5 -3.578125 1.859375 -4.859375 2.984375 -4.859375 L 3.0625 -4.859375 C 4.3125 -4.75 4.359375 -3.34375 4.359375 -2.53125 L 4.359375 -2.328125 C 4.359375 -1.59375 4.34375 -0.734375 3.640625 -0.28125 C 3.4375 -0.140625 3.203125 -0.078125 2.96875 -0.078125 C 2.5 -0.078125 2.140625 -0.328125 1.875 -0.71875 C 1.515625 -1.28125 1.546875 -1.953125 1.5 -2.59375 Z M 1.5 -2.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 1.53125 -1.15625 C 1.28125 -1.109375 1.046875 -0.890625 1.046875 -0.59375 C 1.046875 -0.28125 1.296875 -0.015625 1.609375 -0.015625 C 1.921875 -0.015625 2.203125 -0.25 2.203125 -0.578125 C 2.203125 -0.890625 1.9375 -1.171875 1.625 -1.171875 C 1.59375 -1.171875 1.5625 -1.15625 1.53125 -1.15625 Z M 1.53125 -1.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 0.53125 -8.171875 L 0.53125 -7.828125 L 0.921875 -7.828125 C 1.3125 -7.828125 1.671875 -7.78125 1.671875 -7.34375 C 1.671875 -7.25 1.65625 -7.1875 1.65625 -7.109375 L 1.65625 -1.203125 C 1.65625 -0.4375 1.03125 -0.359375 0.53125 -0.359375 L 0.53125 -0.015625 L 3.078125 -0.015625 L 3.078125 -0.359375 C 2.53125 -0.359375 1.953125 -0.46875 1.953125 -1.265625 L 1.953125 -7.78125 C 2.015625 -7.578125 2.109375 -7.375 2.1875 -7.171875 C 2.875 -5.390625 3.53125 -3.625 4.21875 -1.84375 L 4.75 -0.4375 C 4.8125 -0.28125 4.859375 -0.046875 5.03125 -0.015625 L 5.046875 -0.015625 C 5.21875 -0.015625 5.265625 -0.28125 5.3125 -0.421875 L 7.4375 -5.9375 C 7.59375 -6.359375 7.75 -6.78125 7.90625 -7.203125 L 8.0625 -7.59375 C 8.09375 -7.671875 8.125 -7.75 8.15625 -7.859375 L 8.15625 -1.15625 C 8.15625 -1.0625 8.171875 -0.953125 8.171875 -0.859375 C 8.171875 -0.40625 7.8125 -0.34375 7.4375 -0.34375 C 7.296875 -0.34375 7.140625 -0.359375 7.03125 -0.359375 L 7.03125 -0.015625 L 10.1875 -0.015625 L 10.1875 -0.359375 L 9.796875 -0.359375 C 9.40625 -0.359375 9.03125 -0.40625 9.03125 -0.859375 C 9.03125 -0.9375 9.046875 -1.015625 9.046875 -1.09375 L 9.046875 -7.296875 C 9.046875 -7.765625 9.40625 -7.84375 9.765625 -7.84375 C 9.90625 -7.84375 10.046875 -7.828125 10.1875 -7.828125 L 10.1875 -8.171875 L 8.265625 -8.171875 L 8.0625 -8.140625 L 7.828125 -7.625 L 5.359375 -1.15625 L 5.34375 -1.15625 L 2.875 -7.625 L 2.640625 -8.140625 L 2.4375 -8.171875 Z M 0.53125 -8.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 1.25 -4.40625 C 1.546875 -4.859375 2.0625 -5.09375 2.59375 -5.09375 C 3.28125 -5.09375 3.828125 -4.40625 3.828125 -3.734375 L 3.828125 -3.09375 C 2.625 -3.09375 0.515625 -2.765625 0.515625 -1.125 L 0.515625 -1 C 0.625 -0.1875 1.609375 0.125 2.3125 0.125 C 2.9375 0.125 3.71875 -0.265625 3.890625 -0.921875 L 3.90625 -0.921875 C 3.9375 -0.359375 4.34375 0.046875 4.828125 0.046875 C 5.328125 0.046875 5.71875 -0.375 5.765625 -0.875 L 5.765625 -1.75 L 5.515625 -1.75 L 5.515625 -1.15625 C 5.515625 -0.8125 5.453125 -0.296875 5.0625 -0.296875 C 4.671875 -0.296875 4.59375 -0.8125 4.59375 -1.109375 C 4.59375 -1.25 4.609375 -1.375 4.609375 -1.5 L 4.609375 -3.171875 C 4.609375 -3.296875 4.609375 -3.4375 4.609375 -3.578125 C 4.609375 -4.703125 3.578125 -5.328125 2.59375 -5.328125 C 1.828125 -5.328125 0.859375 -4.875 0.859375 -3.9375 C 0.859375 -3.59375 1.09375 -3.40625 1.375 -3.40625 C 1.65625 -3.40625 1.859375 -3.640625 1.859375 -3.90625 C 1.859375 -4.203125 1.640625 -4.40625 1.34375 -4.40625 Z M 3.828125 -2.875 L 3.828125 -1.75 C 3.828125 -0.890625 3.28125 -0.125 2.4375 -0.125 C 1.984375 -0.125 1.375 -0.484375 1.375 -1.09375 C 1.375 -2.15625 2.328125 -2.6875 3.328125 -2.828125 C 3.484375 -2.859375 3.65625 -2.84375 3.828125 -2.875 Z M 3.828125 -2.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 0.4375 -5.140625 L 0.4375 -4.796875 L 0.640625 -4.796875 C 1.015625 -4.796875 1.296875 -4.734375 1.296875 -4.203125 L 1.296875 -0.859375 C 1.296875 -0.421875 1.078125 -0.359375 0.390625 -0.359375 L 0.390625 -0.015625 L 2.875 -0.015625 L 2.875 -0.359375 L 2.703125 -0.359375 C 2.359375 -0.359375 2.0625 -0.375 2.0625 -0.78125 L 2.0625 -5.265625 Z M 1.40625 -7.9375 C 1.09375 -7.890625 0.921875 -7.625 0.921875 -7.375 C 0.921875 -7.125 1.109375 -6.796875 1.484375 -6.796875 C 1.859375 -6.796875 2.078125 -7.078125 2.078125 -7.359375 C 2.078125 -7.609375 1.890625 -7.953125 1.515625 -7.953125 C 1.484375 -7.953125 1.453125 -7.9375 1.40625 -7.9375 Z M 1.40625 -7.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 0.984375 -6.25 C 1.21875 -7 1.8125 -7.609375 2.625 -7.609375 C 3.6875 -7.609375 4.25 -6.609375 4.25 -5.671875 C 4.25 -4.453125 3.375 -3.46875 2.625 -2.609375 L 1.765625 -1.640625 C 1.515625 -1.359375 1.265625 -1.078125 1.015625 -0.78125 L 0.734375 -0.484375 C 0.671875 -0.375 0.578125 -0.328125 0.578125 -0.171875 C 0.578125 -0.125 0.578125 -0.0625 0.578125 -0.015625 L 4.9375 -0.015625 L 5.25 -2.015625 L 4.984375 -2.015625 C 4.890625 -1.453125 4.921875 -0.890625 4.40625 -0.890625 C 4.078125 -0.890625 3.734375 -0.859375 3.390625 -0.859375 L 1.40625 -0.859375 C 2.03125 -1.484375 2.625 -2.09375 3.28125 -2.671875 C 4.109375 -3.4375 5.25 -4.34375 5.25 -5.59375 C 5.25 -7.09375 4.09375 -7.953125 2.796875 -7.953125 C 1.625 -7.953125 0.578125 -7 0.578125 -5.796875 C 0.578125 -5.46875 0.6875 -5.21875 1.125 -5.140625 C 1.515625 -5.140625 1.71875 -5.421875 1.71875 -5.71875 C 1.71875 -5.984375 1.546875 -6.21875 1.21875 -6.28125 C 1.140625 -6.28125 1.0625 -6.28125 0.984375 -6.25 Z M 0.984375 -6.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 2.765625 -7.953125 C 0.484375 -7.75 0.484375 -4.90625 0.484375 -3.765625 C 0.484375 -2.125 0.8125 0.234375 2.921875 0.234375 L 3.0625 0.234375 C 5.328125 0.03125 5.359375 -2.75 5.359375 -3.921875 C 5.359375 -5.546875 5.015625 -7.96875 2.921875 -7.96875 C 2.875 -7.96875 2.828125 -7.953125 2.765625 -7.953125 Z M 1.40625 -3.125 C 1.390625 -3.21875 1.390625 -3.328125 1.390625 -3.421875 C 1.390625 -4.15625 1.390625 -4.921875 1.453125 -5.671875 C 1.484375 -6.140625 1.546875 -6.671875 1.8125 -7.078125 C 2.0625 -7.453125 2.484375 -7.71875 2.921875 -7.71875 C 4.546875 -7.71875 4.453125 -5.25 4.453125 -4.125 L 4.453125 -3.234375 C 4.453125 -2.359375 4.40625 -1.40625 4.078125 -0.78125 C 3.859375 -0.359375 3.421875 0 2.921875 0 L 2.84375 0 C 1.40625 -0.125 1.5 -2.03125 1.40625 -3.125 Z M 1.40625 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 1.09375 -7.203125 L 1.09375 -6.84375 C 1.625 -6.84375 2.078125 -6.9375 2.609375 -7.15625 L 2.609375 -0.890625 C 2.609375 -0.421875 2.140625 -0.34375 1.671875 -0.34375 C 1.484375 -0.34375 1.296875 -0.359375 1.140625 -0.359375 L 1.140625 -0.015625 L 4.890625 -0.015625 L 4.890625 -0.359375 C 4.75 -0.359375 4.546875 -0.34375 4.375 -0.34375 C 3.78125 -0.34375 3.4375 -0.40625 3.4375 -0.921875 L 3.4375 -7.78125 C 3.4375 -7.859375 3.40625 -7.953125 3.28125 -7.953125 C 3.125 -7.953125 2.96875 -7.734375 2.828125 -7.65625 C 2.3125 -7.296875 1.703125 -7.203125 1.09375 -7.203125 Z M 1.09375 -7.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 4.34375 -3.859375 L 4.359375 -3.859375 C 4.359375 -2.8125 4.34375 -1.578125 3.640625 -0.734375 C 3.328125 -0.328125 2.90625 -0.09375 2.359375 -0.09375 C 1.9375 -0.09375 1.484375 -0.171875 1.1875 -0.53125 C 1.46875 -0.53125 1.78125 -0.640625 1.78125 -1.015625 C 1.78125 -1.265625 1.609375 -1.53125 1.296875 -1.53125 C 1.03125 -1.53125 0.78125 -1.34375 0.78125 -1.0625 L 0.78125 -1.015625 C 0.78125 -0.15625 1.546875 0.234375 2.421875 0.234375 C 3.390625 0.234375 4.171875 -0.40625 4.640625 -1.1875 C 5.15625 -2.015625 5.34375 -2.984375 5.34375 -3.953125 C 5.34375 -5.421875 5.0625 -7.96875 2.921875 -7.96875 C 2.078125 -7.96875 1.390625 -7.5 0.921875 -6.8125 C 0.59375 -6.34375 0.484375 -5.828125 0.484375 -5.265625 C 0.484375 -4.046875 1.3125 -2.625 2.765625 -2.625 C 3.46875 -2.625 4.203125 -3.125 4.34375 -3.859375 Z M 4.328125 -5.3125 C 4.328125 -5.1875 4.34375 -5.078125 4.34375 -4.96875 L 4.34375 -4.890625 C 4.28125 -4.046875 3.9375 -2.875 2.828125 -2.875 C 1.65625 -2.875 1.46875 -4.21875 1.46875 -5.140625 L 1.46875 -5.546875 C 1.46875 -6.359375 1.703125 -7.671875 2.921875 -7.671875 C 4.125 -7.671875 4.34375 -6.109375 4.34375 -5.4375 C 4.34375 -5.390625 4.328125 -5.359375 4.328125 -5.3125 Z M 4.328125 -5.3125 "/>
|
||||
</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 0.4375 -9.859375 L 0.4375 -9.28125 L 2.015625 -9.28125 L 2.015625 -0.59375 L 0.4375 -0.59375 L 0.4375 -0.015625 L 5.375 -0.015625 L 5.375 -0.59375 L 3.796875 -0.59375 L 3.796875 -9.28125 L 5.375 -9.28125 L 5.375 -9.859375 Z M 0.4375 -9.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 0.546875 -6.359375 L 0.546875 -5.78125 L 0.828125 -5.78125 C 1.203125 -5.78125 1.546875 -5.734375 1.546875 -5.296875 L 1.546875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 4.0625 -0.015625 L 4.0625 -0.59375 L 3.0625 -0.59375 L 3.0625 -3.5 C 3.0625 -4.65625 3.65625 -6.03125 5.046875 -6.03125 C 5.875 -6.03125 5.921875 -5.09375 5.921875 -4.28125 L 5.921875 -0.59375 L 4.921875 -0.59375 L 4.921875 -0.015625 L 8.4375 -0.015625 L 8.4375 -0.59375 L 7.4375 -0.59375 L 7.4375 -4.3125 C 7.4375 -4.8125 7.40625 -5.296875 7.125 -5.71875 C 6.734375 -6.359375 5.953125 -6.46875 5.28125 -6.46875 C 4.25 -6.46875 3.234375 -5.8125 2.953125 -4.8125 L 2.9375 -6.46875 L 1.34375 -6.46875 Z M 0.546875 -6.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 0.546875 -9.859375 L 0.546875 -9.28125 L 0.8125 -9.28125 C 1.1875 -9.28125 1.546875 -9.28125 1.546875 -8.75 L 1.546875 -0.59375 L 0.546875 -0.59375 L 0.546875 -0.015625 L 4.0625 -0.015625 L 4.0625 -0.59375 L 3.0625 -0.59375 L 3.0625 -3.5 C 3.0625 -4.65625 3.65625 -6.03125 5.046875 -6.03125 C 5.875 -6.03125 5.921875 -5.09375 5.921875 -4.28125 L 5.921875 -0.59375 L 4.921875 -0.59375 L 4.921875 -0.015625 L 8.4375 -0.015625 L 8.4375 -0.59375 L 7.4375 -0.59375 L 7.4375 -4.265625 C 7.4375 -4.78125 7.40625 -5.3125 7.109375 -5.75 C 6.734375 -6.359375 5.953125 -6.46875 5.28125 -6.46875 C 4.359375 -6.46875 3.25 -5.84375 3.015625 -4.953125 L 3 -9.96875 L 1.375 -9.96875 Z M 0.546875 -9.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 2.1875 -5.875 C 2.59375 -5.984375 2.984375 -6.0625 3.40625 -6.0625 C 4.171875 -6.0625 4.9375 -5.6875 4.9375 -4.1875 L 4.9375 -3.703125 C 3.234375 -3.703125 0.5 -3.328125 0.5 -1.484375 C 0.5 -0.25 2.0625 0.078125 3 0.078125 C 3.78125 0.078125 4.828125 -0.3125 5.09375 -1.1875 L 5.109375 -1.1875 C 5.109375 -0.4375 5.6875 0.03125 6.390625 0.03125 C 7.046875 0.03125 7.78125 -0.421875 7.78125 -1.15625 L 7.78125 -2.046875 L 7.25 -2.046875 L 7.25 -1.234375 C 7.25 -0.984375 7.140625 -0.625 6.84375 -0.625 C 6.53125 -0.625 6.4375 -1.015625 6.4375 -1.234375 L 6.4375 -4.21875 C 6.4375 -5.546875 5.4375 -6.515625 3.515625 -6.515625 C 2.59375 -6.515625 1.03125 -6.359375 1.03125 -5.125 C 1.03125 -4.625 1.421875 -4.328125 1.84375 -4.328125 C 2.28125 -4.328125 2.640625 -4.65625 2.640625 -5.125 C 2.640625 -5.46875 2.453125 -5.6875 2.1875 -5.875 Z M 4.9375 -3.359375 L 4.9375 -2 C 4.9375 -1.078125 4.21875 -0.375 3.296875 -0.375 C 2.703125 -0.375 2.015625 -0.78125 2.015625 -1.5 C 2.015625 -2.96875 3.84375 -3.25 4.9375 -3.359375 Z M 4.9375 -3.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 0.59375 -9.859375 L 0.59375 -9.28125 C 0.71875 -9.28125 0.84375 -9.296875 0.96875 -9.296875 C 1.3125 -9.296875 1.578125 -9.21875 1.578125 -8.8125 L 1.578125 -0.59375 L 0.59375 -0.59375 L 0.59375 -0.015625 L 4.015625 -0.015625 L 4.015625 -0.59375 L 3.03125 -0.59375 L 3.03125 -9.96875 L 1.40625 -9.96875 Z M 0.59375 -9.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 2.390625 -9.125 C 2.390625 -8 1.828125 -6.25 0.28125 -6.25 L 0.28125 -5.8125 L 1.4375 -5.8125 L 1.4375 -1.9375 C 1.4375 -1.5 1.46875 -1.078125 1.703125 -0.703125 C 2.125 -0.078125 2.921875 0.078125 3.59375 0.078125 C 4.71875 0.078125 5.25 -0.859375 5.25 -1.984375 L 5.25 -2.546875 L 4.703125 -2.546875 C 4.703125 -2.359375 4.71875 -2.15625 4.71875 -1.9375 C 4.71875 -1.359375 4.578125 -0.421875 3.796875 -0.421875 C 3.078125 -0.421875 2.9375 -1.171875 2.9375 -1.84375 L 2.9375 -5.8125 L 4.984375 -5.8125 L 4.984375 -6.390625 L 2.9375 -6.390625 L 2.9375 -9.125 Z M 2.390625 -9.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.484375 -0.46875 C 1.9375 -0.078125 2.578125 0.078125 3.203125 0.078125 C 4.5 0.078125 5.6875 -0.515625 5.6875 -2 L 5.6875 -2.15625 C 5.609375 -2.984375 4.984375 -3.59375 4.234375 -3.890625 C 3.859375 -4.03125 3.453125 -4.09375 3.0625 -4.15625 C 2.5 -4.265625 1.46875 -4.40625 1.46875 -5.15625 C 1.46875 -5.9375 2.375 -6.109375 3.03125 -6.109375 C 3.875 -6.109375 4.640625 -5.78125 4.75 -4.765625 C 4.75 -4.640625 4.75 -4.515625 4.96875 -4.515625 L 5.0625 -4.515625 C 5.234375 -4.515625 5.3125 -4.59375 5.3125 -4.796875 C 5.3125 -4.875 5.296875 -4.96875 5.296875 -5.03125 L 5.296875 -6.3125 C 5.296875 -6.4375 5.234375 -6.515625 5.109375 -6.515625 C 4.84375 -6.515625 4.640625 -6.203125 4.484375 -6.203125 C 4.296875 -6.203125 4.015625 -6.40625 3.75 -6.453125 C 3.5 -6.5 3.25 -6.515625 3.015625 -6.515625 C 1.96875 -6.515625 0.53125 -6.234375 0.53125 -4.59375 C 0.53125 -3.125 2.25 -2.859375 3.28125 -2.671875 C 3.90625 -2.546875 4.75 -2.328125 4.75 -1.484375 C 4.75 -0.421875 3.578125 -0.375 2.984375 -0.375 C 1.90625 -0.515625 1.46875 -1 1.078125 -2.203125 C 1.03125 -2.359375 0.921875 -2.359375 0.78125 -2.359375 C 0.609375 -2.359375 0.53125 -2.296875 0.53125 -2.09375 L 0.53125 -0.34375 C 0.53125 -0.296875 0.515625 -0.234375 0.515625 -0.15625 C 0.515625 -0.03125 0.5625 0.078125 0.703125 0.078125 C 0.875 0.078125 1.0625 -0.109375 1.171875 -0.21875 C 1.28125 -0.296875 1.390625 -0.375 1.484375 -0.46875 Z M 1.484375 -0.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 0.3125 -6.390625 L 0.3125 -5.8125 L 1.078125 -5.8125 C 1.34375 -5.8125 1.5625 -5.015625 1.75 -4.640625 C 2.359375 -3.234375 2.96875 -1.828125 3.625 -0.4375 C 3.75 -0.203125 3.765625 0.0625 4.15625 0.0625 C 4.515625 0.0625 4.578125 -0.171875 4.65625 -0.421875 C 5.3125 -1.75 5.875 -3.109375 6.484375 -4.453125 L 6.859375 -5.296875 C 7.015625 -5.796875 7.421875 -5.8125 7.984375 -5.8125 L 7.984375 -6.390625 L 5.6875 -6.390625 L 5.6875 -5.8125 C 5.890625 -5.8125 6.296875 -5.796875 6.375 -5.65625 L 6.375 -5.609375 C 6.375 -5.515625 6.3125 -5.421875 6.28125 -5.359375 C 6.171875 -5.125 6.0625 -4.890625 5.953125 -4.640625 L 5.140625 -2.796875 C 4.984375 -2.453125 4.796875 -2.09375 4.65625 -1.734375 L 4.640625 -1.734375 L 2.8125 -5.8125 L 3.609375 -5.8125 L 3.609375 -6.390625 Z M 0.3125 -6.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 2.0625 -3.234375 L 6.484375 -3.234375 C 6.671875 -3.234375 6.734375 -3.328125 6.734375 -3.5 C 6.734375 -5.046875 5.96875 -6.53125 3.78125 -6.53125 C 3.015625 -6.53125 2.21875 -6.3125 1.609375 -5.84375 C 0.8125 -5.234375 0.4375 -4.25 0.4375 -3.25 C 0.4375 -1.203125 2 0.078125 3.96875 0.078125 C 5.046875 0.078125 6.234375 -0.375 6.6875 -1.53125 C 6.703125 -1.59375 6.734375 -1.640625 6.734375 -1.6875 C 6.734375 -1.828125 6.59375 -1.890625 6.4375 -1.890625 C 6.171875 -1.890625 6.09375 -1.515625 5.984375 -1.3125 C 5.609375 -0.734375 4.875 -0.421875 4.1875 -0.421875 C 3.4375 -0.421875 2.71875 -0.765625 2.359375 -1.453125 C 2.078125 -2 2.0625 -2.625 2.0625 -3.234375 Z M 2.0625 -3.609375 C 2.0625 -4.25 2.140625 -4.9375 2.53125 -5.453125 C 2.828125 -5.84375 3.3125 -6.0625 3.78125 -6.0625 C 5.09375 -6.0625 5.421875 -4.6875 5.421875 -3.609375 Z M 2.0625 -3.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 0.453125 -6.359375 L 0.453125 -5.78125 L 0.75 -5.78125 C 1.125 -5.78125 1.46875 -5.734375 1.46875 -5.296875 L 1.46875 -0.59375 L 0.453125 -0.59375 L 0.453125 -0.015625 L 4.15625 -0.015625 L 4.15625 -0.59375 L 2.90625 -0.59375 L 2.90625 -2.65625 C 2.90625 -3.9375 2.953125 -6.03125 4.65625 -6.03125 C 4.46875 -5.84375 4.359375 -5.65625 4.359375 -5.390625 C 4.359375 -4.875 4.734375 -4.578125 5.15625 -4.578125 C 5.640625 -4.578125 5.953125 -4.953125 5.953125 -5.359375 C 5.953125 -6.078125 5.203125 -6.46875 4.578125 -6.46875 C 3.6875 -6.46875 2.9375 -5.65625 2.8125 -4.796875 L 2.796875 -6.46875 L 1.25 -6.390625 Z M 0.453125 -6.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 0.8125 -6.390625 L 0.65625 -3.9375 L 1.203125 -3.9375 C 1.21875 -4.40625 1.265625 -4.9375 1.546875 -5.328125 C 1.9375 -5.875 2.609375 -5.9375 3.234375 -5.9375 L 4.484375 -5.9375 C 3.203125 -4.15625 1.890625 -2.359375 0.59375 -0.609375 C 0.515625 -0.5 0.4375 -0.375 0.4375 -0.25 C 0.4375 -0.078125 0.578125 -0.015625 0.71875 -0.015625 L 6.109375 -0.015625 L 6.34375 -2.828125 L 5.796875 -2.828125 C 5.75 -2.21875 5.6875 -1.609375 5.328125 -1.09375 C 4.84375 -0.5625 4.140625 -0.5 3.46875 -0.5 L 2.265625 -0.5 C 2.5625 -0.96875 2.9375 -1.421875 3.265625 -1.875 C 4.21875 -3.1875 5.15625 -4.484375 6.125 -5.796875 C 6.203125 -5.890625 6.296875 -6.03125 6.296875 -6.15625 C 6.296875 -6.328125 6.1875 -6.390625 6.03125 -6.390625 Z M 0.8125 -6.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-12">
|
||||
<path style="stroke:none;" d="M 0.625 -6.359375 L 0.625 -5.78125 C 0.734375 -5.78125 0.84375 -5.796875 0.96875 -5.796875 C 1.28125 -5.796875 1.578125 -5.734375 1.578125 -5.328125 L 1.578125 -0.59375 L 0.59375 -0.59375 L 0.59375 -0.015625 L 3.9375 -0.015625 L 3.9375 -0.59375 L 3.03125 -0.59375 L 3.03125 -6.46875 L 1.4375 -6.46875 Z M 1.984375 -9.984375 C 1.5 -9.890625 1.140625 -9.515625 1.140625 -9.015625 C 1.140625 -8.515625 1.515625 -8.046875 2.125 -8.046875 L 2.21875 -8.046875 C 2.703125 -8.140625 3.0625 -8.515625 3.0625 -9.015625 C 3.0625 -9.515625 2.6875 -9.984375 2.078125 -9.984375 Z M 1.984375 -9.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-13">
|
||||
<path style="stroke:none;" d="M 5.15625 -5.90625 C 4.921875 -5.734375 4.78125 -5.53125 4.78125 -5.234375 C 4.78125 -4.828125 5.0625 -4.421875 5.53125 -4.421875 L 5.625 -4.421875 C 6.125 -4.421875 6.390625 -4.828125 6.390625 -5.21875 C 6.390625 -6.5 4.546875 -6.515625 4.015625 -6.515625 L 3.984375 -6.515625 C 3.15625 -6.515625 2.3125 -6.3125 1.65625 -5.78125 C 0.90625 -5.15625 0.515625 -4.1875 0.515625 -3.21875 C 0.515625 -1.234375 1.984375 0.078125 3.9375 0.078125 C 4.9375 0.078125 5.984375 -0.359375 6.421875 -1.3125 C 6.46875 -1.421875 6.5625 -1.5625 6.5625 -1.671875 C 6.5625 -1.8125 6.4375 -1.84375 6.34375 -1.84375 L 6.234375 -1.84375 C 5.96875 -1.84375 6 -1.625 5.890625 -1.453125 C 5.578125 -0.765625 4.9375 -0.421875 4.25 -0.421875 C 2.828125 -0.421875 2.171875 -1.578125 2.171875 -3.203125 C 2.171875 -4.34375 2.3125 -6.03125 4.109375 -6.03125 C 4.453125 -6.03125 4.8125 -5.96875 5.15625 -5.90625 Z M 5.15625 -5.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<path style="stroke:none;" d="M 1.234375 -8.5 L 1.234375 -7.9375 C 1.921875 -7.9375 2.625 -7.984375 3.28125 -8.203125 L 3.28125 -0.59375 L 1.3125 -0.59375 L 1.3125 -0.015625 L 6.78125 -0.015625 L 6.78125 -0.59375 L 4.84375 -0.59375 L 4.84375 -8.859375 C 4.84375 -8.921875 4.859375 -9.015625 4.859375 -9.109375 C 4.859375 -9.3125 4.796875 -9.421875 4.578125 -9.421875 C 4.296875 -9.421875 4.015625 -9.09375 3.71875 -8.953125 C 2.9375 -8.59375 2.078125 -8.5 1.234375 -8.5 Z M 1.234375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-15">
|
||||
<path style="stroke:none;" d="M 0.515625 -9.859375 L 0.515625 -9.28125 L 2.015625 -9.28125 L 2.015625 -0.59375 L 0.515625 -0.59375 L 0.515625 -0.015625 L 5.15625 -0.015625 C 5.46875 -0.015625 5.78125 0 6.09375 0 C 7.34375 0 8.640625 -0.25 9.625 -1.09375 C 10.734375 -2.03125 11.203125 -3.40625 11.203125 -4.84375 C 11.203125 -7.25 9.890625 -9.484375 7.03125 -9.828125 C 6.71875 -9.859375 6.40625 -9.859375 6.09375 -9.859375 Z M 3.765625 -0.59375 L 3.765625 -9.28125 L 5.828125 -9.28125 C 7.25 -9.28125 8.640625 -8.640625 9.09375 -7.171875 C 9.328125 -6.46875 9.359375 -5.6875 9.359375 -4.953125 C 9.359375 -3.0625 9.109375 -0.59375 5.859375 -0.59375 Z M 3.765625 -0.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-16">
|
||||
<path style="stroke:none;" d="M 0.515625 -0.59375 L 0.515625 -0.015625 L 3.84375 -0.015625 L 3.84375 -0.59375 C 3.421875 -0.59375 2.59375 -0.59375 2.59375 -0.796875 C 2.59375 -0.890625 2.71875 -1.15625 2.796875 -1.3125 C 3 -1.84375 3.296875 -2.421875 3.421875 -2.9375 L 7.234375 -2.9375 L 8.140625 -0.59375 L 6.8125 -0.59375 L 6.8125 -0.015625 L 11.375 -0.015625 L 11.375 -0.59375 L 10.015625 -0.59375 C 9.890625 -1.015625 9.6875 -1.453125 9.515625 -1.859375 C 8.484375 -4.5 7.40625 -7.140625 6.390625 -9.78125 C 6.296875 -9.953125 6.25 -10.0625 5.96875 -10.0625 C 5.5625 -10.0625 5.515625 -9.8125 5.234375 -9.09375 C 4.203125 -6.359375 3.015625 -3.703125 2.015625 -0.953125 C 1.875 -0.625 1.453125 -0.578125 1.03125 -0.578125 C 0.84375 -0.578125 0.65625 -0.59375 0.515625 -0.59375 Z M 3.671875 -3.515625 L 5.328125 -7.71875 L 6.984375 -3.515625 Z M 3.671875 -3.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-17">
|
||||
<path style="stroke:none;" d="M 0.453125 -9.859375 L 0.453125 -9.28125 C 0.578125 -9.28125 0.71875 -9.296875 0.84375 -9.296875 C 1.15625 -9.296875 1.46875 -9.21875 1.46875 -8.78125 L 1.46875 -0.015625 L 2 -0.03125 L 2.734375 -0.875 C 3.28125 -0.28125 3.96875 0.078125 4.828125 0.078125 C 6.609375 0.078125 8.21875 -1.078125 8.21875 -3.21875 C 8.21875 -4.84375 7.171875 -6.46875 5.046875 -6.46875 C 4.234375 -6.46875 3.546875 -6.203125 2.90625 -5.71875 L 2.90625 -9.96875 L 1.296875 -9.96875 Z M 6.5625 -2.640625 C 6.53125 -2 6.453125 -1.4375 6.03125 -0.953125 C 5.6875 -0.578125 5.171875 -0.375 4.65625 -0.375 C 3.984375 -0.375 3.40625 -0.734375 3.046875 -1.28125 C 2.96875 -1.375 2.96875 -1.484375 2.96875 -1.578125 L 2.96875 -5 C 3.046875 -5.484375 4.0625 -6.03125 4.78125 -6.03125 C 6.421875 -6.03125 6.578125 -4.453125 6.578125 -3.375 L 6.578125 -3 C 6.578125 -2.875 6.578125 -2.75 6.5625 -2.640625 Z M 6.5625 -2.640625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-18">
|
||||
<path style="stroke:none;" d="M 1.65625 -7.953125 C 2.03125 -8.515625 2.71875 -8.84375 3.40625 -8.84375 C 4.625 -8.84375 5.328125 -7.796875 5.328125 -6.703125 L 5.328125 -6.53125 C 5.25 -5.171875 4.171875 -4.0625 3.28125 -3.140625 C 2.5 -2.328125 1.65625 -1.515625 0.9375 -0.65625 C 0.8125 -0.546875 0.78125 -0.46875 0.78125 -0.3125 L 0.78125 -0.015625 L 6.703125 -0.015625 L 7.078125 -3.03125 L 6.546875 -3.03125 C 6.453125 -2.4375 6.46875 -1.671875 5.90625 -1.671875 C 5.5625 -1.640625 5.21875 -1.640625 4.875 -1.640625 L 2.46875 -1.640625 C 3.234375 -2.296875 3.984375 -2.96875 4.78125 -3.578125 C 5.796875 -4.359375 7.078125 -5.21875 7.078125 -6.734375 C 7.078125 -8.625 5.25 -9.421875 3.765625 -9.421875 C 2.4375 -9.421875 0.78125 -8.65625 0.78125 -7.109375 C 0.78125 -6.515625 1.21875 -6.171875 1.6875 -6.171875 C 2.234375 -6.171875 2.578125 -6.59375 2.578125 -7.078125 C 2.578125 -7.609375 2.1875 -7.953125 1.65625 -7.953125 Z M 1.65625 -7.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 C 0.453125 -6.515625 0.59375 -6.515625 0.703125 -6.515625 C 1.0625 -6.515625 1.359375 -6.46875 1.359375 -6.078125 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.6875 -0.3125 C 0.5625 -0.3125 0.4375 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 3.265625 -0.015625 L 3.265625 -0.3125 L 2.9375 -0.3125 C 2.515625 -0.3125 2.25 -0.34375 2.25 -0.75 L 2.25 -3.40625 L 5.21875 -3.40625 L 5.21875 -0.75 C 5.21875 -0.359375 4.890625 -0.3125 4.53125 -0.3125 L 4.203125 -0.3125 L 4.203125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 C 7.015625 -0.3125 6.890625 -0.3125 6.765625 -0.3125 C 6.421875 -0.3125 6.109375 -0.359375 6.109375 -0.75 L 6.109375 -6.078125 C 6.109375 -6.453125 6.4375 -6.515625 6.765625 -6.515625 C 6.890625 -6.515625 7.03125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.203125 -6.8125 L 4.203125 -6.515625 L 4.53125 -6.515625 C 4.953125 -6.515625 5.21875 -6.484375 5.21875 -6.078125 L 5.21875 -3.703125 L 2.25 -3.703125 L 2.25 -6.078125 C 2.25 -6.46875 2.578125 -6.515625 2.9375 -6.515625 L 3.265625 -6.515625 L 3.265625 -6.8125 Z M 0.328125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 0.3125 -0.3125 L 0.3125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 C 2.15625 -0.3125 1.75 -0.46875 1.71875 -0.8125 C 1.71875 -0.921875 1.78125 -1 1.796875 -1.09375 C 1.90625 -1.421875 2.015625 -1.75 2.140625 -2.078125 C 2.171875 -2.15625 2.171875 -2.28125 2.3125 -2.28125 L 4.578125 -2.28125 C 4.6875 -2.28125 4.703125 -2.171875 4.75 -2.078125 L 4.953125 -1.453125 C 5.046875 -1.203125 5.234375 -0.8125 5.234375 -0.609375 L 5.234375 -0.5625 C 5.140625 -0.328125 4.75 -0.3125 4.46875 -0.3125 L 4.40625 -0.3125 L 4.40625 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.3125 L 6.859375 -0.3125 C 6.625 -0.3125 6.390625 -0.34375 6.265625 -0.453125 C 6.15625 -0.578125 6.125 -0.75 6.0625 -0.890625 C 5.546875 -2.375 5.046875 -3.875 4.515625 -5.359375 C 4.34375 -5.875 4.09375 -6.4375 3.96875 -6.953125 C 3.921875 -7.09375 3.875 -7.140625 3.734375 -7.140625 C 3.53125 -7.140625 3.484375 -6.9375 3.421875 -6.734375 C 2.875 -5.046875 2.25 -3.390625 1.6875 -1.71875 L 1.46875 -1.109375 C 1.421875 -0.9375 1.359375 -0.75 1.21875 -0.625 C 0.984375 -0.375 0.640625 -0.3125 0.3125 -0.3125 Z M 2.328125 -2.59375 L 3.4375 -5.828125 L 4.5625 -2.59375 Z M 2.328125 -2.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.484375 1.046875 -6.015625 L 1.046875 -0.015625 L 1.28125 -0.03125 L 1.421875 -0.203125 L 1.65625 -0.625 L 1.671875 -0.625 C 1.90625 -0.140625 2.5 0.09375 3 0.09375 C 4.234375 0.09375 5.1875 -0.984375 5.1875 -2.15625 C 5.1875 -3.3125 4.3125 -4.40625 3.046875 -4.40625 C 2.515625 -4.40625 2.0625 -4.15625 1.71875 -3.765625 L 1.71875 -6.921875 Z M 4.34375 -1.90625 C 4.3125 -1.4375 4.25 -1.015625 3.953125 -0.640625 C 3.703125 -0.328125 3.328125 -0.125 2.9375 -0.125 C 2.5 -0.125 2.109375 -0.375 1.890625 -0.734375 C 1.796875 -0.84375 1.75 -0.921875 1.75 -1.078125 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.734375 2.46875 -4.1875 3.015625 -4.1875 C 4.09375 -4.1875 4.359375 -2.9375 4.359375 -2.140625 C 4.359375 -2.0625 4.359375 -2 4.34375 -1.90625 Z M 4.34375 -1.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.6875 -3.046875 0.703125 -3.453125 0.921875 -3.734375 C 1.171875 -4.046875 1.640625 -4.078125 2.03125 -4.078125 L 3.140625 -4.078125 C 2.203125 -2.875 1.3125 -1.59375 0.390625 -0.375 C 0.34375 -0.3125 0.28125 -0.21875 0.28125 -0.140625 C 0.28125 -0.046875 0.34375 -0.015625 0.453125 -0.015625 L 3.828125 -0.015625 L 4 -1.875 L 3.75 -1.875 C 3.671875 -1.203125 3.625 -0.375 2.671875 -0.28125 C 2.4375 -0.265625 2.21875 -0.265625 2 -0.265625 L 1.125 -0.265625 C 1.859375 -1.25 2.59375 -2.25 3.328125 -3.234375 C 3.546875 -3.53125 3.984375 -4 3.984375 -4.171875 C 3.984375 -4.265625 3.890625 -4.296875 3.8125 -4.296875 Z M 0.53125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.28125 2.1875 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.859375 -3.53125 3.859375 -3.078125 L 3.859375 -0.703125 C 3.859375 -0.34375 3.5625 -0.3125 3.234375 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.796875 -0.3125 4.5625 -0.359375 4.5625 -0.734375 L 4.5625 -2.546875 C 4.5625 -3.28125 4.953125 -4.1875 5.90625 -4.1875 C 6.546875 -4.1875 6.625 -3.53125 6.625 -3.078125 L 6.625 -0.703125 C 6.625 -0.34375 6.3125 -0.3125 5.984375 -0.3125 L 5.84375 -0.3125 L 5.84375 -0.015625 L 8.09375 -0.015625 L 8.09375 -0.3125 L 7.890625 -0.3125 C 7.59375 -0.3125 7.3125 -0.34375 7.3125 -0.703125 L 7.3125 -2.953125 C 7.3125 -3.3125 7.296875 -3.65625 7.0625 -3.984375 C 6.796875 -4.3125 6.375 -4.40625 5.96875 -4.40625 C 5.328125 -4.40625 4.796875 -4.03125 4.53125 -3.453125 C 4.34375 -4.15625 3.890625 -4.40625 3.203125 -4.40625 C 2.5625 -4.40625 1.953125 -4 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 0.296875 -6.8125 L 0.296875 -6.515625 C 0.421875 -6.515625 0.5625 -6.515625 0.703125 -6.515625 C 1.046875 -6.515625 1.359375 -6.46875 1.359375 -6.09375 L 1.359375 -0.75 C 1.359375 -0.375 1.03125 -0.3125 0.703125 -0.3125 C 0.5625 -0.3125 0.40625 -0.3125 0.296875 -0.3125 L 0.296875 -0.015625 L 3.3125 -0.015625 L 3.3125 -0.3125 C 3.1875 -0.3125 3.046875 -0.3125 2.90625 -0.3125 C 2.5625 -0.3125 2.25 -0.375 2.25 -0.75 L 2.25 -6.09375 C 2.25 -6.46875 2.578125 -6.515625 2.921875 -6.515625 C 3.046875 -6.515625 3.1875 -6.515625 3.3125 -6.515625 L 3.3125 -6.8125 Z M 0.296875 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-15">
|
||||
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-16">
|
||||
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 L 0.484375 -6.515625 C 0.84375 -6.515625 1.109375 -6.46875 1.109375 -5.984375 L 1.109375 -0.953125 C 1.109375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.3125 L 2.296875 -0.3125 C 2.015625 -0.3125 1.78125 -0.359375 1.78125 -0.75 L 1.78125 -6.921875 Z M 0.328125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-17">
|
||||
<path style="stroke:none;" d="M 0.1875 -4.296875 L 0.1875 -3.984375 L 0.375 -3.984375 C 0.875 -3.984375 0.921875 -3.78125 1.21875 -3.03125 L 2.03125 -1.03125 C 2.1875 -0.640625 2.390625 0.09375 2.625 0.09375 C 2.859375 0.09375 3.046875 -0.625 3.203125 -0.984375 L 4.03125 -3.046875 C 4.28125 -3.671875 4.5 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.671875 -3.984375 3.921875 -3.8125 3.921875 -3.578125 C 3.921875 -3.453125 3.875 -3.3125 3.8125 -3.1875 C 3.53125 -2.46875 3.25 -1.78125 2.953125 -1.078125 C 2.9375 -0.984375 2.875 -0.890625 2.859375 -0.796875 L 2.84375 -0.796875 C 2.78125 -1.03125 2.671875 -1.25 2.578125 -1.484375 L 1.765625 -3.5 C 1.734375 -3.578125 1.6875 -3.65625 1.6875 -3.734375 L 1.6875 -3.78125 C 1.75 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 Z M 0.1875 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-18">
|
||||
<path style="stroke:none;" d="M 2.34375 -4.46875 C 1.09375 -4.34375 0.28125 -3.28125 0.28125 -2.125 C 0.28125 -1 1.171875 0.09375 2.5 0.09375 C 3.6875 0.09375 4.6875 -0.875 4.6875 -2.140625 C 4.6875 -3.3125 3.796875 -4.46875 2.46875 -4.46875 C 2.4375 -4.46875 2.375 -4.46875 2.34375 -4.46875 Z M 1.109375 -1.890625 L 1.109375 -2.328125 C 1.109375 -3.09375 1.359375 -4.25 2.484375 -4.25 C 3.296875 -4.25 3.75 -3.5625 3.84375 -2.8125 C 3.859375 -2.59375 3.859375 -2.375 3.859375 -2.15625 C 3.859375 -1.515625 3.78125 -0.703125 3.15625 -0.34375 C 2.953125 -0.203125 2.734375 -0.15625 2.5 -0.15625 C 1.78125 -0.15625 1.265625 -0.71875 1.15625 -1.5 C 1.140625 -1.625 1.140625 -1.765625 1.109375 -1.890625 Z M 1.109375 -1.890625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-19">
|
||||
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-20">
|
||||
<path style="stroke:none;" d="M 0.890625 -6.015625 L 0.890625 -5.703125 C 1.328125 -5.703125 1.796875 -5.75 2.1875 -5.96875 L 2.1875 -0.75 C 2.1875 -0.375 1.8125 -0.3125 1.421875 -0.3125 C 1.25 -0.3125 1.09375 -0.3125 0.953125 -0.3125 L 0.953125 -0.015625 L 4.1875 -0.015625 L 4.1875 -0.3125 C 4.015625 -0.3125 3.84375 -0.3125 3.6875 -0.3125 C 3.296875 -0.3125 2.9375 -0.375 2.9375 -0.75 L 2.9375 -6.484375 C 2.9375 -6.578125 2.90625 -6.65625 2.796875 -6.65625 C 2.65625 -6.65625 2.5 -6.453125 2.375 -6.375 C 1.9375 -6.09375 1.40625 -6.015625 0.890625 -6.015625 Z M 0.890625 -6.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-21">
|
||||
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-22">
|
||||
<path style="stroke:none;" d="M 0.890625 -5.328125 C 1.125 -5.828125 1.5 -6.34375 2.21875 -6.34375 C 3.15625 -6.34375 3.5625 -5.484375 3.5625 -4.703125 C 3.5625 -3.78125 2.953125 -3.03125 2.375 -2.375 C 1.8125 -1.703125 1.203125 -1.0625 0.625 -0.40625 C 0.53125 -0.3125 0.5 -0.265625 0.5 -0.125 L 0.5 -0.015625 L 4.203125 -0.015625 L 4.46875 -1.75 L 4.234375 -1.75 C 4.140625 -1.296875 4.203125 -0.796875 3.6875 -0.796875 L 3.296875 -0.796875 C 3 -0.78125 2.71875 -0.78125 2.421875 -0.78125 C 2.03125 -0.78125 1.65625 -0.78125 1.28125 -0.78125 L 1.96875 -1.453125 C 2.25 -1.71875 2.515625 -1.984375 2.796875 -2.234375 C 3.53125 -2.890625 4.46875 -3.609375 4.46875 -4.71875 C 4.46875 -5.84375 3.515625 -6.65625 2.390625 -6.65625 C 1.4375 -6.65625 0.5 -5.9375 0.5 -4.859375 C 0.5 -4.609375 0.59375 -4.296875 1.015625 -4.296875 C 1.3125 -4.296875 1.546875 -4.5 1.546875 -4.8125 C 1.546875 -5.078125 1.34375 -5.328125 1.03125 -5.328125 C 0.984375 -5.328125 0.9375 -5.328125 0.890625 -5.328125 Z M 0.890625 -5.328125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="273.617" y="176.603"/>
|
||||
<use xlink:href="#glyph0-2" x="284.622805" y="176.603"/>
|
||||
<use xlink:href="#glyph0-3" x="289.112582" y="176.603"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="303.487441" y="176.603"/>
|
||||
<use xlink:href="#glyph0-2" x="315.171533" y="176.603"/>
|
||||
<use xlink:href="#glyph0-5" x="319.661309" y="176.603"/>
|
||||
<use xlink:href="#glyph0-6" x="325.950094" y="176.603"/>
|
||||
<use xlink:href="#glyph0-7" x="333.137524" y="176.603"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="275.555" y="228.866"/>
|
||||
<use xlink:href="#glyph1-2" x="281.40707" y="228.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="288.555084" y="228.866"/>
|
||||
<use xlink:href="#glyph1-4" x="299.278899" y="228.866"/>
|
||||
<use xlink:href="#glyph1-5" x="305.130969" y="228.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="312.290939" y="228.866"/>
|
||||
<use xlink:href="#glyph1-7" x="318.143009" y="228.866"/>
|
||||
<use xlink:href="#glyph1-8" x="323.995079" y="228.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="329.835195" y="228.866"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="133.768" y="271.771"/>
|
||||
<use xlink:href="#glyph2-2" x="139.576776" y="271.771"/>
|
||||
<use xlink:href="#glyph2-3" x="148.342305" y="271.771"/>
|
||||
<use xlink:href="#glyph2-4" x="157.107833" y="271.771"/>
|
||||
<use xlink:href="#glyph2-5" x="164.996808" y="271.771"/>
|
||||
<use xlink:href="#glyph2-6" x="169.379572" y="271.771"/>
|
||||
<use xlink:href="#glyph2-7" x="175.515442" y="271.771"/>
|
||||
<use xlink:href="#glyph2-8" x="181.738824" y="271.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-9" x="189.620626" y="271.771"/>
|
||||
<use xlink:href="#glyph2-10" x="196.793726" y="271.771"/>
|
||||
<use xlink:href="#glyph2-11" x="203.196435" y="271.771"/>
|
||||
<use xlink:href="#glyph2-9" x="210.208857" y="271.771"/>
|
||||
<use xlink:href="#glyph2-12" x="217.381957" y="271.771"/>
|
||||
<use xlink:href="#glyph2-13" x="221.764722" y="271.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="228.346758" y="271.771"/>
|
||||
<use xlink:href="#glyph2-2" x="237.112286" y="271.771"/>
|
||||
<use xlink:href="#glyph2-12" x="245.877815" y="271.771"/>
|
||||
<use xlink:href="#glyph2-7" x="250.260579" y="271.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="133.768" y="304.713"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-15" x="157.437795" y="304.713"/>
|
||||
<use xlink:href="#glyph2-12" x="169.528773" y="304.713"/>
|
||||
<use xlink:href="#glyph2-9" x="173.911537" y="304.713"/>
|
||||
<use xlink:href="#glyph2-7" x="181.084637" y="304.713"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="192.558728" y="304.713"/>
|
||||
<use xlink:href="#glyph2-7" x="196.941492" y="304.713"/>
|
||||
<use xlink:href="#glyph2-6" x="203.164873" y="304.713"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-16" x="214.565798" y="304.713"/>
|
||||
<use xlink:href="#glyph2-17" x="226.476014" y="304.713"/>
|
||||
<use xlink:href="#glyph2-7" x="235.241542" y="304.713"/>
|
||||
<use xlink:href="#glyph2-13" x="241.464923" y="304.713"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="248.032614" y="304.713"/>
|
||||
<use xlink:href="#glyph2-2" x="256.798142" y="304.713"/>
|
||||
<use xlink:href="#glyph2-12" x="265.56367" y="304.713"/>
|
||||
<use xlink:href="#glyph2-6" x="269.946434" y="304.713"/>
|
||||
<use xlink:href="#glyph2-6" x="276.082304" y="304.713"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="287.483229" y="304.713"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="133.768" y="326.531"/>
|
||||
<use xlink:href="#glyph3-2" x="141.237957" y="326.531"/>
|
||||
<use xlink:href="#glyph3-3" x="144.004571" y="326.531"/>
|
||||
<use xlink:href="#glyph3-4" x="148.430955" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="155.649855" y="326.531"/>
|
||||
<use xlink:href="#glyph3-2" x="160.076238" y="326.531"/>
|
||||
<use xlink:href="#glyph3-5" x="162.842852" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-6" x="171.703588" y="326.531"/>
|
||||
<use xlink:href="#glyph3-7" x="179.173546" y="326.531"/>
|
||||
<use xlink:href="#glyph3-8" x="184.706774" y="326.531"/>
|
||||
<use xlink:href="#glyph3-9" x="188.635027" y="326.531"/>
|
||||
<use xlink:href="#glyph3-10" x="193.615331" y="326.531"/>
|
||||
<use xlink:href="#glyph3-11" x="197.48879" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-11" x="205.232719" y="326.531"/>
|
||||
<use xlink:href="#glyph3-12" x="209.659102" y="326.531"/>
|
||||
<use xlink:href="#glyph3-13" x="215.19233" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="226.809718" y="326.531"/>
|
||||
<use xlink:href="#glyph3-5" x="230.406216" y="326.531"/>
|
||||
<use xlink:href="#glyph3-15" x="235.939444" y="326.531"/>
|
||||
<use xlink:href="#glyph3-9" x="241.472672" y="326.531"/>
|
||||
<use xlink:href="#glyph3-16" x="246.452976" y="326.531"/>
|
||||
<use xlink:href="#glyph3-10" x="249.21959" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-17" x="256.420557" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-18" x="261.398869" y="326.531"/>
|
||||
<use xlink:href="#glyph3-5" x="266.379172" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-6" x="275.229946" y="326.531"/>
|
||||
<use xlink:href="#glyph3-7" x="282.699904" y="326.531"/>
|
||||
<use xlink:href="#glyph3-8" x="288.233132" y="326.531"/>
|
||||
<use xlink:href="#glyph3-19" x="292.161385" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-15" x="296.308815" y="326.531"/>
|
||||
<use xlink:href="#glyph3-5" x="301.842043" y="326.531"/>
|
||||
<use xlink:href="#glyph3-2" x="307.375271" y="326.531"/>
|
||||
<use xlink:href="#glyph3-10" x="310.141885" y="326.531"/>
|
||||
<use xlink:href="#glyph3-10" x="314.015344" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-20" x="321.216312" y="326.531"/>
|
||||
<use xlink:href="#glyph3-21" x="326.196615" y="326.531"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-18" x="133.768" y="359.474"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-15" x="157.437795" y="359.474"/>
|
||||
<use xlink:href="#glyph2-12" x="169.528773" y="359.474"/>
|
||||
<use xlink:href="#glyph2-9" x="173.911537" y="359.474"/>
|
||||
<use xlink:href="#glyph2-7" x="181.084637" y="359.474"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="192.558728" y="359.474"/>
|
||||
<use xlink:href="#glyph2-7" x="196.941492" y="359.474"/>
|
||||
<use xlink:href="#glyph2-6" x="203.164873" y="359.474"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-16" x="214.565798" y="359.474"/>
|
||||
<use xlink:href="#glyph2-17" x="226.476014" y="359.474"/>
|
||||
<use xlink:href="#glyph2-7" x="235.241542" y="359.474"/>
|
||||
<use xlink:href="#glyph2-13" x="241.464923" y="359.474"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="248.032614" y="359.474"/>
|
||||
<use xlink:href="#glyph2-2" x="256.798142" y="359.474"/>
|
||||
<use xlink:href="#glyph2-12" x="265.56367" y="359.474"/>
|
||||
<use xlink:href="#glyph2-6" x="269.946434" y="359.474"/>
|
||||
<use xlink:href="#glyph2-6" x="276.082304" y="359.474"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-18" x="287.483229" y="359.474"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="133.768" y="381.292"/>
|
||||
<use xlink:href="#glyph3-2" x="141.237957" y="381.292"/>
|
||||
<use xlink:href="#glyph3-3" x="144.004571" y="381.292"/>
|
||||
<use xlink:href="#glyph3-4" x="148.430955" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="155.649855" y="381.292"/>
|
||||
<use xlink:href="#glyph3-2" x="160.076238" y="381.292"/>
|
||||
<use xlink:href="#glyph3-5" x="162.842852" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-6" x="171.703588" y="381.292"/>
|
||||
<use xlink:href="#glyph3-7" x="179.173546" y="381.292"/>
|
||||
<use xlink:href="#glyph3-8" x="184.706774" y="381.292"/>
|
||||
<use xlink:href="#glyph3-9" x="188.635027" y="381.292"/>
|
||||
<use xlink:href="#glyph3-10" x="193.615331" y="381.292"/>
|
||||
<use xlink:href="#glyph3-11" x="197.48879" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-11" x="205.232719" y="381.292"/>
|
||||
<use xlink:href="#glyph3-12" x="209.659102" y="381.292"/>
|
||||
<use xlink:href="#glyph3-13" x="215.19233" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="226.809718" y="381.292"/>
|
||||
<use xlink:href="#glyph3-5" x="230.406216" y="381.292"/>
|
||||
<use xlink:href="#glyph3-15" x="235.939444" y="381.292"/>
|
||||
<use xlink:href="#glyph3-9" x="241.472672" y="381.292"/>
|
||||
<use xlink:href="#glyph3-16" x="246.452976" y="381.292"/>
|
||||
<use xlink:href="#glyph3-10" x="249.21959" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-17" x="256.420557" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-18" x="261.398869" y="381.292"/>
|
||||
<use xlink:href="#glyph3-5" x="266.379172" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-6" x="275.229946" y="381.292"/>
|
||||
<use xlink:href="#glyph3-7" x="282.699904" y="381.292"/>
|
||||
<use xlink:href="#glyph3-8" x="288.233132" y="381.292"/>
|
||||
<use xlink:href="#glyph3-19" x="292.161385" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-15" x="296.308815" y="381.292"/>
|
||||
<use xlink:href="#glyph3-5" x="301.842043" y="381.292"/>
|
||||
<use xlink:href="#glyph3-2" x="307.375271" y="381.292"/>
|
||||
<use xlink:href="#glyph3-10" x="310.141885" y="381.292"/>
|
||||
<use xlink:href="#glyph3-10" x="314.015344" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-22" x="321.216312" y="381.292"/>
|
||||
<use xlink:href="#glyph3-21" x="326.196615" y="381.292"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-20" x="303.134" y="702.635"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
15
sections/german/04/main.tex
Normal file
@ -0,0 +1,15 @@
|
||||
\documentclass{article}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\title{Ein Titel}
|
||||
\begin{document}
|
||||
\maketitle
|
||||
\tableofcontents
|
||||
\section{Dies ist Abschnitt 1}
|
||||
Hier ein Absatz zum
|
||||
Inhalt von Abschnitt 1.
|
||||
\section{Dies ist Abschnitt 2}
|
||||
Hier ein Absatz zum
|
||||
Inhalt von Abschnitt 2.
|
||||
\end{document}
|
||||
BIN
sections/german/04/main_parts.png
Normal file
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
BIN
sections/german/04/main_parts_header.png
Normal file
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
BIN
sections/german/04/relative_path.png
Normal file
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
BIN
sections/german/04/relative_path_subdir.png
Normal file
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
BIN
sections/german/04/relative_path_superdir.png
Normal file
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
152
sections/german/04/tikz_path-crop.svg
Normal file
@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="198pt" height="136pt" viewBox="0 0 198 136" 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.28125 -7.484375 C 4.171875 -7.421875 4.109375 -7.140625 4.046875 -6.984375 L 3.515625 -5.53125 C 2.78125 -3.59375 2.046875 -1.65625 1.3125 0.296875 L 0.59375 2.203125 C 0.59375 2.25 0.5625 2.296875 0.5625 2.359375 L 0.5625 2.375 C 0.5625 2.4375 0.59375 2.46875 0.640625 2.46875 L 0.671875 2.46875 C 0.78125 2.453125 0.875 2.125 0.9375 1.9375 L 1.5625 0.265625 C 2.296875 -1.6875 3.03125 -3.640625 3.765625 -5.578125 L 4.390625 -7.25 C 4.40625 -7.28125 4.421875 -7.3125 4.421875 -7.359375 L 4.421875 -7.375 C 4.421875 -7.4375 4.375 -7.484375 4.3125 -7.484375 C 4.3125 -7.484375 4.28125 -7.484375 4.28125 -7.484375 Z M 4.28125 -7.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.34375 -4.46875 C 1.09375 -4.34375 0.28125 -3.28125 0.28125 -2.125 C 0.28125 -1 1.171875 0.09375 2.5 0.09375 C 3.6875 0.09375 4.6875 -0.875 4.6875 -2.140625 C 4.6875 -3.3125 3.796875 -4.46875 2.46875 -4.46875 C 2.4375 -4.46875 2.375 -4.46875 2.34375 -4.46875 Z M 1.109375 -1.890625 L 1.109375 -2.328125 C 1.109375 -3.09375 1.359375 -4.25 2.484375 -4.25 C 3.296875 -4.25 3.75 -3.5625 3.84375 -2.8125 C 3.859375 -2.59375 3.859375 -2.375 3.859375 -2.15625 C 3.859375 -1.515625 3.78125 -0.703125 3.15625 -0.34375 C 2.953125 -0.203125 2.734375 -0.15625 2.5 -0.15625 C 1.78125 -0.15625 1.265625 -0.71875 1.15625 -1.5 C 1.140625 -1.625 1.140625 -1.765625 1.109375 -1.890625 Z M 1.109375 -1.890625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 3.03125 -6.8125 L 3.03125 -6.515625 L 3.1875 -6.515625 C 3.53125 -6.515625 3.8125 -6.46875 3.8125 -5.890625 L 3.796875 -3.796875 C 3.5625 -4.203125 2.984375 -4.40625 2.53125 -4.40625 C 1.3125 -4.40625 0.328125 -3.34375 0.328125 -2.140625 C 0.328125 -1.078125 1.140625 0.09375 2.46875 0.09375 C 2.984375 0.09375 3.453125 -0.15625 3.78125 -0.546875 L 3.78125 0.09375 L 5.25 -0.015625 L 5.25 -0.3125 L 5.078125 -0.3125 C 4.78125 -0.3125 4.46875 -0.34375 4.46875 -0.8125 L 4.46875 -6.921875 Z M 1.171875 -1.90625 L 1.171875 -2.046875 C 1.171875 -2.796875 1.25 -3.53125 1.9375 -4 C 2.140625 -4.109375 2.375 -4.1875 2.609375 -4.1875 C 3.09375 -4.1875 3.78125 -3.78125 3.78125 -3.15625 C 3.78125 -3.03125 3.78125 -2.90625 3.78125 -2.765625 L 3.78125 -1.109375 C 3.78125 -0.984375 3.734375 -0.890625 3.65625 -0.796875 C 3.40625 -0.40625 2.96875 -0.125 2.5 -0.125 C 1.78125 -0.125 1.3125 -0.78125 1.203125 -1.46875 C 1.1875 -1.609375 1.1875 -1.765625 1.171875 -1.90625 Z M 1.171875 -1.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.875 -6.1875 C 5.75 -6.28125 5.640625 -6.40625 5.515625 -6.515625 C 5.109375 -6.84375 4.578125 -7.03125 4.03125 -7.03125 C 2.125 -7.03125 0.546875 -5.390625 0.546875 -3.40625 C 0.546875 -1.5 2.0625 0.203125 4.03125 0.203125 C 5.390625 0.203125 6.5 -0.8125 6.625 -2.1875 C 6.640625 -2.25 6.640625 -2.28125 6.640625 -2.328125 C 6.640625 -2.4375 6.609375 -2.515625 6.515625 -2.515625 C 6.328125 -2.515625 6.375 -2.125 6.34375 -1.921875 C 6.125 -0.921875 5.234375 -0.09375 4.140625 -0.09375 C 3.4375 -0.09375 2.78125 -0.421875 2.3125 -0.953125 C 1.75 -1.609375 1.578125 -2.5 1.578125 -3.34375 C 1.578125 -4.015625 1.640625 -4.71875 1.953125 -5.328125 C 2.359375 -6.125 3.21875 -6.734375 4.125 -6.734375 C 5.359375 -6.734375 6.171875 -5.546875 6.296875 -4.46875 C 6.328125 -4.359375 6.265625 -4.1875 6.484375 -4.1875 C 6.625 -4.1875 6.640625 -4.25 6.640625 -4.34375 L 6.640625 -6.875 C 6.640625 -6.953125 6.625 -7.03125 6.515625 -7.03125 C 6.375 -7.03125 5.90625 -6.25 5.875 -6.1875 Z M 5.875 -6.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 1.3125 -4.28125 C 1.0625 -4.25 0.859375 -4.03125 0.859375 -3.78125 C 0.859375 -3.53125 1.0625 -3.234375 1.359375 -3.234375 C 1.640625 -3.234375 1.90625 -3.453125 1.90625 -3.765625 C 1.90625 -4.015625 1.71875 -4.296875 1.390625 -4.296875 C 1.359375 -4.296875 1.328125 -4.28125 1.3125 -4.28125 Z M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.28125 2.1875 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.859375 -3.53125 3.859375 -3.078125 L 3.859375 -0.703125 C 3.859375 -0.34375 3.5625 -0.3125 3.234375 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.796875 -0.3125 4.5625 -0.359375 4.5625 -0.734375 L 4.5625 -2.546875 C 4.5625 -3.28125 4.953125 -4.1875 5.90625 -4.1875 C 6.546875 -4.1875 6.625 -3.53125 6.625 -3.078125 L 6.625 -0.703125 C 6.625 -0.34375 6.3125 -0.3125 5.984375 -0.3125 L 5.84375 -0.3125 L 5.84375 -0.015625 L 8.09375 -0.015625 L 8.09375 -0.3125 L 7.890625 -0.3125 C 7.59375 -0.3125 7.3125 -0.34375 7.3125 -0.703125 L 7.3125 -2.953125 C 7.3125 -3.3125 7.296875 -3.65625 7.0625 -3.984375 C 6.796875 -4.3125 6.375 -4.40625 5.96875 -4.40625 C 5.328125 -4.40625 4.796875 -4.03125 4.53125 -3.453125 C 4.34375 -4.15625 3.890625 -4.40625 3.203125 -4.40625 C 2.5625 -4.40625 1.953125 -4 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.46875 1.046875 -5.984375 L 1.046875 -0.953125 C 1.046875 -0.890625 1.0625 -0.8125 1.0625 -0.734375 C 1.0625 -0.359375 0.78125 -0.3125 0.515625 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.234375 -0.3125 C 1.9375 -0.3125 1.6875 -0.359375 1.6875 -0.734375 L 1.6875 -1.671875 C 1.6875 -1.875 2.078125 -2.15625 2.328125 -2.328125 C 2.40625 -2.15625 2.546875 -2.015625 2.65625 -1.859375 C 2.890625 -1.53125 3.125 -1.203125 3.34375 -0.875 C 3.40625 -0.78125 3.484375 -0.65625 3.484375 -0.53125 C 3.484375 -0.359375 3.296875 -0.3125 3.140625 -0.3125 L 3.140625 -0.015625 L 5.09375 -0.015625 L 5.09375 -0.3125 C 4.921875 -0.3125 4.734375 -0.3125 4.578125 -0.40625 C 4.34375 -0.53125 4.1875 -0.765625 4.046875 -0.984375 C 3.796875 -1.328125 3.546875 -1.6875 3.296875 -2.03125 L 2.9375 -2.546875 C 2.890625 -2.59375 2.828125 -2.6875 2.828125 -2.71875 L 2.828125 -2.734375 C 2.828125 -2.8125 3.125 -3.03125 3.265625 -3.140625 C 3.71875 -3.53125 4.234375 -3.984375 4.875 -3.984375 L 4.875 -4.296875 L 3.0625 -4.296875 L 3.0625 -3.984375 C 3.203125 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.4375 2.875 -3.140625 2.609375 -2.921875 C 2.296875 -2.65625 2.015625 -2.40625 1.71875 -2.15625 L 1.71875 -6.921875 Z M 0.265625 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.453125 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.5625 L 1.046875 1.21875 C 1.046875 1.578125 0.78125 1.609375 0.5 1.609375 L 0.265625 1.609375 L 0.265625 1.921875 L 2.515625 1.921875 L 2.515625 1.609375 L 2.28125 1.609375 C 1.984375 1.609375 1.75 1.578125 1.75 1.21875 L 1.75 -0.515625 C 1.984375 -0.09375 2.546875 0.09375 2.96875 0.09375 C 4.203125 0.09375 5.1875 -0.953125 5.1875 -2.15625 C 5.1875 -3.359375 4.265625 -4.40625 3.09375 -4.40625 C 2.546875 -4.40625 2.078125 -4.171875 1.71875 -3.765625 L 1.71875 -4.40625 Z M 4.34375 -1.984375 C 4.296875 -1.25 3.90625 -0.203125 3 -0.125 L 2.9375 -0.125 C 2.515625 -0.125 2.125 -0.359375 1.890625 -0.71875 C 1.796875 -0.828125 1.75 -0.921875 1.75 -1.0625 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.65625 2.40625 -4.15625 3 -4.15625 C 4 -4.15625 4.359375 -2.84375 4.359375 -2.140625 C 4.359375 -2.09375 4.359375 -2.03125 4.34375 -1.984375 Z M 4.34375 -1.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 L 0.484375 -6.515625 C 0.84375 -6.515625 1.109375 -6.46875 1.109375 -5.984375 L 1.109375 -0.953125 C 1.109375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.3125 L 2.296875 -0.3125 C 2.015625 -0.3125 1.78125 -0.359375 1.78125 -0.75 L 1.78125 -6.921875 Z M 0.328125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 0.171875 -4.296875 L 0.171875 -3.984375 L 0.375 -3.984375 C 0.890625 -3.984375 1.03125 -3.78125 1.25 -3.484375 L 2.1875 -2.265625 C 2.234375 -2.21875 2.3125 -2.140625 2.3125 -2.078125 C 2.296875 -2.03125 2.21875 -1.953125 2.1875 -1.90625 C 1.59375 -1.21875 1.15625 -0.3125 0.125 -0.3125 L 0.125 -0.015625 L 1.90625 -0.015625 L 1.90625 -0.3125 C 1.71875 -0.3125 1.609375 -0.5 1.609375 -0.640625 C 1.609375 -0.84375 1.765625 -0.984375 1.890625 -1.125 C 2 -1.28125 2.125 -1.4375 2.25 -1.578125 C 2.328125 -1.6875 2.421875 -1.78125 2.484375 -1.890625 C 2.734375 -1.609375 2.9375 -1.296875 3.15625 -1 L 3.34375 -0.75 C 3.390625 -0.703125 3.453125 -0.640625 3.453125 -0.5625 C 3.453125 -0.40625 3.234375 -0.3125 3.09375 -0.3125 L 3.09375 -0.015625 L 5.140625 -0.015625 L 5.140625 -0.3125 L 4.96875 -0.3125 C 4.796875 -0.3125 4.609375 -0.328125 4.453125 -0.40625 C 4.28125 -0.5 4.15625 -0.6875 4.03125 -0.84375 C 3.703125 -1.28125 3.359375 -1.71875 3.03125 -2.15625 L 2.9375 -2.265625 C 2.921875 -2.296875 2.90625 -2.328125 2.890625 -2.359375 C 2.890625 -2.40625 2.953125 -2.46875 2.984375 -2.515625 L 3.296875 -2.890625 C 3.484375 -3.109375 3.640625 -3.34375 3.84375 -3.546875 C 4.15625 -3.828125 4.546875 -3.984375 4.96875 -3.984375 L 4.96875 -4.296875 L 3.1875 -4.296875 L 3.1875 -3.984375 C 3.390625 -3.9375 3.46875 -3.84375 3.46875 -3.671875 C 3.46875 -3.390625 3.15625 -3.125 2.984375 -2.90625 C 2.90625 -2.8125 2.765625 -2.609375 2.71875 -2.609375 C 2.65625 -2.609375 2.515625 -2.828125 2.421875 -2.9375 C 2.203125 -3.21875 1.859375 -3.578125 1.859375 -3.75 C 1.859375 -3.890625 2.078125 -3.984375 2.203125 -3.984375 L 2.203125 -4.296875 Z M 0.171875 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-21">
|
||||
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.397906 -8.300188 L 47.73775 -8.300188 L 47.73775 8.301375 L 0.397906 8.301375 Z M 0.397906 -8.300188 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="4.7" y="11.432"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="12.99785" y="11.432"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="18.257106" y="11.432"/>
|
||||
<use xlink:href="#glyph0-4" x="23.790334" y="11.432"/>
|
||||
<use xlink:href="#glyph0-5" x="28.216717" y="11.432"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="35.435617" y="11.432"/>
|
||||
<use xlink:href="#glyph0-7" x="42.628614" y="11.432"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 38.640094 -26.593156 L 68.519 -26.593156 L 68.519 -13.093156 L 38.640094 -13.093156 Z M 38.640094 -26.593156 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="42.94" y="32.215"/>
|
||||
<use xlink:href="#glyph0-2" x="48.473228" y="32.215"/>
|
||||
<use xlink:href="#glyph0-9" x="53.453532" y="32.215"/>
|
||||
<use xlink:href="#glyph0-4" x="61.753374" y="32.215"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.065875 -8.698625 L 24.065875 -19.843156 L 38.241656 -19.843156 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.151813 -46.436906 L 94.710406 -46.436906 L 94.710406 -32.933 L 68.151813 -32.933 Z M 68.151813 -46.436906 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="72.452" y="52.057"/>
|
||||
<use xlink:href="#glyph0-11" x="77.709264" y="52.057"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="82.963539" y="52.057"/>
|
||||
<use xlink:href="#glyph0-13" x="88.496767" y="52.057"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.5815 -26.991594 L 53.5815 -39.686906 L 67.753375 -39.686906 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.003375 -67.1205 L 137.034625 -67.1205 L 137.034625 -51.936906 L 96.003375 -51.936906 Z M 96.003375 -67.1205 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="100.303" y="70.805"/>
|
||||
<use xlink:href="#glyph0-15" x="105.836228" y="70.805"/>
|
||||
<use xlink:href="#glyph0-16" x="108.602842" y="70.805"/>
|
||||
<use xlink:href="#glyph0-13" x="113.029225" y="70.805"/>
|
||||
<use xlink:href="#glyph0-12" x="116.902684" y="70.805"/>
|
||||
<use xlink:href="#glyph0-5" x="122.435912" y="70.805"/>
|
||||
<use xlink:href="#glyph0-4" x="126.337266" y="70.805"/>
|
||||
<use xlink:href="#glyph0-17" x="130.763649" y="70.805"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 81.433063 -46.835344 L 81.433063 -59.52675 L 95.604938 -59.52675 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.003375 -86.1205 L 121.788531 -86.1205 L 121.788531 -72.6205 L 96.003375 -72.6205 Z M 96.003375 -86.1205 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="100.303" y="91.742"/>
|
||||
<use xlink:href="#glyph0-2" x="105.836228" y="91.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="111.095485" y="91.742"/>
|
||||
<use xlink:href="#glyph0-17" x="115.521868" y="91.742"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 81.433063 -46.835344 L 81.433063 -79.3705 L 95.604938 -79.3705 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.468219 -105.96425 L 151.413531 -105.96425 L 151.413531 -92.46425 L 123.468219 -92.46425 Z M 123.468219 -105.96425 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-18" x="127.768" y="111.585"/>
|
||||
<use xlink:href="#glyph0-19" x="130.534614" y="111.585"/>
|
||||
<use xlink:href="#glyph0-13" x="135.514918" y="111.585"/>
|
||||
<use xlink:href="#glyph0-4" x="139.388377" y="111.585"/>
|
||||
<use xlink:href="#glyph0-20" x="143.81476" y="111.585"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.897906 -86.518938 L 108.897906 -99.21425 L 123.069781 -99.21425 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.011188 -125.679094 L 196.558063 -125.679094 L 196.558063 -112.433 L 152.011188 -112.433 Z M 152.011188 -125.679094 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="156.311" y="131.301"/>
|
||||
<use xlink:href="#glyph0-19" x="164.610842" y="131.301"/>
|
||||
<use xlink:href="#glyph0-15" x="169.591146" y="131.301"/>
|
||||
<use xlink:href="#glyph0-11" x="172.35776" y="131.301"/>
|
||||
<use xlink:href="#glyph0-21" x="177.890988" y="131.301"/>
|
||||
<use xlink:href="#glyph0-13" x="180.657602" y="131.301"/>
|
||||
<use xlink:href="#glyph0-4" x="184.531061" y="131.301"/>
|
||||
<use xlink:href="#glyph0-20" x="188.957444" y="131.301"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.440875 -106.362688 L 137.440875 -119.054094 L 151.61275 -119.054094 " transform="matrix(1,0,0,-1,0.981,8.942)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
152
sections/german/04/tikz_path-orig.svg
Normal file
@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="206.915pt" height="144.738pt" viewBox="0 0 206.915 144.738" 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.28125 -7.484375 C 4.171875 -7.421875 4.109375 -7.140625 4.046875 -6.984375 L 3.515625 -5.53125 C 2.78125 -3.59375 2.046875 -1.65625 1.3125 0.296875 L 0.59375 2.203125 C 0.59375 2.25 0.5625 2.296875 0.5625 2.359375 L 0.5625 2.375 C 0.5625 2.4375 0.59375 2.46875 0.640625 2.46875 L 0.671875 2.46875 C 0.78125 2.453125 0.875 2.125 0.9375 1.9375 L 1.5625 0.265625 C 2.296875 -1.6875 3.03125 -3.640625 3.765625 -5.578125 L 4.390625 -7.25 C 4.40625 -7.28125 4.421875 -7.3125 4.421875 -7.359375 L 4.421875 -7.375 C 4.421875 -7.4375 4.375 -7.484375 4.3125 -7.484375 C 4.3125 -7.484375 4.28125 -7.484375 4.28125 -7.484375 Z M 4.28125 -7.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.34375 -4.46875 C 1.09375 -4.34375 0.28125 -3.28125 0.28125 -2.125 C 0.28125 -1 1.171875 0.09375 2.5 0.09375 C 3.6875 0.09375 4.6875 -0.875 4.6875 -2.140625 C 4.6875 -3.3125 3.796875 -4.46875 2.46875 -4.46875 C 2.4375 -4.46875 2.375 -4.46875 2.34375 -4.46875 Z M 1.109375 -1.890625 L 1.109375 -2.328125 C 1.109375 -3.09375 1.359375 -4.25 2.484375 -4.25 C 3.296875 -4.25 3.75 -3.5625 3.84375 -2.8125 C 3.859375 -2.59375 3.859375 -2.375 3.859375 -2.15625 C 3.859375 -1.515625 3.78125 -0.703125 3.15625 -0.34375 C 2.953125 -0.203125 2.734375 -0.15625 2.5 -0.15625 C 1.78125 -0.15625 1.265625 -0.71875 1.15625 -1.5 C 1.140625 -1.625 1.140625 -1.765625 1.109375 -1.890625 Z M 1.109375 -1.890625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 3.03125 -6.8125 L 3.03125 -6.515625 L 3.1875 -6.515625 C 3.53125 -6.515625 3.8125 -6.46875 3.8125 -5.890625 L 3.796875 -3.796875 C 3.5625 -4.203125 2.984375 -4.40625 2.53125 -4.40625 C 1.3125 -4.40625 0.328125 -3.34375 0.328125 -2.140625 C 0.328125 -1.078125 1.140625 0.09375 2.46875 0.09375 C 2.984375 0.09375 3.453125 -0.15625 3.78125 -0.546875 L 3.78125 0.09375 L 5.25 -0.015625 L 5.25 -0.3125 L 5.078125 -0.3125 C 4.78125 -0.3125 4.46875 -0.34375 4.46875 -0.8125 L 4.46875 -6.921875 Z M 1.171875 -1.90625 L 1.171875 -2.046875 C 1.171875 -2.796875 1.25 -3.53125 1.9375 -4 C 2.140625 -4.109375 2.375 -4.1875 2.609375 -4.1875 C 3.09375 -4.1875 3.78125 -3.78125 3.78125 -3.15625 C 3.78125 -3.03125 3.78125 -2.90625 3.78125 -2.765625 L 3.78125 -1.109375 C 3.78125 -0.984375 3.734375 -0.890625 3.65625 -0.796875 C 3.40625 -0.40625 2.96875 -0.125 2.5 -0.125 C 1.78125 -0.125 1.3125 -0.78125 1.203125 -1.46875 C 1.1875 -1.609375 1.1875 -1.765625 1.171875 -1.90625 Z M 1.171875 -1.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 1.109375 -2.3125 L 3.984375 -2.3125 C 4.09375 -2.3125 4.140625 -2.375 4.140625 -2.5 C 4.140625 -3.546875 3.5 -4.46875 2.375 -4.46875 C 1.15625 -4.46875 0.28125 -3.375 0.28125 -2.1875 C 0.28125 -1.28125 0.78125 -0.453125 1.671875 -0.0625 C 1.890625 0.046875 2.15625 0.09375 2.40625 0.09375 L 2.4375 0.09375 C 3.203125 0.09375 3.84375 -0.328125 4.109375 -1.09375 C 4.125 -1.125 4.125 -1.171875 4.125 -1.203125 C 4.125 -1.265625 4.09375 -1.3125 4.015625 -1.3125 C 3.875 -1.3125 3.8125 -0.984375 3.75 -0.875 C 3.5 -0.4375 3.015625 -0.15625 2.5 -0.15625 C 2.140625 -0.15625 1.8125 -0.359375 1.546875 -0.625 C 1.140625 -1.09375 1.109375 -1.734375 1.109375 -2.3125 Z M 1.125 -2.515625 C 1.125 -3.296875 1.53125 -4.25 2.359375 -4.25 L 2.40625 -4.25 C 3.375 -4.15625 3.375 -3.125 3.46875 -2.515625 Z M 1.125 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.421875 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.484375 L 1.046875 -0.734375 C 1.046875 -0.328125 0.765625 -0.3125 0.328125 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.6875 -0.015625 L 2.6875 -0.3125 C 2.5625 -0.3125 2.421875 -0.3125 2.296875 -0.3125 C 1.984375 -0.3125 1.71875 -0.359375 1.71875 -0.734375 L 1.71875 -2.046875 C 1.71875 -2.90625 1.90625 -4.1875 2.890625 -4.1875 C 2.9375 -4.1875 2.953125 -4.1875 3 -4.171875 C 2.84375 -4.109375 2.765625 -3.953125 2.765625 -3.78125 C 2.765625 -3.5625 2.921875 -3.40625 3.15625 -3.359375 C 3.4375 -3.359375 3.625 -3.53125 3.625 -3.78125 C 3.625 -4.1875 3.25 -4.40625 2.890625 -4.40625 C 2.296875 -4.40625 1.78125 -3.875 1.671875 -3.34375 L 1.671875 -4.40625 Z M 0.265625 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.875 -6.1875 C 5.75 -6.28125 5.640625 -6.40625 5.515625 -6.515625 C 5.109375 -6.84375 4.578125 -7.03125 4.03125 -7.03125 C 2.125 -7.03125 0.546875 -5.390625 0.546875 -3.40625 C 0.546875 -1.5 2.0625 0.203125 4.03125 0.203125 C 5.390625 0.203125 6.5 -0.8125 6.625 -2.1875 C 6.640625 -2.25 6.640625 -2.28125 6.640625 -2.328125 C 6.640625 -2.4375 6.609375 -2.515625 6.515625 -2.515625 C 6.328125 -2.515625 6.375 -2.125 6.34375 -1.921875 C 6.125 -0.921875 5.234375 -0.09375 4.140625 -0.09375 C 3.4375 -0.09375 2.78125 -0.421875 2.3125 -0.953125 C 1.75 -1.609375 1.578125 -2.5 1.578125 -3.34375 C 1.578125 -4.015625 1.640625 -4.71875 1.953125 -5.328125 C 2.359375 -6.125 3.21875 -6.734375 4.125 -6.734375 C 5.359375 -6.734375 6.171875 -5.546875 6.296875 -4.46875 C 6.328125 -4.359375 6.265625 -4.1875 6.484375 -4.1875 C 6.625 -4.1875 6.640625 -4.25 6.640625 -4.34375 L 6.640625 -6.875 C 6.640625 -6.953125 6.625 -7.03125 6.515625 -7.03125 C 6.375 -7.03125 5.90625 -6.25 5.875 -6.1875 Z M 5.875 -6.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 1.3125 -4.28125 C 1.0625 -4.25 0.859375 -4.03125 0.859375 -3.78125 C 0.859375 -3.53125 1.0625 -3.234375 1.359375 -3.234375 C 1.640625 -3.234375 1.90625 -3.453125 1.90625 -3.765625 C 1.90625 -4.015625 1.71875 -4.296875 1.390625 -4.296875 C 1.359375 -4.296875 1.328125 -4.28125 1.3125 -4.28125 Z M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 0.3125 -6.8125 L 0.3125 -6.515625 L 0.46875 -6.515625 C 0.84375 -6.515625 1.09375 -6.46875 1.09375 -5.984375 L 1.09375 -0.953125 C 1.09375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.53125 4.390625 -3.84375 C 4.140625 -4.28125 3.65625 -4.40625 3.1875 -4.40625 C 2.609375 -4.40625 1.96875 -4.015625 1.78125 -3.453125 L 1.765625 -6.921875 Z M 0.3125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.28125 2.1875 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.859375 -3.53125 3.859375 -3.078125 L 3.859375 -0.703125 C 3.859375 -0.34375 3.5625 -0.3125 3.234375 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.796875 -0.3125 4.5625 -0.359375 4.5625 -0.734375 L 4.5625 -2.546875 C 4.5625 -3.28125 4.953125 -4.1875 5.90625 -4.1875 C 6.546875 -4.1875 6.625 -3.53125 6.625 -3.078125 L 6.625 -0.703125 C 6.625 -0.34375 6.3125 -0.3125 5.984375 -0.3125 L 5.84375 -0.3125 L 5.84375 -0.015625 L 8.09375 -0.015625 L 8.09375 -0.3125 L 7.890625 -0.3125 C 7.59375 -0.3125 7.3125 -0.34375 7.3125 -0.703125 L 7.3125 -2.953125 C 7.3125 -3.3125 7.296875 -3.65625 7.0625 -3.984375 C 6.796875 -4.3125 6.375 -4.40625 5.96875 -4.40625 C 5.328125 -4.40625 4.796875 -4.03125 4.53125 -3.453125 C 4.34375 -4.15625 3.890625 -4.40625 3.203125 -4.40625 C 2.5625 -4.40625 1.953125 -4 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 0.265625 -6.8125 L 0.265625 -6.515625 L 0.4375 -6.515625 C 0.75 -6.515625 1.046875 -6.46875 1.046875 -5.984375 L 1.046875 -0.953125 C 1.046875 -0.890625 1.0625 -0.8125 1.0625 -0.734375 C 1.0625 -0.359375 0.78125 -0.3125 0.515625 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.234375 -0.3125 C 1.9375 -0.3125 1.6875 -0.359375 1.6875 -0.734375 L 1.6875 -1.671875 C 1.6875 -1.875 2.078125 -2.15625 2.328125 -2.328125 C 2.40625 -2.15625 2.546875 -2.015625 2.65625 -1.859375 C 2.890625 -1.53125 3.125 -1.203125 3.34375 -0.875 C 3.40625 -0.78125 3.484375 -0.65625 3.484375 -0.53125 C 3.484375 -0.359375 3.296875 -0.3125 3.140625 -0.3125 L 3.140625 -0.015625 L 5.09375 -0.015625 L 5.09375 -0.3125 C 4.921875 -0.3125 4.734375 -0.3125 4.578125 -0.40625 C 4.34375 -0.53125 4.1875 -0.765625 4.046875 -0.984375 C 3.796875 -1.328125 3.546875 -1.6875 3.296875 -2.03125 L 2.9375 -2.546875 C 2.890625 -2.59375 2.828125 -2.6875 2.828125 -2.71875 L 2.828125 -2.734375 C 2.828125 -2.8125 3.125 -3.03125 3.265625 -3.140625 C 3.71875 -3.53125 4.234375 -3.984375 4.875 -3.984375 L 4.875 -4.296875 L 3.0625 -4.296875 L 3.0625 -3.984375 C 3.203125 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.4375 2.875 -3.140625 2.609375 -2.921875 C 2.296875 -2.65625 2.015625 -2.40625 1.71875 -2.15625 L 1.71875 -6.921875 Z M 0.265625 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.46875 -3.984375 C 0.796875 -3.984375 1.09375 -3.953125 1.09375 -3.484375 L 1.09375 -0.734375 C 1.09375 -0.328125 0.8125 -0.3125 0.375 -0.3125 L 0.3125 -0.3125 L 0.3125 -0.015625 L 2.578125 -0.015625 L 2.578125 -0.3125 L 2.3125 -0.3125 C 2.03125 -0.3125 1.796875 -0.359375 1.796875 -0.734375 L 1.796875 -2.546875 C 1.796875 -3.265625 2.15625 -4.1875 3.15625 -4.1875 C 3.78125 -4.1875 3.84375 -3.5 3.84375 -3.078125 L 3.84375 -0.6875 C 3.84375 -0.34375 3.5625 -0.3125 3.25 -0.3125 L 3.078125 -0.3125 L 3.078125 -0.015625 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.078125 -0.3125 C 4.8125 -0.3125 4.546875 -0.359375 4.546875 -0.703125 L 4.546875 -2.875 C 4.546875 -3.203125 4.53125 -3.546875 4.375 -3.84375 C 4.140625 -4.28125 3.640625 -4.40625 3.1875 -4.40625 C 2.578125 -4.40625 1.9375 -3.984375 1.75 -3.390625 L 1.734375 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.296875 L 0.3125 -3.984375 L 0.453125 -3.984375 C 0.734375 -3.984375 1.03125 -3.96875 1.09375 -3.671875 C 1.09375 -3.5625 1.09375 -3.453125 1.09375 -3.34375 L 1.09375 -1.359375 C 1.09375 -1.03125 1.109375 -0.734375 1.28125 -0.4375 C 1.5625 -0.015625 2.125 0.109375 2.59375 0.109375 C 3.046875 0.109375 3.453125 -0.09375 3.703125 -0.453125 C 3.765625 -0.5625 3.84375 -0.65625 3.875 -0.78125 L 3.875 0.09375 L 5.328125 -0.015625 L 5.328125 -0.3125 L 5.171875 -0.3125 C 4.84375 -0.3125 4.546875 -0.34375 4.546875 -0.796875 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 L 3.21875 -3.984375 C 3.546875 -3.984375 3.84375 -3.953125 3.84375 -3.484375 L 3.84375 -1.6875 C 3.84375 -0.953125 3.46875 -0.125 2.640625 -0.125 C 2.078125 -0.125 1.796875 -0.265625 1.796875 -1.328125 L 1.796875 -4.40625 Z M 0.3125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 1.484375 -6.140625 C 1.484375 -5.453125 1.203125 -4.203125 0.171875 -4.203125 L 0.171875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.421875 C 1.03125 -1.09375 1.0625 -0.75 1.21875 -0.46875 C 1.4375 -0.0625 1.90625 0.09375 2.34375 0.09375 C 3.15625 0.09375 3.3125 -0.8125 3.3125 -1.453125 L 3.3125 -1.8125 L 3.078125 -1.8125 C 3.078125 -1.671875 3.078125 -1.515625 3.078125 -1.359375 C 3.078125 -0.921875 2.984375 -0.15625 2.390625 -0.15625 C 1.828125 -0.15625 1.734375 -0.84375 1.734375 -1.28125 L 1.734375 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.734375 -4.296875 L 1.734375 -6.140625 Z M 1.484375 -6.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 0.265625 -4.296875 L 0.265625 -3.984375 L 0.453125 -3.984375 C 0.75 -3.984375 1.046875 -3.953125 1.046875 -3.5625 L 1.046875 1.21875 C 1.046875 1.578125 0.78125 1.609375 0.5 1.609375 L 0.265625 1.609375 L 0.265625 1.921875 L 2.515625 1.921875 L 2.515625 1.609375 L 2.28125 1.609375 C 1.984375 1.609375 1.75 1.578125 1.75 1.21875 L 1.75 -0.515625 C 1.984375 -0.09375 2.546875 0.09375 2.96875 0.09375 C 4.203125 0.09375 5.1875 -0.953125 5.1875 -2.15625 C 5.1875 -3.359375 4.265625 -4.40625 3.09375 -4.40625 C 2.546875 -4.40625 2.078125 -4.171875 1.71875 -3.765625 L 1.71875 -4.40625 Z M 4.34375 -1.984375 C 4.296875 -1.25 3.90625 -0.203125 3 -0.125 L 2.9375 -0.125 C 2.515625 -0.125 2.125 -0.359375 1.890625 -0.71875 C 1.796875 -0.828125 1.75 -0.921875 1.75 -1.0625 L 1.75 -2.734375 C 1.75 -2.875 1.734375 -3 1.734375 -3.125 C 1.734375 -3.65625 2.40625 -4.15625 3 -4.15625 C 4 -4.15625 4.359375 -2.84375 4.359375 -2.140625 C 4.359375 -2.09375 4.359375 -2.03125 4.34375 -1.984375 Z M 4.34375 -1.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 0.375 -4.296875 L 0.375 -3.984375 L 0.5625 -3.984375 C 0.84375 -3.984375 1.109375 -3.953125 1.109375 -3.484375 L 1.109375 -0.734375 C 1.109375 -0.375 0.921875 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.265625 -0.3125 C 2.015625 -0.3125 1.78125 -0.34375 1.78125 -0.671875 L 1.78125 -4.40625 Z M 1.203125 -6.671875 C 0.953125 -6.640625 0.75 -6.421875 0.75 -6.15625 C 0.75 -5.859375 1 -5.625 1.28125 -5.625 C 1.5625 -5.625 1.8125 -5.84375 1.8125 -6.15625 C 1.8125 -6.4375 1.5625 -6.671875 1.28125 -6.671875 C 1.25 -6.671875 1.234375 -6.671875 1.203125 -6.671875 Z M 1.203125 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 3.578125 -3.859375 C 3.3125 -3.84375 3.109375 -3.671875 3.109375 -3.40625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.875 -2.9375 4.03125 -3.15625 4.03125 -3.4375 L 4.03125 -3.5 C 3.921875 -4.234375 3.078125 -4.46875 2.5 -4.46875 C 1.28125 -4.46875 0.328125 -3.40625 0.328125 -2.15625 C 0.328125 -1.03125 1.203125 0.09375 2.5 0.09375 C 3.15625 0.09375 3.796875 -0.265625 4.0625 -0.953125 C 4.09375 -1.015625 4.140625 -1.109375 4.140625 -1.171875 C 4.140625 -1.25 4.09375 -1.296875 4.015625 -1.296875 C 3.875 -1.296875 3.78125 -0.921875 3.703125 -0.78125 C 3.46875 -0.40625 3.0625 -0.15625 2.609375 -0.15625 C 1.546875 -0.15625 1.21875 -1.21875 1.171875 -2 L 1.171875 -2.125 C 1.171875 -2.921875 1.359375 -4.109375 2.453125 -4.21875 L 2.53125 -4.21875 C 2.90625 -4.21875 3.296875 -4.109375 3.578125 -3.859375 Z M 3.578125 -3.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 1.75 -4.46875 C 1.390625 -4.421875 1 -4.359375 0.703125 -4.109375 C 0.46875 -3.890625 0.328125 -3.5625 0.328125 -3.234375 C 0.328125 -1.53125 3.09375 -2.5 3.09375 -1 C 3.09375 -0.40625 2.546875 -0.125 2 -0.125 C 1.25 -0.125 0.734375 -0.65625 0.59375 -1.515625 C 0.578125 -1.609375 0.5625 -1.6875 0.453125 -1.6875 C 0.375 -1.6875 0.328125 -1.640625 0.328125 -1.5625 L 0.328125 0.015625 C 0.34375 0.0625 0.375 0.09375 0.421875 0.09375 L 0.4375 0.09375 C 0.59375 0.09375 0.75 -0.265625 0.875 -0.296875 L 0.890625 -0.296875 C 0.96875 -0.296875 1.234375 -0.046875 1.453125 0.015625 C 1.609375 0.078125 1.796875 0.09375 1.96875 0.09375 C 2.796875 0.09375 3.59375 -0.34375 3.59375 -1.25 C 3.59375 -1.90625 3.109375 -2.453125 2.453125 -2.625 C 1.828125 -2.796875 0.8125 -2.796875 0.8125 -3.515625 C 0.8125 -4.125 1.484375 -4.28125 1.921875 -4.28125 C 2.40625 -4.28125 3.09375 -4 3.09375 -3.15625 C 3.09375 -3.0625 3.09375 -2.984375 3.203125 -2.984375 C 3.3125 -2.984375 3.34375 -3.0625 3.34375 -3.15625 C 3.34375 -3.203125 3.34375 -3.265625 3.34375 -3.296875 L 3.34375 -4.328125 C 3.34375 -4.390625 3.3125 -4.46875 3.234375 -4.46875 C 3.078125 -4.46875 2.96875 -4.21875 2.859375 -4.21875 L 2.84375 -4.21875 C 2.765625 -4.21875 2.609375 -4.34375 2.5 -4.390625 C 2.3125 -4.453125 2.109375 -4.46875 1.921875 -4.46875 C 1.859375 -4.46875 1.8125 -4.46875 1.75 -4.46875 Z M 1.75 -4.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 0.328125 -6.8125 L 0.328125 -6.515625 L 0.484375 -6.515625 C 0.84375 -6.515625 1.109375 -6.46875 1.109375 -5.984375 L 1.109375 -0.953125 C 1.109375 -0.890625 1.109375 -0.8125 1.109375 -0.734375 C 1.109375 -0.359375 0.84375 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 -0.015625 L 2.546875 -0.015625 L 2.546875 -0.3125 L 2.296875 -0.3125 C 2.015625 -0.3125 1.78125 -0.359375 1.78125 -0.75 L 1.78125 -6.921875 Z M 0.328125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 1.109375 -3.796875 C 1.359375 -4.109375 1.796875 -4.25 2.171875 -4.25 C 2.90625 -4.25 3.234375 -3.578125 3.234375 -2.875 L 3.234375 -2.609375 C 2.09375 -2.609375 0.40625 -2.25 0.40625 -0.953125 L 0.40625 -0.875 C 0.484375 -0.09375 1.453125 0.09375 2.03125 0.09375 C 2.53125 0.09375 3.1875 -0.234375 3.3125 -0.75 C 3.375 -0.3125 3.65625 0.046875 4.09375 0.046875 C 4.5 0.046875 4.859375 -0.28125 4.921875 -0.734375 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.953125 C 4.671875 -0.671875 4.609375 -0.265625 4.3125 -0.265625 C 3.984375 -0.265625 3.9375 -0.65625 3.9375 -0.921875 L 3.9375 -2.59375 C 3.9375 -2.71875 3.953125 -2.84375 3.953125 -2.96875 C 3.953125 -3.9375 3.046875 -4.46875 2.21875 -4.46875 C 1.578125 -4.46875 0.703125 -4.15625 0.703125 -3.359375 C 0.703125 -3.078125 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.609375 -3.09375 1.609375 -3.34375 C 1.609375 -3.625 1.390625 -3.796875 1.109375 -3.796875 Z M 3.234375 -2.40625 L 3.234375 -1.390625 C 3.234375 -0.703125 2.765625 -0.15625 2.109375 -0.125 L 2.078125 -0.125 C 1.609375 -0.125 1.1875 -0.484375 1.1875 -0.96875 L 1.1875 -1.015625 C 1.25 -2.03125 2.375 -2.375 3.234375 -2.40625 Z M 3.234375 -2.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 0.171875 -4.296875 L 0.171875 -3.984375 L 0.375 -3.984375 C 0.890625 -3.984375 1.03125 -3.78125 1.25 -3.484375 L 2.1875 -2.265625 C 2.234375 -2.21875 2.3125 -2.140625 2.3125 -2.078125 C 2.296875 -2.03125 2.21875 -1.953125 2.1875 -1.90625 C 1.59375 -1.21875 1.15625 -0.3125 0.125 -0.3125 L 0.125 -0.015625 L 1.90625 -0.015625 L 1.90625 -0.3125 C 1.71875 -0.3125 1.609375 -0.5 1.609375 -0.640625 C 1.609375 -0.84375 1.765625 -0.984375 1.890625 -1.125 C 2 -1.28125 2.125 -1.4375 2.25 -1.578125 C 2.328125 -1.6875 2.421875 -1.78125 2.484375 -1.890625 C 2.734375 -1.609375 2.9375 -1.296875 3.15625 -1 L 3.34375 -0.75 C 3.390625 -0.703125 3.453125 -0.640625 3.453125 -0.5625 C 3.453125 -0.40625 3.234375 -0.3125 3.09375 -0.3125 L 3.09375 -0.015625 L 5.140625 -0.015625 L 5.140625 -0.3125 L 4.96875 -0.3125 C 4.796875 -0.3125 4.609375 -0.328125 4.453125 -0.40625 C 4.28125 -0.5 4.15625 -0.6875 4.03125 -0.84375 C 3.703125 -1.28125 3.359375 -1.71875 3.03125 -2.15625 L 2.9375 -2.265625 C 2.921875 -2.296875 2.90625 -2.328125 2.890625 -2.359375 C 2.890625 -2.40625 2.953125 -2.46875 2.984375 -2.515625 L 3.296875 -2.890625 C 3.484375 -3.109375 3.640625 -3.34375 3.84375 -3.546875 C 4.15625 -3.828125 4.546875 -3.984375 4.96875 -3.984375 L 4.96875 -4.296875 L 3.1875 -4.296875 L 3.1875 -3.984375 C 3.390625 -3.9375 3.46875 -3.84375 3.46875 -3.671875 C 3.46875 -3.390625 3.15625 -3.125 2.984375 -2.90625 C 2.90625 -2.8125 2.765625 -2.609375 2.71875 -2.609375 C 2.65625 -2.609375 2.515625 -2.828125 2.421875 -2.9375 C 2.203125 -3.21875 1.859375 -3.578125 1.859375 -3.75 C 1.859375 -3.890625 2.078125 -3.984375 2.203125 -3.984375 L 2.203125 -4.296875 Z M 0.171875 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-21">
|
||||
<path style="stroke:none;" d="M 1.3125 -1.0625 C 1.0625 -1.03125 0.859375 -0.796875 0.859375 -0.546875 C 0.859375 -0.296875 1.0625 -0.015625 1.359375 -0.015625 C 1.640625 -0.015625 1.90625 -0.21875 1.90625 -0.53125 C 1.90625 -0.78125 1.71875 -1.0625 1.390625 -1.0625 C 1.359375 -1.0625 1.328125 -1.0625 1.3125 -1.0625 Z M 1.3125 -1.0625 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.397906 -8.300469 L 47.73775 -8.300469 L 47.73775 8.301094 L 0.397906 8.301094 Z M 0.397906 -8.300469 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="8.7" y="16.17"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="16.99785" y="16.17"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="22.257106" y="16.17"/>
|
||||
<use xlink:href="#glyph0-4" x="27.790334" y="16.17"/>
|
||||
<use xlink:href="#glyph0-5" x="32.216717" y="16.17"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="39.435617" y="16.17"/>
|
||||
<use xlink:href="#glyph0-7" x="46.628614" y="16.17"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 38.640094 -26.593438 L 68.519 -26.593438 L 68.519 -13.093438 L 38.640094 -13.093438 Z M 38.640094 -26.593438 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="46.94" y="36.953"/>
|
||||
<use xlink:href="#glyph0-2" x="52.473228" y="36.953"/>
|
||||
<use xlink:href="#glyph0-9" x="57.453532" y="36.953"/>
|
||||
<use xlink:href="#glyph0-4" x="65.753374" y="36.953"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.065875 -8.698906 L 24.065875 -19.843438 L 38.241656 -19.843438 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.151813 -46.437188 L 94.710406 -46.437188 L 94.710406 -32.933281 L 68.151813 -32.933281 Z M 68.151813 -46.437188 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="76.452" y="56.795"/>
|
||||
<use xlink:href="#glyph0-11" x="81.709264" y="56.795"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="86.963539" y="56.795"/>
|
||||
<use xlink:href="#glyph0-13" x="92.496767" y="56.795"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.5815 -26.991875 L 53.5815 -39.687188 L 67.753375 -39.687188 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.003375 -67.120781 L 137.034625 -67.120781 L 137.034625 -51.937188 L 96.003375 -51.937188 Z M 96.003375 -67.120781 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="104.303" y="75.543"/>
|
||||
<use xlink:href="#glyph0-15" x="109.836228" y="75.543"/>
|
||||
<use xlink:href="#glyph0-16" x="112.602842" y="75.543"/>
|
||||
<use xlink:href="#glyph0-13" x="117.029225" y="75.543"/>
|
||||
<use xlink:href="#glyph0-12" x="120.902684" y="75.543"/>
|
||||
<use xlink:href="#glyph0-5" x="126.435912" y="75.543"/>
|
||||
<use xlink:href="#glyph0-4" x="130.337266" y="75.543"/>
|
||||
<use xlink:href="#glyph0-17" x="134.763649" y="75.543"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 81.433063 -46.835625 L 81.433063 -59.527031 L 95.604938 -59.527031 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.003375 -86.120781 L 121.788531 -86.120781 L 121.788531 -72.620781 L 96.003375 -72.620781 Z M 96.003375 -86.120781 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="104.303" y="96.48"/>
|
||||
<use xlink:href="#glyph0-2" x="109.836228" y="96.48"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="115.095485" y="96.48"/>
|
||||
<use xlink:href="#glyph0-17" x="119.521868" y="96.48"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 81.433063 -46.835625 L 81.433063 -79.370781 L 95.604938 -79.370781 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.468219 -105.964531 L 151.413531 -105.964531 L 151.413531 -92.464531 L 123.468219 -92.464531 Z M 123.468219 -105.964531 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-18" x="131.768" y="116.323"/>
|
||||
<use xlink:href="#glyph0-19" x="134.534614" y="116.323"/>
|
||||
<use xlink:href="#glyph0-13" x="139.514918" y="116.323"/>
|
||||
<use xlink:href="#glyph0-4" x="143.388377" y="116.323"/>
|
||||
<use xlink:href="#glyph0-20" x="147.81476" y="116.323"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.897906 -86.519219 L 108.897906 -99.214531 L 123.069781 -99.214531 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.011188 -125.679375 L 196.558063 -125.679375 L 196.558063 -112.433281 L 152.011188 -112.433281 Z M 152.011188 -125.679375 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="160.311" y="136.039"/>
|
||||
<use xlink:href="#glyph0-19" x="168.610842" y="136.039"/>
|
||||
<use xlink:href="#glyph0-15" x="173.591146" y="136.039"/>
|
||||
<use xlink:href="#glyph0-11" x="176.35776" y="136.039"/>
|
||||
<use xlink:href="#glyph0-21" x="181.890988" y="136.039"/>
|
||||
<use xlink:href="#glyph0-13" x="184.657602" y="136.039"/>
|
||||
<use xlink:href="#glyph0-4" x="188.531061" y="136.039"/>
|
||||
<use xlink:href="#glyph0-20" x="192.957444" y="136.039"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.440875 -106.362969 L 137.440875 -119.054375 L 151.61275 -119.054375 " transform="matrix(1,0,0,-1,4.981,13.68)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
190
sections/german/04/tikz_path.tex
Normal file
@ -0,0 +1,190 @@
|
||||
\documentclass{article}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage{tikz}
|
||||
\usetikzlibrary{trees}
|
||||
\usepackage{verbatimbox}
|
||||
\usepackage[active,tightpage]{preview}
|
||||
\PreviewEnvironment{tikzpicture}
|
||||
\setlength\PreviewBorder{5pt}
|
||||
\begin{document}
|
||||
\tikzstyle{every node}=[draw=black,thick,anchor=west]
|
||||
\tikzstyle{selected}=[draw=red,fill=red!30]
|
||||
\tikzstyle{foot}=[fill=gray!50]
|
||||
\tikzstyle{rel}=[fill=blue!70]
|
||||
\tikzstyle{partition}=[draw=white]
|
||||
\begin{tikzpicture}[%
|
||||
grow via three points={one child at (0.5,-0.7) and
|
||||
two children at (0.5,-0.7) and (0.5,-1.4)},
|
||||
edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)}]
|
||||
\node {/ oder C:}
|
||||
child { node {home}
|
||||
child { node {knut}
|
||||
child { node {pictures}}
|
||||
child { node {docs}
|
||||
child { node { latex}
|
||||
child { node { main.tex}}}
|
||||
}
|
||||
}
|
||||
};
|
||||
\end{tikzpicture}
|
||||
|
||||
\begin{tikzpicture}[%
|
||||
grow via three points={one child at (0.5,-0.7) and
|
||||
two children at (0.5,-0.7) and (0.5,-1.4)},
|
||||
edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)}]
|
||||
\node [foot] {/ oder C:}
|
||||
child { node [foot] {home}
|
||||
child { node [foot] {knut}
|
||||
child { node {pictures}}
|
||||
child { node [foot] {docs}
|
||||
child { node [foot] {latex}
|
||||
child { node [selected] { main.tex}}}
|
||||
}
|
||||
}
|
||||
};
|
||||
\end{tikzpicture}
|
||||
|
||||
|
||||
|
||||
\begin{tikzpicture}[%
|
||||
grow via three points={one child at (0.5,-0.7) and
|
||||
two children at (0.5,-0.7) and (0.5,-1.4)},
|
||||
edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)}]
|
||||
\node {/ oder C:}
|
||||
child { node {home}
|
||||
child { node {knut}
|
||||
child { node {pictures}}
|
||||
child { node {docs}
|
||||
child { node [foot] {latex}
|
||||
child { node [rel] { main.tex}}
|
||||
child { node [selected] { part1.tex}}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
\end{tikzpicture}
|
||||
|
||||
|
||||
\begin{tikzpicture}[%
|
||||
grow via three points={one child at (0.5,-0.7) and
|
||||
two children at (0.5,-0.7) and (0.5,-1.4)},
|
||||
edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)}]
|
||||
\node {/ oder C:}
|
||||
child { node {home}
|
||||
child { node {knut}
|
||||
child { node {pictures}}
|
||||
child { node {docs}
|
||||
child { node [foot] {latex}
|
||||
child { node [rel] { main.tex}}
|
||||
child {node [foot] {sections}
|
||||
child { node [selected] {part1.tex}}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
\end{tikzpicture}
|
||||
|
||||
|
||||
\begin{tikzpicture}[%
|
||||
grow via three points={one child at (0.5,-0.7) and
|
||||
two children at (0.5,-0.7) and (0.5,-1.4)},
|
||||
edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)}]
|
||||
\node {/ oder C:}
|
||||
child { node {home}
|
||||
child { node {knut}
|
||||
child { node {pictures}}
|
||||
child { node {docs}
|
||||
child { node [foot] {latex}
|
||||
child { node [foot] {main}
|
||||
child { node [rel] { main.tex}}
|
||||
}
|
||||
child [missing] {}
|
||||
child {node [foot] {sections}
|
||||
child { node [selected] {part1.tex}}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
\end{tikzpicture}
|
||||
|
||||
|
||||
\begin{myverbbox}{\main}
|
||||
\documentclass{article}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\title{Ein Titel}
|
||||
\begin{document}
|
||||
\maketitle
|
||||
\tableofcontents
|
||||
\input{part1.tex}
|
||||
\input{part2.tex}
|
||||
\end{document}
|
||||
\end{myverbbox}
|
||||
|
||||
\begin{myverbbox}{\one}
|
||||
\section{Dies ist Abschnitt 1}
|
||||
Hier ein Absatz zum
|
||||
Inhalt von Abschnitt 1.
|
||||
\end{myverbbox}
|
||||
|
||||
\begin{myverbbox}{\two}
|
||||
\section{Dies ist Abschnitt 2}
|
||||
Hier ein Absatz zum
|
||||
Inhalt von Abschnitt 2.
|
||||
\end{myverbbox}
|
||||
|
||||
\tikzstyle{every node}=[shape=rectangle]
|
||||
\tikzstyle{boxy}=[draw]
|
||||
\tikzstyle{mega}=[fill=gray!30]
|
||||
\begin{tikzpicture}
|
||||
\node(main) at (5,5) [mega, boxy] {\main};
|
||||
\node(one) at (0,0) [boxy] {\one};
|
||||
\node(two) at (10,0) [boxy] {\two};
|
||||
\node at (5,2.45) {main.tex};
|
||||
\node at (0,-1) {part1.tex};
|
||||
\node at (10,-1) {part2.tex};
|
||||
\draw[->] (one) -- (main);
|
||||
\draw[->] (two) -- (main);
|
||||
\end{tikzpicture}
|
||||
|
||||
\begin{myverbbox}{\mayn}
|
||||
\input{header.tex}
|
||||
\begin{document}
|
||||
\maketitle
|
||||
\tableofcontents
|
||||
\input{part1.tex}
|
||||
\input{part2.tex}
|
||||
\end{document}
|
||||
\end{myverbbox}
|
||||
|
||||
\begin{myverbbox}{\header}
|
||||
\documentclass{article}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\title{Ein Titel}
|
||||
\end{myverbbox}
|
||||
|
||||
|
||||
\tikzstyle{every node}=[shape=rectangle]
|
||||
\tikzstyle{boxy}=[draw]
|
||||
\tikzstyle{mega}=[fill=gray!30]
|
||||
\begin{tikzpicture}
|
||||
\node(main) at (7.5,5) [mega, boxy] {\mayn};
|
||||
\node(header) at (0,0) [boxy] {\header};
|
||||
\node(one) at (7.5,0) [boxy] {\one};
|
||||
\node(two) at (15,0) [boxy] {\two};
|
||||
\node at (6.5,3.2) {main.tex};
|
||||
\node at (0,-1.45) {header.tex};
|
||||
\node at (7.5,-1) {part1.tex};
|
||||
\node at (15,-1) {part2.tex};
|
||||
\draw[->] (header) -- (main);
|
||||
\draw[->] (one) -- (main);
|
||||
\draw[->] (two) -- (main);
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
||||
BIN
sections/german/04/tree.png
Normal file
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@ -1,276 +1,211 @@
|
||||
# All Features Welcome :) 🐉
|
||||
<!--
|
||||
SONDERZEICHEN
|
||||
-->
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>Sonderzeichen</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## Inline-Formatierung
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Leerzeichen</h2>
|
||||
<ul>
|
||||
<li>normale Wortzwischenräume per Leertaste</li>
|
||||
<li>geschützte Leerzeichen: `~`</li>
|
||||
<li>schmale Leerzeichen: `\,`</li>
|
||||
<li>viele weitere Breiten verfügbar</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>Schmale Leerzeichen werden z.\,B. in
|
||||
Abkürzungen und zwischen Zahlen und
|
||||
Einheiten verwendet: 10\,s.
|
||||
Normalbreite, aber geschützte Leerzeichen
|
||||
können beispielsweise dabei helfen,
|
||||
Titel und Namen in einer Zeile zu halten:
|
||||
Dr.~Fooboar.</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/05/leerzeichen-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Hervorhebungen
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Typografie">Striche</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Name</th>
|
||||
<th>Verwendung</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>-</td>
|
||||
<td>Bindestrich</td>
|
||||
<td>LaTeX-Wochenende</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>–</td>
|
||||
<td>Halbgeviertstrich</td>
|
||||
<td>als Gedankenstrich – oder als Bis-Strich: 10 – 12 Uhr.
|
||||
</tr>
|
||||
<tr>
|
||||
<td>—</td>
|
||||
<td>Geviertstrich</td>
|
||||
<td>A dash — in American English</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- <pre class="lang-tex hljs"><code></code></pre> -->
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/05/striche-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
---
|
||||
|
||||
#### Tabelle
|
||||
|Bezeichnung|Befehl|
|
||||
|:----------|:--------------------------|
|
||||
|fett (bold face)|\textbf{Very Important Stuff}|
|
||||
|kursiv (italics)|\textit{Very Important Stuff}|
|
||||
|Kapitälchen (small capitals)|\textsc{Very Important Stuff}|
|
||||
|Schreibmaschinenschrift (teletypefont)|\texttt{Very Important Stuff}|
|
||||
|geneigt (slanted)|\textsl{Very Important Stuff)|
|
||||
|unterstrichen|\underline{Very Important Stuff}|
|
||||
|
||||

|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2></h2>
|
||||
<p></p>
|
||||
<pre class="lang-tex hljs"><code></code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
TODO
|
||||
<img src="sections/german/05/">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
#### unterstrichen
|
||||
```tex
|
||||
\underline{Very Important Stuff}
|
||||
```
|
||||
$\underline{Very Important Stuff}$
|
||||
|
||||
#### fett (bold face)
|
||||
```tex
|
||||
\textbf{Very Important Stuff}
|
||||
```
|
||||
$\textbf{Very Important Stuff}$
|
||||
|
||||
#### kursiv (italics)
|
||||
```tex
|
||||
\textit{Very Important Stuff}
|
||||
```
|
||||
$\textit{Very Important Stuff}$
|
||||
TODO: Striche (normaler Bindestrich, LaTeX-Bindestriche, Streckenstriche, Gedankenstriche deutsch/englisch), Silbentrennung in LaTeX mit overfull hboxes
|
||||
|
||||
---
|
||||
|
||||
#### geneigt (slanted)
|
||||
```tex
|
||||
\textsl{Very Important Stuff}
|
||||
```
|
||||
$\textsl{Very Important Stuff}$
|
||||
|
||||
#### Kapitälchen (small capitals)
|
||||
```tex
|
||||
\textsc{Very Important Stuff}
|
||||
```
|
||||
$\textsc{Very Important Stuff}$
|
||||
TODO: Anführungszeichen (einfache LaTeX-Syntax und Befehle, jeweils für deutsch, deutsch-alternativ und englisch)
|
||||
|
||||
---
|
||||
|
||||
#### Schreibmaschinenschrift (teletypefont)
|
||||
Lässt sich z.B. dafür nutzen, wenn man in der Informatik inline Codeschnipsel einfügen möchte.
|
||||
```tex
|
||||
\texttt{Very Important Stuff}
|
||||
```
|
||||
$\texttt{Very Important Stuff}$
|
||||
TODO: Diakritika (UTF8-Input und https://en.wikibooks.org/wiki/LaTeX/Special_Characters#Escaped_codes)
|
||||
|
||||
---
|
||||
|
||||
#### Hervorhebungen schachteln
|
||||
Problemlos möglich:
|
||||
```tex
|
||||
\textbf{Very \textit{Important Stuff}}
|
||||
```
|
||||
$\textbf{Very \textit{Important Stuff}}$
|
||||
TODO: Andere Sonderzeichen: \slash \ldots (https://en.wikibooks.org/wiki/LaTeX/Special_Characters#Other_symbols); manche funktionieren nur in Formeln, kommt später
|
||||
|
||||
---
|
||||
|
||||
#### Hervorhebungen schachteln
|
||||
Innerhalb kursiver Hervorhebung kann man auch den Befehl `\emph{text}` verwenden, um Passagen von der Kursivierung auszunehmen:
|
||||
```tex
|
||||
\texit{Very \emph{Important} Stuff}
|
||||
```
|
||||
$\texit{Very \emph{Important} Stuff}$
|
||||
TODO: Generell UTF8-Input möglich
|
||||
|
||||
---
|
||||
|
||||
### Schriftgröße
|
||||
|
||||
---
|
||||
|
||||
#### Ein gutgemeinter Rat: Better Call ~~Saul~~ LaTeX!
|
||||
Vgl. Abschnitt zu Syntax und Semantik:
|
||||
Konsistentes Aussehen über das gesamte Dokument hinweg gewünscht?
|
||||
Voreinstellungen von LaTeX zur Schriftgröße verschiedener Textelemente (Titel, Fließtext, Fußnoten) vertrauen!
|
||||
|
||||
Das heißt im Umkehrschluss: Möglichst wenig manuell an Schriftgrößen herumschrauben
|
||||
|
||||
---
|
||||
|
||||
#### normalsize
|
||||
|
||||
Wird für den Fließtext verwendet.
|
||||
Standard: 10pt.
|
||||
|
||||
Kann im Header folgendermaßen verwendet werden:
|
||||
```tex
|
||||
\documentclass[12pt]{article}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### Voreingestellte Schriftgrößen
|
||||
Syntax:
|
||||
```tex
|
||||
{\fontsize ein Textabschnitt}
|
||||
```
|
||||
|
||||
Zur Auswahl: immer relativ zu normalsize
|
||||
```tex
|
||||
{\tiny Größe}
|
||||
{\footnotesize Größe}
|
||||
{\small Größe}
|
||||
{\normalsize Größe}
|
||||
{\large Größe}
|
||||
{\Large Größe}
|
||||
{\LARGE Größe}
|
||||
{\huge Größe}
|
||||
{\Huge Größe}
|
||||
```
|
||||
|
||||

|
||||
|
||||
---
|
||||
|
||||
#### Voreinstellungen
|
||||
|
||||
Zur Auswahl:
|
||||
```tex
|
||||
{\tiny Wenn}
|
||||
{\footnotesize du}
|
||||
{\small das}
|
||||
{\normalsize lesen}
|
||||
{\large kannst,}
|
||||
{\Large brauchst}
|
||||
{\LARGE du}
|
||||
{\huge keine}
|
||||
{\Huge Brille.}
|
||||
```
|
||||
|
||||

|
||||
|
||||
---
|
||||
|
||||
#### Manuelle Konfiguration
|
||||
Syntax:
|
||||
```tex
|
||||
\fontsize{<Größe in pt, cm, ...>}{<Zeilenhöhe>)\selectfont
|
||||
```
|
||||
|
||||
Beispiel:
|
||||
```tex
|
||||
Das ist Text in normaler Schriftgröße.
|
||||
|
||||
\fontsize{1cm}{1.25cm}\selectfont
|
||||
Das ist eine Textpassage in wirklich riesiger Schrift.
|
||||
|
||||
\normalsize
|
||||
Back to normal.
|
||||
```
|
||||
|
||||

|
||||
|
||||
---
|
||||
|
||||
## Weitere Blockumgebungen
|
||||
|
||||
---
|
||||
|
||||
...
|
||||
|
||||
---
|
||||
|
||||
## Sonderzeichen & Symbole
|
||||
|
||||
---
|
||||
|
||||
### Escape Sequences 🏃♀️
|
||||
* In LaTeX werden viele Sonderzeichen für Befehle verwendet (z.B. %, $, \).
|
||||
* Character Escaping: Tricks, um diese Sonderzeichen in ihrer eigentlichen Funktion im Fließtext zu benutzen
|
||||
* oft reicht es, einen Backslash vorne anzuhängen:
|
||||
```tex
|
||||
\%
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Escape Sequences 🏃</h3>
|
||||
<ul>
|
||||
<li>In LaTeX werden viele Sonderzeichen für Befehle verwendet (z.B. `%`, `$`, `\`)</li>
|
||||
<li>Character Escaping: Tricks, um diese Sonderzeichen in ihrer eigentlichen Funktion im Fließtext zu benutzen</li>
|
||||
<li>Oft reicht es, einen **Backslash** vorne anzuhängen:</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>\%
|
||||
\$
|
||||
\&
|
||||
\{ \}
|
||||
```
|
||||
</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Escaping Sequences
|
||||
Bei anderen Sonderzeichen gibt es eigene Befehle:
|
||||
```tex
|
||||
\textbackslash
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Escape Sequences 🏃</h3>
|
||||
<p>Bei anderen Sonderzeichen gibt es **eigene Befehle**:</p>
|
||||
<pre class="lang-tex hljs"><code>\textbackslash % Backslash
|
||||
\textasciitilde % Tilde
|
||||
\copyright % Copyrightzeichen
|
||||
```
|
||||
|
||||
$\textbackslash$
|
||||
$\textasciitilde$
|
||||
$\copyright$
|
||||
\copyright % Copyrightzeichen</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Mathmode
|
||||
Einige Sonderzeichen und Symbole funktionieren nur in einer Mathematikumgebung:
|
||||
```tex
|
||||
$\pi \Sigma \delta$ % griechische Buchstaben
|
||||
$\dagger$
|
||||
```
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Mathmode</h3>
|
||||
<p>Einige Sonderzeichen und Symbole funktionieren nur in einer Mathematikumgebung:</p>
|
||||
<pre class="lang-tex hljs"><code>% griechische Buchstaben
|
||||
$\pi \Sigma \delta$
|
||||
$\dagger$
|
||||
|
||||
% Kreuz
|
||||
$\dagger$</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Anführungszeichen
|
||||
* Englisch: ` ``quote'' in LaTeX`
|
||||
* Deutsch: " in Kombination mit dem ngerman-Paket als Umlautakzent definiert
|
||||
```tex
|
||||
"Anführungszeichen"
|
||||
```
|
||||
-> Änführungszeichen"
|
||||
* Ersatz: german left/right quotes
|
||||
```tex
|
||||
\glq Anführungszeichen\grq % einfache quotes
|
||||
\glqq Anführungszeichen\grqq % doppelte quotes
|
||||
```
|
||||
* französische Anführungszeichen: french left/right quotes
|
||||
```tex
|
||||
\flqq guillemets\frqq
|
||||
```
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Anführungszeichen</h3>
|
||||
<ul>
|
||||
<li>Englisch: ` ``quote'' ` <br>→ “quote”</li>
|
||||
<li>Deutsch: `"` in Kombination mit dem ngerman-Paket als Umlautakzent definiert: `"Anführungszeichen"` <br>→ Änführungszeichen"</li>
|
||||
<li>Ersatz: german left/right quotes</li>
|
||||
<li>`\glq einfache Anführungszeichen\grq` <br>→ ‚einfache …‘</li>
|
||||
<li>`\glqq doppelte Anführungszeichen\grqq` <br>→ „doppelte …“</li>
|
||||
<li>französische Anführungszeichen: french left/right quotes</li>
|
||||
<li>`\flqq Guillements\frqq` <br>→ »Guillemets«</li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Die Sache mit den Strichen...
|
||||
* Bindestrich -
|
||||
```tex
|
||||
-
|
||||
Textsatz-System % in zusammengesetzen Wörter
|
||||
Ein- und Ausgabe % als Ergänzungsstrich
|
||||
```
|
||||
* Gedankenstrich --
|
||||
```tex
|
||||
--
|
||||
LaTeX ist -- wie Typograf*innen bestätigen können -- ein exzellentes Textsatzsystem. % für Einschübe
|
||||
Mit LaTeX kann man sogar Gedichte und Kochrezepte setzen -- der Fantasie sind keine Grenzen gesetzt. % dort, wo in der gesprochenen Sprache eine Pause gemacht wird
|
||||
```
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Die Sache mit den Strichen …</h3>
|
||||
<ul>
|
||||
<li>Bindestrich -</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>Textsatz-System % in zusammengesetzen Wörter
|
||||
Ein- und Ausgabe % als Ergänzungsstrich</code></pre>
|
||||
<ul>
|
||||
<li>Gedankenstrich –</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>LaTeX ist -- wie Typograf*innen bestätigen können -- ein exzellentes Textsatzsystem. % für Einschübe
|
||||
Mit LaTeX kann man sogar Gedichte und Kochrezepte setzen -- der Fantasie sind keine Grenzen gesetzt. % dort, wo in der gesprochenen Sprache eine Pause gemacht wird</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Euro 💸
|
||||
(Paket <code class="snippet">eurosym</code>, Befehl <code class="snippet">\euro</code>)
|
||||
|
||||
```tex
|
||||
LaTeX zu verwenden kostet 0 \euro.
|
||||
```
|
||||
|
||||
LaTeX zu verwenden kostet 0 €.
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Euro 💸</h3>
|
||||
<ul>
|
||||
<li>Paket <code class="snippet">eurosym</code></li>
|
||||
<li>Befehl <code class="snippet">\euro</code></li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>LaTeX zu verwenden kostet 0 \euro.</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
### Detexify to the rescue! ⛑️
|
||||
- Symbol malen und erkennen lassen: http://detexify.kirelabs.org/classify.html
|
||||
- Ausführliche Liste an verwendbaren Symbolen: http://tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Detexify to the rescue! ⛑️</h3>
|
||||
<ul>
|
||||
<li>Symbol malen und erkennen lassen: <a href="http://detexify.kirelabs.org/classify.html">Detexify</a></li>
|
||||
<li>Ausführliche Liste an verwendbaren Symbolen: <a href="http://tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf">PDF auf CTAN-Webseite</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
899
sections/german/05/leerzeichen-crop.svg
Normal file
@ -0,0 +1,899 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="242pt" height="195pt" viewBox="0 0 242 195" 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 9.015625 -3.875 L 8.40625 -3.875 C 8.3125 -2.890625 8.078125 -0.609375 5.5 -0.609375 L 3.953125 -0.609375 L 3.953125 -9.21875 L 5.859375 -9.21875 L 5.859375 -9.84375 L 3.125 -9.8125 C 2.59375 -9.8125 0.96875 -9.8125 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 L 8.59375 0 Z M 9.015625 -3.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 6.125 -5.328125 C 6.125 -6.046875 5.375 -6.453125 4.6875 -6.453125 C 3.5625 -6.453125 3.0625 -5.46875 2.875 -4.859375 L 2.859375 -4.859375 L 2.859375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 -0.609375 L 0.5 -0.609375 L 0.5 0 C 0.828125 -0.03125 1.90625 -0.03125 2.3125 -0.03125 C 2.71875 -0.03125 3.890625 -0.03125 4.234375 0 L 4.234375 -0.609375 L 2.984375 -0.609375 L 2.984375 -3.234375 C 2.984375 -3.703125 3.078125 -5.984375 4.765625 -5.984375 C 4.5625 -5.828125 4.453125 -5.578125 4.453125 -5.328125 C 4.453125 -4.734375 4.9375 -4.484375 5.296875 -4.484375 C 5.65625 -4.484375 6.125 -4.734375 6.125 -5.328125 Z M 6.125 -5.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 6.484375 -2.84375 L 5.875 -2.84375 C 5.765625 -1.3125 5.453125 -0.515625 3.640625 -0.515625 L 2.34375 -0.515625 L 6.3125 -5.828125 C 6.4375 -5.984375 6.4375 -6.015625 6.4375 -6.09375 C 6.4375 -6.375 6.296875 -6.375 6.03125 -6.375 L 0.828125 -6.375 L 0.671875 -3.90625 L 1.28125 -3.90625 C 1.359375 -5.265625 1.671875 -5.890625 3.265625 -5.890625 L 4.5625 -5.890625 L 0.578125 -0.578125 C 0.4375 -0.421875 0.4375 -0.390625 0.4375 -0.28125 C 0.4375 0 0.578125 0 0.859375 0 L 6.234375 0 Z M 6.484375 -2.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4 0 L 4 -0.609375 L 3.109375 -0.609375 L 3.109375 -6.453125 L 0.671875 -6.34375 L 0.671875 -5.71875 C 1.515625 -5.71875 1.625 -5.71875 1.625 -5.15625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.953125 -0.03125 2.34375 -0.03125 C 2.734375 -0.03125 3.65625 -0.03125 4 0 Z M 3.28125 -8.71875 C 3.28125 -9.3125 2.796875 -9.75 2.25 -9.75 C 1.65625 -9.75 1.203125 -9.28125 1.203125 -8.71875 C 1.203125 -8.140625 1.6875 -7.6875 2.234375 -7.6875 C 2.828125 -7.6875 3.28125 -8.15625 3.28125 -8.71875 Z M 3.28125 -8.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 6.71875 -1.671875 C 6.71875 -1.84375 6.5625 -1.84375 6.40625 -1.84375 C 6.1875 -1.84375 6.171875 -1.84375 6.09375 -1.65625 C 6 -1.390625 5.609375 -0.4375 4.28125 -0.4375 C 2.265625 -0.4375 2.265625 -2.609375 2.265625 -3.25 C 2.265625 -4.109375 2.28125 -5.984375 4.15625 -5.984375 C 4.265625 -5.984375 5.109375 -5.953125 5.109375 -5.875 C 5.109375 -5.875 5.09375 -5.859375 5.0625 -5.84375 C 5.015625 -5.796875 4.828125 -5.578125 4.828125 -5.21875 C 4.828125 -4.625 5.328125 -4.375 5.6875 -4.375 C 5.984375 -4.375 6.53125 -4.5625 6.53125 -5.234375 C 6.53125 -6.40625 4.875 -6.5 4.109375 -6.5 C 1.546875 -6.5 0.546875 -4.828125 0.546875 -3.1875 C 0.546875 -1.234375 1.90625 0.09375 4.015625 0.09375 C 6.265625 0.09375 6.71875 -1.578125 6.71875 -1.671875 Z M 6.71875 -1.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4.421875 -6.453125 3.53125 -5.953125 3.046875 -4.875 L 3.03125 -4.875 L 3.03125 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 10.046875 -7.6875 L 10.046875 -8.203125 C 9.78125 -8.171875 8.84375 -8.171875 8.515625 -8.171875 C 8.171875 -8.171875 7.234375 -8.171875 6.953125 -8.203125 L 6.953125 -7.6875 L 7.234375 -7.6875 C 7.546875 -7.6875 7.578125 -7.6875 7.859375 -7.65625 C 8.21875 -7.609375 8.21875 -7.59375 8.21875 -7.328125 L 8.21875 -2.328125 L 3.46875 -8.0625 C 3.34375 -8.1875 3.328125 -8.203125 3.09375 -8.203125 L 0.453125 -8.203125 L 0.453125 -7.6875 L 1.71875 -7.6875 L 1.71875 -0.875 C 1.71875 -0.609375 1.703125 -0.59375 1.40625 -0.546875 C 1.1875 -0.53125 0.9375 -0.515625 0.734375 -0.515625 L 0.453125 -0.515625 L 0.453125 0 C 0.734375 -0.03125 1.65625 -0.03125 2 -0.03125 C 2.328125 -0.03125 3.28125 -0.03125 3.546875 0 L 3.546875 -0.515625 L 3.28125 -0.515625 C 2.953125 -0.515625 2.921875 -0.515625 2.640625 -0.546875 C 2.296875 -0.59375 2.28125 -0.609375 2.28125 -0.875 L 2.28125 -7.28125 L 8.203125 -0.15625 C 8.328125 -0.015625 8.34375 0 8.5 0 C 8.78125 0 8.78125 -0.078125 8.78125 -0.34375 L 8.78125 -7.328125 C 8.78125 -7.59375 8.796875 -7.609375 9.109375 -7.65625 C 9.328125 -7.671875 9.5625 -7.6875 9.78125 -7.6875 Z M 10.046875 -7.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 7.171875 0 L 7.171875 -0.515625 C 6.4375 -0.515625 6.34375 -0.515625 6.34375 -0.984375 L 6.34375 -5.375 L 4.21875 -5.28125 L 4.21875 -4.765625 C 4.953125 -4.765625 5.046875 -4.765625 5.046875 -4.296875 L 5.046875 -1.953125 C 5.046875 -1.046875 4.5 -0.328125 3.578125 -0.328125 C 2.671875 -0.328125 2.625 -0.625 2.625 -1.28125 L 2.625 -5.375 L 0.5 -5.28125 L 0.5 -4.765625 C 1.25 -4.765625 1.328125 -4.765625 1.328125 -4.296875 L 1.328125 -1.46875 C 1.328125 -0.28125 2.125 0.078125 3.40625 0.078125 C 3.6875 0.078125 4.578125 0.078125 5.09375 -0.890625 L 5.109375 -0.890625 L 5.109375 0.078125 Z M 7.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.109375 -4.4375 C 5.109375 -5.046875 4.484375 -5.375 3.90625 -5.375 C 2.96875 -5.375 2.5625 -4.546875 2.390625 -4.046875 L 2.375 -4.046875 L 2.375 -5.375 L 0.421875 -5.28125 L 0.421875 -4.765625 C 1.15625 -4.765625 1.25 -4.765625 1.25 -4.296875 L 1.25 -0.515625 L 0.421875 -0.515625 L 0.421875 0 C 0.6875 -0.03125 1.59375 -0.03125 1.921875 -0.03125 C 2.265625 -0.03125 3.234375 -0.03125 3.53125 0 L 3.53125 -0.515625 L 2.484375 -0.515625 L 2.484375 -2.6875 C 2.484375 -3.078125 2.5625 -4.984375 3.96875 -4.984375 C 3.796875 -4.859375 3.71875 -4.65625 3.71875 -4.4375 C 3.71875 -3.9375 4.109375 -3.734375 4.40625 -3.734375 C 4.703125 -3.734375 5.109375 -3.9375 5.109375 -4.4375 Z M 5.109375 -4.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 7.171875 0 L 7.171875 -0.515625 L 6.34375 -0.515625 L 6.34375 -3.65625 C 6.34375 -4.796875 5.859375 -5.375 4.546875 -5.375 C 3.6875 -5.375 2.9375 -4.953125 2.53125 -4.0625 L 2.515625 -4.0625 L 2.515625 -5.375 L 0.5 -5.28125 L 0.5 -4.765625 C 1.25 -4.765625 1.328125 -4.765625 1.328125 -4.296875 L 1.328125 -0.515625 L 0.5 -0.515625 L 0.5 0 C 0.78125 -0.03125 1.640625 -0.03125 1.96875 -0.03125 C 2.3125 -0.03125 3.171875 -0.03125 3.453125 0 L 3.453125 -0.515625 L 2.625 -0.515625 L 2.625 -3.0625 C 2.625 -4.34375 3.578125 -4.984375 4.34375 -4.984375 C 4.796875 -4.984375 5.046875 -4.703125 5.046875 -3.796875 L 5.046875 -0.515625 L 4.21875 -0.515625 L 4.21875 0 C 4.5 -0.03125 5.359375 -0.03125 5.6875 -0.03125 C 6.03125 -0.03125 6.890625 -0.03125 7.171875 0 Z M 7.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 6.328125 -2.625 C 6.328125 -4.234375 5.234375 -5.421875 3.359375 -5.421875 C 1.40625 -5.421875 0.375 -4.171875 0.375 -2.625 C 0.375 -1.046875 1.46875 0.078125 3.34375 0.078125 C 5.296875 0.078125 6.328125 -1.109375 6.328125 -2.625 Z M 4.90625 -2.734375 C 4.90625 -1.75 4.90625 -0.359375 3.359375 -0.359375 C 1.8125 -0.359375 1.8125 -1.75 1.8125 -2.734375 C 1.8125 -3.296875 1.8125 -3.890625 2.03125 -4.328125 C 2.296875 -4.8125 2.828125 -5.015625 3.34375 -5.015625 C 4.03125 -5.015625 4.453125 -4.703125 4.65625 -4.359375 C 4.90625 -3.9375 4.90625 -3.3125 4.90625 -2.734375 Z M 4.90625 -2.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 10.90625 0 L 10.90625 -0.515625 L 10.09375 -0.515625 L 10.09375 -3.65625 C 10.09375 -4.75 9.625 -5.375 8.28125 -5.375 C 7.078125 -5.375 6.515625 -4.5625 6.328125 -4.1875 C 6.125 -5.203125 5.3125 -5.375 4.546875 -5.375 C 3.40625 -5.375 2.78125 -4.640625 2.53125 -4.0625 L 2.515625 -4.0625 L 2.515625 -5.375 L 0.5 -5.28125 L 0.5 -4.765625 C 1.25 -4.765625 1.328125 -4.765625 1.328125 -4.296875 L 1.328125 -0.515625 L 0.5 -0.515625 L 0.5 0 C 0.78125 -0.03125 1.640625 -0.03125 1.96875 -0.03125 C 2.3125 -0.03125 3.171875 -0.03125 3.453125 0 L 3.453125 -0.515625 L 2.625 -0.515625 L 2.625 -3.0625 C 2.625 -4.359375 3.59375 -4.984375 4.34375 -4.984375 C 4.796875 -4.984375 5.0625 -4.71875 5.0625 -3.796875 L 5.0625 -0.515625 L 4.234375 -0.515625 L 4.234375 0 C 4.5 -0.03125 5.359375 -0.03125 5.703125 -0.03125 C 6.03125 -0.03125 6.90625 -0.03125 7.1875 0 L 7.1875 -0.515625 L 6.359375 -0.515625 L 6.359375 -3.0625 C 6.359375 -4.359375 7.328125 -4.984375 8.078125 -4.984375 C 8.515625 -4.984375 8.78125 -4.71875 8.78125 -3.796875 L 8.78125 -0.515625 L 7.953125 -0.515625 L 7.953125 0 C 8.234375 -0.03125 9.09375 -0.03125 9.4375 -0.03125 C 9.765625 -0.03125 10.640625 -0.03125 10.90625 0 Z M 10.90625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 6.46875 -0.265625 C 6.46875 -0.515625 6.359375 -0.515625 6.1875 -0.515625 C 5.4375 -0.53125 5.4375 -0.71875 5.4375 -0.984375 L 5.4375 -3.578125 C 5.4375 -4.671875 4.5625 -5.421875 2.875 -5.421875 C 2.21875 -5.421875 0.796875 -5.359375 0.796875 -4.34375 C 0.796875 -3.84375 1.1875 -3.640625 1.5 -3.640625 C 1.859375 -3.640625 2.21875 -3.890625 2.21875 -4.34375 C 2.21875 -4.5625 2.125 -4.78125 1.921875 -4.90625 C 2.3125 -5.015625 2.609375 -5.015625 2.828125 -5.015625 C 3.640625 -5.015625 4.140625 -4.5625 4.140625 -3.578125 L 4.140625 -3.109375 C 2.25 -3.109375 0.34375 -2.578125 0.34375 -1.25 C 0.34375 -0.171875 1.734375 0.078125 2.5625 0.078125 C 3.484375 0.078125 4.0625 -0.4375 4.296875 -0.953125 C 4.296875 -0.515625 4.296875 0 5.515625 0 L 6.125 0 C 6.375 0 6.46875 0 6.46875 -0.265625 Z M 4.140625 -1.65625 C 4.140625 -0.53125 3.125 -0.328125 2.75 -0.328125 C 2.15625 -0.328125 1.671875 -0.71875 1.671875 -1.265625 C 1.671875 -2.359375 2.96875 -2.71875 4.140625 -2.78125 Z M 4.140625 -1.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 3.421875 0 L 3.421875 -0.515625 L 2.59375 -0.515625 L 2.59375 -8.296875 L 0.53125 -8.203125 L 0.53125 -7.6875 C 1.265625 -7.6875 1.34375 -7.6875 1.34375 -7.21875 L 1.34375 -0.515625 L 0.53125 -0.515625 L 0.53125 0 C 0.796875 -0.03125 1.65625 -0.03125 1.96875 -0.03125 C 2.296875 -0.03125 3.140625 -0.03125 3.421875 0 Z M 3.421875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 5.75 -1.40625 C 5.75 -1.578125 5.5625 -1.578125 5.5 -1.578125 C 5.3125 -1.578125 5.296875 -1.546875 5.21875 -1.390625 C 4.90625 -0.609375 4.125 -0.359375 3.546875 -0.359375 C 1.8125 -0.359375 1.8125 -1.96875 1.8125 -2.640625 L 5.40625 -2.640625 C 5.671875 -2.640625 5.75 -2.640625 5.75 -2.9375 C 5.75 -3.296875 5.671875 -4.203125 5.109375 -4.75 C 4.609375 -5.265625 3.9375 -5.421875 3.25 -5.421875 C 1.390625 -5.421875 0.375 -4.203125 0.375 -2.6875 C 0.375 -1.015625 1.609375 0.078125 3.40625 0.078125 C 5.21875 0.078125 5.75 -1.1875 5.75 -1.40625 Z M 4.65625 -2.984375 L 1.8125 -2.984375 C 1.828125 -3.484375 1.84375 -3.9375 2.09375 -4.375 C 2.3125 -4.75 2.734375 -5.015625 3.25 -5.015625 C 4.53125 -5.015625 4.640625 -3.578125 4.65625 -2.984375 Z M 4.65625 -2.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 7.5 -3.234375 L 7 -3.234375 C 6.921875 -2.40625 6.734375 -0.515625 4.578125 -0.515625 L 3.296875 -0.515625 L 3.296875 -7.6875 L 4.890625 -7.6875 L 4.890625 -8.203125 L 2.609375 -8.171875 C 2.15625 -8.171875 0.796875 -8.171875 0.453125 -8.203125 L 0.453125 -7.6875 L 1.71875 -7.6875 L 1.71875 -0.515625 L 0.453125 -0.515625 L 0.453125 0 L 7.15625 0 Z M 7.5 -3.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 5.40625 -2.359375 L 4.90625 -2.359375 C 4.8125 -1.09375 4.546875 -0.4375 3.03125 -0.4375 L 1.953125 -0.4375 L 5.265625 -4.859375 C 5.359375 -4.984375 5.359375 -5.015625 5.359375 -5.078125 C 5.359375 -5.3125 5.25 -5.3125 5.015625 -5.3125 L 0.6875 -5.3125 L 0.5625 -3.25 L 1.0625 -3.25 C 1.140625 -4.390625 1.40625 -4.90625 2.71875 -4.90625 L 3.796875 -4.90625 L 0.484375 -0.484375 C 0.375 -0.34375 0.375 -0.328125 0.375 -0.234375 C 0.375 0 0.484375 0 0.71875 0 L 5.203125 0 Z M 5.40625 -2.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 3.328125 0 L 3.328125 -0.515625 L 2.59375 -0.515625 L 2.59375 -5.375 L 0.5625 -5.28125 L 0.5625 -4.765625 C 1.265625 -4.765625 1.34375 -4.765625 1.34375 -4.296875 L 1.34375 -0.515625 L 0.53125 -0.515625 L 0.53125 0 C 0.796875 -0.03125 1.625 -0.03125 1.953125 -0.03125 C 2.28125 -0.03125 3.046875 -0.03125 3.328125 0 Z M 2.734375 -7.265625 C 2.734375 -7.75 2.328125 -8.125 1.875 -8.125 C 1.390625 -8.125 1 -7.734375 1 -7.265625 C 1 -6.78125 1.40625 -6.40625 1.859375 -6.40625 C 2.359375 -6.40625 2.734375 -6.796875 2.734375 -7.265625 Z M 2.734375 -7.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 5.59375 -1.40625 C 5.59375 -1.546875 5.46875 -1.546875 5.34375 -1.546875 C 5.15625 -1.546875 5.140625 -1.53125 5.078125 -1.390625 C 5 -1.15625 4.671875 -0.359375 3.578125 -0.359375 C 1.890625 -0.359375 1.890625 -2.171875 1.890625 -2.71875 C 1.890625 -3.421875 1.90625 -4.984375 3.46875 -4.984375 C 3.546875 -4.984375 4.25 -4.953125 4.25 -4.90625 C 4.25 -4.90625 4.25 -4.875 4.21875 -4.859375 C 4.1875 -4.828125 4.03125 -4.65625 4.03125 -4.34375 C 4.03125 -3.84375 4.4375 -3.640625 4.734375 -3.640625 C 4.984375 -3.640625 5.4375 -3.796875 5.4375 -4.359375 C 5.4375 -5.34375 4.0625 -5.421875 3.421875 -5.421875 C 1.296875 -5.421875 0.453125 -4.03125 0.453125 -2.65625 C 0.453125 -1.03125 1.59375 0.078125 3.34375 0.078125 C 5.21875 0.078125 5.59375 -1.3125 5.59375 -1.40625 Z M 5.59375 -1.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 7.171875 0 L 7.171875 -0.515625 L 6.34375 -0.515625 L 6.34375 -3.65625 C 6.34375 -4.796875 5.859375 -5.375 4.546875 -5.375 C 3.328125 -5.375 2.75 -4.53125 2.578125 -4.171875 L 2.5625 -4.171875 L 2.5625 -8.296875 L 0.5 -8.203125 L 0.5 -7.6875 C 1.25 -7.6875 1.328125 -7.6875 1.328125 -7.21875 L 1.328125 -0.515625 L 0.5 -0.515625 L 0.5 0 C 0.78125 -0.03125 1.640625 -0.03125 1.96875 -0.03125 C 2.3125 -0.03125 3.171875 -0.03125 3.453125 0 L 3.453125 -0.515625 L 2.625 -0.515625 L 2.625 -3.0625 C 2.625 -4.34375 3.578125 -4.984375 4.34375 -4.984375 C 4.796875 -4.984375 5.046875 -4.703125 5.046875 -3.796875 L 5.046875 -0.515625 L 4.21875 -0.515625 L 4.21875 0 C 4.5 -0.03125 5.359375 -0.03125 5.6875 -0.03125 C 6.03125 -0.03125 6.890625 -0.03125 7.171875 0 Z M 7.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 2.71875 -4.453125 C 2.71875 -4.9375 2.328125 -5.3125 1.859375 -5.3125 C 1.40625 -5.3125 1 -4.9375 1 -4.453125 C 1 -3.953125 1.40625 -3.578125 1.859375 -3.578125 C 2.328125 -3.578125 2.71875 -3.953125 2.71875 -4.453125 Z M 2.71875 -0.859375 C 2.71875 -1.34375 2.328125 -1.71875 1.859375 -1.71875 C 1.40625 -1.71875 1 -1.34375 1 -0.859375 C 1 -0.375 1.40625 0 1.859375 0 C 2.328125 0 2.71875 -0.375 2.71875 -0.859375 Z M 2.71875 -0.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 12.25 0 L 12.25 -0.515625 L 10.984375 -0.515625 L 10.984375 -7.6875 L 12.25 -7.6875 L 12.25 -8.203125 L 9.703125 -8.203125 C 9.453125 -8.203125 9.34375 -8.203125 9.234375 -7.953125 L 6.375 -1.515625 L 3.5 -7.953125 C 3.390625 -8.203125 3.28125 -8.203125 3.03125 -8.203125 L 0.484375 -8.203125 L 0.484375 -7.6875 L 1.75 -7.6875 L 1.75 -0.875 C 1.75 -0.609375 1.75 -0.59375 1.4375 -0.546875 C 1.21875 -0.53125 0.984375 -0.515625 0.765625 -0.515625 L 0.484375 -0.515625 L 0.484375 0 C 0.765625 -0.03125 1.703125 -0.03125 2.03125 -0.03125 C 2.359375 -0.03125 3.3125 -0.03125 3.578125 0 L 3.578125 -0.515625 L 3.3125 -0.515625 C 2.984375 -0.515625 2.96875 -0.515625 2.671875 -0.546875 C 2.328125 -0.59375 2.3125 -0.609375 2.3125 -0.875 L 2.3125 -7.546875 L 2.328125 -7.546875 L 5.578125 -0.25 C 5.640625 -0.125 5.71875 0 5.921875 0 C 6.125 0 6.1875 -0.125 6.25 -0.25 L 9.5625 -7.6875 L 9.578125 -7.6875 L 9.578125 -0.515625 L 8.3125 -0.515625 L 8.3125 0 C 8.625 -0.03125 9.875 -0.03125 10.28125 -0.03125 C 10.6875 -0.03125 11.921875 -0.03125 12.25 0 Z M 12.25 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.484375 L 4.46875 -2.109375 L 3.96875 -2.109375 L 3.96875 -1.5 C 3.96875 -0.703125 3.609375 -0.359375 3.234375 -0.359375 C 2.515625 -0.359375 2.515625 -1.15625 2.515625 -1.4375 L 2.515625 -4.796875 L 4.25 -4.796875 L 4.25 -5.3125 L 2.515625 -5.3125 L 2.515625 -7.59375 L 2.015625 -7.59375 C 2.015625 -6.40625 1.4375 -5.21875 0.25 -5.1875 L 0.25 -4.796875 L 1.21875 -4.796875 L 1.21875 -1.46875 C 1.21875 -0.203125 2.203125 0.078125 3.0625 0.078125 C 3.9375 0.078125 4.46875 -0.59375 4.46875 -1.484375 Z M 4.46875 -1.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 6.796875 -4.796875 L 6.796875 -5.3125 C 6.375 -5.28125 6.34375 -5.28125 5.859375 -5.28125 L 4.828125 -5.3125 L 4.828125 -4.796875 C 5.15625 -4.796875 5.421875 -4.734375 5.421875 -4.65625 C 5.421875 -4.65625 5.421875 -4.625 5.359375 -4.5 L 3.953125 -1.4375 L 2.421875 -4.796875 L 3.078125 -4.796875 L 3.078125 -5.3125 C 2.796875 -5.28125 1.953125 -5.28125 1.640625 -5.28125 C 1.296875 -5.28125 0.59375 -5.28125 0.28125 -5.3125 L 0.28125 -4.796875 L 1.046875 -4.796875 L 3.140625 -0.234375 C 3.25 0 3.28125 0.0625 3.546875 0.0625 C 3.734375 0.0625 3.84375 0.03125 3.9375 -0.203125 L 5.921875 -4.515625 C 6 -4.703125 6.046875 -4.796875 6.796875 -4.796875 Z M 6.796875 -4.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 4.84375 -1.65625 C 4.84375 -2.234375 4.53125 -2.625 4.296875 -2.84375 C 3.796875 -3.25 3.390625 -3.328125 2.75 -3.4375 C 1.984375 -3.578125 1.265625 -3.703125 1.265625 -4.28125 C 1.265625 -5.0625 2.328125 -5.0625 2.578125 -5.0625 C 3.90625 -5.0625 3.984375 -4.21875 4 -3.921875 C 4.015625 -3.765625 4.109375 -3.765625 4.25 -3.765625 C 4.5 -3.765625 4.5 -3.796875 4.5 -4.078125 L 4.5 -5.109375 C 4.5 -5.328125 4.5 -5.421875 4.328125 -5.421875 C 4.25 -5.421875 4.234375 -5.421875 4.046875 -5.3125 C 4 -5.265625 3.875 -5.1875 3.8125 -5.15625 C 3.484375 -5.34375 3.03125 -5.421875 2.609375 -5.421875 C 2.25 -5.421875 0.453125 -5.421875 0.453125 -3.859375 C 0.453125 -2.609375 1.9375 -2.34375 2.3125 -2.28125 C 2.625 -2.21875 3.03125 -2.15625 3.078125 -2.15625 C 3.546875 -2.046875 4.03125 -1.75 4.03125 -1.25 C 4.03125 -0.328125 2.9375 -0.328125 2.6875 -0.328125 C 2.078125 -0.328125 1.328125 -0.515625 0.984375 -1.671875 C 0.921875 -1.90625 0.90625 -1.921875 0.703125 -1.921875 C 0.453125 -1.921875 0.453125 -1.890625 0.453125 -1.609375 L 0.453125 -0.234375 C 0.453125 -0.015625 0.453125 0.078125 0.640625 0.078125 C 0.71875 0.078125 0.734375 0.078125 0.984375 -0.125 L 1.296875 -0.34375 C 1.828125 0.078125 2.46875 0.078125 2.6875 0.078125 C 3.34375 0.078125 4.84375 -0.078125 4.84375 -1.65625 Z M 4.84375 -1.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 7.046875 0 L 7.046875 -0.515625 C 6.296875 -0.515625 6.21875 -0.515625 6.21875 -0.984375 L 6.21875 -8.296875 L 4.140625 -8.203125 L 4.140625 -7.6875 C 4.890625 -7.6875 4.96875 -7.6875 4.96875 -7.21875 L 4.96875 -4.8125 C 4.703125 -5.03125 4.1875 -5.375 3.359375 -5.375 C 1.65625 -5.375 0.453125 -4.328125 0.453125 -2.65625 C 0.453125 -0.9375 1.640625 0.078125 3.234375 0.078125 C 3.890625 0.078125 4.453125 -0.15625 4.90625 -0.546875 L 4.90625 0.078125 Z M 4.90625 -1.203125 C 4.40625 -0.484375 3.796875 -0.328125 3.375 -0.328125 C 1.890625 -0.328125 1.890625 -1.84375 1.890625 -2.625 C 1.890625 -3.1875 1.890625 -3.796875 2.15625 -4.25 C 2.515625 -4.90625 3.234375 -4.984375 3.5 -4.984375 C 4 -4.984375 4.515625 -4.765625 4.90625 -4.25 Z M 4.90625 -1.203125 "/>
|
||||
</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 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<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="glyph2-3">
|
||||
<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="glyph2-4">
|
||||
<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="glyph2-5">
|
||||
<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="glyph2-6">
|
||||
<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="glyph2-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="glyph2-8">
|
||||
<path style="stroke:none;" d="M 5.796875 -2.578125 L 5.546875 -2.578125 C 5.4375 -1.5625 5.296875 -0.3125 3.546875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -6.015625 C 2.25 -6.359375 2.25 -6.5 3.1875 -6.5 L 3.515625 -6.5 L 3.515625 -6.8125 C 3.15625 -6.78125 2.25 -6.78125 1.84375 -6.78125 C 1.453125 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.515625 0 Z M 5.796875 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<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="glyph2-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="glyph2-11">
|
||||
<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="glyph2-12">
|
||||
<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="glyph2-13">
|
||||
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<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="glyph2-15">
|
||||
<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="glyph2-16">
|
||||
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-17">
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 L 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 Z M 4.5625 -2.578125 L 2.328125 -2.578125 L 3.4375 -5.828125 Z M 4.5625 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-18">
|
||||
<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="glyph2-19">
|
||||
<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-20">
|
||||
<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 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-21">
|
||||
<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="glyph2-22">
|
||||
<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="glyph2-23">
|
||||
<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="glyph2-24">
|
||||
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-25">
|
||||
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-26">
|
||||
<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="glyph2-27">
|
||||
<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="glyph2-28">
|
||||
<path style="stroke:none;" d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z 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="glyph2-29">
|
||||
<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="glyph2-30">
|
||||
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-31">
|
||||
<path style="stroke:none;" d="M 7.140625 -6.5 L 7.140625 -6.8125 L 5.96875 -6.78125 L 4.8125 -6.8125 L 4.8125 -6.5 C 5.828125 -6.5 5.828125 -6.03125 5.828125 -5.765625 L 5.828125 -1.5 L 2.3125 -6.671875 C 2.21875 -6.796875 2.21875 -6.8125 2.03125 -6.8125 L 0.328125 -6.8125 L 0.328125 -6.5 L 0.625 -6.5 C 0.765625 -6.5 0.96875 -6.484375 1.109375 -6.484375 C 1.34375 -6.453125 1.359375 -6.4375 1.359375 -6.25 L 1.359375 -1.046875 C 1.359375 -0.78125 1.359375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.5 -0.03125 L 2.65625 0 L 2.65625 -0.3125 C 1.640625 -0.3125 1.640625 -0.78125 1.640625 -1.046875 L 1.640625 -6.234375 C 1.6875 -6.1875 1.6875 -6.171875 1.734375 -6.109375 L 5.796875 -0.125 C 5.890625 -0.015625 5.90625 0 5.96875 0 C 6.109375 0 6.109375 -0.0625 6.109375 -0.265625 L 6.109375 -5.765625 C 6.109375 -6.03125 6.109375 -6.5 7.140625 -6.5 Z M 7.140625 -6.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-32">
|
||||
<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="glyph2-33">
|
||||
<path style="stroke:none;" d="M 2.75 -1.859375 L 2.75 -2.4375 L 0.109375 -2.4375 L 0.109375 -1.859375 Z M 2.75 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-34">
|
||||
<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="glyph2-35">
|
||||
<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 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-36">
|
||||
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-37">
|
||||
<path style="stroke:none;" d="M 6.828125 -4.5 L 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 Z M 6.828125 -4.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-38">
|
||||
<path style="stroke:none;" d="M 7.046875 -3.34375 C 7.046875 -5.25 5.703125 -6.8125 4 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 L 4 0 C 5.671875 0 7.046875 -1.46875 7.046875 -3.34375 Z M 6.046875 -3.34375 C 6.046875 -2.25 5.859375 -1.640625 5.5 -1.15625 C 5.296875 -0.890625 4.734375 -0.3125 3.734375 -0.3125 L 2.71875 -0.3125 C 2.25 -0.3125 2.234375 -0.375 2.234375 -0.703125 L 2.234375 -6.09375 C 2.234375 -6.4375 2.25 -6.5 2.71875 -6.5 L 3.71875 -6.5 C 4.34375 -6.5 5.03125 -6.28125 5.53125 -5.578125 C 5.96875 -4.984375 6.046875 -4.125 6.046875 -3.34375 Z M 6.046875 -3.34375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-39">
|
||||
<path style="stroke:none;" d="M 6.078125 -4.53125 L 5.796875 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.25 -0.3125 2.25 -0.4375 2.25 -0.78125 L 2.25 -3.234375 L 3.09375 -3.234375 C 4.0625 -3.234375 4.15625 -2.921875 4.15625 -2.078125 L 4.40625 -2.078125 L 4.40625 -4.71875 L 4.15625 -4.71875 C 4.15625 -3.875 4.0625 -3.546875 3.09375 -3.546875 L 2.25 -3.546875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 3.921875 -6.46875 C 5.421875 -6.46875 5.671875 -5.90625 5.828125 -4.53125 Z M 6.078125 -4.53125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.746" y="10.73"/>
|
||||
<use xlink:href="#glyph0-2" x="10.442597" y="10.73"/>
|
||||
<use xlink:href="#glyph0-2" x="17.806501" y="10.73"/>
|
||||
<use xlink:href="#glyph0-3" x="25.170405" y="10.73"/>
|
||||
<use xlink:href="#glyph0-4" x="31.762484" y="10.73"/>
|
||||
<use xlink:href="#glyph0-2" x="38.935584" y="10.73"/>
|
||||
<use xlink:href="#glyph0-5" x="46.299489" y="10.73"/>
|
||||
<use xlink:href="#glyph0-6" x="50.782676" y="10.73"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="57.511044" y="10.73"/>
|
||||
<use xlink:href="#glyph0-2" x="66.477419" y="10.73"/>
|
||||
<use xlink:href="#glyph0-8" x="73.841324" y="10.73"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="0.746" y="34.543"/>
|
||||
<use xlink:href="#glyph1-2" x="11.261794" y="34.543"/>
|
||||
<use xlink:href="#glyph1-3" x="18.733794" y="34.543"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="28.710408" y="34.543"/>
|
||||
<use xlink:href="#glyph1-5" x="36.182408" y="34.543"/>
|
||||
<use xlink:href="#glyph1-3" x="42.907208" y="34.543"/>
|
||||
<use xlink:href="#glyph1-6" x="48.400623" y="34.543"/>
|
||||
<use xlink:href="#glyph1-7" x="59.608623" y="34.543"/>
|
||||
<use xlink:href="#glyph1-8" x="66.146922" y="34.543"/>
|
||||
<use xlink:href="#glyph1-9" x="69.882922" y="34.543"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="80.502726" y="34.543"/>
|
||||
<use xlink:href="#glyph1-9" x="88.583245" y="34.543"/>
|
||||
<use xlink:href="#glyph1-9" x="94.71985" y="34.543"/>
|
||||
<use xlink:href="#glyph1-3" x="100.856454" y="34.543"/>
|
||||
<use xlink:href="#glyph1-11" x="106.349868" y="34.543"/>
|
||||
<use xlink:href="#glyph1-9" x="112.327468" y="34.543"/>
|
||||
<use xlink:href="#glyph1-12" x="118.464072" y="34.543"/>
|
||||
<use xlink:href="#glyph1-13" x="122.200072" y="34.543"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="127.807061" y="34.543"/>
|
||||
<use xlink:href="#glyph1-9" x="135.279061" y="34.543"/>
|
||||
<use xlink:href="#glyph1-4" x="141.415665" y="34.543"/>
|
||||
<use xlink:href="#glyph1-15" x="148.887665" y="34.543"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="0.746" y="52.933"/>
|
||||
<use xlink:href="#glyph2-2" x="6.281221" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="10.430643" y="52.933"/>
|
||||
<use xlink:href="#glyph2-4" x="15.965864" y="52.933"/>
|
||||
<use xlink:href="#glyph2-5" x="24.267699" y="52.933"/>
|
||||
<use xlink:href="#glyph2-6" x="29.248999" y="52.933"/>
|
||||
<use xlink:href="#glyph2-7" x="32.016609" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="39.852194" y="52.933"/>
|
||||
<use xlink:href="#glyph2-7" x="46.078819" y="52.933"/>
|
||||
<use xlink:href="#glyph2-7" x="50.507194" y="52.933"/>
|
||||
<use xlink:href="#glyph2-9" x="54.93557" y="52.933"/>
|
||||
<use xlink:href="#glyph2-10" x="58.837921" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="63.256334" y="52.933"/>
|
||||
<use xlink:href="#glyph2-11" x="67.684709" y="52.933"/>
|
||||
<use xlink:href="#glyph2-2" x="70.45232" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="74.611705" y="52.933"/>
|
||||
<use xlink:href="#glyph2-7" x="80.146926" y="52.933"/>
|
||||
<use xlink:href="#glyph2-12" x="84.575301" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-13" x="93.507769" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="100.423806" y="52.933"/>
|
||||
<use xlink:href="#glyph2-9" x="104.852181" y="52.933"/>
|
||||
<use xlink:href="#glyph2-14" x="108.754532" y="52.933"/>
|
||||
<use xlink:href="#glyph2-7" x="114.289752" y="52.933"/>
|
||||
<use xlink:href="#glyph2-12" x="118.718128" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="127.660558" y="52.933"/>
|
||||
<use xlink:href="#glyph2-15" x="132.088933" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-16" x="138.25379" y="52.933"/>
|
||||
<use xlink:href="#glyph2-15" x="145.3103" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-11" x="151.485119" y="52.933"/>
|
||||
<use xlink:href="#glyph2-12" x="154.25273" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-17" x="163.195159" y="52.933"/>
|
||||
<use xlink:href="#glyph2-18" x="170.667109" y="52.933"/>
|
||||
<use xlink:href="#glyph2-19" x="176.20233" y="52.933"/>
|
||||
<use xlink:href="#glyph2-20" x="181.46059" y="52.933"/>
|
||||
<use xlink:href="#glyph2-9" x="186.995811" y="52.933"/>
|
||||
<use xlink:href="#glyph2-10" x="190.898161" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="195.316574" y="52.933"/>
|
||||
<use xlink:href="#glyph2-12" x="200.851795" y="52.933"/>
|
||||
<use xlink:href="#glyph2-22" x="206.387015" y="52.933"/>
|
||||
<use xlink:href="#glyph2-7" x="211.368315" y="52.933"/>
|
||||
<use xlink:href="#glyph2-12" x="215.796691" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="224.739121" y="52.933"/>
|
||||
<use xlink:href="#glyph2-12" x="230.274341" y="52.933"/>
|
||||
<use xlink:href="#glyph2-14" x="235.809562" y="52.933"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="0.746" y="64.888"/>
|
||||
<use xlink:href="#glyph2-13" x="5.174376" y="64.888"/>
|
||||
<use xlink:href="#glyph2-11" x="12.369365" y="64.888"/>
|
||||
<use xlink:href="#glyph2-23" x="15.136976" y="64.888"/>
|
||||
<use xlink:href="#glyph2-2" x="19.067221" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="23.216644" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="28.751865" y="64.888"/>
|
||||
<use xlink:href="#glyph2-12" x="33.180241" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-24" x="40.976971" y="64.888"/>
|
||||
<use xlink:href="#glyph2-5" x="47.065116" y="64.888"/>
|
||||
<use xlink:href="#glyph2-3" x="52.046416" y="64.888"/>
|
||||
<use xlink:href="#glyph2-6" x="57.581637" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="60.349247" y="64.888"/>
|
||||
<use xlink:href="#glyph2-12" x="64.777623" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="72.574353" y="64.888"/>
|
||||
<use xlink:href="#glyph2-12" x="78.109574" y="64.888"/>
|
||||
<use xlink:href="#glyph2-14" x="83.644795" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-25" x="91.441525" y="64.888"/>
|
||||
<use xlink:href="#glyph2-11" x="98.222071" y="64.888"/>
|
||||
<use xlink:href="#glyph2-12" x="100.989681" y="64.888"/>
|
||||
<use xlink:href="#glyph2-3" x="106.524902" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="112.060122" y="64.888"/>
|
||||
<use xlink:href="#glyph2-11" x="116.488498" y="64.888"/>
|
||||
<use xlink:href="#glyph2-26" x="119.256108" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="123.130563" y="64.888"/>
|
||||
<use xlink:href="#glyph2-12" x="127.558939" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-27" x="135.35567" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="140.334977" y="64.888"/>
|
||||
<use xlink:href="#glyph2-9" x="144.763353" y="64.888"/>
|
||||
<use xlink:href="#glyph2-13" x="148.665704" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="155.591703" y="64.888"/>
|
||||
<use xlink:href="#glyph2-12" x="160.020079" y="64.888"/>
|
||||
<use xlink:href="#glyph2-14" x="165.555299" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="171.080557" y="64.888"/>
|
||||
<use xlink:href="#glyph2-26" x="175.508933" y="64.888"/>
|
||||
<use xlink:href="#glyph2-28" x="179.383388" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-29" x="184.422471" y="64.888"/>
|
||||
<use xlink:href="#glyph2-30" x="189.403771" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-23" x="196.646581" y="64.888"/>
|
||||
<use xlink:href="#glyph2-15" x="200.576827" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-31" x="205.61591" y="64.888"/>
|
||||
<use xlink:href="#glyph2-32" x="213.08786" y="64.888"/>
|
||||
<use xlink:href="#glyph2-9" x="218.06916" y="64.888"/>
|
||||
<use xlink:href="#glyph2-4" x="221.971511" y="64.888"/>
|
||||
<use xlink:href="#glyph2-5" x="230.273345" y="64.888"/>
|
||||
<use xlink:href="#glyph2-6" x="235.254645" y="64.888"/>
|
||||
<use xlink:href="#glyph2-33" x="238.022255" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-18" x="0.746" y="76.843"/>
|
||||
<use xlink:href="#glyph2-9" x="6.281221" y="76.843"/>
|
||||
<use xlink:href="#glyph2-7" x="10.183571" y="76.843"/>
|
||||
<use xlink:href="#glyph2-11" x="14.611947" y="76.843"/>
|
||||
<use xlink:href="#glyph2-26" x="17.379557" y="76.843"/>
|
||||
<use xlink:href="#glyph2-7" x="21.254012" y="76.843"/>
|
||||
<use xlink:href="#glyph2-34" x="25.682388" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="32.454963" y="76.843"/>
|
||||
<use xlink:href="#glyph2-18" x="37.436263" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="43.250437" y="76.843"/>
|
||||
<use xlink:href="#glyph2-9" x="47.678812" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-22" x="55.586128" y="76.843"/>
|
||||
<use xlink:href="#glyph2-7" x="60.567428" y="76.843"/>
|
||||
<use xlink:href="#glyph2-23" x="64.995804" y="76.843"/>
|
||||
<use xlink:href="#glyph2-2" x="68.926049" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="73.075472" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-20" x="78.33174" y="76.843"/>
|
||||
<use xlink:href="#glyph2-26" x="83.866961" y="76.843"/>
|
||||
<use xlink:href="#glyph2-10" x="87.741416" y="76.843"/>
|
||||
<use xlink:href="#glyph2-26" x="92.169791" y="76.843"/>
|
||||
<use xlink:href="#glyph2-7" x="96.044247" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="104.477587" y="76.843"/>
|
||||
<use xlink:href="#glyph2-7" x="110.704212" y="76.843"/>
|
||||
<use xlink:href="#glyph2-7" x="115.132588" y="76.843"/>
|
||||
<use xlink:href="#glyph2-9" x="119.560964" y="76.843"/>
|
||||
<use xlink:href="#glyph2-10" x="123.463314" y="76.843"/>
|
||||
<use xlink:href="#glyph2-7" x="127.89169" y="76.843"/>
|
||||
<use xlink:href="#glyph2-11" x="132.320066" y="76.843"/>
|
||||
<use xlink:href="#glyph2-2" x="135.087676" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="139.237099" y="76.843"/>
|
||||
<use xlink:href="#glyph2-7" x="144.772319" y="76.843"/>
|
||||
<use xlink:href="#glyph2-12" x="149.200695" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-19" x="158.740881" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-35" x="163.730151" y="76.843"/>
|
||||
<use xlink:href="#glyph2-12" x="168.711451" y="76.843"/>
|
||||
<use xlink:href="#glyph2-12" x="174.246672" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="179.771929" y="76.843"/>
|
||||
<use xlink:href="#glyph2-12" x="184.200305" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="193.750454" y="76.843"/>
|
||||
<use xlink:href="#glyph2-15" x="199.285674" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="206.05825" y="76.843"/>
|
||||
<use xlink:href="#glyph2-15" x="211.03955" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="217.822088" y="76.843"/>
|
||||
<use xlink:href="#glyph2-5" x="223.357308" y="76.843"/>
|
||||
<use xlink:href="#glyph2-18" x="228.338608" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="234.142819" y="76.843"/>
|
||||
<use xlink:href="#glyph2-11" x="238.571195" y="76.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="0.746" y="88.798"/>
|
||||
<use xlink:href="#glyph2-7" x="6.281221" y="88.798"/>
|
||||
<use xlink:href="#glyph2-6" x="10.709596" y="88.798"/>
|
||||
<use xlink:href="#glyph2-36" x="13.477207" y="88.798"/>
|
||||
<use xlink:href="#glyph2-7" x="16.521777" y="88.798"/>
|
||||
<use xlink:href="#glyph2-12" x="20.950153" y="88.798"/>
|
||||
<use xlink:href="#glyph2-34" x="26.485373" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-37" x="33.666415" y="88.798"/>
|
||||
<use xlink:href="#glyph2-11" x="40.861405" y="88.798"/>
|
||||
<use xlink:href="#glyph2-26" x="43.629015" y="88.798"/>
|
||||
<use xlink:href="#glyph2-7" x="47.503471" y="88.798"/>
|
||||
<use xlink:href="#glyph2-6" x="51.931846" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="59.122851" y="88.798"/>
|
||||
<use xlink:href="#glyph2-12" x="64.658072" y="88.798"/>
|
||||
<use xlink:href="#glyph2-14" x="70.193292" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-31" x="80.141944" y="88.798"/>
|
||||
<use xlink:href="#glyph2-5" x="87.613894" y="88.798"/>
|
||||
<use xlink:href="#glyph2-4" x="92.595194" y="88.798"/>
|
||||
<use xlink:href="#glyph2-7" x="100.897029" y="88.798"/>
|
||||
<use xlink:href="#glyph2-12" x="105.325405" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-11" x="115.274057" y="88.798"/>
|
||||
<use xlink:href="#glyph2-12" x="118.041667" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="128.000282" y="88.798"/>
|
||||
<use xlink:href="#glyph2-11" x="132.428658" y="88.798"/>
|
||||
<use xlink:href="#glyph2-12" x="135.196268" y="88.798"/>
|
||||
<use xlink:href="#glyph2-7" x="140.731489" y="88.798"/>
|
||||
<use xlink:href="#glyph2-9" x="145.159865" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-24" x="153.475647" y="88.798"/>
|
||||
<use xlink:href="#glyph2-7" x="159.563792" y="88.798"/>
|
||||
<use xlink:href="#glyph2-11" x="163.992167" y="88.798"/>
|
||||
<use xlink:href="#glyph2-6" x="166.759778" y="88.798"/>
|
||||
<use xlink:href="#glyph2-7" x="169.527388" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="178.369195" y="88.798"/>
|
||||
<use xlink:href="#glyph2-21" x="182.797571" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="192.756186" y="88.798"/>
|
||||
<use xlink:href="#glyph2-5" x="198.291407" y="88.798"/>
|
||||
<use xlink:href="#glyph2-6" x="203.272707" y="88.798"/>
|
||||
<use xlink:href="#glyph2-26" x="206.040317" y="88.798"/>
|
||||
<use xlink:href="#glyph2-7" x="209.914772" y="88.798"/>
|
||||
<use xlink:href="#glyph2-12" x="214.343148" y="88.798"/>
|
||||
<use xlink:href="#glyph2-28" x="219.878368" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-38" x="227.05941" y="88.798"/>
|
||||
<use xlink:href="#glyph2-9" x="234.669841" y="88.798"/>
|
||||
<use xlink:href="#glyph2-15" x="238.572191" y="88.798"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-39" x="0.746" y="100.753"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="6.422689" y="100.753"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="11.67298" y="100.753"/>
|
||||
<use xlink:href="#glyph2-18" x="16.65428" y="100.753"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="22.468453" y="100.753"/>
|
||||
<use xlink:href="#glyph2-5" x="27.449753" y="100.753"/>
|
||||
<use xlink:href="#glyph2-9" x="32.431053" y="100.753"/>
|
||||
<use xlink:href="#glyph2-15" x="36.333403" y="100.753"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="0.746" y="128.642"/>
|
||||
<use xlink:href="#glyph1-12" x="13.504589" y="128.642"/>
|
||||
<use xlink:href="#glyph1-17" x="17.240589" y="128.642"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="26.954189" y="128.642"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="33.68138" y="128.642"/>
|
||||
<use xlink:href="#glyph1-3" x="39.817985" y="128.642"/>
|
||||
<use xlink:href="#glyph1-19" x="45.311399" y="128.642"/>
|
||||
<use xlink:href="#glyph1-13" x="50.615921" y="128.642"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="56.22291" y="128.642"/>
|
||||
<use xlink:href="#glyph1-12" x="63.69491" y="128.642"/>
|
||||
<use xlink:href="#glyph1-9" x="67.43091" y="128.642"/>
|
||||
<use xlink:href="#glyph1-20" x="73.567514" y="128.642"/>
|
||||
<use xlink:href="#glyph1-9" x="81.039514" y="128.642"/>
|
||||
<use xlink:href="#glyph1-4" x="87.176118" y="128.642"/>
|
||||
<use xlink:href="#glyph1-9" x="94.648118" y="128.642"/>
|
||||
<use xlink:href="#glyph1-4" x="100.784723" y="128.642"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="112.739923" y="128.642"/>
|
||||
<use xlink:href="#glyph1-9" x="120.820442" y="128.642"/>
|
||||
<use xlink:href="#glyph1-9" x="126.957046" y="128.642"/>
|
||||
<use xlink:href="#glyph1-3" x="133.093651" y="128.642"/>
|
||||
<use xlink:href="#glyph1-11" x="138.587065" y="128.642"/>
|
||||
<use xlink:href="#glyph1-9" x="144.564665" y="128.642"/>
|
||||
<use xlink:href="#glyph1-12" x="150.701269" y="128.642"/>
|
||||
<use xlink:href="#glyph1-13" x="154.437269" y="128.642"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="160.044258" y="128.642"/>
|
||||
<use xlink:href="#glyph1-9" x="167.516258" y="128.642"/>
|
||||
<use xlink:href="#glyph1-4" x="173.652862" y="128.642"/>
|
||||
<use xlink:href="#glyph1-15" x="181.124862" y="128.642"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="0.746" y="147.031"/>
|
||||
<use xlink:href="#glyph2-2" x="6.281221" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="10.430643" y="147.031"/>
|
||||
<use xlink:href="#glyph2-4" x="15.965864" y="147.031"/>
|
||||
<use xlink:href="#glyph2-5" x="24.267699" y="147.031"/>
|
||||
<use xlink:href="#glyph2-6" x="29.248999" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="32.016609" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="40.141109" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="46.367734" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="50.79611" y="147.031"/>
|
||||
<use xlink:href="#glyph2-9" x="55.224486" y="147.031"/>
|
||||
<use xlink:href="#glyph2-10" x="59.126836" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="63.555212" y="147.031"/>
|
||||
<use xlink:href="#glyph2-11" x="67.983587" y="147.031"/>
|
||||
<use xlink:href="#glyph2-2" x="70.751198" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="74.900621" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="80.435841" y="147.031"/>
|
||||
<use xlink:href="#glyph2-12" x="84.864217" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-13" x="94.085599" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="101.011599" y="147.031"/>
|
||||
<use xlink:href="#glyph2-9" x="105.439975" y="147.031"/>
|
||||
<use xlink:href="#glyph2-14" x="109.342325" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="114.877546" y="147.031"/>
|
||||
<use xlink:href="#glyph2-12" x="119.305921" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="128.527304" y="147.031"/>
|
||||
<use xlink:href="#glyph2-15" x="132.95568" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-16" x="137.387044" y="147.031"/>
|
||||
<use xlink:href="#glyph2-15" x="144.443554" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-11" x="150.907289" y="147.031"/>
|
||||
<use xlink:href="#glyph2-12" x="153.674899" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-17" x="162.896281" y="147.031"/>
|
||||
<use xlink:href="#glyph2-18" x="170.368231" y="147.031"/>
|
||||
<use xlink:href="#glyph2-19" x="175.903452" y="147.031"/>
|
||||
<use xlink:href="#glyph2-20" x="181.161712" y="147.031"/>
|
||||
<use xlink:href="#glyph2-9" x="186.696933" y="147.031"/>
|
||||
<use xlink:href="#glyph2-10" x="190.599283" y="147.031"/>
|
||||
<use xlink:href="#glyph2-21" x="195.027659" y="147.031"/>
|
||||
<use xlink:href="#glyph2-12" x="200.562879" y="147.031"/>
|
||||
<use xlink:href="#glyph2-22" x="206.0981" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="211.0794" y="147.031"/>
|
||||
<use xlink:href="#glyph2-12" x="215.507776" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="224.739121" y="147.031"/>
|
||||
<use xlink:href="#glyph2-12" x="230.274341" y="147.031"/>
|
||||
<use xlink:href="#glyph2-14" x="235.809562" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="0.746" y="158.986"/>
|
||||
<use xlink:href="#glyph2-13" x="5.174376" y="158.986"/>
|
||||
<use xlink:href="#glyph2-11" x="12.369365" y="158.986"/>
|
||||
<use xlink:href="#glyph2-23" x="15.136976" y="158.986"/>
|
||||
<use xlink:href="#glyph2-2" x="19.067221" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="23.216644" y="158.986"/>
|
||||
<use xlink:href="#glyph2-7" x="28.751865" y="158.986"/>
|
||||
<use xlink:href="#glyph2-12" x="33.180241" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-24" x="43.756537" y="158.986"/>
|
||||
<use xlink:href="#glyph2-5" x="49.844682" y="158.986"/>
|
||||
<use xlink:href="#glyph2-3" x="54.825982" y="158.986"/>
|
||||
<use xlink:href="#glyph2-6" x="60.361202" y="158.986"/>
|
||||
<use xlink:href="#glyph2-7" x="63.128812" y="158.986"/>
|
||||
<use xlink:href="#glyph2-12" x="67.557188" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="78.123522" y="158.986"/>
|
||||
<use xlink:href="#glyph2-12" x="83.658742" y="158.986"/>
|
||||
<use xlink:href="#glyph2-14" x="89.193963" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-25" x="99.770259" y="158.986"/>
|
||||
<use xlink:href="#glyph2-11" x="106.550805" y="158.986"/>
|
||||
<use xlink:href="#glyph2-12" x="109.318415" y="158.986"/>
|
||||
<use xlink:href="#glyph2-3" x="114.853635" y="158.986"/>
|
||||
<use xlink:href="#glyph2-7" x="120.388856" y="158.986"/>
|
||||
<use xlink:href="#glyph2-11" x="124.817232" y="158.986"/>
|
||||
<use xlink:href="#glyph2-26" x="127.584842" y="158.986"/>
|
||||
<use xlink:href="#glyph2-7" x="131.459297" y="158.986"/>
|
||||
<use xlink:href="#glyph2-12" x="135.887673" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-27" x="146.454006" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="151.433314" y="158.986"/>
|
||||
<use xlink:href="#glyph2-9" x="155.861689" y="158.986"/>
|
||||
<use xlink:href="#glyph2-13" x="159.76404" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="166.690039" y="158.986"/>
|
||||
<use xlink:href="#glyph2-12" x="171.118415" y="158.986"/>
|
||||
<use xlink:href="#glyph2-14" x="176.653636" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="182.178894" y="158.986"/>
|
||||
<use xlink:href="#glyph2-26" x="186.607269" y="158.986"/>
|
||||
<use xlink:href="#glyph2-28" x="190.481724" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-29" x="198.300373" y="158.986"/>
|
||||
<use xlink:href="#glyph2-30" x="203.281673" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-23" x="209.916765" y="158.986"/>
|
||||
<use xlink:href="#glyph2-15" x="213.84701" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-31" x="221.665659" y="158.986"/>
|
||||
<use xlink:href="#glyph2-32" x="229.137609" y="158.986"/>
|
||||
<use xlink:href="#glyph2-9" x="234.118909" y="158.986"/>
|
||||
<use xlink:href="#glyph2-33" x="238.021259" y="158.986"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="0.746" y="170.941"/>
|
||||
<use xlink:href="#glyph2-5" x="9.047835" y="170.941"/>
|
||||
<use xlink:href="#glyph2-6" x="14.029135" y="170.941"/>
|
||||
<use xlink:href="#glyph2-18" x="16.796745" y="170.941"/>
|
||||
<use xlink:href="#glyph2-9" x="22.331965" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="26.234316" y="170.941"/>
|
||||
<use xlink:href="#glyph2-11" x="30.662692" y="170.941"/>
|
||||
<use xlink:href="#glyph2-26" x="33.430302" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="37.304757" y="170.941"/>
|
||||
<use xlink:href="#glyph2-34" x="41.733133" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="47.838214" y="170.941"/>
|
||||
<use xlink:href="#glyph2-18" x="52.819514" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="58.633687" y="170.941"/>
|
||||
<use xlink:href="#glyph2-9" x="63.062063" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-22" x="70.301884" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="75.283184" y="170.941"/>
|
||||
<use xlink:href="#glyph2-23" x="79.71156" y="170.941"/>
|
||||
<use xlink:href="#glyph2-2" x="83.641806" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="87.791229" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-20" x="93.047496" y="170.941"/>
|
||||
<use xlink:href="#glyph2-26" x="98.582717" y="170.941"/>
|
||||
<use xlink:href="#glyph2-10" x="102.457172" y="170.941"/>
|
||||
<use xlink:href="#glyph2-26" x="106.885548" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="110.760003" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="118.52585" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="124.752475" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="129.18085" y="170.941"/>
|
||||
<use xlink:href="#glyph2-9" x="133.609226" y="170.941"/>
|
||||
<use xlink:href="#glyph2-10" x="137.511577" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="141.939952" y="170.941"/>
|
||||
<use xlink:href="#glyph2-11" x="146.368328" y="170.941"/>
|
||||
<use xlink:href="#glyph2-2" x="149.135938" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="153.285361" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="158.820582" y="170.941"/>
|
||||
<use xlink:href="#glyph2-12" x="163.248957" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-19" x="172.121649" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-35" x="177.100956" y="170.941"/>
|
||||
<use xlink:href="#glyph2-12" x="182.082256" y="170.941"/>
|
||||
<use xlink:href="#glyph2-12" x="187.617477" y="170.941"/>
|
||||
<use xlink:href="#glyph2-7" x="193.152698" y="170.941"/>
|
||||
<use xlink:href="#glyph2-12" x="197.581073" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="206.453765" y="170.941"/>
|
||||
<use xlink:href="#glyph2-15" x="211.988985" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="216.42035" y="170.941"/>
|
||||
<use xlink:href="#glyph2-15" x="221.40165" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="227.506731" y="170.941"/>
|
||||
<use xlink:href="#glyph2-5" x="233.041952" y="170.941"/>
|
||||
<use xlink:href="#glyph2-33" x="238.023252" y="170.941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-18" x="0.746" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="6.560173" y="182.896"/>
|
||||
<use xlink:href="#glyph2-11" x="10.988549" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="18.309068" y="182.896"/>
|
||||
<use xlink:href="#glyph2-7" x="23.844288" y="182.896"/>
|
||||
<use xlink:href="#glyph2-6" x="28.272664" y="182.896"/>
|
||||
<use xlink:href="#glyph2-36" x="31.040274" y="182.896"/>
|
||||
<use xlink:href="#glyph2-7" x="34.084845" y="182.896"/>
|
||||
<use xlink:href="#glyph2-12" x="38.51322" y="182.896"/>
|
||||
<use xlink:href="#glyph2-34" x="44.048441" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-37" x="51.378922" y="182.896"/>
|
||||
<use xlink:href="#glyph2-11" x="58.573912" y="182.896"/>
|
||||
<use xlink:href="#glyph2-26" x="61.341522" y="182.896"/>
|
||||
<use xlink:href="#glyph2-7" x="65.215977" y="182.896"/>
|
||||
<use xlink:href="#glyph2-6" x="69.644353" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="76.974834" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="82.500092" y="182.896"/>
|
||||
<use xlink:href="#glyph2-14" x="88.035312" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-31" x="98.133404" y="182.896"/>
|
||||
<use xlink:href="#glyph2-5" x="105.605354" y="182.896"/>
|
||||
<use xlink:href="#glyph2-4" x="110.586654" y="182.896"/>
|
||||
<use xlink:href="#glyph2-7" x="118.888488" y="182.896"/>
|
||||
<use xlink:href="#glyph2-12" x="123.316864" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-11" x="133.414955" y="182.896"/>
|
||||
<use xlink:href="#glyph2-12" x="136.182566" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="146.270694" y="182.896"/>
|
||||
<use xlink:href="#glyph2-11" x="150.69907" y="182.896"/>
|
||||
<use xlink:href="#glyph2-12" x="153.46668" y="182.896"/>
|
||||
<use xlink:href="#glyph2-7" x="159.001901" y="182.896"/>
|
||||
<use xlink:href="#glyph2-9" x="163.430277" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-24" x="171.895498" y="182.896"/>
|
||||
<use xlink:href="#glyph2-7" x="177.983643" y="182.896"/>
|
||||
<use xlink:href="#glyph2-11" x="182.412018" y="182.896"/>
|
||||
<use xlink:href="#glyph2-6" x="185.179629" y="182.896"/>
|
||||
<use xlink:href="#glyph2-7" x="187.947239" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="196.928523" y="182.896"/>
|
||||
<use xlink:href="#glyph2-21" x="201.356899" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="211.45499" y="182.896"/>
|
||||
<use xlink:href="#glyph2-5" x="216.990211" y="182.896"/>
|
||||
<use xlink:href="#glyph2-6" x="221.971511" y="182.896"/>
|
||||
<use xlink:href="#glyph2-26" x="224.739121" y="182.896"/>
|
||||
<use xlink:href="#glyph2-7" x="228.613576" y="182.896"/>
|
||||
<use xlink:href="#glyph2-12" x="233.041952" y="182.896"/>
|
||||
<use xlink:href="#glyph2-28" x="238.577172" y="182.896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-38" x="0.746" y="194.852"/>
|
||||
<use xlink:href="#glyph2-9" x="8.35643" y="194.852"/>
|
||||
<use xlink:href="#glyph2-15" x="12.258781" y="194.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-39" x="18.343937" y="194.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="24.020626" y="194.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="29.280879" y="194.852"/>
|
||||
<use xlink:href="#glyph2-18" x="34.262179" y="194.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="40.06639" y="194.852"/>
|
||||
<use xlink:href="#glyph2-5" x="45.04769" y="194.852"/>
|
||||
<use xlink:href="#glyph2-9" x="50.02899" y="194.852"/>
|
||||
<use xlink:href="#glyph2-15" x="53.93134" y="194.852"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 87 KiB |
899
sections/german/05/leerzeichen-orig.svg
Normal file
@ -0,0 +1,899 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.276pt" height="841.89pt" viewBox="0 0 595.276 841.89" 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 9.015625 -3.875 L 8.40625 -3.875 C 8.3125 -2.890625 8.078125 -0.609375 5.5 -0.609375 L 3.953125 -0.609375 L 3.953125 -9.21875 L 5.859375 -9.21875 L 5.859375 -9.84375 L 3.125 -9.8125 C 2.59375 -9.8125 0.96875 -9.8125 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 L 8.59375 0 Z M 9.015625 -3.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 6.90625 -1.671875 C 6.90625 -1.890625 6.6875 -1.890625 6.59375 -1.890625 C 6.375 -1.890625 6.359375 -1.84375 6.265625 -1.65625 C 5.890625 -0.734375 4.953125 -0.4375 4.265625 -0.4375 C 2.1875 -0.4375 2.171875 -2.359375 2.171875 -3.171875 L 6.484375 -3.171875 C 6.8125 -3.171875 6.90625 -3.171875 6.90625 -3.53125 C 6.90625 -3.953125 6.796875 -5.03125 6.140625 -5.703125 C 5.53125 -6.3125 4.734375 -6.5 3.90625 -6.5 C 1.65625 -6.5 0.4375 -5.03125 0.4375 -3.234375 C 0.4375 -1.21875 1.921875 0.09375 4.09375 0.09375 C 6.25 0.09375 6.90625 -1.4375 6.90625 -1.671875 Z M 5.578125 -3.578125 L 2.171875 -3.578125 C 2.1875 -4.171875 2.203125 -4.734375 2.515625 -5.25 C 2.78125 -5.703125 3.28125 -6.03125 3.90625 -6.03125 C 5.4375 -6.03125 5.5625 -4.296875 5.578125 -3.578125 Z M 5.578125 -3.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 6.125 -5.328125 C 6.125 -6.046875 5.375 -6.453125 4.6875 -6.453125 C 3.5625 -6.453125 3.0625 -5.46875 2.875 -4.859375 L 2.859375 -4.859375 L 2.859375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 -0.609375 L 0.5 -0.609375 L 0.5 0 C 0.828125 -0.03125 1.90625 -0.03125 2.3125 -0.03125 C 2.71875 -0.03125 3.890625 -0.03125 4.234375 0 L 4.234375 -0.609375 L 2.984375 -0.609375 L 2.984375 -3.234375 C 2.984375 -3.703125 3.078125 -5.984375 4.765625 -5.984375 C 4.5625 -5.828125 4.453125 -5.578125 4.453125 -5.328125 C 4.453125 -4.734375 4.9375 -4.484375 5.296875 -4.484375 C 5.65625 -4.484375 6.125 -4.734375 6.125 -5.328125 Z M 6.125 -5.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 6.484375 -2.84375 L 5.875 -2.84375 C 5.765625 -1.3125 5.453125 -0.515625 3.640625 -0.515625 L 2.34375 -0.515625 L 6.3125 -5.828125 C 6.4375 -5.984375 6.4375 -6.015625 6.4375 -6.09375 C 6.4375 -6.375 6.296875 -6.375 6.03125 -6.375 L 0.828125 -6.375 L 0.671875 -3.90625 L 1.28125 -3.90625 C 1.359375 -5.265625 1.671875 -5.890625 3.265625 -5.890625 L 4.5625 -5.890625 L 0.578125 -0.578125 C 0.4375 -0.421875 0.4375 -0.390625 0.4375 -0.28125 C 0.4375 0 0.578125 0 0.859375 0 L 6.234375 0 Z M 6.484375 -2.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4 0 L 4 -0.609375 L 3.109375 -0.609375 L 3.109375 -6.453125 L 0.671875 -6.34375 L 0.671875 -5.71875 C 1.515625 -5.71875 1.625 -5.71875 1.625 -5.15625 L 1.625 -0.609375 L 0.625 -0.609375 L 0.625 0 C 0.96875 -0.03125 1.953125 -0.03125 2.34375 -0.03125 C 2.734375 -0.03125 3.65625 -0.03125 4 0 Z M 3.28125 -8.71875 C 3.28125 -9.3125 2.796875 -9.75 2.25 -9.75 C 1.65625 -9.75 1.203125 -9.28125 1.203125 -8.71875 C 1.203125 -8.140625 1.6875 -7.6875 2.234375 -7.6875 C 2.828125 -7.6875 3.28125 -8.15625 3.28125 -8.71875 Z M 3.28125 -8.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 6.71875 -1.671875 C 6.71875 -1.84375 6.5625 -1.84375 6.40625 -1.84375 C 6.1875 -1.84375 6.171875 -1.84375 6.09375 -1.65625 C 6 -1.390625 5.609375 -0.4375 4.28125 -0.4375 C 2.265625 -0.4375 2.265625 -2.609375 2.265625 -3.25 C 2.265625 -4.109375 2.28125 -5.984375 4.15625 -5.984375 C 4.265625 -5.984375 5.109375 -5.953125 5.109375 -5.875 C 5.109375 -5.875 5.09375 -5.859375 5.0625 -5.84375 C 5.015625 -5.796875 4.828125 -5.578125 4.828125 -5.21875 C 4.828125 -4.625 5.328125 -4.375 5.6875 -4.375 C 5.984375 -4.375 6.53125 -4.5625 6.53125 -5.234375 C 6.53125 -6.40625 4.875 -6.5 4.109375 -6.5 C 1.546875 -6.5 0.546875 -4.828125 0.546875 -3.1875 C 0.546875 -1.234375 1.90625 0.09375 4.015625 0.09375 C 6.265625 0.09375 6.71875 -1.578125 6.71875 -1.671875 Z M 6.71875 -1.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4.421875 -6.453125 3.53125 -5.953125 3.046875 -4.875 L 3.03125 -4.875 L 3.03125 -6.453125 L 0.609375 -6.34375 L 0.609375 -5.71875 C 1.484375 -5.71875 1.59375 -5.71875 1.59375 -5.15625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 10.046875 -7.6875 L 10.046875 -8.203125 C 9.78125 -8.171875 8.84375 -8.171875 8.515625 -8.171875 C 8.171875 -8.171875 7.234375 -8.171875 6.953125 -8.203125 L 6.953125 -7.6875 L 7.234375 -7.6875 C 7.546875 -7.6875 7.578125 -7.6875 7.859375 -7.65625 C 8.21875 -7.609375 8.21875 -7.59375 8.21875 -7.328125 L 8.21875 -2.328125 L 3.46875 -8.0625 C 3.34375 -8.1875 3.328125 -8.203125 3.09375 -8.203125 L 0.453125 -8.203125 L 0.453125 -7.6875 L 1.71875 -7.6875 L 1.71875 -0.875 C 1.71875 -0.609375 1.703125 -0.59375 1.40625 -0.546875 C 1.1875 -0.53125 0.9375 -0.515625 0.734375 -0.515625 L 0.453125 -0.515625 L 0.453125 0 C 0.734375 -0.03125 1.65625 -0.03125 2 -0.03125 C 2.328125 -0.03125 3.28125 -0.03125 3.546875 0 L 3.546875 -0.515625 L 3.28125 -0.515625 C 2.953125 -0.515625 2.921875 -0.515625 2.640625 -0.546875 C 2.296875 -0.59375 2.28125 -0.609375 2.28125 -0.875 L 2.28125 -7.28125 L 8.203125 -0.15625 C 8.328125 -0.015625 8.34375 0 8.5 0 C 8.78125 0 8.78125 -0.078125 8.78125 -0.34375 L 8.78125 -7.328125 C 8.78125 -7.59375 8.796875 -7.609375 9.109375 -7.65625 C 9.328125 -7.671875 9.5625 -7.6875 9.78125 -7.6875 Z M 10.046875 -7.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 7.171875 0 L 7.171875 -0.515625 C 6.4375 -0.515625 6.34375 -0.515625 6.34375 -0.984375 L 6.34375 -5.375 L 4.21875 -5.28125 L 4.21875 -4.765625 C 4.953125 -4.765625 5.046875 -4.765625 5.046875 -4.296875 L 5.046875 -1.953125 C 5.046875 -1.046875 4.5 -0.328125 3.578125 -0.328125 C 2.671875 -0.328125 2.625 -0.625 2.625 -1.28125 L 2.625 -5.375 L 0.5 -5.28125 L 0.5 -4.765625 C 1.25 -4.765625 1.328125 -4.765625 1.328125 -4.296875 L 1.328125 -1.46875 C 1.328125 -0.28125 2.125 0.078125 3.40625 0.078125 C 3.6875 0.078125 4.578125 0.078125 5.09375 -0.890625 L 5.109375 -0.890625 L 5.109375 0.078125 Z M 7.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.109375 -4.4375 C 5.109375 -5.046875 4.484375 -5.375 3.90625 -5.375 C 2.96875 -5.375 2.5625 -4.546875 2.390625 -4.046875 L 2.375 -4.046875 L 2.375 -5.375 L 0.421875 -5.28125 L 0.421875 -4.765625 C 1.15625 -4.765625 1.25 -4.765625 1.25 -4.296875 L 1.25 -0.515625 L 0.421875 -0.515625 L 0.421875 0 C 0.6875 -0.03125 1.59375 -0.03125 1.921875 -0.03125 C 2.265625 -0.03125 3.234375 -0.03125 3.53125 0 L 3.53125 -0.515625 L 2.484375 -0.515625 L 2.484375 -2.6875 C 2.484375 -3.078125 2.5625 -4.984375 3.96875 -4.984375 C 3.796875 -4.859375 3.71875 -4.65625 3.71875 -4.4375 C 3.71875 -3.9375 4.109375 -3.734375 4.40625 -3.734375 C 4.703125 -3.734375 5.109375 -3.9375 5.109375 -4.4375 Z M 5.109375 -4.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 7.171875 0 L 7.171875 -0.515625 L 6.34375 -0.515625 L 6.34375 -3.65625 C 6.34375 -4.796875 5.859375 -5.375 4.546875 -5.375 C 3.6875 -5.375 2.9375 -4.953125 2.53125 -4.0625 L 2.515625 -4.0625 L 2.515625 -5.375 L 0.5 -5.28125 L 0.5 -4.765625 C 1.25 -4.765625 1.328125 -4.765625 1.328125 -4.296875 L 1.328125 -0.515625 L 0.5 -0.515625 L 0.5 0 C 0.78125 -0.03125 1.640625 -0.03125 1.96875 -0.03125 C 2.3125 -0.03125 3.171875 -0.03125 3.453125 0 L 3.453125 -0.515625 L 2.625 -0.515625 L 2.625 -3.0625 C 2.625 -4.34375 3.578125 -4.984375 4.34375 -4.984375 C 4.796875 -4.984375 5.046875 -4.703125 5.046875 -3.796875 L 5.046875 -0.515625 L 4.21875 -0.515625 L 4.21875 0 C 4.5 -0.03125 5.359375 -0.03125 5.6875 -0.03125 C 6.03125 -0.03125 6.890625 -0.03125 7.171875 0 Z M 7.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 6.328125 -2.625 C 6.328125 -4.234375 5.234375 -5.421875 3.359375 -5.421875 C 1.40625 -5.421875 0.375 -4.171875 0.375 -2.625 C 0.375 -1.046875 1.46875 0.078125 3.34375 0.078125 C 5.296875 0.078125 6.328125 -1.109375 6.328125 -2.625 Z M 4.90625 -2.734375 C 4.90625 -1.75 4.90625 -0.359375 3.359375 -0.359375 C 1.8125 -0.359375 1.8125 -1.75 1.8125 -2.734375 C 1.8125 -3.296875 1.8125 -3.890625 2.03125 -4.328125 C 2.296875 -4.8125 2.828125 -5.015625 3.34375 -5.015625 C 4.03125 -5.015625 4.453125 -4.703125 4.65625 -4.359375 C 4.90625 -3.9375 4.90625 -3.3125 4.90625 -2.734375 Z M 4.90625 -2.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 10.90625 0 L 10.90625 -0.515625 L 10.09375 -0.515625 L 10.09375 -3.65625 C 10.09375 -4.75 9.625 -5.375 8.28125 -5.375 C 7.078125 -5.375 6.515625 -4.5625 6.328125 -4.1875 C 6.125 -5.203125 5.3125 -5.375 4.546875 -5.375 C 3.40625 -5.375 2.78125 -4.640625 2.53125 -4.0625 L 2.515625 -4.0625 L 2.515625 -5.375 L 0.5 -5.28125 L 0.5 -4.765625 C 1.25 -4.765625 1.328125 -4.765625 1.328125 -4.296875 L 1.328125 -0.515625 L 0.5 -0.515625 L 0.5 0 C 0.78125 -0.03125 1.640625 -0.03125 1.96875 -0.03125 C 2.3125 -0.03125 3.171875 -0.03125 3.453125 0 L 3.453125 -0.515625 L 2.625 -0.515625 L 2.625 -3.0625 C 2.625 -4.359375 3.59375 -4.984375 4.34375 -4.984375 C 4.796875 -4.984375 5.0625 -4.71875 5.0625 -3.796875 L 5.0625 -0.515625 L 4.234375 -0.515625 L 4.234375 0 C 4.5 -0.03125 5.359375 -0.03125 5.703125 -0.03125 C 6.03125 -0.03125 6.90625 -0.03125 7.1875 0 L 7.1875 -0.515625 L 6.359375 -0.515625 L 6.359375 -3.0625 C 6.359375 -4.359375 7.328125 -4.984375 8.078125 -4.984375 C 8.515625 -4.984375 8.78125 -4.71875 8.78125 -3.796875 L 8.78125 -0.515625 L 7.953125 -0.515625 L 7.953125 0 C 8.234375 -0.03125 9.09375 -0.03125 9.4375 -0.03125 C 9.765625 -0.03125 10.640625 -0.03125 10.90625 0 Z M 10.90625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 6.46875 -0.265625 C 6.46875 -0.515625 6.359375 -0.515625 6.1875 -0.515625 C 5.4375 -0.53125 5.4375 -0.71875 5.4375 -0.984375 L 5.4375 -3.578125 C 5.4375 -4.671875 4.5625 -5.421875 2.875 -5.421875 C 2.21875 -5.421875 0.796875 -5.359375 0.796875 -4.34375 C 0.796875 -3.84375 1.1875 -3.640625 1.5 -3.640625 C 1.859375 -3.640625 2.21875 -3.890625 2.21875 -4.34375 C 2.21875 -4.5625 2.125 -4.78125 1.921875 -4.90625 C 2.3125 -5.015625 2.609375 -5.015625 2.828125 -5.015625 C 3.640625 -5.015625 4.140625 -4.5625 4.140625 -3.578125 L 4.140625 -3.109375 C 2.25 -3.109375 0.34375 -2.578125 0.34375 -1.25 C 0.34375 -0.171875 1.734375 0.078125 2.5625 0.078125 C 3.484375 0.078125 4.0625 -0.4375 4.296875 -0.953125 C 4.296875 -0.515625 4.296875 0 5.515625 0 L 6.125 0 C 6.375 0 6.46875 0 6.46875 -0.265625 Z M 4.140625 -1.65625 C 4.140625 -0.53125 3.125 -0.328125 2.75 -0.328125 C 2.15625 -0.328125 1.671875 -0.71875 1.671875 -1.265625 C 1.671875 -2.359375 2.96875 -2.71875 4.140625 -2.78125 Z M 4.140625 -1.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 3.421875 0 L 3.421875 -0.515625 L 2.59375 -0.515625 L 2.59375 -8.296875 L 0.53125 -8.203125 L 0.53125 -7.6875 C 1.265625 -7.6875 1.34375 -7.6875 1.34375 -7.21875 L 1.34375 -0.515625 L 0.53125 -0.515625 L 0.53125 0 C 0.796875 -0.03125 1.65625 -0.03125 1.96875 -0.03125 C 2.296875 -0.03125 3.140625 -0.03125 3.421875 0 Z M 3.421875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 5.75 -1.40625 C 5.75 -1.578125 5.5625 -1.578125 5.5 -1.578125 C 5.3125 -1.578125 5.296875 -1.546875 5.21875 -1.390625 C 4.90625 -0.609375 4.125 -0.359375 3.546875 -0.359375 C 1.8125 -0.359375 1.8125 -1.96875 1.8125 -2.640625 L 5.40625 -2.640625 C 5.671875 -2.640625 5.75 -2.640625 5.75 -2.9375 C 5.75 -3.296875 5.671875 -4.203125 5.109375 -4.75 C 4.609375 -5.265625 3.9375 -5.421875 3.25 -5.421875 C 1.390625 -5.421875 0.375 -4.203125 0.375 -2.6875 C 0.375 -1.015625 1.609375 0.078125 3.40625 0.078125 C 5.21875 0.078125 5.75 -1.1875 5.75 -1.40625 Z M 4.65625 -2.984375 L 1.8125 -2.984375 C 1.828125 -3.484375 1.84375 -3.9375 2.09375 -4.375 C 2.3125 -4.75 2.734375 -5.015625 3.25 -5.015625 C 4.53125 -5.015625 4.640625 -3.578125 4.65625 -2.984375 Z M 4.65625 -2.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 7.5 -3.234375 L 7 -3.234375 C 6.921875 -2.40625 6.734375 -0.515625 4.578125 -0.515625 L 3.296875 -0.515625 L 3.296875 -7.6875 L 4.890625 -7.6875 L 4.890625 -8.203125 L 2.609375 -8.171875 C 2.15625 -8.171875 0.796875 -8.171875 0.453125 -8.203125 L 0.453125 -7.6875 L 1.71875 -7.6875 L 1.71875 -0.515625 L 0.453125 -0.515625 L 0.453125 0 L 7.15625 0 Z M 7.5 -3.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 5.40625 -2.359375 L 4.90625 -2.359375 C 4.8125 -1.09375 4.546875 -0.4375 3.03125 -0.4375 L 1.953125 -0.4375 L 5.265625 -4.859375 C 5.359375 -4.984375 5.359375 -5.015625 5.359375 -5.078125 C 5.359375 -5.3125 5.25 -5.3125 5.015625 -5.3125 L 0.6875 -5.3125 L 0.5625 -3.25 L 1.0625 -3.25 C 1.140625 -4.390625 1.40625 -4.90625 2.71875 -4.90625 L 3.796875 -4.90625 L 0.484375 -0.484375 C 0.375 -0.34375 0.375 -0.328125 0.375 -0.234375 C 0.375 0 0.484375 0 0.71875 0 L 5.203125 0 Z M 5.40625 -2.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 3.328125 0 L 3.328125 -0.515625 L 2.59375 -0.515625 L 2.59375 -5.375 L 0.5625 -5.28125 L 0.5625 -4.765625 C 1.265625 -4.765625 1.34375 -4.765625 1.34375 -4.296875 L 1.34375 -0.515625 L 0.53125 -0.515625 L 0.53125 0 C 0.796875 -0.03125 1.625 -0.03125 1.953125 -0.03125 C 2.28125 -0.03125 3.046875 -0.03125 3.328125 0 Z M 2.734375 -7.265625 C 2.734375 -7.75 2.328125 -8.125 1.875 -8.125 C 1.390625 -8.125 1 -7.734375 1 -7.265625 C 1 -6.78125 1.40625 -6.40625 1.859375 -6.40625 C 2.359375 -6.40625 2.734375 -6.796875 2.734375 -7.265625 Z M 2.734375 -7.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 5.59375 -1.40625 C 5.59375 -1.546875 5.46875 -1.546875 5.34375 -1.546875 C 5.15625 -1.546875 5.140625 -1.53125 5.078125 -1.390625 C 5 -1.15625 4.671875 -0.359375 3.578125 -0.359375 C 1.890625 -0.359375 1.890625 -2.171875 1.890625 -2.71875 C 1.890625 -3.421875 1.90625 -4.984375 3.46875 -4.984375 C 3.546875 -4.984375 4.25 -4.953125 4.25 -4.90625 C 4.25 -4.90625 4.25 -4.875 4.21875 -4.859375 C 4.1875 -4.828125 4.03125 -4.65625 4.03125 -4.34375 C 4.03125 -3.84375 4.4375 -3.640625 4.734375 -3.640625 C 4.984375 -3.640625 5.4375 -3.796875 5.4375 -4.359375 C 5.4375 -5.34375 4.0625 -5.421875 3.421875 -5.421875 C 1.296875 -5.421875 0.453125 -4.03125 0.453125 -2.65625 C 0.453125 -1.03125 1.59375 0.078125 3.34375 0.078125 C 5.21875 0.078125 5.59375 -1.3125 5.59375 -1.40625 Z M 5.59375 -1.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 7.171875 0 L 7.171875 -0.515625 L 6.34375 -0.515625 L 6.34375 -3.65625 C 6.34375 -4.796875 5.859375 -5.375 4.546875 -5.375 C 3.328125 -5.375 2.75 -4.53125 2.578125 -4.171875 L 2.5625 -4.171875 L 2.5625 -8.296875 L 0.5 -8.203125 L 0.5 -7.6875 C 1.25 -7.6875 1.328125 -7.6875 1.328125 -7.21875 L 1.328125 -0.515625 L 0.5 -0.515625 L 0.5 0 C 0.78125 -0.03125 1.640625 -0.03125 1.96875 -0.03125 C 2.3125 -0.03125 3.171875 -0.03125 3.453125 0 L 3.453125 -0.515625 L 2.625 -0.515625 L 2.625 -3.0625 C 2.625 -4.34375 3.578125 -4.984375 4.34375 -4.984375 C 4.796875 -4.984375 5.046875 -4.703125 5.046875 -3.796875 L 5.046875 -0.515625 L 4.21875 -0.515625 L 4.21875 0 C 4.5 -0.03125 5.359375 -0.03125 5.6875 -0.03125 C 6.03125 -0.03125 6.890625 -0.03125 7.171875 0 Z M 7.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 2.71875 -4.453125 C 2.71875 -4.9375 2.328125 -5.3125 1.859375 -5.3125 C 1.40625 -5.3125 1 -4.9375 1 -4.453125 C 1 -3.953125 1.40625 -3.578125 1.859375 -3.578125 C 2.328125 -3.578125 2.71875 -3.953125 2.71875 -4.453125 Z M 2.71875 -0.859375 C 2.71875 -1.34375 2.328125 -1.71875 1.859375 -1.71875 C 1.40625 -1.71875 1 -1.34375 1 -0.859375 C 1 -0.375 1.40625 0 1.859375 0 C 2.328125 0 2.71875 -0.375 2.71875 -0.859375 Z M 2.71875 -0.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 12.25 0 L 12.25 -0.515625 L 10.984375 -0.515625 L 10.984375 -7.6875 L 12.25 -7.6875 L 12.25 -8.203125 L 9.703125 -8.203125 C 9.453125 -8.203125 9.34375 -8.203125 9.234375 -7.953125 L 6.375 -1.515625 L 3.5 -7.953125 C 3.390625 -8.203125 3.28125 -8.203125 3.03125 -8.203125 L 0.484375 -8.203125 L 0.484375 -7.6875 L 1.75 -7.6875 L 1.75 -0.875 C 1.75 -0.609375 1.75 -0.59375 1.4375 -0.546875 C 1.21875 -0.53125 0.984375 -0.515625 0.765625 -0.515625 L 0.484375 -0.515625 L 0.484375 0 C 0.765625 -0.03125 1.703125 -0.03125 2.03125 -0.03125 C 2.359375 -0.03125 3.3125 -0.03125 3.578125 0 L 3.578125 -0.515625 L 3.3125 -0.515625 C 2.984375 -0.515625 2.96875 -0.515625 2.671875 -0.546875 C 2.328125 -0.59375 2.3125 -0.609375 2.3125 -0.875 L 2.3125 -7.546875 L 2.328125 -7.546875 L 5.578125 -0.25 C 5.640625 -0.125 5.71875 0 5.921875 0 C 6.125 0 6.1875 -0.125 6.25 -0.25 L 9.5625 -7.6875 L 9.578125 -7.6875 L 9.578125 -0.515625 L 8.3125 -0.515625 L 8.3125 0 C 8.625 -0.03125 9.875 -0.03125 10.28125 -0.03125 C 10.6875 -0.03125 11.921875 -0.03125 12.25 0 Z M 12.25 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.484375 L 4.46875 -2.109375 L 3.96875 -2.109375 L 3.96875 -1.5 C 3.96875 -0.703125 3.609375 -0.359375 3.234375 -0.359375 C 2.515625 -0.359375 2.515625 -1.15625 2.515625 -1.4375 L 2.515625 -4.796875 L 4.25 -4.796875 L 4.25 -5.3125 L 2.515625 -5.3125 L 2.515625 -7.59375 L 2.015625 -7.59375 C 2.015625 -6.40625 1.4375 -5.21875 0.25 -5.1875 L 0.25 -4.796875 L 1.21875 -4.796875 L 1.21875 -1.46875 C 1.21875 -0.203125 2.203125 0.078125 3.0625 0.078125 C 3.9375 0.078125 4.46875 -0.59375 4.46875 -1.484375 Z M 4.46875 -1.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 6.796875 -4.796875 L 6.796875 -5.3125 C 6.375 -5.28125 6.34375 -5.28125 5.859375 -5.28125 L 4.828125 -5.3125 L 4.828125 -4.796875 C 5.15625 -4.796875 5.421875 -4.734375 5.421875 -4.65625 C 5.421875 -4.65625 5.421875 -4.625 5.359375 -4.5 L 3.953125 -1.4375 L 2.421875 -4.796875 L 3.078125 -4.796875 L 3.078125 -5.3125 C 2.796875 -5.28125 1.953125 -5.28125 1.640625 -5.28125 C 1.296875 -5.28125 0.59375 -5.28125 0.28125 -5.3125 L 0.28125 -4.796875 L 1.046875 -4.796875 L 3.140625 -0.234375 C 3.25 0 3.28125 0.0625 3.546875 0.0625 C 3.734375 0.0625 3.84375 0.03125 3.9375 -0.203125 L 5.921875 -4.515625 C 6 -4.703125 6.046875 -4.796875 6.796875 -4.796875 Z M 6.796875 -4.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 4.84375 -1.65625 C 4.84375 -2.234375 4.53125 -2.625 4.296875 -2.84375 C 3.796875 -3.25 3.390625 -3.328125 2.75 -3.4375 C 1.984375 -3.578125 1.265625 -3.703125 1.265625 -4.28125 C 1.265625 -5.0625 2.328125 -5.0625 2.578125 -5.0625 C 3.90625 -5.0625 3.984375 -4.21875 4 -3.921875 C 4.015625 -3.765625 4.109375 -3.765625 4.25 -3.765625 C 4.5 -3.765625 4.5 -3.796875 4.5 -4.078125 L 4.5 -5.109375 C 4.5 -5.328125 4.5 -5.421875 4.328125 -5.421875 C 4.25 -5.421875 4.234375 -5.421875 4.046875 -5.3125 C 4 -5.265625 3.875 -5.1875 3.8125 -5.15625 C 3.484375 -5.34375 3.03125 -5.421875 2.609375 -5.421875 C 2.25 -5.421875 0.453125 -5.421875 0.453125 -3.859375 C 0.453125 -2.609375 1.9375 -2.34375 2.3125 -2.28125 C 2.625 -2.21875 3.03125 -2.15625 3.078125 -2.15625 C 3.546875 -2.046875 4.03125 -1.75 4.03125 -1.25 C 4.03125 -0.328125 2.9375 -0.328125 2.6875 -0.328125 C 2.078125 -0.328125 1.328125 -0.515625 0.984375 -1.671875 C 0.921875 -1.90625 0.90625 -1.921875 0.703125 -1.921875 C 0.453125 -1.921875 0.453125 -1.890625 0.453125 -1.609375 L 0.453125 -0.234375 C 0.453125 -0.015625 0.453125 0.078125 0.640625 0.078125 C 0.71875 0.078125 0.734375 0.078125 0.984375 -0.125 L 1.296875 -0.34375 C 1.828125 0.078125 2.46875 0.078125 2.6875 0.078125 C 3.34375 0.078125 4.84375 -0.078125 4.84375 -1.65625 Z M 4.84375 -1.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 7.046875 0 L 7.046875 -0.515625 C 6.296875 -0.515625 6.21875 -0.515625 6.21875 -0.984375 L 6.21875 -8.296875 L 4.140625 -8.203125 L 4.140625 -7.6875 C 4.890625 -7.6875 4.96875 -7.6875 4.96875 -7.21875 L 4.96875 -4.8125 C 4.703125 -5.03125 4.1875 -5.375 3.359375 -5.375 C 1.65625 -5.375 0.453125 -4.328125 0.453125 -2.65625 C 0.453125 -0.9375 1.640625 0.078125 3.234375 0.078125 C 3.890625 0.078125 4.453125 -0.15625 4.90625 -0.546875 L 4.90625 0.078125 Z M 4.90625 -1.203125 C 4.40625 -0.484375 3.796875 -0.328125 3.375 -0.328125 C 1.890625 -0.328125 1.890625 -1.84375 1.890625 -2.625 C 1.890625 -3.1875 1.890625 -3.796875 2.15625 -4.25 C 2.515625 -4.90625 3.234375 -4.984375 3.5 -4.984375 C 4 -4.984375 4.515625 -4.765625 4.90625 -4.25 Z M 4.90625 -1.203125 "/>
|
||||
</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 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 Z M 4.96875 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<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="glyph2-3">
|
||||
<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="glyph2-4">
|
||||
<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="glyph2-5">
|
||||
<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="glyph2-6">
|
||||
<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="glyph2-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="glyph2-8">
|
||||
<path style="stroke:none;" d="M 5.796875 -2.578125 L 5.546875 -2.578125 C 5.4375 -1.5625 5.296875 -0.3125 3.546875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -6.015625 C 2.25 -6.359375 2.25 -6.5 3.1875 -6.5 L 3.515625 -6.5 L 3.515625 -6.8125 C 3.15625 -6.78125 2.25 -6.78125 1.84375 -6.78125 C 1.453125 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.515625 0 Z M 5.796875 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<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="glyph2-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="glyph2-11">
|
||||
<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="glyph2-12">
|
||||
<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="glyph2-13">
|
||||
<path style="stroke:none;" d="M 7.015625 -3.984375 L 7.015625 -4.296875 C 6.78125 -4.28125 6.5 -4.265625 6.28125 -4.265625 L 5.359375 -4.296875 L 5.359375 -3.984375 C 5.71875 -3.984375 5.9375 -3.796875 5.9375 -3.515625 C 5.9375 -3.453125 5.9375 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.53125 C 3.953125 -3.65625 3.9375 -3.671875 3.9375 -3.71875 C 3.9375 -3.984375 4.328125 -3.984375 4.53125 -3.984375 L 4.53125 -4.296875 L 3.484375 -4.265625 C 3.1875 -4.265625 2.90625 -4.28125 2.609375 -4.296875 L 2.609375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.234375 -3.84375 C 3.28125 -3.78125 3.390625 -3.484375 3.453125 -3.296875 L 2.609375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 L 1.109375 -4.265625 L 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.59375 -2.90625 L 4.609375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.8125 0.109375 C 4.9375 0.109375 4.96875 0.015625 5 -0.078125 L 6.171875 -3.34375 C 6.34375 -3.84375 6.65625 -3.984375 7.015625 -3.984375 Z M 7.015625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<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="glyph2-15">
|
||||
<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="glyph2-16">
|
||||
<path style="stroke:none;" d="M 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 Z M 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 L 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 Z M 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 Z M 5.5 -1.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-17">
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 L 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 Z M 4.5625 -2.578125 L 2.328125 -2.578125 L 3.4375 -5.828125 Z M 4.5625 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-18">
|
||||
<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="glyph2-19">
|
||||
<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-20">
|
||||
<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 2.375 -6.03125 C 2.375 -6.265625 2.15625 -6.5 1.890625 -6.5 C 1.578125 -6.5 1.40625 -6.25 1.40625 -6.03125 C 1.40625 -5.78125 1.609375 -5.546875 1.890625 -5.546875 C 2.1875 -5.546875 2.375 -5.796875 2.375 -6.03125 Z M 4.140625 -6.03125 C 4.140625 -6.265625 3.9375 -6.5 3.671875 -6.5 C 3.359375 -6.5 3.1875 -6.25 3.1875 -6.03125 C 3.1875 -5.78125 3.390625 -5.546875 3.65625 -5.546875 C 3.96875 -5.546875 4.140625 -5.796875 4.140625 -6.03125 Z M 4.140625 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-21">
|
||||
<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="glyph2-22">
|
||||
<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="glyph2-23">
|
||||
<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="glyph2-24">
|
||||
<path style="stroke:none;" d="M 5.578125 -2.65625 L 5.328125 -2.65625 C 5.25 -1.28125 5.0625 -0.34375 3.21875 -0.34375 L 1.578125 -0.34375 L 5.453125 -6.453125 C 5.515625 -6.5625 5.515625 -6.578125 5.515625 -6.65625 C 5.515625 -6.8125 5.46875 -6.8125 5.265625 -6.8125 L 0.796875 -6.8125 L 0.6875 -4.5625 L 0.9375 -4.5625 C 1 -5.6875 1.3125 -6.5 2.9375 -6.5 L 4.5 -6.5 L 0.625 -0.375 C 0.5625 -0.265625 0.5625 -0.25 0.5625 -0.171875 C 0.5625 0 0.609375 0 0.8125 0 L 5.40625 0 Z M 5.578125 -2.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-25">
|
||||
<path style="stroke:none;" d="M 6.5 -2.578125 L 6.25 -2.578125 C 6 -1.03125 5.765625 -0.3125 4.0625 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -3.375 L 3.140625 -3.375 C 4.109375 -3.375 4.21875 -3.046875 4.21875 -2.203125 L 4.46875 -2.203125 L 4.46875 -4.84375 L 4.21875 -4.84375 C 4.21875 -3.984375 4.109375 -3.671875 3.140625 -3.671875 L 2.25 -3.671875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 4.015625 -6.46875 C 5.546875 -6.46875 5.8125 -5.921875 5.96875 -4.53125 L 6.21875 -4.53125 L 5.9375 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 Z M 6.5 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-26">
|
||||
<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="glyph2-27">
|
||||
<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="glyph2-28">
|
||||
<path style="stroke:none;" d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z 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="glyph2-29">
|
||||
<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="glyph2-30">
|
||||
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 Z M 3.765625 -3.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-31">
|
||||
<path style="stroke:none;" d="M 7.140625 -6.5 L 7.140625 -6.8125 L 5.96875 -6.78125 L 4.8125 -6.8125 L 4.8125 -6.5 C 5.828125 -6.5 5.828125 -6.03125 5.828125 -5.765625 L 5.828125 -1.5 L 2.3125 -6.671875 C 2.21875 -6.796875 2.21875 -6.8125 2.03125 -6.8125 L 0.328125 -6.8125 L 0.328125 -6.5 L 0.625 -6.5 C 0.765625 -6.5 0.96875 -6.484375 1.109375 -6.484375 C 1.34375 -6.453125 1.359375 -6.4375 1.359375 -6.25 L 1.359375 -1.046875 C 1.359375 -0.78125 1.359375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.5 -0.03125 L 2.65625 0 L 2.65625 -0.3125 C 1.640625 -0.3125 1.640625 -0.78125 1.640625 -1.046875 L 1.640625 -6.234375 C 1.6875 -6.1875 1.6875 -6.171875 1.734375 -6.109375 L 5.796875 -0.125 C 5.890625 -0.015625 5.90625 0 5.96875 0 C 6.109375 0 6.109375 -0.0625 6.109375 -0.265625 L 6.109375 -5.765625 C 6.109375 -6.03125 6.109375 -6.5 7.140625 -6.5 Z M 7.140625 -6.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-32">
|
||||
<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="glyph2-33">
|
||||
<path style="stroke:none;" d="M 2.75 -1.859375 L 2.75 -2.4375 L 0.109375 -2.4375 L 0.109375 -1.859375 Z M 2.75 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-34">
|
||||
<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="glyph2-35">
|
||||
<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 2.09375 -6.03125 C 2.09375 -6.265625 1.890625 -6.5 1.609375 -6.5 C 1.3125 -6.5 1.125 -6.25 1.125 -6.03125 C 1.125 -5.78125 1.328125 -5.546875 1.609375 -5.546875 C 1.90625 -5.546875 2.09375 -5.796875 2.09375 -6.03125 Z M 3.875 -6.03125 C 3.875 -6.265625 3.65625 -6.5 3.390625 -6.5 C 3.078125 -6.5 2.90625 -6.25 2.90625 -6.03125 C 2.90625 -5.78125 3.109375 -5.546875 3.375 -5.546875 C 3.6875 -5.546875 3.875 -5.796875 3.875 -6.03125 Z M 3.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-36">
|
||||
<path style="stroke:none;" d="M 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 L 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 L 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 Z M 3.5625 -6.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-37">
|
||||
<path style="stroke:none;" d="M 6.828125 -4.5 L 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 Z M 6.828125 -4.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-38">
|
||||
<path style="stroke:none;" d="M 7.046875 -3.34375 C 7.046875 -5.25 5.703125 -6.8125 4 -6.8125 L 0.34375 -6.8125 L 0.34375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.375 -6.390625 1.375 -6.03125 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 L 4 0 C 5.671875 0 7.046875 -1.46875 7.046875 -3.34375 Z M 6.046875 -3.34375 C 6.046875 -2.25 5.859375 -1.640625 5.5 -1.15625 C 5.296875 -0.890625 4.734375 -0.3125 3.734375 -0.3125 L 2.71875 -0.3125 C 2.25 -0.3125 2.234375 -0.375 2.234375 -0.703125 L 2.234375 -6.09375 C 2.234375 -6.4375 2.25 -6.5 2.71875 -6.5 L 3.71875 -6.5 C 4.34375 -6.5 5.03125 -6.28125 5.53125 -5.578125 C 5.96875 -4.984375 6.046875 -4.125 6.046875 -3.34375 Z M 6.046875 -3.34375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-39">
|
||||
<path style="stroke:none;" d="M 6.078125 -4.53125 L 5.796875 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.25 -0.3125 2.25 -0.4375 2.25 -0.78125 L 2.25 -3.234375 L 3.09375 -3.234375 C 4.0625 -3.234375 4.15625 -2.921875 4.15625 -2.078125 L 4.40625 -2.078125 L 4.40625 -4.71875 L 4.15625 -4.71875 C 4.15625 -3.875 4.0625 -3.546875 3.09375 -3.546875 L 2.25 -3.546875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 3.921875 -6.46875 C 5.421875 -6.46875 5.671875 -5.90625 5.828125 -4.53125 Z M 6.078125 -4.53125 "/>
|
||||
</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="150.62"/>
|
||||
<use xlink:href="#glyph0-2" x="149.442597" y="150.62"/>
|
||||
<use xlink:href="#glyph0-2" x="156.806501" y="150.62"/>
|
||||
<use xlink:href="#glyph0-3" x="164.170405" y="150.62"/>
|
||||
<use xlink:href="#glyph0-4" x="170.762484" y="150.62"/>
|
||||
<use xlink:href="#glyph0-2" x="177.935584" y="150.62"/>
|
||||
<use xlink:href="#glyph0-5" x="185.299489" y="150.62"/>
|
||||
<use xlink:href="#glyph0-6" x="189.782676" y="150.62"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="196.511044" y="150.62"/>
|
||||
<use xlink:href="#glyph0-2" x="205.477419" y="150.62"/>
|
||||
<use xlink:href="#glyph0-8" x="212.841324" y="150.62"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="139.746" y="174.433"/>
|
||||
<use xlink:href="#glyph1-2" x="150.261794" y="174.433"/>
|
||||
<use xlink:href="#glyph1-3" x="157.733794" y="174.433"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="167.710408" y="174.433"/>
|
||||
<use xlink:href="#glyph1-5" x="175.182408" y="174.433"/>
|
||||
<use xlink:href="#glyph1-3" x="181.907208" y="174.433"/>
|
||||
<use xlink:href="#glyph1-6" x="187.400623" y="174.433"/>
|
||||
<use xlink:href="#glyph1-7" x="198.608623" y="174.433"/>
|
||||
<use xlink:href="#glyph1-8" x="205.146922" y="174.433"/>
|
||||
<use xlink:href="#glyph1-9" x="208.882922" y="174.433"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="219.502726" y="174.433"/>
|
||||
<use xlink:href="#glyph1-9" x="227.583245" y="174.433"/>
|
||||
<use xlink:href="#glyph1-9" x="233.71985" y="174.433"/>
|
||||
<use xlink:href="#glyph1-3" x="239.856454" y="174.433"/>
|
||||
<use xlink:href="#glyph1-11" x="245.349868" y="174.433"/>
|
||||
<use xlink:href="#glyph1-9" x="251.327468" y="174.433"/>
|
||||
<use xlink:href="#glyph1-12" x="257.464072" y="174.433"/>
|
||||
<use xlink:href="#glyph1-13" x="261.200072" y="174.433"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="266.807061" y="174.433"/>
|
||||
<use xlink:href="#glyph1-9" x="274.279061" y="174.433"/>
|
||||
<use xlink:href="#glyph1-4" x="280.415665" y="174.433"/>
|
||||
<use xlink:href="#glyph1-15" x="287.887665" y="174.433"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="139.746" y="192.823"/>
|
||||
<use xlink:href="#glyph2-2" x="145.281221" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="149.430643" y="192.823"/>
|
||||
<use xlink:href="#glyph2-4" x="154.965864" y="192.823"/>
|
||||
<use xlink:href="#glyph2-5" x="163.267699" y="192.823"/>
|
||||
<use xlink:href="#glyph2-6" x="168.248999" y="192.823"/>
|
||||
<use xlink:href="#glyph2-7" x="171.016609" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="178.852194" y="192.823"/>
|
||||
<use xlink:href="#glyph2-7" x="185.078819" y="192.823"/>
|
||||
<use xlink:href="#glyph2-7" x="189.507194" y="192.823"/>
|
||||
<use xlink:href="#glyph2-9" x="193.93557" y="192.823"/>
|
||||
<use xlink:href="#glyph2-10" x="197.837921" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="202.256334" y="192.823"/>
|
||||
<use xlink:href="#glyph2-11" x="206.684709" y="192.823"/>
|
||||
<use xlink:href="#glyph2-2" x="209.45232" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="213.611705" y="192.823"/>
|
||||
<use xlink:href="#glyph2-7" x="219.146926" y="192.823"/>
|
||||
<use xlink:href="#glyph2-12" x="223.575301" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-13" x="232.507769" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="239.423806" y="192.823"/>
|
||||
<use xlink:href="#glyph2-9" x="243.852181" y="192.823"/>
|
||||
<use xlink:href="#glyph2-14" x="247.754532" y="192.823"/>
|
||||
<use xlink:href="#glyph2-7" x="253.289752" y="192.823"/>
|
||||
<use xlink:href="#glyph2-12" x="257.718128" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="266.660558" y="192.823"/>
|
||||
<use xlink:href="#glyph2-15" x="271.088933" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-16" x="277.25379" y="192.823"/>
|
||||
<use xlink:href="#glyph2-15" x="284.3103" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-11" x="290.485119" y="192.823"/>
|
||||
<use xlink:href="#glyph2-12" x="293.25273" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-17" x="302.195159" y="192.823"/>
|
||||
<use xlink:href="#glyph2-18" x="309.667109" y="192.823"/>
|
||||
<use xlink:href="#glyph2-19" x="315.20233" y="192.823"/>
|
||||
<use xlink:href="#glyph2-20" x="320.46059" y="192.823"/>
|
||||
<use xlink:href="#glyph2-9" x="325.995811" y="192.823"/>
|
||||
<use xlink:href="#glyph2-10" x="329.898161" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="334.316574" y="192.823"/>
|
||||
<use xlink:href="#glyph2-12" x="339.851795" y="192.823"/>
|
||||
<use xlink:href="#glyph2-22" x="345.387015" y="192.823"/>
|
||||
<use xlink:href="#glyph2-7" x="350.368315" y="192.823"/>
|
||||
<use xlink:href="#glyph2-12" x="354.796691" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="363.739121" y="192.823"/>
|
||||
<use xlink:href="#glyph2-12" x="369.274341" y="192.823"/>
|
||||
<use xlink:href="#glyph2-14" x="374.809562" y="192.823"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="139.746" y="204.778"/>
|
||||
<use xlink:href="#glyph2-13" x="144.174376" y="204.778"/>
|
||||
<use xlink:href="#glyph2-11" x="151.369365" y="204.778"/>
|
||||
<use xlink:href="#glyph2-23" x="154.136976" y="204.778"/>
|
||||
<use xlink:href="#glyph2-2" x="158.067221" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="162.216644" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="167.751865" y="204.778"/>
|
||||
<use xlink:href="#glyph2-12" x="172.180241" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-24" x="179.976971" y="204.778"/>
|
||||
<use xlink:href="#glyph2-5" x="186.065116" y="204.778"/>
|
||||
<use xlink:href="#glyph2-3" x="191.046416" y="204.778"/>
|
||||
<use xlink:href="#glyph2-6" x="196.581637" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="199.349247" y="204.778"/>
|
||||
<use xlink:href="#glyph2-12" x="203.777623" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="211.574353" y="204.778"/>
|
||||
<use xlink:href="#glyph2-12" x="217.109574" y="204.778"/>
|
||||
<use xlink:href="#glyph2-14" x="222.644795" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-25" x="230.441525" y="204.778"/>
|
||||
<use xlink:href="#glyph2-11" x="237.222071" y="204.778"/>
|
||||
<use xlink:href="#glyph2-12" x="239.989681" y="204.778"/>
|
||||
<use xlink:href="#glyph2-3" x="245.524902" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="251.060122" y="204.778"/>
|
||||
<use xlink:href="#glyph2-11" x="255.488498" y="204.778"/>
|
||||
<use xlink:href="#glyph2-26" x="258.256108" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="262.130563" y="204.778"/>
|
||||
<use xlink:href="#glyph2-12" x="266.558939" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-27" x="274.35567" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="279.334977" y="204.778"/>
|
||||
<use xlink:href="#glyph2-9" x="283.763353" y="204.778"/>
|
||||
<use xlink:href="#glyph2-13" x="287.665704" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="294.591703" y="204.778"/>
|
||||
<use xlink:href="#glyph2-12" x="299.020079" y="204.778"/>
|
||||
<use xlink:href="#glyph2-14" x="304.555299" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="310.080557" y="204.778"/>
|
||||
<use xlink:href="#glyph2-26" x="314.508933" y="204.778"/>
|
||||
<use xlink:href="#glyph2-28" x="318.383388" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-29" x="323.422471" y="204.778"/>
|
||||
<use xlink:href="#glyph2-30" x="328.403771" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-23" x="335.646581" y="204.778"/>
|
||||
<use xlink:href="#glyph2-15" x="339.576827" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-31" x="344.61591" y="204.778"/>
|
||||
<use xlink:href="#glyph2-32" x="352.08786" y="204.778"/>
|
||||
<use xlink:href="#glyph2-9" x="357.06916" y="204.778"/>
|
||||
<use xlink:href="#glyph2-4" x="360.971511" y="204.778"/>
|
||||
<use xlink:href="#glyph2-5" x="369.273345" y="204.778"/>
|
||||
<use xlink:href="#glyph2-6" x="374.254645" y="204.778"/>
|
||||
<use xlink:href="#glyph2-33" x="377.022255" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-18" x="139.746" y="216.733"/>
|
||||
<use xlink:href="#glyph2-9" x="145.281221" y="216.733"/>
|
||||
<use xlink:href="#glyph2-7" x="149.183571" y="216.733"/>
|
||||
<use xlink:href="#glyph2-11" x="153.611947" y="216.733"/>
|
||||
<use xlink:href="#glyph2-26" x="156.379557" y="216.733"/>
|
||||
<use xlink:href="#glyph2-7" x="160.254012" y="216.733"/>
|
||||
<use xlink:href="#glyph2-34" x="164.682388" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="171.454963" y="216.733"/>
|
||||
<use xlink:href="#glyph2-18" x="176.436263" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="182.250437" y="216.733"/>
|
||||
<use xlink:href="#glyph2-9" x="186.678812" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-22" x="194.586128" y="216.733"/>
|
||||
<use xlink:href="#glyph2-7" x="199.567428" y="216.733"/>
|
||||
<use xlink:href="#glyph2-23" x="203.995804" y="216.733"/>
|
||||
<use xlink:href="#glyph2-2" x="207.926049" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="212.075472" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-20" x="217.33174" y="216.733"/>
|
||||
<use xlink:href="#glyph2-26" x="222.866961" y="216.733"/>
|
||||
<use xlink:href="#glyph2-10" x="226.741416" y="216.733"/>
|
||||
<use xlink:href="#glyph2-26" x="231.169791" y="216.733"/>
|
||||
<use xlink:href="#glyph2-7" x="235.044247" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="243.477587" y="216.733"/>
|
||||
<use xlink:href="#glyph2-7" x="249.704212" y="216.733"/>
|
||||
<use xlink:href="#glyph2-7" x="254.132588" y="216.733"/>
|
||||
<use xlink:href="#glyph2-9" x="258.560964" y="216.733"/>
|
||||
<use xlink:href="#glyph2-10" x="262.463314" y="216.733"/>
|
||||
<use xlink:href="#glyph2-7" x="266.89169" y="216.733"/>
|
||||
<use xlink:href="#glyph2-11" x="271.320066" y="216.733"/>
|
||||
<use xlink:href="#glyph2-2" x="274.087676" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="278.237099" y="216.733"/>
|
||||
<use xlink:href="#glyph2-7" x="283.772319" y="216.733"/>
|
||||
<use xlink:href="#glyph2-12" x="288.200695" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-19" x="297.740881" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-35" x="302.730151" y="216.733"/>
|
||||
<use xlink:href="#glyph2-12" x="307.711451" y="216.733"/>
|
||||
<use xlink:href="#glyph2-12" x="313.246672" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="318.771929" y="216.733"/>
|
||||
<use xlink:href="#glyph2-12" x="323.200305" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="332.750454" y="216.733"/>
|
||||
<use xlink:href="#glyph2-15" x="338.285674" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="345.05825" y="216.733"/>
|
||||
<use xlink:href="#glyph2-15" x="350.03955" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="356.822088" y="216.733"/>
|
||||
<use xlink:href="#glyph2-5" x="362.357308" y="216.733"/>
|
||||
<use xlink:href="#glyph2-18" x="367.338608" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="373.142819" y="216.733"/>
|
||||
<use xlink:href="#glyph2-11" x="377.571195" y="216.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="139.746" y="228.688"/>
|
||||
<use xlink:href="#glyph2-7" x="145.281221" y="228.688"/>
|
||||
<use xlink:href="#glyph2-6" x="149.709596" y="228.688"/>
|
||||
<use xlink:href="#glyph2-36" x="152.477207" y="228.688"/>
|
||||
<use xlink:href="#glyph2-7" x="155.521777" y="228.688"/>
|
||||
<use xlink:href="#glyph2-12" x="159.950153" y="228.688"/>
|
||||
<use xlink:href="#glyph2-34" x="165.485373" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-37" x="172.666415" y="228.688"/>
|
||||
<use xlink:href="#glyph2-11" x="179.861405" y="228.688"/>
|
||||
<use xlink:href="#glyph2-26" x="182.629015" y="228.688"/>
|
||||
<use xlink:href="#glyph2-7" x="186.503471" y="228.688"/>
|
||||
<use xlink:href="#glyph2-6" x="190.931846" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="198.122851" y="228.688"/>
|
||||
<use xlink:href="#glyph2-12" x="203.658072" y="228.688"/>
|
||||
<use xlink:href="#glyph2-14" x="209.193292" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-31" x="219.141944" y="228.688"/>
|
||||
<use xlink:href="#glyph2-5" x="226.613894" y="228.688"/>
|
||||
<use xlink:href="#glyph2-4" x="231.595194" y="228.688"/>
|
||||
<use xlink:href="#glyph2-7" x="239.897029" y="228.688"/>
|
||||
<use xlink:href="#glyph2-12" x="244.325405" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-11" x="254.274057" y="228.688"/>
|
||||
<use xlink:href="#glyph2-12" x="257.041667" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="267.000282" y="228.688"/>
|
||||
<use xlink:href="#glyph2-11" x="271.428658" y="228.688"/>
|
||||
<use xlink:href="#glyph2-12" x="274.196268" y="228.688"/>
|
||||
<use xlink:href="#glyph2-7" x="279.731489" y="228.688"/>
|
||||
<use xlink:href="#glyph2-9" x="284.159865" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-24" x="292.475647" y="228.688"/>
|
||||
<use xlink:href="#glyph2-7" x="298.563792" y="228.688"/>
|
||||
<use xlink:href="#glyph2-11" x="302.992167" y="228.688"/>
|
||||
<use xlink:href="#glyph2-6" x="305.759778" y="228.688"/>
|
||||
<use xlink:href="#glyph2-7" x="308.527388" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="317.369195" y="228.688"/>
|
||||
<use xlink:href="#glyph2-21" x="321.797571" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="331.756186" y="228.688"/>
|
||||
<use xlink:href="#glyph2-5" x="337.291407" y="228.688"/>
|
||||
<use xlink:href="#glyph2-6" x="342.272707" y="228.688"/>
|
||||
<use xlink:href="#glyph2-26" x="345.040317" y="228.688"/>
|
||||
<use xlink:href="#glyph2-7" x="348.914772" y="228.688"/>
|
||||
<use xlink:href="#glyph2-12" x="353.343148" y="228.688"/>
|
||||
<use xlink:href="#glyph2-28" x="358.878368" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-38" x="366.05941" y="228.688"/>
|
||||
<use xlink:href="#glyph2-9" x="373.669841" y="228.688"/>
|
||||
<use xlink:href="#glyph2-15" x="377.572191" y="228.688"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-39" x="139.746" y="240.643"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="145.422689" y="240.643"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="150.67298" y="240.643"/>
|
||||
<use xlink:href="#glyph2-18" x="155.65428" y="240.643"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="161.468453" y="240.643"/>
|
||||
<use xlink:href="#glyph2-5" x="166.449753" y="240.643"/>
|
||||
<use xlink:href="#glyph2-9" x="171.431053" y="240.643"/>
|
||||
<use xlink:href="#glyph2-15" x="175.333403" y="240.643"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="139.746" y="268.532"/>
|
||||
<use xlink:href="#glyph1-12" x="152.504589" y="268.532"/>
|
||||
<use xlink:href="#glyph1-17" x="156.240589" y="268.532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="165.954189" y="268.532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="172.68138" y="268.532"/>
|
||||
<use xlink:href="#glyph1-3" x="178.817985" y="268.532"/>
|
||||
<use xlink:href="#glyph1-19" x="184.311399" y="268.532"/>
|
||||
<use xlink:href="#glyph1-13" x="189.615921" y="268.532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="195.22291" y="268.532"/>
|
||||
<use xlink:href="#glyph1-12" x="202.69491" y="268.532"/>
|
||||
<use xlink:href="#glyph1-9" x="206.43091" y="268.532"/>
|
||||
<use xlink:href="#glyph1-20" x="212.567514" y="268.532"/>
|
||||
<use xlink:href="#glyph1-9" x="220.039514" y="268.532"/>
|
||||
<use xlink:href="#glyph1-4" x="226.176118" y="268.532"/>
|
||||
<use xlink:href="#glyph1-9" x="233.648118" y="268.532"/>
|
||||
<use xlink:href="#glyph1-4" x="239.784723" y="268.532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="251.739923" y="268.532"/>
|
||||
<use xlink:href="#glyph1-9" x="259.820442" y="268.532"/>
|
||||
<use xlink:href="#glyph1-9" x="265.957046" y="268.532"/>
|
||||
<use xlink:href="#glyph1-3" x="272.093651" y="268.532"/>
|
||||
<use xlink:href="#glyph1-11" x="277.587065" y="268.532"/>
|
||||
<use xlink:href="#glyph1-9" x="283.564665" y="268.532"/>
|
||||
<use xlink:href="#glyph1-12" x="289.701269" y="268.532"/>
|
||||
<use xlink:href="#glyph1-13" x="293.437269" y="268.532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="299.044258" y="268.532"/>
|
||||
<use xlink:href="#glyph1-9" x="306.516258" y="268.532"/>
|
||||
<use xlink:href="#glyph1-4" x="312.652862" y="268.532"/>
|
||||
<use xlink:href="#glyph1-15" x="320.124862" y="268.532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="139.746" y="286.921"/>
|
||||
<use xlink:href="#glyph2-2" x="145.281221" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="149.430643" y="286.921"/>
|
||||
<use xlink:href="#glyph2-4" x="154.965864" y="286.921"/>
|
||||
<use xlink:href="#glyph2-5" x="163.267699" y="286.921"/>
|
||||
<use xlink:href="#glyph2-6" x="168.248999" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="171.016609" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="179.141109" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="185.367734" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="189.79611" y="286.921"/>
|
||||
<use xlink:href="#glyph2-9" x="194.224486" y="286.921"/>
|
||||
<use xlink:href="#glyph2-10" x="198.126836" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="202.555212" y="286.921"/>
|
||||
<use xlink:href="#glyph2-11" x="206.983587" y="286.921"/>
|
||||
<use xlink:href="#glyph2-2" x="209.751198" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="213.900621" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="219.435841" y="286.921"/>
|
||||
<use xlink:href="#glyph2-12" x="223.864217" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-13" x="233.085599" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="240.011599" y="286.921"/>
|
||||
<use xlink:href="#glyph2-9" x="244.439975" y="286.921"/>
|
||||
<use xlink:href="#glyph2-14" x="248.342325" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="253.877546" y="286.921"/>
|
||||
<use xlink:href="#glyph2-12" x="258.305921" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="267.527304" y="286.921"/>
|
||||
<use xlink:href="#glyph2-15" x="271.95568" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-16" x="276.387044" y="286.921"/>
|
||||
<use xlink:href="#glyph2-15" x="283.443554" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-11" x="289.907289" y="286.921"/>
|
||||
<use xlink:href="#glyph2-12" x="292.674899" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-17" x="301.896281" y="286.921"/>
|
||||
<use xlink:href="#glyph2-18" x="309.368231" y="286.921"/>
|
||||
<use xlink:href="#glyph2-19" x="314.903452" y="286.921"/>
|
||||
<use xlink:href="#glyph2-20" x="320.161712" y="286.921"/>
|
||||
<use xlink:href="#glyph2-9" x="325.696933" y="286.921"/>
|
||||
<use xlink:href="#glyph2-10" x="329.599283" y="286.921"/>
|
||||
<use xlink:href="#glyph2-21" x="334.027659" y="286.921"/>
|
||||
<use xlink:href="#glyph2-12" x="339.562879" y="286.921"/>
|
||||
<use xlink:href="#glyph2-22" x="345.0981" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="350.0794" y="286.921"/>
|
||||
<use xlink:href="#glyph2-12" x="354.507776" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="363.739121" y="286.921"/>
|
||||
<use xlink:href="#glyph2-12" x="369.274341" y="286.921"/>
|
||||
<use xlink:href="#glyph2-14" x="374.809562" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="139.746" y="298.876"/>
|
||||
<use xlink:href="#glyph2-13" x="144.174376" y="298.876"/>
|
||||
<use xlink:href="#glyph2-11" x="151.369365" y="298.876"/>
|
||||
<use xlink:href="#glyph2-23" x="154.136976" y="298.876"/>
|
||||
<use xlink:href="#glyph2-2" x="158.067221" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="162.216644" y="298.876"/>
|
||||
<use xlink:href="#glyph2-7" x="167.751865" y="298.876"/>
|
||||
<use xlink:href="#glyph2-12" x="172.180241" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-24" x="182.756537" y="298.876"/>
|
||||
<use xlink:href="#glyph2-5" x="188.844682" y="298.876"/>
|
||||
<use xlink:href="#glyph2-3" x="193.825982" y="298.876"/>
|
||||
<use xlink:href="#glyph2-6" x="199.361202" y="298.876"/>
|
||||
<use xlink:href="#glyph2-7" x="202.128812" y="298.876"/>
|
||||
<use xlink:href="#glyph2-12" x="206.557188" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="217.123522" y="298.876"/>
|
||||
<use xlink:href="#glyph2-12" x="222.658742" y="298.876"/>
|
||||
<use xlink:href="#glyph2-14" x="228.193963" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-25" x="238.770259" y="298.876"/>
|
||||
<use xlink:href="#glyph2-11" x="245.550805" y="298.876"/>
|
||||
<use xlink:href="#glyph2-12" x="248.318415" y="298.876"/>
|
||||
<use xlink:href="#glyph2-3" x="253.853635" y="298.876"/>
|
||||
<use xlink:href="#glyph2-7" x="259.388856" y="298.876"/>
|
||||
<use xlink:href="#glyph2-11" x="263.817232" y="298.876"/>
|
||||
<use xlink:href="#glyph2-26" x="266.584842" y="298.876"/>
|
||||
<use xlink:href="#glyph2-7" x="270.459297" y="298.876"/>
|
||||
<use xlink:href="#glyph2-12" x="274.887673" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-27" x="285.454006" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="290.433314" y="298.876"/>
|
||||
<use xlink:href="#glyph2-9" x="294.861689" y="298.876"/>
|
||||
<use xlink:href="#glyph2-13" x="298.76404" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="305.690039" y="298.876"/>
|
||||
<use xlink:href="#glyph2-12" x="310.118415" y="298.876"/>
|
||||
<use xlink:href="#glyph2-14" x="315.653636" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="321.178894" y="298.876"/>
|
||||
<use xlink:href="#glyph2-26" x="325.607269" y="298.876"/>
|
||||
<use xlink:href="#glyph2-28" x="329.481724" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-29" x="337.300373" y="298.876"/>
|
||||
<use xlink:href="#glyph2-30" x="342.281673" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-23" x="348.916765" y="298.876"/>
|
||||
<use xlink:href="#glyph2-15" x="352.84701" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-31" x="360.665659" y="298.876"/>
|
||||
<use xlink:href="#glyph2-32" x="368.137609" y="298.876"/>
|
||||
<use xlink:href="#glyph2-9" x="373.118909" y="298.876"/>
|
||||
<use xlink:href="#glyph2-33" x="377.021259" y="298.876"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="139.746" y="310.831"/>
|
||||
<use xlink:href="#glyph2-5" x="148.047835" y="310.831"/>
|
||||
<use xlink:href="#glyph2-6" x="153.029135" y="310.831"/>
|
||||
<use xlink:href="#glyph2-18" x="155.796745" y="310.831"/>
|
||||
<use xlink:href="#glyph2-9" x="161.331965" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="165.234316" y="310.831"/>
|
||||
<use xlink:href="#glyph2-11" x="169.662692" y="310.831"/>
|
||||
<use xlink:href="#glyph2-26" x="172.430302" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="176.304757" y="310.831"/>
|
||||
<use xlink:href="#glyph2-34" x="180.733133" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="186.838214" y="310.831"/>
|
||||
<use xlink:href="#glyph2-18" x="191.819514" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="197.633687" y="310.831"/>
|
||||
<use xlink:href="#glyph2-9" x="202.062063" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-22" x="209.301884" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="214.283184" y="310.831"/>
|
||||
<use xlink:href="#glyph2-23" x="218.71156" y="310.831"/>
|
||||
<use xlink:href="#glyph2-2" x="222.641806" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="226.791229" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-20" x="232.047496" y="310.831"/>
|
||||
<use xlink:href="#glyph2-26" x="237.582717" y="310.831"/>
|
||||
<use xlink:href="#glyph2-10" x="241.457172" y="310.831"/>
|
||||
<use xlink:href="#glyph2-26" x="245.885548" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="249.760003" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="257.52585" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="263.752475" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="268.18085" y="310.831"/>
|
||||
<use xlink:href="#glyph2-9" x="272.609226" y="310.831"/>
|
||||
<use xlink:href="#glyph2-10" x="276.511577" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="280.939952" y="310.831"/>
|
||||
<use xlink:href="#glyph2-11" x="285.368328" y="310.831"/>
|
||||
<use xlink:href="#glyph2-2" x="288.135938" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="292.285361" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="297.820582" y="310.831"/>
|
||||
<use xlink:href="#glyph2-12" x="302.248957" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-19" x="311.121649" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-35" x="316.100956" y="310.831"/>
|
||||
<use xlink:href="#glyph2-12" x="321.082256" y="310.831"/>
|
||||
<use xlink:href="#glyph2-12" x="326.617477" y="310.831"/>
|
||||
<use xlink:href="#glyph2-7" x="332.152698" y="310.831"/>
|
||||
<use xlink:href="#glyph2-12" x="336.581073" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="345.453765" y="310.831"/>
|
||||
<use xlink:href="#glyph2-15" x="350.988985" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="355.42035" y="310.831"/>
|
||||
<use xlink:href="#glyph2-15" x="360.40165" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-14" x="366.506731" y="310.831"/>
|
||||
<use xlink:href="#glyph2-5" x="372.041952" y="310.831"/>
|
||||
<use xlink:href="#glyph2-33" x="377.023252" y="310.831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-18" x="139.746" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="145.560173" y="322.786"/>
|
||||
<use xlink:href="#glyph2-11" x="149.988549" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="157.309068" y="322.786"/>
|
||||
<use xlink:href="#glyph2-7" x="162.844288" y="322.786"/>
|
||||
<use xlink:href="#glyph2-6" x="167.272664" y="322.786"/>
|
||||
<use xlink:href="#glyph2-36" x="170.040274" y="322.786"/>
|
||||
<use xlink:href="#glyph2-7" x="173.084845" y="322.786"/>
|
||||
<use xlink:href="#glyph2-12" x="177.51322" y="322.786"/>
|
||||
<use xlink:href="#glyph2-34" x="183.048441" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-37" x="190.378922" y="322.786"/>
|
||||
<use xlink:href="#glyph2-11" x="197.573912" y="322.786"/>
|
||||
<use xlink:href="#glyph2-26" x="200.341522" y="322.786"/>
|
||||
<use xlink:href="#glyph2-7" x="204.215977" y="322.786"/>
|
||||
<use xlink:href="#glyph2-6" x="208.644353" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="215.974834" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="221.500092" y="322.786"/>
|
||||
<use xlink:href="#glyph2-14" x="227.035312" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-31" x="237.133404" y="322.786"/>
|
||||
<use xlink:href="#glyph2-5" x="244.605354" y="322.786"/>
|
||||
<use xlink:href="#glyph2-4" x="249.586654" y="322.786"/>
|
||||
<use xlink:href="#glyph2-7" x="257.888488" y="322.786"/>
|
||||
<use xlink:href="#glyph2-12" x="262.316864" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-11" x="272.414955" y="322.786"/>
|
||||
<use xlink:href="#glyph2-12" x="275.182566" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="285.270694" y="322.786"/>
|
||||
<use xlink:href="#glyph2-11" x="289.69907" y="322.786"/>
|
||||
<use xlink:href="#glyph2-12" x="292.46668" y="322.786"/>
|
||||
<use xlink:href="#glyph2-7" x="298.001901" y="322.786"/>
|
||||
<use xlink:href="#glyph2-9" x="302.430277" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-24" x="310.895498" y="322.786"/>
|
||||
<use xlink:href="#glyph2-7" x="316.983643" y="322.786"/>
|
||||
<use xlink:href="#glyph2-11" x="321.412018" y="322.786"/>
|
||||
<use xlink:href="#glyph2-6" x="324.179629" y="322.786"/>
|
||||
<use xlink:href="#glyph2-7" x="326.947239" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-10" x="335.928523" y="322.786"/>
|
||||
<use xlink:href="#glyph2-21" x="340.356899" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="350.45499" y="322.786"/>
|
||||
<use xlink:href="#glyph2-5" x="355.990211" y="322.786"/>
|
||||
<use xlink:href="#glyph2-6" x="360.971511" y="322.786"/>
|
||||
<use xlink:href="#glyph2-26" x="363.739121" y="322.786"/>
|
||||
<use xlink:href="#glyph2-7" x="367.613576" y="322.786"/>
|
||||
<use xlink:href="#glyph2-12" x="372.041952" y="322.786"/>
|
||||
<use xlink:href="#glyph2-28" x="377.577172" y="322.786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-38" x="139.746" y="334.742"/>
|
||||
<use xlink:href="#glyph2-9" x="147.35643" y="334.742"/>
|
||||
<use xlink:href="#glyph2-15" x="151.258781" y="334.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-39" x="157.343937" y="334.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="163.020626" y="334.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="168.280879" y="334.742"/>
|
||||
<use xlink:href="#glyph2-18" x="173.262179" y="334.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-32" x="179.06639" y="334.742"/>
|
||||
<use xlink:href="#glyph2-5" x="184.04769" y="334.742"/>
|
||||
<use xlink:href="#glyph2-9" x="189.02899" y="334.742"/>
|
||||
<use xlink:href="#glyph2-15" x="192.93134" y="334.742"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
17
sections/german/05/leerzeichen.tex
Normal file
@ -0,0 +1,17 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\parbox{.7\linewidth}{
|
||||
\section*{Leerzeichen}
|
||||
\subsection*{Nur normale Leerzeichen:}
|
||||
Schmale Leerzeichen werden z. B. in Abkürzungen und zwischen Zahlen und Einheiten verwendet: 10 s. Normalbreite, aber geschützte Leerzeichen können u. a. dabei helfen, Titel und Namen in einer Zeile zu halten: Dr. Fooboar.
|
||||
\subsection*{Mit verschiedenen Leerzeichen:}
|
||||
Schmale Leerzeichen werden z.\,B. in Abkürzungen und zwischen Zahlen und Einheiten verwendet: 10\,s. Normalbreite, aber geschützte Leerzeichen können u.\,a. dabei helfen, Titel und Namen in einer Zeile zu halten: Dr.~Fooboar.
|
||||
}
|
||||
\end{document}
|
||||