Add sonoj2019
This commit is contained in:
parent
51d0765ed8
commit
ab0ca08ec6
4 changed files with 1119 additions and 0 deletions
149
sonoj19/__init__.py
Normal file
149
sonoj19/__init__.py
Normal file
|
@ -0,0 +1,149 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
from math import sin, pi
|
||||
|
||||
scheduleUrl = 'https://babelmonkeys.de/~florob/sj19-schedule.xml'
|
||||
|
||||
def introFrames(p):
|
||||
|
||||
handle1_off = 120
|
||||
handle2_off = 247
|
||||
handle3_off = 80
|
||||
|
||||
# kurz stehen bleiben
|
||||
frames = int(0.5 * fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('handle1', 'attr', 'transform', "translate(0, {})".format(handle1_off)),
|
||||
('handle2', 'attr', 'transform', "translate(0, {})".format(handle2_off)),
|
||||
('handle3', 'attr', 'transform', "translate(0, {})".format(handle3_off)),
|
||||
)
|
||||
|
||||
# handle 1 anheben
|
||||
frames = 3 * fps
|
||||
for i in range(0, frames):
|
||||
y = (1.0 - i / frames) * handle1_off
|
||||
yield (
|
||||
('handle1', 'attr', 'transform', "translate(0, {})".format(y)),
|
||||
('handle2', 'attr', 'transform', "translate(0, {})".format(handle2_off)),
|
||||
('handle3', 'attr', 'transform', "translate(0, {})".format(handle3_off)),
|
||||
)
|
||||
|
||||
# kurz stehen bleiben
|
||||
frames = int(0.2 * fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('handle2', 'attr', 'transform', "translate(0, {})".format(handle2_off)),
|
||||
('handle3', 'attr', 'transform', "translate(0, {})".format(handle3_off)),
|
||||
)
|
||||
|
||||
# handle 2 anheben
|
||||
frames = 3 * fps
|
||||
for i in range(0, frames):
|
||||
y = (1.0 - i / frames) * handle2_off
|
||||
yield (
|
||||
('handle2', 'attr', 'transform', "translate(0, {})".format(y)),
|
||||
('handle3', 'attr', 'transform', "translate(0, {})".format(handle3_off)),
|
||||
)
|
||||
|
||||
# kurz stehen bleiben
|
||||
frames = int(0.2 * fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('handle3', 'attr', 'transform', "translate(0, {})".format(handle3_off)),
|
||||
)
|
||||
|
||||
# handle 3 anheben
|
||||
frames = 3 * fps
|
||||
for i in range(0, frames):
|
||||
y = (1.0 - i / frames) * handle3_off
|
||||
yield (
|
||||
('handle3', 'attr', 'transform', "translate(0, {})".format(y)),
|
||||
)
|
||||
|
||||
# kurz stehen bleiben
|
||||
frames = int(0.5 * fps)
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
def pauseFrames(p):
|
||||
handle1_off = 110
|
||||
handle2_off = 150
|
||||
handle3_off = 110
|
||||
|
||||
frames = 10 * fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('handle1', 'attr', 'transform', "translate(0, {})".format(sin(2 * pi * i / frames) * handle1_off)),
|
||||
('handle2', 'attr', 'transform', "translate(0, {})".format(sin(2 * pi * i / frames + 0.5 * pi) * handle2_off)),
|
||||
('handle3', 'attr', 'transform', "translate(0, {})".format(sin(2 * pi * i / frames + 1.0 * pi) * handle3_off)),
|
||||
)
|
||||
|
||||
def outroFrames(p):
|
||||
# 5 Sekunde stehen lassen
|
||||
frames = 5 * fps
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../18271.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$date': "October 27th, 2018",
|
||||
'$title': "Welcome",
|
||||
'$subtitle': 'What is Open Source?',
|
||||
'$personnames': 'Nils Hilbricht'
|
||||
}
|
||||
)
|
||||
|
||||
render(
|
||||
'outro.svg',
|
||||
'../outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
if not (idlist == []):
|
||||
if 000000 in idlist:
|
||||
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||
continue
|
||||
if int(event['id']) not in idlist:
|
||||
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||
continue
|
||||
|
||||
# generate a task description and put them into the queue
|
||||
queue.put(Rendertask(
|
||||
infile='intro.svg',
|
||||
outfile=str(event['id']) + ".ts",
|
||||
sequence=introFrames,
|
||||
parameters={
|
||||
'$date': "October 4th, 2017",
|
||||
'$id': event['id'],
|
||||
'$title': event['title'],
|
||||
'$subtitle': event['subtitle'] or '',
|
||||
'$personnames': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
if not "pause" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile='pause.svg',
|
||||
outfile='pause.ts',
|
||||
sequence=pauseFrames
|
||||
))
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile='outro.svg',
|
||||
outfile='outro.ts',
|
||||
sequence=outroFrames
|
||||
))
|
282
sonoj19/artwork/intro.svg
Normal file
282
sonoj19/artwork/intro.svg
Normal file
|
@ -0,0 +1,282 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 1920 1080"
|
||||
version="1.1"
|
||||
id="svg4038"
|
||||
inkscape:version="0.92.2 2405546, 2018-03-11"
|
||||
sodipodi:docname="intro.svg"
|
||||
inkscape:export-filename="/home/nils/sonoj-convention.svg.png"
|
||||
inkscape:export-xdpi="68.419998"
|
||||
inkscape:export-ydpi="68.419998">
|
||||
<title
|
||||
id="title4577">Sonoj Convention Logo</title>
|
||||
<defs
|
||||
id="defs4032" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#2e2e2e"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="962.11448"
|
||||
inkscape:cy="878.39498"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1016"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
fit-margin-top="10"
|
||||
fit-margin-left="10"
|
||||
fit-margin-right="10"
|
||||
fit-margin-bottom="10"
|
||||
inkscape:measure-start="767.5,882.143"
|
||||
inkscape:measure-end="979.91,957.515"
|
||||
units="px"
|
||||
scale-x="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid14074"
|
||||
originx="-37.150235"
|
||||
originy="-42.35776" />
|
||||
<sodipodi:guide
|
||||
position="1034.265,776.03061"
|
||||
orientation="0,1"
|
||||
id="guide1097"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="910.14744,1043.9927"
|
||||
orientation="1,0"
|
||||
id="guide1099"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4035">
|
||||
<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>Sonoj Convention Logo</dc:title>
|
||||
<dc:date>2018-05-07</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Nils Hilbricht</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>All Rights Reserved</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:source>http://www.sonoj.org</dc:source>
|
||||
<dc:description>The logo of the Sonoj Convention. The font is a based on Sturkopf Grotesk by Uwe Borchert (SIL Open Font License)
|
||||
The white space left and right is two times the width of the small "o" from "convention" each. And top/bottom is the height of the same "o" each.</dc:description>
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-37.150243,31.107816)">
|
||||
<rect
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:4.83779526;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
|
||||
id="rect120"
|
||||
width="1920"
|
||||
height="1080.0001"
|
||||
x="37.150242"
|
||||
y="-31.107817" />
|
||||
<flowRoot
|
||||
xml:space="preserve"
|
||||
id="text"
|
||||
style="font-size:64px;line-height:125%;font-family:'DejaVu Sans';text-align:center;text-anchor:middle;opacity:1;fill:#eeeeef;fill-opacity:1;stroke:none"
|
||||
transform="translate(39.769398,792.13963)"><flowPara
|
||||
style="font-size:64px;fill:#eeeeef;fill-opacity:1"
|
||||
id="flowPara4172">$personnames</flowPara><flowPara
|
||||
style="font-size:64px;fill:#eeeeef;fill-opacity:1"
|
||||
id="flowPara4174">$title</flowPara><flowPara
|
||||
style="font-size:53.33333206px;fill:#eeeeef;fill-opacity:1"
|
||||
id="subtitle">$subtitle</flowPara><flowRegion
|
||||
id="flowRegion868"
|
||||
style="fill:#eeeeef;fill-opacity:1"><rect
|
||||
id="rect870"
|
||||
width="1807.3506"
|
||||
height="265.44351"
|
||||
x="52.627117"
|
||||
y="2.2881355"
|
||||
style="fill:#eeeeef;fill-opacity:1" /></flowRegion></flowRoot> <g
|
||||
id="g1187">
|
||||
<g
|
||||
id="g1155">
|
||||
<path
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 891.6858,39.59612 -1.04062,1.987498 -12.58594,24.107815 v 114.267187 53.9297 155.31797 h 23.76563 l 16.06171,-30.76641 V 233.88832 179.95862 39.59612 Z"
|
||||
id="rect874-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path909"
|
||||
d="M 991.26501,-1.1077759 990.12129,1.0789454 977.24002,25.75863 v 65.486722 54.060918 284.59454 h 23.04148 l 16.7789,-32.13277 V 145.30627 91.245352 -1.1077759 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.14604282;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path915"
|
||||
d="m 1091.8854,39.596135 -1.0383,1.987499 -14.4329,27.639845 v 149.742181 53.89691 116.34375 h 24.6961 l 15.1313,-28.98051 V 272.86257 218.96566 39.596135 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.41297674;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<g
|
||||
id="handle1">
|
||||
<rect
|
||||
y="179.95938"
|
||||
x="878.05902"
|
||||
height="53.928421"
|
||||
width="39.826069"
|
||||
id="rect874"
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913"
|
||||
d="m 862.8299,185.77705 a 12.255037,12.255037 0 0 0 -12.25266,12.25918 v 17.77389 a 12.255037,12.255037 0 0 0 12.25266,12.25268 h 70.28436 a 12.255037,12.255037 0 0 0 12.25266,-12.25268 v -17.77389 a 12.255037,12.255037 0 0 0 -12.25266,-12.25918 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
<g
|
||||
id="handle2">
|
||||
<rect
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect874-3"
|
||||
width="39.826069"
|
||||
height="53.928421"
|
||||
x="977.23401"
|
||||
y="91.37674" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913-5"
|
||||
d="m 962.00485,97.194406 a 12.255037,12.255037 0 0 0 -12.25266,12.259174 v 17.7739 a 12.255037,12.255037 0 0 0 12.25266,12.25268 h 70.28435 a 12.255037,12.255037 0 0 0 12.2527,-12.25268 v -17.7739 a 12.255037,12.255037 0 0 0 -12.2527,-12.259174 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
<g
|
||||
id="handle3">
|
||||
<rect
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect874-2"
|
||||
width="39.826069"
|
||||
height="53.928421"
|
||||
x="1076.415"
|
||||
y="218.93315" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913-9"
|
||||
d="M 1061.1858,224.75082 A 12.255037,12.255037 0 0 0 1048.9332,237.01 v 17.77389 a 12.255037,12.255037 0 0 0 12.2526,12.25268 h 70.2844 a 12.255037,12.255037 0 0 0 12.2527,-12.25268 V 237.01 a 12.255037,12.255037 0 0 0 -12.2527,-12.25918 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g1063">
|
||||
<path
|
||||
d="m 783.35391,655.68587 c -4.15628,0 -7.4084,1.44774 -9.93732,4.34345 -2.34908,2.89563 -3.61419,5.97227 -3.61419,9.22986 v 68.77162 c 0,2.89564 1.08463,5.97227 3.4328,9.04887 2.34887,3.07663 5.60124,4.52441 10.11871,4.52441 h 13.55063 c 3.79512,0 6.86676,-1.26681 9.577,-3.98145 2.70937,-2.71463 3.97472,-5.79137 3.97472,-9.59183 v -13.93535 h -13.55172 v 9.77283 c 0,1.26685 -0.35767,2.35274 -1.44492,3.25763 -0.72434,0.90489 -1.80723,1.26686 -3.07164,1.26686 h -4.51751 c -1.26441,0 -2.16748,-0.36183 -3.25212,-1.26686 -0.72431,-0.90489 -1.26444,-1.99078 -1.26444,-3.25763 v -59.90375 c 0,-1.62875 0.5454,-2.71467 1.80632,-3.43853 1.26532,-0.72368 2.16836,-1.08592 2.71024,-1.08592 h 4.51751 c 1.26441,0 2.34904,0.36186 3.25233,1.26692 0.90304,0.90489 1.26423,1.99068 1.26423,3.25753 v 9.22994 h 13.55172 v -13.93532 c 0,-3.80056 -1.26535,-6.87716 -3.97472,-9.59183 -2.71024,-2.71467 -5.78188,-3.98149 -9.577,-3.98149 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52075291"
|
||||
id="path875"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 833.63749,655.68587 c -3.79487,0 -6.86655,1.26709 -9.57678,3.98236 -2.5289,2.53419 -3.79421,5.61159 -3.79421,9.05085 v 69.32966 c 0,3.43929 1.26531,6.69762 3.61352,9.41289 2.52976,2.71526 5.78188,4.16339 9.75747,4.16339 h 13.3702 c 3.794,0 6.86564,-1.2671 9.57592,-3.98232 2.71024,-2.71527 3.97555,-5.79263 3.97555,-9.59396 v -69.32969 c 0,-3.43926 -1.26531,-6.33559 -3.79487,-9.05086 -2.34908,-2.71526 -5.60123,-3.98236 -9.7566,-3.98236 z m 4.5166,13.57625 h 4.51744 c 1.26448,0 2.16756,0.36196 3.07168,1.26713 0.90304,0.90503 1.26448,1.9912 1.26448,3.25829 v 60.27877 c 0,1.2672 -0.35771,2.17226 -1.26448,3.07736 -0.90412,0.90507 -1.8072,1.44806 -3.07168,1.44806 h -4.51744 c -1.08376,0 -2.16839,-0.54289 -3.07164,-1.44806 -0.90308,-0.9051 -1.26424,-1.81016 -1.26424,-3.07736 v -60.27877 c 0,-1.08613 0.35768,-2.17212 1.08377,-3.07722 0.90304,-0.90507 1.98767,-1.44817 3.25211,-1.4482 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52124548"
|
||||
id="path877"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 871.09196,656.96745 v 94.65883 h 13.55172 v -77.81431 c -0.17936,-0.91546 0.17936,-1.83093 0.90304,-2.74636 0.90332,-1.09855 1.98705,-1.64783 3.43284,-1.64783 h 4.5166 c 0.90416,0 1.98792,0.36608 2.89096,1.28161 0.90412,0.73217 1.446,1.83097 1.446,3.11258 v 77.81431 h 13.55067 v -82.39166 c 0,-3.84488 -0.90307,-6.95752 -2.52871,-9.52078 -1.62673,-2.74639 -4.51768,-4.02797 -8.31168,-4.02797 h -7.04724 c -4.15519,0 -7.22684,2.01391 -9.03404,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path879"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 919.5605,655.68587 18.97132,95.94041 h 13.18948 l 18.97226,-95.94041 h -13.55175 l -12.10568,68.47588 -11.92503,-68.47588 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.5777669"
|
||||
id="path881"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 991.91466,655.68587 c -3.794,0 -6.86568,1.26462 -9.57592,3.97461 -2.71048,2.71007 -3.97472,5.7815 -3.97472,9.57546 v 68.83478 c 0,3.794 1.26424,6.86544 3.97472,9.57546 2.71024,2.71003 5.78192,3.97469 9.57592,3.97469 h 13.37104 c 3.794,0 6.8656,-1.26466 9.5759,-3.97469 2.7103,-2.71002 3.9747,-5.78146 3.9747,-9.57546 v -13.55011 h -13.5506 v 9.57536 c 0,1.26476 -0.5456,2.16808 -1.2653,3.07143 -0.9033,0.90332 -1.9871,1.26462 -3.2522,1.26462 h -4.33607 c -1.26532,0 -2.34908,-0.36126 -3.25212,-1.26462 -0.90416,-0.90335 -1.26535,-1.80667 -1.26535,-3.07143 v -24.39023 h 26.92164 v -40.46976 c 0,-3.794 -1.2644,-6.86543 -3.9747,-9.57546 -2.7103,-2.71 -5.7819,-3.97465 -9.5759,-3.97465 z m 4.51747,13.73083 h 4.33607 c 1.2651,0 2.1684,0.54181 3.0715,1.44534 0.9041,0.90335 1.446,1.80667 1.446,3.07129 v 22.58359 h -13.37104 v -22.58359 c 0,-1.26462 0.3577,-2.16794 1.26535,-3.07129 0.90304,-0.90332 1.9868,-1.44534 3.25212,-1.44534 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.51688766"
|
||||
id="path883"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1029.1895,656.96745 v 94.65883 h 13.5506 v -77.81431 c -0.1793,-0.91546 0.1794,-1.83093 0.904,-2.74636 0.9033,-1.09855 1.987,-1.64783 3.4328,-1.64783 h 4.5168 c 0.9031,0 1.9877,0.36608 2.8909,1.28161 0.9031,0.73217 1.4459,1.83097 1.4459,3.11258 v 77.81431 h 13.5508 v -82.39166 c 0,-3.84488 -0.9033,-6.95752 -2.5297,-9.52078 -1.6257,-2.74639 -4.5166,-4.02797 -8.3109,-4.02797 h -7.047 c -4.1554,0 -7.2271,2.01391 -9.0342,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path885"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1114.5982,655.68587 v 95.94041 h 13.371 v -95.94041 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54703188"
|
||||
id="path887"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
d="m 1151.5956,655.68587 c -3.794,0 -6.8656,1.26709 -9.5759,3.98236 -2.5298,2.53419 -3.794,5.61159 -3.794,9.05085 v 69.32966 c 0,3.43929 1.2642,6.69762 3.6133,9.41289 2.5298,2.71526 5.7819,4.16339 9.7566,4.16339 h 13.3711 c 3.794,0 6.8656,-1.2671 9.5759,-3.98232 2.7104,-2.71527 3.9747,-5.79263 3.9747,-9.59396 v -69.32969 c 0,-3.43926 -1.2643,-6.33559 -3.794,-9.05086 -2.3491,-2.71526 -5.6012,-3.98236 -9.7566,-3.98236 z m 4.5175,13.57625 h 4.5168 c 1.2651,0 2.1684,0.36196 3.0714,1.26713 0.9042,0.90503 1.2654,1.9912 1.2654,3.25829 v 60.27877 c 0,1.2672 -0.3577,2.17226 -1.2654,3.07736 -0.903,0.90507 -1.8063,1.44806 -3.0714,1.44806 h -4.5168 c -1.0846,0 -2.1684,-0.54289 -3.0715,-1.44806 -0.9041,-0.9051 -1.2653,-1.81016 -1.2653,-3.07736 v -60.27877 c 0,-1.08613 0.3577,-2.17212 1.0846,-3.07722 0.9033,-0.90507 1.9871,-1.44817 3.2522,-1.4482 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52124548"
|
||||
id="path889"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1189.0511,656.96745 v 94.65883 h 13.5507 v -77.81431 c -0.1793,-0.91546 0.1794,-1.83093 0.9031,-2.74636 0.9041,-1.09855 1.9878,-1.64783 3.4338,-1.64783 h 4.5166 c 0.9032,0 1.9877,0.36608 2.891,1.28161 0.903,0.73217 1.4458,1.83097 1.4458,3.11258 v 77.81431 h 13.5509 v -82.39166 c 0,-3.84488 -0.9033,-6.95752 -2.5298,-9.52078 -1.6256,-2.74639 -4.5166,-4.02797 -8.3117,-4.02797 h -7.0462 c -4.1553,0 -7.227,2.01391 -9.0342,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path891"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path893"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54827785"
|
||||
d="m 1084.8847,751.62628 h 13.3701 v -59.30276 h 7.9503 v -13.18951 h -7.9503 v -23.44814 l -13.3701,7.87706 v 15.57104 h -6.685 v 13.18952 h 6.685 z" />
|
||||
<path
|
||||
d="m 826.56053,647.5823 c 8.15929,0 15.09473,-2.24415 20.80623,-6.4118 6.11949,-4.48823 8.97524,-9.9383 8.97524,-16.35007 v -68.60625 c 0,-6.09123 -2.85575,-11.54122 -8.15933,-16.3501 -5.7115,-4.4882 -13.05489,-7.69419 -21.62214,-9.9383 l -22.03016,-5.45 c -2.4478,-0.64122 -4.89559,-2.24415 -6.93543,-4.48826 -2.03984,-2.56473 -2.85575,-4.80881 -2.85575,-7.053 v -51.29434 c 0,-2.24419 0.81591,-3.84708 2.85575,-5.45007 2.03984,-1.60293 4.07964,-2.24408 6.93543,-2.24408 h 9.79115 c 2.85578,0 4.89562,0.64115 6.93543,2.24408 2.03981,1.60299 2.85575,3.20592 2.85575,5.45007 v 16.67067 h 30.18945 v -25.00601 c 0,-6.73242 -2.85575,-12.18242 -8.56725,-16.67072 -6.11948,-4.48823 -13.05488,-6.73241 -21.21421,-6.73241 h -29.7815 c -8.56725,0 -15.50272,2.24418 -21.21426,6.73241 -5.7115,4.48827 -8.56724,9.9383 -8.56724,16.67072 v 67.32383 c 0,6.09123 2.85574,11.86184 8.15929,16.67072 5.71157,4.80884 13.05496,8.01472 21.62221,10.25887 l 22.03012,5.12946 c 2.85579,0.64119 4.89559,1.92353 6.93547,4.16765 2.03981,2.24415 2.85575,4.16769 2.85575,6.4118 v 52.89734 c 0,2.24412 -0.81594,4.16766 -2.85575,5.77061 -2.03988,1.60296 -4.07968,2.24412 -6.93547,2.24412 h -9.79115 c -2.85575,0 -4.89559,-0.64116 -6.93543,-2.24412 -2.0398,-1.60295 -2.85575,-3.52653 -2.85575,-5.77061 v -16.67068 h -30.18945 v 25.32664 c 0,6.41176 2.85575,11.8618 8.56728,16.35006 6.11949,4.16765 13.05489,6.4118 21.21422,6.4118 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:144.65272522px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.88358629"
|
||||
id="path895"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 897.63384,486.69648 c -8.53679,0 -15.44731,2.12509 -21.54488,6.6784 -5.69112,4.24989 -8.53682,9.4103 -8.53682,15.17777 v 116.26286 c 0,5.76768 2.8457,11.23174 8.13012,15.78505 5.69112,4.55334 13.0083,6.98184 21.95158,6.98184 h 30.08149 c 8.53679,0 15.4473,-2.12484 21.54488,-6.67843 6.09757,-4.55331 8.94327,-9.71368 8.94327,-16.08846 V 508.55265 c 0,-5.76743 -2.8457,-10.62443 -8.53682,-15.17777 -5.28442,-4.55331 -12.6016,-6.6784 -21.95133,-6.6784 z m 10.16263,22.76689 h 10.16268 c 2.84566,0 4.87818,0.6071 6.91069,2.12509 2.03255,1.51778 2.84549,3.33901 2.84549,5.46382 v 101.08501 c 0,2.12484 -0.81294,3.64262 -2.84549,5.1604 -2.03251,1.51779 -4.06503,2.4285 -6.91069,2.4285 h -10.16268 c -2.43896,0 -4.87817,-0.91068 -6.91069,-2.4285 -2.03255,-1.51778 -2.84545,-3.03556 -2.84545,-5.1604 V 517.05228 c 0,-1.82116 0.8129,-3.64263 2.43896,-5.16041 2.03252,-1.51775 4.47152,-2.4285 7.31718,-2.4285 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path897"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 969.603,490.64276 V 647.5824 h 30.4879 V 518.5703 c -0.40644,-1.51802 0.4067,-3.0356 2.0328,-4.55355 2.0325,-1.82119 4.4715,-2.73191 7.7236,-2.73191 h 10.1627 c 2.0325,0 4.4715,0.60703 6.504,2.12481 2.0326,1.21437 3.2522,3.03556 3.2522,5.16065 v 129.0121 h 30.4879 V 510.98119 c 0,-6.37478 -2.0325,-11.53516 -5.6911,-15.78484 -3.6584,-4.55359 -10.1627,-6.67847 -18.6992,-6.67847 H 1020.01 c -9.3497,0 -16.2605,3.33921 -20.32554,10.0174 v -7.89252 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path899"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1101.7353,486.69648 c -8.5368,0 -15.4473,2.12509 -21.5449,6.6784 -5.6913,4.24989 -8.5368,9.4103 -8.5368,15.17777 v 116.26286 c 0,5.76768 2.8455,11.23174 8.1301,15.78505 5.6912,4.55334 13.0084,6.98184 21.9516,6.98184 h 30.0815 c 8.5366,0 15.4473,-2.12484 21.5449,-6.67843 6.0976,-4.55331 8.9433,-9.71368 8.9433,-16.08846 V 508.55265 c 0,-5.76743 -2.8457,-10.62443 -8.5369,-15.17777 -5.2844,-4.55331 -12.6016,-6.6784 -21.9513,-6.6784 z m 10.1627,22.76689 h 10.1626 c 2.8455,0 4.8782,0.6071 6.9108,2.12509 2.0325,1.51778 2.8454,3.33901 2.8454,5.46382 v 101.08501 c 0,2.12484 -0.8129,3.64262 -2.8454,5.1604 -2.0326,1.51779 -4.0653,2.4285 -6.9108,2.4285 h -10.1626 c -2.439,0 -4.8782,-0.91068 -6.9107,-2.4285 -2.0326,-1.51778 -2.8455,-3.03556 -2.8455,-5.1604 V 517.05228 c 0,-1.82116 0.8129,-3.64263 2.439,-5.16041 2.0325,-1.51775 4.4715,-2.4285 7.3172,-2.4285 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path901"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1224.4976,632.99222 V 486.50686 h -30.4759 v 142.20548 c 0,1.36181 -0.8127,2.33443 -2.8444,3.30726 -2.0316,0.97262 -4.0635,1.36159 -6.9078,1.36159 h -10.565 v 14.20121 h 18.2855 c 21.5364,0 32.5076,-4.86331 32.5076,-14.59018 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:7.02890587"
|
||||
id="path903"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path905"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.14515853"
|
||||
d="m 1194.0192,429.90143 v 30.47842 h 30.4784 v -30.47842 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 30 KiB |
399
sonoj19/artwork/outro.svg
Normal file
399
sonoj19/artwork/outro.svg
Normal file
|
@ -0,0 +1,399 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:ns3="http://ns.adobe.com/AdobeIllustrator/10.0/"
|
||||
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"
|
||||
version="1.1"
|
||||
width="1920"
|
||||
height="1080"
|
||||
id="svg2"
|
||||
sodipodi:docname="outro.svg"
|
||||
inkscape:version="0.92.2 2405546, 2018-03-11">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1016"
|
||||
id="namedview45"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.61806371"
|
||||
inkscape:cx="1017.2374"
|
||||
inkscape:cy="466.14713"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<defs
|
||||
id="defs72">
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient4138"
|
||||
id="linearGradient4144"
|
||||
x1="33.869217"
|
||||
y1="33.547523"
|
||||
x2="107.86375"
|
||||
y2="107.75778"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(5.4871613,0,0,5.4871616,73.767675,150.41714)" />
|
||||
<linearGradient
|
||||
id="linearGradient4138">
|
||||
<stop
|
||||
style="stop-color:#ff0000;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4140" />
|
||||
<stop
|
||||
id="stop4146"
|
||||
offset="0.21688242"
|
||||
style="stop-color:#ffa900;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#ffff00;stop-opacity:1"
|
||||
offset="0.35514969"
|
||||
id="stop4148" />
|
||||
<stop
|
||||
id="stop4150"
|
||||
offset="0.48759454"
|
||||
style="stop-color:#00ff00;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#00ffff;stop-opacity:1"
|
||||
offset="0.60985231"
|
||||
id="stop4152" />
|
||||
<stop
|
||||
id="stop4154"
|
||||
offset="0.74526769"
|
||||
style="stop-color:#0000ff;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#ba00ff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4142" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata24">
|
||||
<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 />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<rect
|
||||
width="1920"
|
||||
height="1080"
|
||||
style="fill:#2e2e2e;stroke:none"
|
||||
id="rect2"
|
||||
x="0"
|
||||
y="0" />
|
||||
<g
|
||||
id="g3446"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
transform="translate(-12)">
|
||||
<g
|
||||
id="g3421"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<g
|
||||
id="g907"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3543"
|
||||
d="m 1311.1719,526.22376 c -5.9849,-10.91121 -16.1933,-15.254 -28.0438,-15.254 -17.2475,0 -30.9765,12.2019 -30.9765,32.85511 0,21.00246 12.9069,32.85295 31.5622,32.85295 11.9676,0 22.176,-6.57059 27.8073,-16.54469 L 1298.38,553.4454 c -2.935,7.04131 -7.3928,9.15414 -13.0241,9.15414 -9.7398,0 -14.1976,-8.09556 -14.1976,-18.7725 0,-10.6791 3.755,-18.77466 14.1976,-18.77466 2.8157,0 8.4492,1.52497 11.7334,8.56628 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3545"
|
||||
d="m 1344.7168,525.05021 c 10.4427,0 14.9026,8.09556 14.9026,18.06967 0,11.38193 -4.4599,19.47749 -14.9026,19.47749 -10.4426,0 -14.9004,-8.09556 -14.9004,-18.7725 0,-10.67693 4.4578,-18.77466 14.9004,-18.77466 z m 0,-14.08045 c -19.4775,0 -33.2043,11.85049 -33.2043,32.85511 0,21.00246 13.7268,32.85295 33.2043,32.85295 19.4775,0 33.2066,-11.85049 33.2066,-32.85295 0,-21.00246 -13.7291,-32.85511 -33.2066,-32.85511 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3547"
|
||||
d="m 1381.674,575.03355 h 18.3039 v -38.83568 c 0,-5.63131 2.3471,-10.44266 9.7377,-10.44266 7.0413,0 8.9177,4.10635 8.9177,10.20838 v 39.07213 h 18.3039 v -38.3693 c 0,-6.33631 3.1671,-10.91121 9.2691,-10.91121 6.922,0 9.3863,3.98921 9.3863,12.78976 v 36.48858 h 18.3039 v -47.63623 c 0,-14.31474 -13.1412,-16.42756 -19.2432,-16.42756 -7.2756,0 -14.0805,2.22996 -20.0632,8.32983 -4.1085,-5.51418 -9.3863,-8.32983 -16.5447,-8.32983 -5.6313,0 -13.3755,1.6421 -18.0697,7.15845 v -5.51418 h -18.3039 v 62.41952 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3549"
|
||||
d="m 1479.7534,575.03355 h 18.3039 v -38.83568 c 0,-5.63131 2.3471,-10.44266 9.7377,-10.44266 7.0413,0 8.9177,4.10635 8.9177,10.20838 v 39.07213 h 18.3039 v -38.3693 c 0,-6.33631 3.1671,-10.91121 9.267,-10.91121 6.922,0 9.3884,3.98921 9.3884,12.78976 v 36.48858 h 18.3039 v -47.63623 c 0,-14.31474 -13.1433,-16.42756 -19.2432,-16.42756 -7.2756,0 -14.0783,2.22996 -20.0632,8.32983 -4.1063,-5.51418 -9.3862,-8.32983 -16.5447,-8.32983 -5.6313,0 -13.3754,1.6421 -18.0696,7.15845 v -5.51418 h -18.304 v 62.41952 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3551"
|
||||
d="m 1608.9244,525.05021 c 10.4405,0 14.9004,8.09556 14.9004,18.06967 0,11.38193 -4.4599,19.47749 -14.9004,19.47749 -10.4427,0 -14.9026,-8.09556 -14.9026,-18.7725 0,-10.67693 4.4599,-18.77466 14.9026,-18.77466 z m 0,-14.08045 c -19.4775,0 -33.2065,11.85049 -33.2065,32.85511 0,21.00246 13.7268,32.85295 33.2065,32.85295 19.4775,0 33.2065,-11.85049 33.2065,-32.85295 0,-21.00246 -13.729,-32.85511 -33.2065,-32.85511 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3553"
|
||||
d="m 1647.0551,575.03355 h 18.3039 v -38.83568 c 0,-5.63131 2.3471,-10.44266 9.7398,-10.44266 7.0392,0 8.9156,4.10635 8.9156,10.20838 v 39.07213 h 18.3039 v -46.11344 c 0,-9.38625 -4.1085,-17.95252 -18.8918,-17.95252 -5.6313,0 -13.3755,1.6421 -18.0697,7.15845 v -5.51418 h -18.3039 v 62.41952 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3555"
|
||||
d="m 1763.4385,520.00676 c -8.4492,-5.63132 -17.9504,-9.03483 -27.5731,-9.03483 -12.6748,0 -26.4017,6.10203 -26.4017,21.82459 0,22.17601 36.9593,14.43187 36.9593,24.1717 0,5.63349 -6.9198,6.33632 -9.9741,6.33632 -8.3298,0 -14.0783,-3.40135 -19.7117,-8.80056 l -11.382,9.8548 c 9.1542,8.44914 16.8961,12.32121 30.508,12.32121 13.6076,0 28.1588,-5.86776 28.1588,-22.29315 0,-23.34956 -36.9593,-14.54901 -36.9593,-25.22594 0,-3.16708 3.2842,-4.80918 7.8591,-4.80918 5.7506,0 13.6119,2.3471 17.2475,6.68773 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3557"
|
||||
d="m 1311.1719,454.41149 c -5.9849,-10.91121 -16.1933,-15.25401 -28.0438,-15.25401 -17.2475,0 -30.9765,12.20191 -30.9765,32.85295 0,21.00246 12.9069,32.85512 31.5622,32.85512 11.9676,0 22.176,-6.57059 27.8073,-16.5447 l -13.1411,-6.68773 c -2.935,7.04132 -7.3928,9.15197 -13.0241,9.15197 -9.7398,0 -14.1976,-8.09555 -14.1976,-18.77466 0,-10.67694 3.755,-18.77249 14.1976,-18.77249 2.8157,0 8.4492,1.52496 11.7334,8.56628 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3559"
|
||||
d="m 1315.6362,503.22128 h 18.3039 v -36.13933 c 0,-6.92201 4.3406,-8.80056 15.254,-10.09125 l 1.9935,-0.23428 -0.1171,-16.19111 c -6.4535,0.47072 -13.1412,2.81566 -17.1304,6.57059 v -6.33631 h -18.3039 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3561"
|
||||
d="m 1413.3512,475.76536 c -0.1172,-19.24321 -7.8613,-36.60788 -30.6252,-36.60788 -19.0089,0 -30.6251,12.67263 -30.6251,34.7315 0,17.59894 11.2648,30.97657 30.6251,30.97657 13.9633,0 23.9353,-5.51418 30.2716,-17.24753 l -13.729,-7.15845 c -5.2799,7.50987 -8.4492,11.02835 -15.254,11.02835 -5.8656,0 -13.4926,-3.75493 -13.6098,-15.72256 z m -43.1785,-11.26262 c 0.82,-8.21487 7.1563,-11.96763 12.4362,-11.96763 5.2799,0 11.8505,2.81566 12.4362,11.96763 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3563"
|
||||
d="m 1455.3388,477.17319 c 0,9.50339 -5.3971,14.31473 -12.5555,14.31473 -4.46,0 -8.5663,-2.11282 -8.5663,-7.03914 0,-5.04562 4.2235,-6.80486 8.8005,-8.09555 l 12.3213,-3.52066 z m 17.5989,-19.94604 c -0.1171,-14.08046 -10.7941,-18.06967 -27.8073,-18.06967 -8.4492,0 -25.1088,1.64211 -25.6967,19.59463 h 17.6011 c 0.9393,-6.21917 3.7528,-8.32983 9.6205,-8.32983 4.9285,0 8.6835,1.99352 8.6835,6.68773 v 5.16276 l -6.6878,0.93928 c -19.946,2.81565 -32.033,8.09555 -32.033,23.11528 0,11.96763 8.9177,18.53822 20.8854,18.53822 6.5706,0 15.7225,-3.16707 18.7725,-8.09556 h 0.2342 c 0.1172,2.11283 0.4708,4.34063 1.1736,6.45345 h 16.8961 c -1.525,-3.87207 -1.6421,-8.68124 -1.6421,-13.02404 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3565"
|
||||
d="m 1515.9838,441.97314 h -10.9133 v -18.06966 h -18.304 v 18.06966 h -8.9155 v 11.26263 h 8.9155 v 32.85512 c 0,9.03483 2.23,18.77249 17.8376,18.77249 3.9892,0 9.3862,-0.46855 11.7333,-0.705 v -14.43187 c -0.9414,0.11714 -3.5206,0.35142 -5.5142,0.35142 -3.2885,0 -5.7506,-1.29069 -5.7506,-6.21918 v -30.62081 h 10.9134 v -11.2648 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3567"
|
||||
d="m 1522.8755,440.79959 v 62.42169 h 18.3039 v -62.42169 z m 18.3061,-7.03914 v -14.08046 h -18.304 v 14.08046 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
<polygon
|
||||
transform="matrix(2.1692274,0,0,2.1692274,1106.6528,419.67999)"
|
||||
id="polygon3569"
|
||||
points="211.67,38.512 220.162,38.512 230.007,9.736 221.028,9.736 216.051,30.074 215.944,30.074 210.966,9.736 201.934,9.736 "
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3571"
|
||||
d="m 1664.6996,475.76536 c -0.1172,-19.24321 -7.8613,-36.60788 -30.623,-36.60788 -19.0111,0 -30.623,12.67263 -30.623,34.7315 0,17.59894 11.2605,30.97657 30.623,30.97657 13.9633,0 23.9352,-5.51418 30.2715,-17.24753 l -13.729,-7.15845 c -5.2799,7.50987 -8.4491,11.02835 -15.2518,11.02835 -5.8656,0 -13.4948,-3.75493 -13.6098,-15.72256 z m -43.1785,-11.26262 c 0.8221,-8.21487 7.1563,-11.96763 12.4362,-11.96763 5.2799,0 11.8526,2.81566 12.4383,11.96763 z"
|
||||
ns3:knockout="Off"
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:229.93811035px;stroke-opacity:0" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="g3573"
|
||||
transform="matrix(2.1692274,0,0,2.1692274,1106.6528,419.67999)">
|
||||
<path
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:106px;stroke-opacity:0"
|
||||
ns3:knockout="Off"
|
||||
d="M 31.602,8.495 C 22.92,8.495 15.28,11.708 9.376,17.698 3.299,23.863 0,31.85 0,40.185 c 0,8.421 3.212,16.235 9.29,22.313 6.077,6.077 13.978,9.376 22.312,9.376 8.334,0 16.409,-3.299 22.66,-9.463 5.904,-5.817 9.029,-13.544 9.029,-22.226 0,-8.595 -3.125,-16.409 -9.116,-22.4 -6.077,-6.077 -13.891,-9.29 -22.573,-9.29 z m 0.087,5.731 c 7.119,0 13.457,2.691 18.406,7.64 4.861,4.862 7.466,11.287 7.466,18.319 0,7.119 -2.518,13.37 -7.38,18.146 -5.123,5.035 -11.721,7.727 -18.493,7.727 -6.859,0 -13.284,-2.691 -18.232,-7.64 -4.949,-4.95 -7.727,-11.461 -7.727,-18.233 0,-6.859 2.778,-13.37 7.727,-18.406 4.862,-4.948 11.114,-7.553 18.233,-7.553 z"
|
||||
id="path3575"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:106px;stroke-opacity:0"
|
||||
ns3:knockout="Off"
|
||||
d="m 31.28,34.919 c -1.79,-3.264 -4.844,-4.563 -8.389,-4.563 -5.16,0 -9.267,3.65 -9.267,9.829 0,6.283 3.861,9.829 9.443,9.829 3.581,0 6.634,-1.966 8.319,-4.949 l -3.932,-2.001 c -0.878,2.106 -2.211,2.738 -3.896,2.738 -2.914,0 -4.247,-2.422 -4.247,-5.616 0,-3.194 1.123,-5.617 4.247,-5.617 0.842,0 2.527,0.457 3.51,2.562 z"
|
||||
id="path3577"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:106px;stroke-opacity:0"
|
||||
ns3:knockout="Off"
|
||||
d="m 49.562,34.919 c -1.791,-3.264 -4.844,-4.563 -8.389,-4.563 -5.16,0 -9.268,3.65 -9.268,9.829 0,6.283 3.862,9.829 9.443,9.829 3.581,0 6.634,-1.966 8.319,-4.949 l -3.932,-2.001 c -0.877,2.106 -2.211,2.738 -3.896,2.738 -2.913,0 -4.248,-2.422 -4.248,-5.616 0,-3.194 1.124,-5.617 4.248,-5.617 0.842,0 2.527,0.457 3.511,2.562 z"
|
||||
id="path3579"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g3651"
|
||||
transform="matrix(2.1481719,0,0,2.1481719,948.67482,446.64239)"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:106px;stroke-opacity:0"
|
||||
d="m 37.443,-3.5 c 8.988,0 16.57,3.085 22.742,9.257 6.208,6.21 9.315,13.791 9.315,22.743 0,8.991 -3.049,16.476 -9.145,22.456 C 53.879,57.319 46.242,60.5 37.443,60.5 28.794,60.5 21.29,57.356 14.929,51.07 8.644,44.784 5.5,37.262 5.5,28.5 5.5,19.739 8.644,12.158 14.929,5.758 21.101,-0.415 28.604,-3.5 37.443,-3.5 Z m 0.114,5.772 c -7.276,0 -13.428,2.553 -18.457,7.657 -5.22,5.334 -7.829,11.525 -7.829,18.572 0,7.086 2.59,13.22 7.77,18.398 5.181,5.182 11.352,7.771 18.514,7.771 7.123,0 13.334,-2.607 18.629,-7.828 5.029,-4.838 7.543,-10.952 7.543,-18.343 0,-7.276 -2.553,-13.465 -7.656,-18.571 C 50.967,4.824 44.795,2.272 37.557,2.272 Z m 8.572,18.285 V 33.642 H 42.473 V 49.184 H 32.529 V 33.643 H 28.873 V 20.557 c 0,-0.572 0.2,-1.057 0.599,-1.457 0.401,-0.399 0.887,-0.6 1.457,-0.6 h 13.144 c 0.533,0 1.01,0.2 1.428,0.6 0.417,0.4 0.628,0.886 0.628,1.457 z M 33.042,12.329 c 0,-3.008 1.485,-4.514 4.458,-4.514 2.973,0 4.457,1.504 4.457,4.514 0,2.971 -1.486,4.457 -4.457,4.457 -2.971,0 -4.458,-1.486 -4.458,-4.457 z"
|
||||
id="path3653"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:45px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="850.4248"
|
||||
y="650.95966"
|
||||
id="text3372"><tspan
|
||||
style="font-family:sans-serif;fill:#ffffff;fill-opacity:1"
|
||||
id="tspan3374"
|
||||
x="850.4248"
|
||||
y="650.95966">https://creativecommons.org/licenses/by/4.0/</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.2055608,0,0,1.2055608,-753.22816,87.602156)"
|
||||
id="g1187">
|
||||
<g
|
||||
id="g1155">
|
||||
<path
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 891.6858,39.59612 -1.04062,1.987498 -12.58594,24.107815 v 114.267187 53.9297 155.31797 h 23.76563 l 16.06171,-30.76641 V 233.88832 179.95862 39.59612 Z"
|
||||
id="rect874-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path909"
|
||||
d="M 991.26501,-1.1077759 990.12129,1.0789454 977.24002,25.75863 v 65.486722 54.060918 284.59454 h 23.04148 l 16.7789,-32.13277 V 145.30627 91.245352 -1.1077759 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.14604282;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path915"
|
||||
d="m 1091.8854,39.596135 -1.0383,1.987499 -14.4329,27.639845 v 149.742181 53.89691 116.34375 h 24.6961 l 15.1313,-28.98051 V 272.86257 218.96566 39.596135 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.41297674;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<g
|
||||
id="handle1">
|
||||
<rect
|
||||
y="179.95938"
|
||||
x="878.05902"
|
||||
height="53.928421"
|
||||
width="39.826069"
|
||||
id="rect874"
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913"
|
||||
d="m 862.8299,185.77705 a 12.255037,12.255037 0 0 0 -12.25266,12.25918 v 17.77389 a 12.255037,12.255037 0 0 0 12.25266,12.25268 h 70.28436 a 12.255037,12.255037 0 0 0 12.25266,-12.25268 v -17.77389 a 12.255037,12.255037 0 0 0 -12.25266,-12.25918 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
<g
|
||||
id="handle2">
|
||||
<rect
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect874-3"
|
||||
width="39.826069"
|
||||
height="53.928421"
|
||||
x="977.23401"
|
||||
y="91.37674" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913-5"
|
||||
d="m 962.00485,97.194406 a 12.255037,12.255037 0 0 0 -12.25266,12.259174 v 17.7739 a 12.255037,12.255037 0 0 0 12.25266,12.25268 h 70.28435 a 12.255037,12.255037 0 0 0 12.2527,-12.25268 v -17.7739 a 12.255037,12.255037 0 0 0 -12.2527,-12.259174 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
<g
|
||||
id="handle3">
|
||||
<rect
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect874-2"
|
||||
width="39.826069"
|
||||
height="53.928421"
|
||||
x="1076.415"
|
||||
y="218.93315" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913-9"
|
||||
d="M 1061.1858,224.75082 A 12.255037,12.255037 0 0 0 1048.9332,237.01 v 17.77389 a 12.255037,12.255037 0 0 0 12.2526,12.25268 h 70.2844 a 12.255037,12.255037 0 0 0 12.2527,-12.25268 V 237.01 a 12.255037,12.255037 0 0 0 -12.2527,-12.25918 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g1063">
|
||||
<path
|
||||
d="m 783.35391,655.68587 c -4.15628,0 -7.4084,1.44774 -9.93732,4.34345 -2.34908,2.89563 -3.61419,5.97227 -3.61419,9.22986 v 68.77162 c 0,2.89564 1.08463,5.97227 3.4328,9.04887 2.34887,3.07663 5.60124,4.52441 10.11871,4.52441 h 13.55063 c 3.79512,0 6.86676,-1.26681 9.577,-3.98145 2.70937,-2.71463 3.97472,-5.79137 3.97472,-9.59183 v -13.93535 h -13.55172 v 9.77283 c 0,1.26685 -0.35767,2.35274 -1.44492,3.25763 -0.72434,0.90489 -1.80723,1.26686 -3.07164,1.26686 h -4.51751 c -1.26441,0 -2.16748,-0.36183 -3.25212,-1.26686 -0.72431,-0.90489 -1.26444,-1.99078 -1.26444,-3.25763 v -59.90375 c 0,-1.62875 0.5454,-2.71467 1.80632,-3.43853 1.26532,-0.72368 2.16836,-1.08592 2.71024,-1.08592 h 4.51751 c 1.26441,0 2.34904,0.36186 3.25233,1.26692 0.90304,0.90489 1.26423,1.99068 1.26423,3.25753 v 9.22994 h 13.55172 v -13.93532 c 0,-3.80056 -1.26535,-6.87716 -3.97472,-9.59183 -2.71024,-2.71467 -5.78188,-3.98149 -9.577,-3.98149 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52075291"
|
||||
id="path875"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 833.63749,655.68587 c -3.79487,0 -6.86655,1.26709 -9.57678,3.98236 -2.5289,2.53419 -3.79421,5.61159 -3.79421,9.05085 v 69.32966 c 0,3.43929 1.26531,6.69762 3.61352,9.41289 2.52976,2.71526 5.78188,4.16339 9.75747,4.16339 h 13.3702 c 3.794,0 6.86564,-1.2671 9.57592,-3.98232 2.71024,-2.71527 3.97555,-5.79263 3.97555,-9.59396 v -69.32969 c 0,-3.43926 -1.26531,-6.33559 -3.79487,-9.05086 -2.34908,-2.71526 -5.60123,-3.98236 -9.7566,-3.98236 z m 4.5166,13.57625 h 4.51744 c 1.26448,0 2.16756,0.36196 3.07168,1.26713 0.90304,0.90503 1.26448,1.9912 1.26448,3.25829 v 60.27877 c 0,1.2672 -0.35771,2.17226 -1.26448,3.07736 -0.90412,0.90507 -1.8072,1.44806 -3.07168,1.44806 h -4.51744 c -1.08376,0 -2.16839,-0.54289 -3.07164,-1.44806 -0.90308,-0.9051 -1.26424,-1.81016 -1.26424,-3.07736 v -60.27877 c 0,-1.08613 0.35768,-2.17212 1.08377,-3.07722 0.90304,-0.90507 1.98767,-1.44817 3.25211,-1.4482 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52124548"
|
||||
id="path877"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 871.09196,656.96745 v 94.65883 h 13.55172 v -77.81431 c -0.17936,-0.91546 0.17936,-1.83093 0.90304,-2.74636 0.90332,-1.09855 1.98705,-1.64783 3.43284,-1.64783 h 4.5166 c 0.90416,0 1.98792,0.36608 2.89096,1.28161 0.90412,0.73217 1.446,1.83097 1.446,3.11258 v 77.81431 h 13.55067 v -82.39166 c 0,-3.84488 -0.90307,-6.95752 -2.52871,-9.52078 -1.62673,-2.74639 -4.51768,-4.02797 -8.31168,-4.02797 h -7.04724 c -4.15519,0 -7.22684,2.01391 -9.03404,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path879"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 919.5605,655.68587 18.97132,95.94041 h 13.18948 l 18.97226,-95.94041 h -13.55175 l -12.10568,68.47588 -11.92503,-68.47588 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.5777669"
|
||||
id="path881"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 991.91466,655.68587 c -3.794,0 -6.86568,1.26462 -9.57592,3.97461 -2.71048,2.71007 -3.97472,5.7815 -3.97472,9.57546 v 68.83478 c 0,3.794 1.26424,6.86544 3.97472,9.57546 2.71024,2.71003 5.78192,3.97469 9.57592,3.97469 h 13.37104 c 3.794,0 6.8656,-1.26466 9.5759,-3.97469 2.7103,-2.71002 3.9747,-5.78146 3.9747,-9.57546 v -13.55011 h -13.5506 v 9.57536 c 0,1.26476 -0.5456,2.16808 -1.2653,3.07143 -0.9033,0.90332 -1.9871,1.26462 -3.2522,1.26462 h -4.33607 c -1.26532,0 -2.34908,-0.36126 -3.25212,-1.26462 -0.90416,-0.90335 -1.26535,-1.80667 -1.26535,-3.07143 v -24.39023 h 26.92164 v -40.46976 c 0,-3.794 -1.2644,-6.86543 -3.9747,-9.57546 -2.7103,-2.71 -5.7819,-3.97465 -9.5759,-3.97465 z m 4.51747,13.73083 h 4.33607 c 1.2651,0 2.1684,0.54181 3.0715,1.44534 0.9041,0.90335 1.446,1.80667 1.446,3.07129 v 22.58359 h -13.37104 v -22.58359 c 0,-1.26462 0.3577,-2.16794 1.26535,-3.07129 0.90304,-0.90332 1.9868,-1.44534 3.25212,-1.44534 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.51688766"
|
||||
id="path883"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1029.1895,656.96745 v 94.65883 h 13.5506 v -77.81431 c -0.1793,-0.91546 0.1794,-1.83093 0.904,-2.74636 0.9033,-1.09855 1.987,-1.64783 3.4328,-1.64783 h 4.5168 c 0.9031,0 1.9877,0.36608 2.8909,1.28161 0.9031,0.73217 1.4459,1.83097 1.4459,3.11258 v 77.81431 h 13.5508 v -82.39166 c 0,-3.84488 -0.9033,-6.95752 -2.5297,-9.52078 -1.6257,-2.74639 -4.5166,-4.02797 -8.3109,-4.02797 h -7.047 c -4.1554,0 -7.2271,2.01391 -9.0342,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path885"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1114.5982,655.68587 v 95.94041 h 13.371 v -95.94041 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54703188"
|
||||
id="path887"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
d="m 1151.5956,655.68587 c -3.794,0 -6.8656,1.26709 -9.5759,3.98236 -2.5298,2.53419 -3.794,5.61159 -3.794,9.05085 v 69.32966 c 0,3.43929 1.2642,6.69762 3.6133,9.41289 2.5298,2.71526 5.7819,4.16339 9.7566,4.16339 h 13.3711 c 3.794,0 6.8656,-1.2671 9.5759,-3.98232 2.7104,-2.71527 3.9747,-5.79263 3.9747,-9.59396 v -69.32969 c 0,-3.43926 -1.2643,-6.33559 -3.794,-9.05086 -2.3491,-2.71526 -5.6012,-3.98236 -9.7566,-3.98236 z m 4.5175,13.57625 h 4.5168 c 1.2651,0 2.1684,0.36196 3.0714,1.26713 0.9042,0.90503 1.2654,1.9912 1.2654,3.25829 v 60.27877 c 0,1.2672 -0.3577,2.17226 -1.2654,3.07736 -0.903,0.90507 -1.8063,1.44806 -3.0714,1.44806 h -4.5168 c -1.0846,0 -2.1684,-0.54289 -3.0715,-1.44806 -0.9041,-0.9051 -1.2653,-1.81016 -1.2653,-3.07736 v -60.27877 c 0,-1.08613 0.3577,-2.17212 1.0846,-3.07722 0.9033,-0.90507 1.9871,-1.44817 3.2522,-1.4482 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52124548"
|
||||
id="path889"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1189.0511,656.96745 v 94.65883 h 13.5507 v -77.81431 c -0.1793,-0.91546 0.1794,-1.83093 0.9031,-2.74636 0.9041,-1.09855 1.9878,-1.64783 3.4338,-1.64783 h 4.5166 c 0.9032,0 1.9877,0.36608 2.891,1.28161 0.903,0.73217 1.4458,1.83097 1.4458,3.11258 v 77.81431 h 13.5509 v -82.39166 c 0,-3.84488 -0.9033,-6.95752 -2.5298,-9.52078 -1.6256,-2.74639 -4.5166,-4.02797 -8.3117,-4.02797 h -7.0462 c -4.1553,0 -7.227,2.01391 -9.0342,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path891"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path893"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54827785"
|
||||
d="m 1084.8847,751.62628 h 13.3701 v -59.30276 h 7.9503 v -13.18951 h -7.9503 v -23.44814 l -13.3701,7.87706 v 15.57104 h -6.685 v 13.18952 h 6.685 z" />
|
||||
<path
|
||||
d="m 826.56053,647.5823 c 8.15929,0 15.09473,-2.24415 20.80623,-6.4118 6.11949,-4.48823 8.97524,-9.9383 8.97524,-16.35007 v -68.60625 c 0,-6.09123 -2.85575,-11.54122 -8.15933,-16.3501 -5.7115,-4.4882 -13.05489,-7.69419 -21.62214,-9.9383 l -22.03016,-5.45 c -2.4478,-0.64122 -4.89559,-2.24415 -6.93543,-4.48826 -2.03984,-2.56473 -2.85575,-4.80881 -2.85575,-7.053 v -51.29434 c 0,-2.24419 0.81591,-3.84708 2.85575,-5.45007 2.03984,-1.60293 4.07964,-2.24408 6.93543,-2.24408 h 9.79115 c 2.85578,0 4.89562,0.64115 6.93543,2.24408 2.03981,1.60299 2.85575,3.20592 2.85575,5.45007 v 16.67067 h 30.18945 v -25.00601 c 0,-6.73242 -2.85575,-12.18242 -8.56725,-16.67072 -6.11948,-4.48823 -13.05488,-6.73241 -21.21421,-6.73241 h -29.7815 c -8.56725,0 -15.50272,2.24418 -21.21426,6.73241 -5.7115,4.48827 -8.56724,9.9383 -8.56724,16.67072 v 67.32383 c 0,6.09123 2.85574,11.86184 8.15929,16.67072 5.71157,4.80884 13.05496,8.01472 21.62221,10.25887 l 22.03012,5.12946 c 2.85579,0.64119 4.89559,1.92353 6.93547,4.16765 2.03981,2.24415 2.85575,4.16769 2.85575,6.4118 v 52.89734 c 0,2.24412 -0.81594,4.16766 -2.85575,5.77061 -2.03988,1.60296 -4.07968,2.24412 -6.93547,2.24412 h -9.79115 c -2.85575,0 -4.89559,-0.64116 -6.93543,-2.24412 -2.0398,-1.60295 -2.85575,-3.52653 -2.85575,-5.77061 v -16.67068 h -30.18945 v 25.32664 c 0,6.41176 2.85575,11.8618 8.56728,16.35006 6.11949,4.16765 13.05489,6.4118 21.21422,6.4118 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:144.65272522px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.88358629"
|
||||
id="path895"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 897.63384,486.69648 c -8.53679,0 -15.44731,2.12509 -21.54488,6.6784 -5.69112,4.24989 -8.53682,9.4103 -8.53682,15.17777 v 116.26286 c 0,5.76768 2.8457,11.23174 8.13012,15.78505 5.69112,4.55334 13.0083,6.98184 21.95158,6.98184 h 30.08149 c 8.53679,0 15.4473,-2.12484 21.54488,-6.67843 6.09757,-4.55331 8.94327,-9.71368 8.94327,-16.08846 V 508.55265 c 0,-5.76743 -2.8457,-10.62443 -8.53682,-15.17777 -5.28442,-4.55331 -12.6016,-6.6784 -21.95133,-6.6784 z m 10.16263,22.76689 h 10.16268 c 2.84566,0 4.87818,0.6071 6.91069,2.12509 2.03255,1.51778 2.84549,3.33901 2.84549,5.46382 v 101.08501 c 0,2.12484 -0.81294,3.64262 -2.84549,5.1604 -2.03251,1.51779 -4.06503,2.4285 -6.91069,2.4285 h -10.16268 c -2.43896,0 -4.87817,-0.91068 -6.91069,-2.4285 -2.03255,-1.51778 -2.84545,-3.03556 -2.84545,-5.1604 V 517.05228 c 0,-1.82116 0.8129,-3.64263 2.43896,-5.16041 2.03252,-1.51775 4.47152,-2.4285 7.31718,-2.4285 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path897"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 969.603,490.64276 V 647.5824 h 30.4879 V 518.5703 c -0.40644,-1.51802 0.4067,-3.0356 2.0328,-4.55355 2.0325,-1.82119 4.4715,-2.73191 7.7236,-2.73191 h 10.1627 c 2.0325,0 4.4715,0.60703 6.504,2.12481 2.0326,1.21437 3.2522,3.03556 3.2522,5.16065 v 129.0121 h 30.4879 V 510.98119 c 0,-6.37478 -2.0325,-11.53516 -5.6911,-15.78484 -3.6584,-4.55359 -10.1627,-6.67847 -18.6992,-6.67847 H 1020.01 c -9.3497,0 -16.2605,3.33921 -20.32554,10.0174 v -7.89252 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path899"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1101.7353,486.69648 c -8.5368,0 -15.4473,2.12509 -21.5449,6.6784 -5.6913,4.24989 -8.5368,9.4103 -8.5368,15.17777 v 116.26286 c 0,5.76768 2.8455,11.23174 8.1301,15.78505 5.6912,4.55334 13.0084,6.98184 21.9516,6.98184 h 30.0815 c 8.5366,0 15.4473,-2.12484 21.5449,-6.67843 6.0976,-4.55331 8.9433,-9.71368 8.9433,-16.08846 V 508.55265 c 0,-5.76743 -2.8457,-10.62443 -8.5369,-15.17777 -5.2844,-4.55331 -12.6016,-6.6784 -21.9513,-6.6784 z m 10.1627,22.76689 h 10.1626 c 2.8455,0 4.8782,0.6071 6.9108,2.12509 2.0325,1.51778 2.8454,3.33901 2.8454,5.46382 v 101.08501 c 0,2.12484 -0.8129,3.64262 -2.8454,5.1604 -2.0326,1.51779 -4.0653,2.4285 -6.9108,2.4285 h -10.1626 c -2.439,0 -4.8782,-0.91068 -6.9107,-2.4285 -2.0326,-1.51778 -2.8455,-3.03556 -2.8455,-5.1604 V 517.05228 c 0,-1.82116 0.8129,-3.64263 2.439,-5.16041 2.0325,-1.51775 4.4715,-2.4285 7.3172,-2.4285 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path901"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1224.4976,632.99222 V 486.50686 h -30.4759 v 142.20548 c 0,1.36181 -0.8127,2.33443 -2.8444,3.30726 -2.0316,0.97262 -4.0635,1.36159 -6.9078,1.36159 h -10.565 v 14.20121 h 18.2855 c 21.5364,0 32.5076,-4.86331 32.5076,-14.59018 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:7.02890587"
|
||||
id="path903"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path905"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.14515853"
|
||||
d="m 1194.0192,429.90143 v 30.47842 h 30.4784 v -30.47842 z" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 41 KiB |
289
sonoj19/artwork/pause.svg
Normal file
289
sonoj19/artwork/pause.svg
Normal file
|
@ -0,0 +1,289 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 1920 1080"
|
||||
version="1.1"
|
||||
id="svg4038"
|
||||
inkscape:version="0.92.2 2405546, 2018-03-11"
|
||||
sodipodi:docname="pause.svg"
|
||||
inkscape:export-filename="/home/nils/sonoj-convention.svg.png"
|
||||
inkscape:export-xdpi="68.419998"
|
||||
inkscape:export-ydpi="68.419998">
|
||||
<title
|
||||
id="title4577">Sonoj Convention Logo</title>
|
||||
<defs
|
||||
id="defs4032" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#2e2e2e"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="992.10282"
|
||||
inkscape:cy="739.351"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1016"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
fit-margin-top="10"
|
||||
fit-margin-left="10"
|
||||
fit-margin-right="10"
|
||||
fit-margin-bottom="10"
|
||||
inkscape:measure-start="767.5,882.143"
|
||||
inkscape:measure-end="979.91,957.515"
|
||||
units="px"
|
||||
scale-x="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid14074"
|
||||
originx="-37.150235"
|
||||
originy="-42.35776" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4035">
|
||||
<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>Sonoj Convention Logo</dc:title>
|
||||
<dc:date>2018-05-07</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Nils Hilbricht</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>All Rights Reserved</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:source>http://www.sonoj.org</dc:source>
|
||||
<dc:description>The logo of the Sonoj Convention. The font is a based on Sturkopf Grotesk by Uwe Borchert (SIL Open Font License)
|
||||
The white space left and right is two times the width of the small "o" from "convention" each. And top/bottom is the height of the same "o" each.</dc:description>
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-37.150243,31.107816)">
|
||||
<rect
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:4.83779526;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
|
||||
id="rect120"
|
||||
width="1920"
|
||||
height="1080.0001"
|
||||
x="17.957344"
|
||||
y="-29.087511" />
|
||||
<path
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 891.6858,83.22905 -1.04062,1.9875 -12.58594,24.10781 v 114.26719 53.9297 155.31797 h 23.76563 l 16.06171,-30.76641 V 277.52125 223.59155 83.22905 Z"
|
||||
id="rect874-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path915"
|
||||
d="m 1091.8854,83.22906 -1.0383,1.9875 -14.4329,27.63985 v 149.74218 53.89691 116.34375 h 24.6961 l 15.1313,-28.98051 V 316.4955 262.59859 83.22906 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.41297674;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<g
|
||||
id="handle1">
|
||||
<rect
|
||||
y="231.06992"
|
||||
x="878.05902"
|
||||
height="53.928421"
|
||||
width="39.826069"
|
||||
id="rect874"
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913"
|
||||
d="m 862.8299,236.88759 a 12.255037,12.255037 0 0 0 -12.25266,12.25918 v 17.77389 a 12.255037,12.255037 0 0 0 12.25266,12.25268 h 70.28436 a 12.255037,12.255037 0 0 0 12.25266,-12.25268 v -17.77389 a 12.255037,12.255037 0 0 0 -12.25266,-12.25918 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path909"
|
||||
d="m 991.26501,42.52515 -1.14372,2.18673 -12.88127,24.67968 v 65.48672 54.06092 284.59454 h 23.04148 l 16.7789,-32.13277 V 188.9392 134.87828 42.52515 Z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.14604282;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
<g
|
||||
id="handle2">
|
||||
<rect
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect874-3"
|
||||
width="39.826069"
|
||||
height="53.928421"
|
||||
x="977.23401"
|
||||
y="231.06522" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913-5"
|
||||
d="m 962.00485,236.8829 a 12.255037,12.255037 0 0 0 -12.25266,12.25917 v 17.7739 a 12.255037,12.255037 0 0 0 12.25266,12.25268 h 70.28435 a 12.255037,12.255037 0 0 0 12.2527,-12.25268 v -17.7739 a 12.255037,12.255037 0 0 0 -12.2527,-12.25917 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
<g
|
||||
id="handle3">
|
||||
<rect
|
||||
style="opacity:1;fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect874-2"
|
||||
width="39.826069"
|
||||
height="53.928421"
|
||||
x="1076.415"
|
||||
y="231.06995" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path913-9"
|
||||
d="m 1061.1858,236.88761 a 12.255037,12.255037 0 0 0 -12.2526,12.25918 v 17.77389 a 12.255037,12.255037 0 0 0 12.2526,12.25268 h 70.2844 a 12.255037,12.255037 0 0 0 12.2527,-12.25268 v -17.77389 a 12.255037,12.255037 0 0 0 -12.2527,-12.25918 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:24.50762177;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
d="m 783.35391,699.3188 c -4.15628,0 -7.4084,1.44774 -9.93732,4.34345 -2.34908,2.89563 -3.61419,5.97227 -3.61419,9.22986 v 68.77162 c 0,2.89564 1.08463,5.97227 3.4328,9.04887 2.34887,3.07663 5.60124,4.52441 10.11871,4.52441 h 13.55063 c 3.79512,0 6.86676,-1.26681 9.577,-3.98145 2.70937,-2.71463 3.97472,-5.79137 3.97472,-9.59183 v -13.93535 h -13.55172 v 9.77283 c 0,1.26685 -0.35767,2.35274 -1.44492,3.25763 -0.72434,0.90489 -1.80723,1.26686 -3.07164,1.26686 h -4.51751 c -1.26441,0 -2.16748,-0.36183 -3.25212,-1.26686 -0.72431,-0.90489 -1.26444,-1.99078 -1.26444,-3.25763 v -59.90375 c 0,-1.62875 0.5454,-2.71467 1.80632,-3.43853 1.26532,-0.72368 2.16836,-1.08592 2.71024,-1.08592 h 4.51751 c 1.26441,0 2.34904,0.36186 3.25233,1.26692 0.90304,0.90489 1.26423,1.99068 1.26423,3.25753 v 9.22994 h 13.55172 v -13.93532 c 0,-3.80056 -1.26535,-6.87716 -3.97472,-9.59183 -2.71024,-2.71467 -5.78188,-3.98149 -9.577,-3.98149 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52075291"
|
||||
id="path875"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 833.63749,699.3188 c -3.79487,0 -6.86655,1.26709 -9.57678,3.98236 -2.5289,2.53419 -3.79421,5.61159 -3.79421,9.05085 v 69.32966 c 0,3.43929 1.26531,6.69762 3.61352,9.41289 2.52976,2.71526 5.78188,4.16339 9.75747,4.16339 h 13.3702 c 3.794,0 6.86564,-1.2671 9.57592,-3.98232 2.71024,-2.71527 3.97555,-5.79263 3.97555,-9.59396 v -69.32969 c 0,-3.43926 -1.26531,-6.33559 -3.79487,-9.05086 -2.34908,-2.71526 -5.60123,-3.98236 -9.7566,-3.98236 z m 4.5166,13.57625 h 4.51744 c 1.26448,0 2.16756,0.36196 3.07168,1.26713 0.90304,0.90503 1.26448,1.9912 1.26448,3.25829 v 60.27877 c 0,1.2672 -0.35771,2.17226 -1.26448,3.07736 -0.90412,0.90507 -1.8072,1.44806 -3.07168,1.44806 h -4.51744 c -1.08376,0 -2.16839,-0.54289 -3.07164,-1.44806 -0.90308,-0.9051 -1.26424,-1.81016 -1.26424,-3.07736 v -60.27877 c 0,-1.08613 0.35768,-2.17212 1.08377,-3.07722 0.90304,-0.90507 1.98767,-1.44817 3.25211,-1.4482 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52124548"
|
||||
id="path877"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 871.09196,700.60038 v 94.65883 h 13.55172 V 717.4449 c -0.17936,-0.91546 0.17936,-1.83093 0.90304,-2.74636 0.90332,-1.09855 1.98705,-1.64783 3.43284,-1.64783 h 4.5166 c 0.90416,0 1.98792,0.36608 2.89096,1.28161 0.90412,0.73217 1.446,1.83097 1.446,3.11258 v 77.81431 h 13.55067 v -82.39166 c 0,-3.84488 -0.90307,-6.95752 -2.52871,-9.52078 -1.62673,-2.74639 -4.51768,-4.02797 -8.31168,-4.02797 h -7.04724 c -4.15519,0 -7.22684,2.01391 -9.03404,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path879"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 919.5605,699.3188 18.97132,95.94041 H 951.7213 L 970.69356,699.3188 H 957.14181 L 945.03613,767.79468 933.1111,699.3188 Z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.5777669"
|
||||
id="path881"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 991.91466,699.3188 c -3.794,0 -6.86568,1.26462 -9.57592,3.97461 -2.71048,2.71007 -3.97472,5.7815 -3.97472,9.57546 v 68.83478 c 0,3.794 1.26424,6.86544 3.97472,9.57546 2.71024,2.71003 5.78192,3.97469 9.57592,3.97469 h 13.37104 c 3.794,0 6.8656,-1.26466 9.5759,-3.97469 2.7103,-2.71002 3.9747,-5.78146 3.9747,-9.57546 v -13.55011 h -13.5506 v 9.57536 c 0,1.26476 -0.5456,2.16808 -1.2653,3.07143 -0.9033,0.90332 -1.9871,1.26462 -3.2522,1.26462 h -4.33607 c -1.26532,0 -2.34908,-0.36126 -3.25212,-1.26462 -0.90416,-0.90335 -1.26535,-1.80667 -1.26535,-3.07143 v -24.39023 h 26.92164 v -40.46976 c 0,-3.794 -1.2644,-6.86543 -3.9747,-9.57546 -2.7103,-2.71 -5.7819,-3.97465 -9.5759,-3.97465 z m 4.51747,13.73083 h 4.33607 c 1.2651,0 2.1684,0.54181 3.0715,1.44534 0.9041,0.90335 1.446,1.80667 1.446,3.07129 v 22.58359 h -13.37104 v -22.58359 c 0,-1.26462 0.3577,-2.16794 1.26535,-3.07129 0.90304,-0.90332 1.9868,-1.44534 3.25212,-1.44534 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.51688766"
|
||||
id="path883"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1029.1895,700.60038 v 94.65883 h 13.5506 V 717.4449 c -0.1793,-0.91546 0.1794,-1.83093 0.904,-2.74636 0.9033,-1.09855 1.987,-1.64783 3.4328,-1.64783 h 4.5168 c 0.9031,0 1.9877,0.36608 2.8909,1.28161 0.9031,0.73217 1.4459,1.83097 1.4459,3.11258 v 77.81431 h 13.5508 v -82.39166 c 0,-3.84488 -0.9033,-6.95752 -2.5297,-9.52078 -1.6257,-2.74639 -4.5166,-4.02797 -8.3109,-4.02797 h -7.047 c -4.1554,0 -7.2271,2.01391 -9.0342,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path885"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1114.5982,699.3188 v 95.94041 h 13.371 V 699.3188 Z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54703188"
|
||||
id="path887"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
d="m 1151.5956,699.3188 c -3.794,0 -6.8656,1.26709 -9.5759,3.98236 -2.5298,2.53419 -3.794,5.61159 -3.794,9.05085 v 69.32966 c 0,3.43929 1.2642,6.69762 3.6133,9.41289 2.5298,2.71526 5.7819,4.16339 9.7566,4.16339 h 13.3711 c 3.794,0 6.8656,-1.2671 9.5759,-3.98232 2.7104,-2.71527 3.9747,-5.79263 3.9747,-9.59396 v -69.32969 c 0,-3.43926 -1.2643,-6.33559 -3.794,-9.05086 -2.3491,-2.71526 -5.6012,-3.98236 -9.7566,-3.98236 z m 4.5175,13.57625 h 4.5168 c 1.2651,0 2.1684,0.36196 3.0714,1.26713 0.9042,0.90503 1.2654,1.9912 1.2654,3.25829 v 60.27877 c 0,1.2672 -0.3577,2.17226 -1.2654,3.07736 -0.903,0.90507 -1.8063,1.44806 -3.0714,1.44806 h -4.5168 c -1.0846,0 -2.1684,-0.54289 -3.0715,-1.44806 -0.9041,-0.9051 -1.2653,-1.81016 -1.2653,-3.07736 v -60.27877 c 0,-1.08613 0.3577,-2.17212 1.0846,-3.07722 0.9033,-0.90507 1.9871,-1.44817 3.2522,-1.4482 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.52124548"
|
||||
id="path889"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1189.0511,700.60038 v 94.65883 h 13.5507 V 717.4449 c -0.1793,-0.91546 0.1794,-1.83093 0.9031,-2.74636 0.9041,-1.09855 1.9878,-1.64783 3.4338,-1.64783 h 4.5166 c 0.9032,0 1.9877,0.36608 2.891,1.28161 0.903,0.73217 1.4458,1.83097 1.4458,3.11258 v 77.81431 h 13.5509 v -82.39166 c 0,-3.84488 -0.9033,-6.95752 -2.5298,-9.52078 -1.6256,-2.74639 -4.5166,-4.02797 -8.3117,-4.02797 h -7.0462 c -4.1553,0 -7.227,2.01391 -9.0342,6.04202 v -4.76044 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54708767"
|
||||
id="path891"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path893"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:4.54827785"
|
||||
d="m 1084.8847,795.25921 h 13.3701 v -59.30276 h 7.9503 v -13.18951 h -7.9503 V 699.3188 l -13.3701,7.87706 v 15.57104 h -6.685 v 13.18952 h 6.685 z" />
|
||||
<path
|
||||
d="m 826.56053,691.21523 c 8.15929,0 15.09473,-2.24415 20.80623,-6.4118 6.11949,-4.48823 8.97524,-9.9383 8.97524,-16.35007 v -68.60625 c 0,-6.09123 -2.85575,-11.54122 -8.15933,-16.3501 -5.7115,-4.4882 -13.05489,-7.69419 -21.62214,-9.9383 l -22.03016,-5.45 c -2.4478,-0.64122 -4.89559,-2.24415 -6.93543,-4.48826 -2.03984,-2.56473 -2.85575,-4.80881 -2.85575,-7.053 v -51.29434 c 0,-2.24419 0.81591,-3.84708 2.85575,-5.45007 2.03984,-1.60293 4.07964,-2.24408 6.93543,-2.24408 h 9.79115 c 2.85578,0 4.89562,0.64115 6.93543,2.24408 2.03981,1.60299 2.85575,3.20592 2.85575,5.45007 v 16.67067 h 30.18945 v -25.00601 c 0,-6.73242 -2.85575,-12.18242 -8.56725,-16.67072 -6.11948,-4.48823 -13.05488,-6.73241 -21.21421,-6.73241 h -29.7815 c -8.56725,0 -15.50272,2.24418 -21.21426,6.73241 -5.7115,4.48827 -8.56724,9.9383 -8.56724,16.67072 v 67.32383 c 0,6.09123 2.85574,11.86184 8.15929,16.67072 5.71157,4.80884 13.05496,8.01472 21.62221,10.25887 l 22.03012,5.12946 c 2.85579,0.64119 4.89559,1.92353 6.93547,4.16765 2.03981,2.24415 2.85575,4.16769 2.85575,6.4118 v 52.89734 c 0,2.24412 -0.81594,4.16766 -2.85575,5.77061 -2.03988,1.60296 -4.07968,2.24412 -6.93547,2.24412 h -9.79115 c -2.85575,0 -4.89559,-0.64116 -6.93543,-2.24412 -2.0398,-1.60295 -2.85575,-3.52653 -2.85575,-5.77061 v -16.67068 h -30.18945 v 25.32664 c 0,6.41176 2.85575,11.8618 8.56728,16.35006 6.11949,4.16765 13.05489,6.4118 21.21422,6.4118 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:144.65272522px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.88358629"
|
||||
id="path895"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 897.63384,530.32941 c -8.53679,0 -15.44731,2.12509 -21.54488,6.6784 -5.69112,4.24989 -8.53682,9.4103 -8.53682,15.17777 v 116.26286 c 0,5.76768 2.8457,11.23174 8.13012,15.78505 5.69112,4.55334 13.0083,6.98184 21.95158,6.98184 h 30.08149 c 8.53679,0 15.4473,-2.12484 21.54488,-6.67843 6.09757,-4.55331 8.94327,-9.71368 8.94327,-16.08846 V 552.18558 c 0,-5.76743 -2.8457,-10.62443 -8.53682,-15.17777 -5.28442,-4.55331 -12.6016,-6.6784 -21.95133,-6.6784 z m 10.16263,22.76689 h 10.16268 c 2.84566,0 4.87818,0.6071 6.91069,2.12509 2.03255,1.51778 2.84549,3.33901 2.84549,5.46382 v 101.08501 c 0,2.12484 -0.81294,3.64262 -2.84549,5.1604 -2.03251,1.51779 -4.06503,2.4285 -6.91069,2.4285 h -10.16268 c -2.43896,0 -4.87817,-0.91068 -6.91069,-2.4285 -2.03255,-1.51778 -2.84545,-3.03556 -2.84545,-5.1604 V 560.68521 c 0,-1.82116 0.8129,-3.64263 2.43896,-5.16041 2.03252,-1.51775 4.47152,-2.4285 7.31718,-2.4285 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path897"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 969.603,534.27569 v 156.93964 h 30.4879 v -129.0121 c -0.40644,-1.51802 0.4067,-3.0356 2.0328,-4.55355 2.0325,-1.82119 4.4715,-2.73191 7.7236,-2.73191 h 10.1627 c 2.0325,0 4.4715,0.60703 6.504,2.12481 2.0326,1.21437 3.2522,3.03556 3.2522,5.16065 v 129.0121 h 30.4879 V 554.61412 c 0,-6.37478 -2.0325,-11.53516 -5.6911,-15.78484 -3.6584,-4.55359 -10.1627,-6.67847 -18.6992,-6.67847 H 1020.01 c -9.3497,0 -16.2605,3.33921 -20.32554,10.0174 v -7.89252 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path899"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1101.7353,530.32941 c -8.5368,0 -15.4473,2.12509 -21.5449,6.6784 -5.6913,4.24989 -8.5368,9.4103 -8.5368,15.17777 v 116.26286 c 0,5.76768 2.8455,11.23174 8.1301,15.78505 5.6912,4.55334 13.0084,6.98184 21.9516,6.98184 h 30.0815 c 8.5366,0 15.4473,-2.12484 21.5449,-6.67843 6.0976,-4.55331 8.9433,-9.71368 8.9433,-16.08846 V 552.18558 c 0,-5.76743 -2.8457,-10.62443 -8.5369,-15.17777 -5.2844,-4.55331 -12.6016,-6.6784 -21.9513,-6.6784 z m 10.1627,22.76689 h 10.1626 c 2.8455,0 4.8782,0.6071 6.9108,2.12509 2.0325,1.51778 2.8454,3.33901 2.8454,5.46382 v 101.08501 c 0,2.12484 -0.8129,3.64262 -2.8454,5.1604 -2.0326,1.51779 -4.0653,2.4285 -6.9108,2.4285 h -10.1626 c -2.439,0 -4.8782,-0.91068 -6.9107,-2.4285 -2.0326,-1.51778 -2.8455,-3.03556 -2.8455,-5.1604 V 560.68521 c 0,-1.82116 0.8129,-3.64263 2.439,-5.16041 2.0325,-1.51775 4.4715,-2.4285 7.3172,-2.4285 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:192px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk Medium';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:1.82959116"
|
||||
id="path901"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1224.4976,676.62515 V 530.13979 h -30.4759 v 142.20548 c 0,1.36181 -0.8127,2.33443 -2.8444,3.30726 -2.0316,0.97262 -4.0635,1.36159 -6.9078,1.36159 h -10.565 v 14.20121 h 18.2855 c 21.5364,0 32.5076,-4.86331 32.5076,-14.59018 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:7.02890587"
|
||||
id="path903"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path905"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.79999924px;line-height:1.25;font-family:'Sturkopf Grotesk';-inkscape-font-specification:'Sturkopf Grotesk';letter-spacing:0px;word-spacing:0px;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.14515853"
|
||||
d="m 1194.0192,473.53436 v 30.47842 h 30.4784 v -30.47842 z" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:25px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="288.53683"
|
||||
y="409.51208"
|
||||
id="text40"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan38"
|
||||
x="288.53683"
|
||||
y="409.51208"
|
||||
style="font-size:666.66668701px">𝄽</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:25px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="1521.1934"
|
||||
y="397.96881"
|
||||
id="text40-3"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan38-6"
|
||||
x="1521.1934"
|
||||
y="397.96881"
|
||||
style="font-size:666.66668701px">𝄽</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50px;line-height:25px;font-family:Vollkorn;-inkscape-font-specification:Vollkorn;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="207.71367"
|
||||
y="651.68536"
|
||||
id="text869"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan867"
|
||||
x="207.71367"
|
||||
y="651.68536"
|
||||
style="font-size:133.33332825px">Break</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50px;line-height:25px;font-family:Vollkorn;-inkscape-font-specification:Vollkorn;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="1440.3702"
|
||||
y="667.45673"
|
||||
id="text869-7"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan867-5"
|
||||
x="1440.3702"
|
||||
y="667.45673"
|
||||
style="font-size:133.33332825px">Break</tspan></text>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 30 KiB |
Loading…
Add table
Reference in a new issue