initial design copy paste

This commit is contained in:
Wonko T. Sane 2017-03-29 23:09:20 +02:00
parent 6602c743bf
commit ddcacd18d9
9 changed files with 2662 additions and 0 deletions

233
eh17/__init__.py Normal file
View file

@ -0,0 +1,233 @@
#!/usr/bin/python3
import subprocess
import os.path
from renderlib import *
from easing import *
import svg.path
# URL to Schedule-XML
scheduleUrl = 'https://programm.froscon.de/2016/schedule.xml'
# For (really) too long titles
titlemap = {
#
}
def introFrames(args):
xml = etree.parse('froscon2016/artwork/intro.svg').getroot()
pathstr = xml.find(".//*[@id='animatePath']").get('d')
frog = xml.find(".//*[@id='animatePath']").get('d')
path = svg.path.parse_path(pathstr)
init = path.point(0)
frames = int(0.5*fps)
for i in range(0, frames):
p = path.point(i / frames) - init
yield (
('animatePath', 'style', 'opacity', 0),
('date', 'style', 'opacity', 0),
)
frames = 3*fps
for i in range(0, frames):
p = path.point(i / frames) - init
yield (
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag)),
)
frames = int(0.5*fps)
for i in range(0, frames):
yield tuple()
frames = 1*fps
for i in range(0, frames):
yield (
('url', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
('date', 'style', 'opacity', easeOutQuad(i, 0, 1, frames)),
)
frames = int(1.5*fps)
for i in range(0, frames):
yield (
('url', 'style', 'opacity', 0),
('date', 'style', 'opacity', 1),
('bar', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
('title', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
)
# frames = 1*fps
# for i in range(0, frames):
# yield (
# )
frames = int(0.5*fps)+1
for i in range(0, frames):
yield (
('bar', 'style', 'opacity', 0),
('title', 'style', 'opacity', 0),
)
def outroFrames(args):
xml = etree.parse('froscon2016/artwork/outro.svg').getroot()
pathstr = xml.find(".//*[@id='animatePath']").get('d')
frog = xml.find(".//*[@id='animatePath']").get('d')
path = svg.path.parse_path(pathstr)
init = path.point(0)
frames = int(0.5*fps)
for i in range(0, frames):
p = path.point(i / frames) - init
yield (
('animatePath', 'style', 'opacity', 0),
('license', 'style', 'opacity', 0),
)
frames = 3*fps
for i in range(0, frames):
p = path.point(i / frames) - init
yield (
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag)),
)
frames = int(0.5*fps)+1
for i in range(0, frames):
yield tuple()
frames = 1*fps
for i in range(0, frames):
yield (
('logo', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
)
frames = 1*fps
for i in range(0, frames):
yield (
('logo', 'style', 'opacity', 0),
('license', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
)
frames = 2*fps
for i in range(0, frames):
yield (
('logo', 'style', 'opacity', 0),
('license', 'style', 'opacity', 1),
)
frames = 1*fps
for i in range(0, frames):
yield (
('logo', 'style', 'opacity', 0),
('license', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
)
frames = 1*fps
for i in range(0, frames):
yield (
('logo', 'style', 'opacity', 0),
('license', 'style', 'opacity', 0),
)
def pauseFrames(args):
frames = 2*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', 1),
('text2', 'style', 'opacity', 0),
)
frames = 1*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
('text2', 'style', 'opacity', 0),
)
frames = 1*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
)
frames = 2*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', 1),
)
frames = 1*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
)
frames = 1*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
('text2', 'style', 'opacity', 0),
)
def debug():
render('intro.svg',
'../intro.ts',
introFrames,
{
'$id': 1302,
'$title': 'VlizedLab - Eine Open Source-Virtualisierungslösung für PC-Räume',
'$subtitle': 'IT Automatisierung und zentrales Management mit SALT',
'$personnames': 'Thorsten Kramm'
}
)
render('outro.svg',
'../outro.ts',
outroFrames
)
render('pause.svg',
'../pause.ts',
pauseFrames
)
def tasks(queue, args):
# iterate over all events extracted from the schedule xml-export
for event in events(scheduleUrl):
if event['room'] not in ('Saal 1', 'Saal 3', 'Saal 4', 'Saal 5', 'Saal 6', 'Saal 7', 'Saal 8'):
print("skipping room %s (%s)" % (event['room'], event['title']))
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 = {
'$id': event['id'],
'$title': event['title'],
'$subtitle': event['subtitle'],
'$personnames': event['personnames']
}
))
# place a task for the outro into the queue
queue.put(Rendertask(
infile = 'outro.svg',
outfile = 'outro.ts',
sequence = outroFrames
))
# place the pause-sequence into the queue
queue.put(Rendertask(
infile = 'pause.svg',
outfile = 'pause.ts',
sequence = pauseFrames
))

BIN
eh17/artwork/background.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 KiB

BIN
eh17/artwork/background.xcf Normal file

Binary file not shown.

845
eh17/artwork/intro.svg Normal file
View file

@ -0,0 +1,845 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1024"
height="576"
id="svg2"
version="1.1"
inkscape:version="0.92.0 r"
sodipodi:docname="intro.svg">
<defs
id="defs4">
<linearGradient
id="linearGradient3811">
<stop
id="stop3819"
offset="0"
style="stop-color:#fafbff;stop-opacity:1;" />
<stop
style="stop-color:#fffbff;stop-opacity:1;"
offset="1"
id="stop3815" />
</linearGradient>
<radialGradient
fy="9.7279596"
fx="1.71676"
r="0.29498801"
cy="9.7279596"
cx="1.71676"
gradientUnits="userSpaceOnUse"
id="id12">
<stop
id="stop3151"
style="stop-color:#75C5F0"
offset="0" />
<stop
id="stop3153"
style="stop-color:#007CC3"
offset="1" />
</radialGradient>
<radialGradient
fy="2.1879101"
fx="3.27019"
r="0.420028"
cy="2.1879101"
cx="3.27019"
xlink:href="#id12"
gradientUnits="userSpaceOnUse"
id="id14" />
<linearGradient
y2="2.3961301"
x2="3.27019"
y1="1.96386"
x1="3.27019"
gradientUnits="userSpaceOnUse"
id="linearGradient3382">
<stop
id="stop3384"
style="stop-opacity:1; stop-color:white"
offset="0" />
<stop
id="stop3386"
style="stop-opacity:0; stop-color:white"
offset="1" />
</linearGradient>
<mask
id="id6">
<linearGradient
y2="2.3961301"
x2="3.27019"
y1="1.96386"
x1="3.27019"
gradientUnits="userSpaceOnUse"
id="id7">
<stop
id="stop3128"
style="stop-opacity:1; stop-color:white"
offset="0" />
<stop
id="stop3130"
style="stop-opacity:0; stop-color:white"
offset="1" />
</linearGradient>
<rect
id="rect3132"
height="0.465563"
width="0.65544897"
y="1.94721"
x="2.9424601"
style="fill:url(#id7)" />
</mask>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
id="perspective3373" />
<inkscape:perspective
id="perspective3412"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
<radialGradient
fy="9.7279596"
fx="1.71676"
r="0.29498801"
cy="9.7279596"
cx="1.71676"
gradientUnits="userSpaceOnUse"
id="id12-3">
<stop
id="stop3151-0"
style="stop-color:#75C5F0"
offset="0" />
<stop
id="stop3153-0"
style="stop-color:#007CC3"
offset="1" />
</radialGradient>
<radialGradient
fy="2.1879101"
fx="3.27019"
r="0.420028"
cy="2.1879101"
cx="3.27019"
xlink:href="#id12-3"
gradientUnits="userSpaceOnUse"
id="id14-6" />
<linearGradient
y2="2.3961301"
x2="3.27019"
y1="1.96386"
x1="3.27019"
gradientUnits="userSpaceOnUse"
id="linearGradient3382-2">
<stop
id="stop3384-5"
style="stop-opacity:1; stop-color:white"
offset="0" />
<stop
id="stop3386-2"
style="stop-opacity:0; stop-color:white"
offset="1" />
</linearGradient>
<mask
id="id6-4">
<linearGradient
y2="2.3961301"
x2="3.27019"
y1="1.96386"
x1="3.27019"
gradientUnits="userSpaceOnUse"
id="id7-2">
<stop
id="stop3128-9"
style="stop-opacity:1; stop-color:white"
offset="0" />
<stop
id="stop3130-9"
style="stop-opacity:0; stop-color:white"
offset="1" />
</linearGradient>
<rect
id="rect3132-4"
height="0.465563"
width="0.65544897"
y="1.94721"
x="2.9424601"
style="fill:url(#id7-2)" />
</mask>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
id="perspective3373-6" />
<inkscape:perspective
id="perspective3412-2"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="498.48817"
inkscape:cy="150.16437"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="2492"
inkscape:window-height="1411"
inkscape:window-x="68"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
orientation="1,0"
position="54,576"
id="guide3846"
inkscape:locked="false" />
<sodipodi:guide
orientation="1,0"
position="913,541"
id="guide3848"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-476.36218)">
<text
id="text20085"
y="512.80756"
x="53.326317"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:132.04402161px;line-height:0;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.43599194px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan21848"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="512.80756"
x="53.326317"
sodipodi:role="line">0000000 45 61 73 74 65 72 68 65 67 67 20 32 30 31 37</tspan><tspan
id="tspan23560"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="543.02972"
x="53.326317"
sodipodi:role="line">0000017 0a 49 73 74 20 64 61 73 20 5a 75 66 61 6c 6c</tspan><tspan
id="tspan23562"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="573.25189"
x="53.326317"
sodipodi:role="line">0000036 20 6f 64 65 72 20 6b 61 6e 6e 20 64 61 73 20</tspan><tspan
id="tspan23564"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="603.47406"
x="53.326317"
sodipodi:role="line">0000055 77 65 67 3f 0a 0a 31 34 2e 20 2d 20 31 37 2e</tspan><tspan
id="tspan23566"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="633.69617"
x="53.326317"
sodipodi:role="line">0000074 20 41 70 72 69 6c 20 32 30 31 37 20 69 6e 20</tspan><tspan
id="tspan23568"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="663.91833"
x="53.326317"
sodipodi:role="line">0000113 4d c3 bc 68 6c 68 65 69 6d 2f 4d 61 69 6e 0a</tspan><tspan
id="tspan23570"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="694.1405"
x="53.326317"
sodipodi:role="line">0000132 44 32 33 20 43 68 61 6f 73 77 65 6c 6c 65 20</tspan><tspan
id="tspan23572"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="724.36267"
x="53.326317"
sodipodi:role="line">0000151 26 20 63 63 63 2d 66 66 6d 20 61 6c 73 20 53</tspan><tspan
id="tspan23574"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="754.58484"
x="53.326317"
sodipodi:role="line">0000170 65 67 66 61 75 6c 74 20 56 65 72 61 6e 73 74</tspan><tspan
id="tspan23576"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="784.80701"
x="53.326317"
sodipodi:role="line">0000207 61 6c 74 75 6e 67 73 20 55 47 0a 0a 35 30 2e</tspan><tspan
id="tspan23578"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="815.02917"
x="53.326317"
sodipodi:role="line">0000226 31 32 35 34 31 31 34 4e 20 38 2e 38 34 35 31</tspan><tspan
id="tspan23580"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="845.25128"
x="53.326317"
sodipodi:role="line">0000245 32 30 39 45 0a 0a 41 6e 62 69 6e 64 75 6e 67</tspan><tspan
id="tspan23582"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="875.47345"
x="53.326317"
sodipodi:role="line">0000264 20 6d 69 74 20 c3 96 50 4e 56 2c 20 48 61 6c</tspan><tspan
id="tspan23584"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="905.69562"
x="53.326317"
sodipodi:role="line">0000303 74 65 73 74 65 6c 6c 65 20 22 4d c3 bc 68 6c</tspan><tspan
id="tspan23586"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="935.91779"
x="53.326317"
sodipodi:role="line">0000322 68 65 69 6d 20 4d 61 69 6e 22 2e 20 4d 69 74</tspan><tspan
id="tspan23588"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="966.13995"
x="53.326317"
sodipodi:role="line">0000341 20 64 65 72 20 53 39 20 67 69 62 74 20 65 73</tspan><tspan
id="tspan23590"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="996.36212"
x="53.326317"
sodipodi:role="line">0000360 20 64 75 72 63 68 67 65 68 65 6e 64 65 20 56</tspan><tspan
id="tspan23592"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1026.5842"
x="53.326317"
sodipodi:role="line">0000377 65 72 62 69 6e 64 75 6e 67 65 6e 20 6e 61 63</tspan><tspan
id="tspan23594"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1056.8064"
x="53.326317"
sodipodi:role="line">0000416 68 20 46 72 61 6e 6b 66 75 72 74 20 48 61 75</tspan><tspan
id="tspan23596"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1087.0286"
x="53.326317"
sodipodi:role="line">0000435 70 74 62 61 68 6e 68 6f 66 20 28 32 32 20 4d</tspan><tspan
id="tspan23598"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1117.2507"
x="53.326317"
sodipodi:role="line">0000454 69 6e 75 74 65 6e 29 20 75 6e 64 20 46 72 61</tspan><tspan
id="tspan23600"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1147.4729"
x="53.326317"
sodipodi:role="line">0000473 6e 6b 66 75 72 74 20 46 6c 75 67 68 61 66 65</tspan><tspan
id="tspan23602"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1177.6951"
x="53.326317"
sodipodi:role="line">0000512 6e 20 28 33 33 20 4d 69 6e 75 74 65 6e 29 2e</tspan><tspan
id="tspan23604"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1207.9172"
x="53.326317"
sodipodi:role="line">0000531 20 44 61 7a 75 20 6b 6f 6d 6d 74 20 64 69 65</tspan><tspan
id="tspan23606"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1238.1394"
x="53.326317"
sodipodi:role="line">0000550 20 46 c3 a4 68 72 76 65 72 62 69 6e 64 75 6e</tspan><tspan
id="tspan23608"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1268.3616"
x="53.326317"
sodipodi:role="line">0000567 67 20 6e 61 63 68 20 4d 61 69 6e 74 61 6c 20</tspan><tspan
id="tspan23610"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1298.5837"
x="53.326317"
sodipodi:role="line">0000606 6d 69 74 20 64 65 72 20 4d 61 69 6e 66 c3 a4</tspan><tspan
id="tspan23612"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1328.8059"
x="53.326317"
sodipodi:role="line">0000625 68 72 65 2c 20 64 72 c3 bc 62 65 6e 20 67 69</tspan><tspan
id="tspan23614"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1359.0281"
x="53.326317"
sodipodi:role="line">0000644 62 74 20 65 73 20 77 65 69 74 65 72 65 20 48</tspan><tspan
id="tspan23616"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1389.2501"
x="53.326317"
sodipodi:role="line">0000663 6f 74 65 6c 73 2e 0a 0a 45 72 73 74 65 73 20</tspan><tspan
id="tspan23618"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1419.4723"
x="53.326317"
sodipodi:role="line">0000702 45 61 73 74 65 72 68 65 67 67 20 6d 69 74 20</tspan><tspan
id="tspan23620"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1449.6945"
x="53.326317"
sodipodi:role="line">0000721 43 61 6d 70 69 6e 67 2c 20 69 6e 6b 6c 75 73</tspan><tspan
id="tspan23622"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1479.9166"
x="53.326317"
sodipodi:role="line">0000740 69 76 65 20 57 61 73 73 65 72 2c 20 53 74 72</tspan><tspan
id="tspan23624"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1510.1388"
x="53.326317"
sodipodi:role="line">0000757 6f 6d 20 61 75 66 20 64 65 6d 20 43 61 6d 70</tspan><tspan
id="tspan23626"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1540.361"
x="53.326317"
sodipodi:role="line">0000776 69 6e 67 70 6c 61 74 7a 20 75 6e 64 20 44 75</tspan><tspan
id="tspan23628"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1570.5831"
x="53.326317"
sodipodi:role="line">0001015 73 63 68 65 6e 20 69 6d 20 47 65 62 c3 a4 75</tspan><tspan
id="tspan23630"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1600.8053"
x="53.326317"
sodipodi:role="line">0001034 64 65 2e 0a 52 69 65 73 69 67 65 73 20 48 61</tspan><tspan
id="tspan23632"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1631.0275"
x="53.326317"
sodipodi:role="line">0001053 63 6b 63 65 6e 74 65 72 20 6d 69 74 20 50 6c</tspan><tspan
id="tspan23634"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1661.2496"
x="53.326317"
sodipodi:role="line">0001072 61 74 7a 20 66 c3 bc 72 20 61 6c 6c 20 65 75</tspan><tspan
id="tspan23636"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1691.4718"
x="53.326317"
sodipodi:role="line">0001111 72 65 20 50 72 6f 6a 65 6b 74 65 2e 20 48 61</tspan><tspan
id="tspan23638"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1721.694"
x="53.326317"
sodipodi:role="line">0001130 63 6b 20 61 6c 6c 20 74 68 65 20 74 68 69 6e</tspan><tspan
id="tspan23640"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1751.9161"
x="53.326317"
sodipodi:role="line">0001147 67 73 21 0a 53 63 68 6e 65 6c 6c 65 20 49 6e</tspan><tspan
id="tspan23642"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1782.1383"
x="53.326317"
sodipodi:role="line">0001166 74 65 72 6e 65 74 61 6e 62 69 6e 64 75 6e 67</tspan><tspan
id="tspan23644"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1812.3604"
x="53.326317"
sodipodi:role="line">0001205 20 5c 6f 2f 20 0a 4b 6f 73 74 65 6e 6c 6f 73</tspan><tspan
id="tspan23646"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1842.5825"
x="53.326317"
sodipodi:role="line">0001224 65 73 20 61 75 73 67 65 64 65 68 6e 74 65 73</tspan><tspan
id="tspan23648"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1872.8047"
x="53.326317"
sodipodi:role="line">0001243 20 46 72 c3 bc 68 73 74 c3 bc 63 6b 2c 20 61</tspan><tspan
id="tspan23650"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1903.0269"
x="53.326317"
sodipodi:role="line">0001262 62 65 6e 64 73 20 7a 75 20 66 61 69 72 65 6e</tspan><tspan
id="tspan23652"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1933.249"
x="53.326317"
sodipodi:role="line">0001301 20 50 72 65 69 73 65 6e 20 77 61 72 6d 65 73</tspan><tspan
id="tspan23654"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1963.4712"
x="53.326317"
sodipodi:role="line">0001320 20 45 73 73 65 6e 2e 20 4e 61 74 c3 bc 72 6c</tspan><tspan
id="tspan23656"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="1993.6934"
x="53.326317"
sodipodi:role="line">0001337 69 63 68 20 67 69 62 74 20 65 73 20 4d 61 74</tspan><tspan
id="tspan23658"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="2023.9155"
x="53.326317"
sodipodi:role="line">0001356 65 20 7a 75 6d 20 44 75 72 63 68 68 61 63 6b</tspan><tspan
id="tspan23660"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="2054.1377"
x="53.326317"
sodipodi:role="line">0001375 65 6e 2e 0a 44 61 73 20 57 69 63 68 74 69 67</tspan><tspan
id="tspan23662"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="2084.3599"
x="53.326317"
sodipodi:role="line">0001414 73 74 65 3a 20 45 6e 64 6c 69 63 68 20 6e 6f</tspan><tspan
id="tspan23664"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="2114.582"
x="53.326317"
sodipodi:role="line">0001433 72 6d 61 6c 65 20 4d 65 6e 73 63 68 65 6e 20</tspan><tspan
id="tspan23666"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="2144.8042"
x="53.326317"
sodipodi:role="line">0001452 3c 33 20 0a 41 6c 6c 65 73 20 61 6e 64 65 72</tspan><tspan
id="tspan23668"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="2175.0264"
x="53.326317"
sodipodi:role="line">0001471 65 20 c3 bc 62 65 72 6c 61 73 73 65 6e 20 77</tspan><tspan
id="tspan23670"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.5055027px;line-height:0;font-family:'Atari Classic Chunky';-inkscape-font-specification:'Atari Classic Chunky';text-align:start;text-anchor:start;fill:none;stroke:#555555;stroke-width:0.60687685px;stroke-opacity:1"
y="2205.2485"
x="53.326317"
sodipodi:role="line">0001510 69 72 20 64 65 6d 20 5a 75 66 61 6c 6c 2e 0a</tspan></text>
<flowRoot
xml:space="preserve"
id="url"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(-258,510.36218)"><flowRegion
id="flowRegion3817"><rect
id="rect3819"
width="486.27167"
height="22.430193"
x="790.53937"
y="312.37131"
style="text-align:end;text-anchor:end" /></flowRegion><flowPara
id="flowPara3821"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;text-align:end;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;fill-opacity:1">http://programm.froscon.de/2016/events/$id.html</flowPara></flowRoot> <flowRoot
xml:space="preserve"
id="date"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;opacity:0.25;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(-257.99975,510.36255)"><flowRegion
id="flowRegion3817-9"><rect
id="rect3819-3"
width="486.27167"
height="22.430193"
x="790.53937"
y="312.37131"
style="text-align:end;text-anchor:end" /></flowRegion><flowPara
id="flowPara3821-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18px;line-height:125%;font-family:Sans;-inkscape-font-specification:Sans;text-align:end;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;fill-opacity:1">20.-21. August 2016</flowPara></flowRoot> <g
transform="matrix(0.35176188,0,0,0.35176188,472.75532,412.09092)"
id="g4941">
<path
inkscape:connector-curvature="0"
id="path4482-5"
d="m 818.77888,600.44452 c -3.31952,-3.36124 -7.50843,-8.28175 -9.30893,-10.93447 l -3.27355,-4.82319 23.69483,-32.42658 c 13.03187,-17.83462 51.36826,-73.54684 85.19166,-123.80495 33.8234,-50.25805 61.94769,-91.86722 62.49846,-92.46477 0.55056,-0.59756 1.35257,-0.73506 1.78202,-0.30561 1.5228,1.5229 -34.6017,86.97689 -50.67602,119.87586 -13.48524,27.59976 -36.14255,63.53107 -68.78885,109.08898 -24.58836,34.31322 -30.65459,41.90598 -33.48001,41.90598 -0.8824,0 -4.3203,-2.75006 -7.63961,-6.11127 z"
style="color:#000000;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;fill:#ff8600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4490-9"
d="m 757.44136,641.18642 c -0.021,-2.91285 5.94533,-65.55216 6.48393,-68.0972 0.30477,-1.4405 0.96027,-2.61912 1.45668,-2.61912 0.4964,0 3.2364,2.82935 6.0889,6.2874 3.43265,4.16083 7.36276,7.34087 11.61967,9.40197 3.53823,1.71303 7.68873,4.0618 9.22329,5.21944 l 2.79058,2.10485 -17.90525,24.57887 c -9.84752,13.51838 -18.31958,24.57888 -18.82649,24.57888 -0.50732,0 -0.92606,-0.65478 -0.93131,-1.45507 z"
style="color:#000000;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;fill:#ff8600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4500-5"
d="m 1035.078,1196.0704 c -19.1928,-5.3221 -180.39543,-56.3155 -180.60848,-57.1321 -0.56021,-2.1469 16.53798,-108.7657 17.45082,-108.8172 0.88136,-0.05 38.39244,36.4723 137.30926,133.6886 19.0752,18.7474 34.0043,34.0385 33.1754,33.9804 -0.8286,-0.058 -4.1259,-0.832 -7.327,-1.7197 z"
style="color:#000000;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;fill:#ff8600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4508-7"
d="m 687.29826,1030.4706 -40.46941,-18.2415 0.72309,-3.4922 c 0.39755,-1.9207 1.14142,-3.9398 1.65294,-4.4867 0.64313,-0.6875 99.53101,-22.85147 102.02669,-22.86744 0.10075,-6.7e-4 4.77683,7.4633 10.39157,16.58659 5.61474,9.12325 10.9692,17.77805 11.89905,19.23275 1.62649,2.544 1.19347,3.1494 -11.33401,15.8467 l -13.02515,13.2017 -8.01176,1.3231 c -4.40678,0.7277 -9.22077,1.2816 -10.69802,1.2309 -1.47725,-0.051 -20.89691,-8.3011 -43.1552,-18.3339 z"
style="color:#000000;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;fill:#ff8600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4476-6"
d="m 826.71214,730.47364 c -43.53575,-18.79628 -79.15587,-34.73645 -79.15587,-35.42258 0,-1.34848 85.23679,-88.50754 86.52534,-88.47648 0.4284,0.0105 4.70757,7.70577 9.50938,17.10103 21.33601,41.74694 34.79648,62.77079 57.60492,89.97327 6.17348,7.36264 13.05054,15.56815 15.28238,18.23449 l 4.05793,4.84787 -7.05211,14.06804 c -3.87868,7.73738 -7.1791,14.01884 -7.33422,13.95872 -0.15532,-0.06 -35.90243,-15.48805 -79.43775,-34.28433 z"
style="color:#000000;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;fill:#0bc401;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4496-9"
d="m 1065.5367,1189.4564 c -2.1972,-4.0014 -41.4819,-79.6135 -87.29964,-168.0268 l -83.3051,-160.75142 1.6479,-11.52871 c 0.90633,-6.34079 1.66448,-11.92159 1.68463,-12.40178 0.16792,-3.9704 4.74829,3.90847 19.96287,34.33965 29.74909,59.5022 48.39255,93.51597 65.67692,119.82299 14.82774,22.56827 45.50902,63.63637 75.06292,100.47447 6.1636,7.6827 11.9899,15.2782 12.9474,16.8788 1.5172,2.5359 1.5953,8.4115 0.6069,45.6891 -0.6239,23.5285 -1.5516,42.7791 -2.0621,42.7791 -0.5102,0 -2.7257,-3.2739 -4.9227,-7.2754 z"
style="color:#000000;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;fill:#0bc401;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4502-1"
d="m 817.42483,1081.1993 c -17.78749,-28.9704 -38.52467,-62.6274 -46.08347,-74.7934 -7.55817,-12.16589 -14.06917,-22.97062 -14.46819,-24.01049 -0.51634,-1.34643 0.0966,-2.09689 2.1292,-2.60713 8.97875,-2.25345 116.33593,-25.17998 117.90953,-25.17998 1.4338,0 1.74571,0.77475 1.28835,3.20116 -0.33164,1.76063 -6.5406,42.09514 -13.79736,89.63224 -7.25676,47.5371 -13.51883,86.4311 -13.91574,86.4311 -0.39713,0 -15.27503,-23.7031 -33.06232,-52.6735 z"
style="color:#000000;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;fill:#0bc401;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4474-2"
d="m 600.86292,977.70692 c -8.91684,-13.6646 -16.78398,-25.36855 -17.48231,-26.00875 -0.69853,-0.64025 -4.77998,-5.16072 -9.06985,-10.0455 l -7.79997,-8.88142 36.23008,-59.20648 c 49.84629,-81.45751 55.69653,-89.25799 103.18951,-137.58912 l 36.96975,-37.62203 80.31974,34.51776 c 44.17594,18.98477 80.68245,34.86705 81.12575,35.29396 0.4433,0.42687 -0.74114,9.6812 -2.63189,20.56512 -1.89097,10.88391 -7.67488,51.48034 -12.85325,90.21428 -5.17836,38.73394 -9.54316,70.56158 -9.69933,70.72811 -0.45149,0.48125 -220.2838,47.99486 -229.9676,49.70417 -4.8016,0.84758 -13.99256,1.90858 -20.42422,2.35788 l -11.69398,0.8168 -16.21243,-24.84474 z"
style="color:#000000;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;fill:#d40010;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4488-2"
d="m 830.18152,535.2574 c 2.23813,-23.747 6.83256,-47.17244 13.07007,-66.64214 4.38726,-13.69429 20.96323,-57.36778 30.47428,-80.29201 5.23714,-12.62341 8.24244,-17.40983 8.30037,-13.22044 0.021,0.85363 -6.89364,32.92576 -15.34555,71.27137 l -15.36697,69.7193 -9.87354,13.80166 c -5.43066,7.59092 -10.36429,13.80166 -10.96396,13.80166 -0.65047,0 -0.76948,-3.40392 -0.2947,-8.4394 z"
style="color:#000000;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;fill:#d40010;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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
sodipodi:nodetypes="ssscscscszsss"
inkscape:connector-curvature="0"
id="path4504-0"
d="m 687.65256,1253.954 c 0.9353,-1.3517 8.13791,-11.6186 16.00484,-22.8154 37.06232,-52.748 48.17531,-71.354 91.01273,-152.3791 6.00179,-11.3521 7.55335,-13.5124 8.77914,-12.2226 0.81881,0.8617 11.76892,18.3219 24.33376,38.8004 l 22.84517,37.2336 82.68108,25.7821 c 45.47478,14.1802 82.92752,26.0284 83.22872,26.3295 0.6452,0.6453 -0.7239,0.7518 -85.06091,6.6166 0,0 -39.46647,0.083 -65.18702,4.5332 -25.72054,4.4498 -87.88631,24.6253 -87.88631,24.6253 -48.33735,13.544 -88.91355,24.9243 -90.16936,25.2897 -2.10464,0.6124 -2.15019,0.4724 -0.58184,-1.7933 z"
style="color:#000000;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;fill:#d40010;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4484-2"
d="m 693.42787,740.54128 c 0,-1.43206 108.74418,-150.64542 110.09004,-151.06015 0.59254,-0.18261 3.14803,2.55753 5.67897,6.08902 2.53114,3.53152 6.83529,8.10277 9.56479,10.15836 2.72949,2.0556 4.84924,4.12021 4.7105,4.58805 -0.43637,1.47158 -128.07169,131.26967 -129.08255,131.26967 -0.52894,0 -0.96175,-0.47025 -0.96175,-1.04495 z"
style="color:#000000;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;fill:#0049da;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4498-4"
d="m 1060.5112,1202.4624 c -3.9381,-1.0967 -7.9314,-2.4419 -8.8741,-2.9893 -1.9961,-1.1592 -178.03003,-173.7738 -179.04278,-175.565 -0.37383,-0.6614 1.5992,-15.8697 4.38475,-33.79611 2.78554,-17.92645 7.67865,-51.93519 10.8737,-75.57496 3.19505,-23.6398 6.07609,-43.2483 6.40206,-43.57448 0.32639,-0.32618 1.05662,-0.1041 1.62292,0.49341 1.57528,1.66223 172.76105,332.27924 172.24535,332.66364 -0.2486,0.1854 -3.6736,-0.5605 -7.6122,-1.6572 z"
style="color:#000000;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;fill:#0049da;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4518-8"
d="m 671.53501,1159.5124 c 0.11754,-0.3084 18.12417,-25.079 40.01284,-55.0456 43.16905,-59.1005 39.43478,-54.3578 57.30245,-72.7736 l 8.16121,-8.4116 1.28058,2.0812 1.28058,2.0812 -9.48335,12.9112 c -20.53462,27.9572 -42.35969,56.4545 -53.39145,69.714 -8.54678,10.2729 -23.16505,26.7809 -37.99342,42.9047 -5.91762,6.4348 -7.78234,8.1352 -7.16944,6.5385 z"
style="color:#000000;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;fill:#0049da;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4480-4"
d="m 909.30108,717.42726 c -17.00773,-20.19363 -29.00795,-36.31196 -37.57699,-50.47255 -9.48503,-15.67425 -33.95354,-61.65945 -33.95354,-63.81096 0,-0.82397 6.71628,-10.73886 14.92471,-22.03312 30.34332,-41.74965 52.25046,-74.59342 67.44699,-101.11829 11.97902,-20.9092 34.12754,-69.67061 53.88995,-118.64297 6.06497,-15.02962 7.47674,-17.69854 8.70946,-16.4659 0.36669,0.36677 -3.53067,21.80869 -8.66118,47.64863 -20.6805,104.16058 -28.27919,151.26268 -44.29222,274.55458 -8.14861,62.7395 -8.16624,62.86048 -9.18109,62.85418 -0.42378,-0.002 -5.51147,-5.63373 -11.30609,-12.51356 z"
style="color:#000000;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;fill:#ffe72d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4512-8"
d="m 700.2957,1228.31 c 0,-0.2437 25.87859,-48.8347 27.36949,-51.3903 1.16031,-1.9891 49.88051,-75.8696 50.34753,-76.3486 1.11749,-1.1457 -0.14483,1.512 -5.12967,10.8002 -26.81264,49.9592 -36.56486,65.9842 -65.66496,107.8995 -5.50097,7.9233 -6.92239,9.7796 -6.92239,9.0392 z"
style="color:#000000;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;fill:#ffe72d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4520-6"
d="m 571.29475,952.13358 c -2.58173,-9.98106 -2.53996,-9.77332 -1.97093,-9.77332 0.37908,0 11.5416,12.4572 11.5416,12.88015 0,0.27347 -6.64764,6.05178 -6.9606,6.05027 -0.13223,-6.7e-4 -1.30745,-4.12134 -2.61007,-9.1571 z"
style="color:#000000;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;fill:#ffe72d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4492-0"
d="m 1056.6316,1082.3613 c -34.0282,-42.9997 -61.94219,-81.0026 -75.88186,-103.30785 -15.06157,-24.10041 -36.32201,-63.6295 -63.08554,-117.29435 -18.51604,-37.12734 -18.69865,-37.62937 -16.44877,-45.22512 0.58834,-1.98611 105.37887,15.87681 106.63097,18.17662 0.8333,1.53089 62.7352,260.3647 62.7352,262.3184 0,2.3348 -2.9478,-0.7647 -13.95,-14.6677 z"
style="color:#000000;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;fill:#ffe72d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4486-0"
d="m 788.06846,584.67216 c -6.38842,-3.2845 -10.05259,-6.24294 -15.42721,-12.45601 -4.35242,-5.03146 -6.79772,-8.81627 -6.39241,-9.89445 1.18256,-3.14589 100.86361,-176.3107 102.48233,-178.03114 0.86771,-0.92222 1.83324,-1.4211 2.14578,-1.10857 0.31253,0.31252 -4.4133,13.11503 -10.50177,28.45005 -23.91879,60.24351 -30.765,85.7623 -34.14119,127.25926 -1.2111,14.88733 0.46304,11.51389 -18.41655,37.10805 -5.31312,7.20259 -10.04503,13.06969 -10.51541,13.03804 -0.47038,-0.0317 -4.6255,-1.99606 -9.23357,-4.36521 z"
style="color:#000000;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;fill:#9e00a0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4494-9"
d="m 1052.6104,1004.4685 c -1.9058,-5.78149 -8.726,-36.35552 -8.2223,-36.85932 1.0046,-1.0045 2.166,0.81079 9.6186,15.03325 l 7.0653,13.48344 -2.5204,4.46893 c -2.7092,4.8033 -5.1171,6.3733 -5.9412,3.8736 z"
style="color:#000000;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;fill:#9e00a0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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="path4506-3"
d="m 651.66109,1188.8953 c 0.24349,-0.6495 10.7115,-12.3785 23.26207,-26.0645 40.93555,-44.6387 52.82095,-58.9615 87.06016,-104.9126 10.37583,-13.925 19.32709,-25.3182 19.89192,-25.3182 1.63048,0 17.75832,26.7012 17.12485,28.3519 -1.88592,4.9149 -74.25456,112.3728 -76.04708,112.9197 -1.19369,0.3643 -16.57513,3.8497 -34.18149,7.7454 -17.60656,3.8956 -33.2584,7.3926 -34.78246,7.7711 -1.65021,0.4097 -2.59181,0.2104 -2.32797,-0.4928 z"
style="color:#000000;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;fill:#9e00a0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:104.87680817px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.04876804px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="638.69519"
y="938.75647"
id="text4272-8"><tspan
sodipodi:role="line"
x="638.69519"
y="938.75647"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:55.06032562px;font-family:eh17;-inkscape-font-specification:eh17;stroke-width:1.04876804px"
id="tspan4265-3">Easterhegg 2017</tspan></text>
<g
transform="matrix(0.53843022,0,0,1.0487681,519.49323,124.58047)"
id="text4272-36-8"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:100px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1">
<path
inkscape:connector-curvature="0"
id="path3525-0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m -275.44065,845.06085 h 7.875 v -34.65 h -7.875 z" />
<path
inkscape:connector-curvature="0"
id="path3527-4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m -260.78987,845.06085 h 19.95 c 5.25,0 10.5,0 10.5,-6.0375 v -3.675 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -9.975 c -1.3125,0 -2.625,0 -2.625,-1.575 v -2.3625 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 18.375 v -3.9375 h -17.85 c -5.25,0 -10.5,0 -10.5,6.0375 v 1.3125 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 9.975 c 1.3125,0 2.625,0 2.625,1.575 v 4.725 c 0,1.575 -1.3125,1.575 -2.625,1.575 h -20.475 z" />
<path
inkscape:connector-curvature="0"
id="path3529-0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m -224.08088,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 7.35 v -3.9375 h -7.875 c -1.3125,0 -2.625,0 -2.625,-1.575 v -15.75 h 10.5 v -3.9375 h -10.5 v -9.45 h -7.35 z" />
<path
inkscape:connector-curvature="0"
id="path3531-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m -178.86115,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 19.95 v -34.65 h -7.35 v 9.45 h -12.6 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -14.175 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 13.125 v 17.325 h -13.125 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3533-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m -142.15217,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 19.95 v -19.1625 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -17.85 v 3.9375 h 18.375 c 1.3125,0 2.625,0 2.625,1.575 v 3.9375 h -12.6 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -4.725 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 13.125 v 7.875 h -13.125 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3535-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m -105.44319,845.06085 h 19.950005 c 5.25,0 10.5,0 10.5,-6.0375 v -3.675 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -9.975 c -1.3125,0 -2.625,0 -2.625,-1.575 v -2.3625 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 18.375 v -3.9375 h -17.85 c -5.250005,0 -10.500005,0 -10.500005,6.0375 v 1.3125 c 0,6.0375 5.25,6.0375 10.500005,6.0375 h 9.975 c 1.3125,0 2.625,0 2.625,1.575 v 4.725 c 0,1.575 -1.3125,1.575 -2.625,1.575 h -20.475005 z" />
<path
inkscape:connector-curvature="0"
id="path3537-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m -48.238693,845.06085 h 39.3749998 v -4.4625 H -38.001193 l 28.0874998,-25.725 v -4.4625 H -47.188693 v 4.4625 h 27.0375 l -28.0875,25.725 z" />
<path
inkscape:connector-curvature="0"
id="path3539-2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m -3.109201,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 9.45 c 5.25,0 10.5,0 10.5,-6.0375 v -19.1625 h -7.35 v 19.6875 c 0,1.575 -1.3125,1.575 -2.625,1.575 h -10.5 c -1.3125,0 -2.625,0 -2.625,-1.575 v -19.6875 h -7.35 z" />
<path
inkscape:connector-curvature="0"
id="path3541-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 33.599783,845.06085 h 7.35 v -21.2625 h 10.5 v -3.9375 h -10.5 v -3.9375 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 7.875 v -3.9375 h -7.35 c -5.25,0 -10.5,0 -10.5,6.0375 z" />
<path
inkscape:connector-curvature="0"
id="path3543-4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 56.260916,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 19.95 v -19.1625 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -17.85 v 3.9375 h 18.375 c 1.3125,0 2.625,0 2.625,1.575 v 3.9375 h -12.6 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -4.725 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 13.125 v 7.875 h -13.125 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3545-4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 92.969901,845.06085 h 7.349999 v -34.65 h -7.349999 z" />
<path
inkscape:connector-curvature="0"
id="path3547-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 106.6076,845.06085 h 7.35 v -34.65 h -7.35 z" />
<path
inkscape:connector-curvature="0"
id="path3549-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 141.2658,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 9.45 c 5.25,0 10.5,0 10.5,-6.0375 v -13.125 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -9.45 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -14.175 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 10.5 c 1.3125,0 2.625,0 2.625,1.575 v 14.175 c 0,1.575 -1.3125,1.575 -2.625,1.575 h -10.5 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3551-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 177.97478,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 19.95 v -34.65 h -7.35 v 9.45 h -12.6 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -14.175 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 13.125 v 17.325 h -13.125 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3553-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 214.68377,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 18.9 v -3.9375 h -19.425 c -1.3125,0 -2.625,0 -2.625,-1.575 v -6.3 h 23.1 v -7.35 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -9.45 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,-9.7125 v -3.9375 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 10.5 c 1.3125,0 2.625,0 2.625,1.575 v 3.9375 z" />
<path
inkscape:connector-curvature="0"
id="path3555-0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 251.39275,845.06085 h 7.35 v -19.6875 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 7.875 v -3.9375 h -7.35 c -5.25,0 -10.5,0 -10.5,6.0375 z" />
<path
inkscape:connector-curvature="0"
id="path3557-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 296.61248,845.06085 h 7.35 v -4.2 l 4.725,-4.725 8.925,8.925 h 8.4 l -13.125,-13.125 12.075,-12.075 h -8.4 l -12.6,12.6 v -22.05 h -7.35 z" />
<path
inkscape:connector-curvature="0"
id="path3559-0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 330.24529,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 19.95 v -19.1625 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -17.85 v 3.9375 h 18.375 c 1.3125,0 2.625,0 2.625,1.575 v 3.9375 h -12.6 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -4.725 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 13.125 v 7.875 h -13.125 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3561-2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 366.95428,845.06085 h 7.35 v -21.2625 h 13.125 c 1.3125,0 2.625,0 2.625,1.575 v 19.6875 h 7.35 v -19.1625 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -19.95 z" />
<path
inkscape:connector-curvature="0"
id="path3563-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 403.66326,845.06085 h 7.35 v -21.2625 h 13.125 c 1.3125,0 2.625,0 2.625,1.575 v 19.6875 h 7.35 v -19.1625 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -19.95 z" />
<path
inkscape:connector-curvature="0"
id="path3565-4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 461.39275,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 19.95 v -34.65 h -7.35 v 9.45 h -12.6 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -14.175 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 13.125 v 17.325 h -13.125 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3567-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 498.10174,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 19.95 v -19.1625 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -17.85 v 3.9375 h 18.375 c 1.3125,0 2.625,0 2.625,1.575 v 3.9375 h -12.6 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -4.725 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 13.125 v 7.875 h -13.125 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3569-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 534.81072,845.06085 h 19.95 c 5.25,0 10.5,0 10.5,-6.0375 v -3.675 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -9.975 c -1.3125,0 -2.625,0 -2.625,-1.575 v -2.3625 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 18.375 v -3.9375 h -17.85 c -5.25,0 -10.5,0 -10.5,6.0375 v 1.3125 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 9.975 c 1.3125,0 2.625,0 2.625,1.575 v 4.725 c 0,1.575 -1.3125,1.575 -2.625,1.575 h -20.475 z" />
<path
inkscape:connector-curvature="0"
id="path3571-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 590.44021,819.86085 8.4,25.2 h 7.875 l 5.775,-17.325 5.775,17.325 h 7.875 l 8.4,-25.2 h -6.825 l -6.0375,18.1125 -5.5125,-16.5375 h -7.35 l -5.5125,16.5375 -6.0375,-18.1125 z" />
<path
inkscape:connector-curvature="0"
id="path3573-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 638.78533,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 18.9 v -3.9375 h -19.425 c -1.3125,0 -2.625,0 -2.625,-1.575 v -6.3 h 23.1 v -7.35 c 0,-6.0375 -5.25,-6.0375 -10.5,-6.0375 h -9.45 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,-9.7125 v -3.9375 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 10.5 c 1.3125,0 2.625,0 2.625,1.575 v 3.9375 z" />
<path
inkscape:connector-curvature="0"
id="path3575-4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 675.49431,839.02335 c 0,6.0375 5.25,6.0375 10.5,6.0375 h 12.6 v 6.5625 c 0,1.3125 -1.3125,1.3125 -2.625,1.3125 h -19.425 v 3.9375 h 18.9 c 5.25,0 10.5,0 10.5,-5.25 v -31.7625 h -19.95 c -5.25,0 -10.5,0 -10.5,6.0375 z m 7.35,0.525 v -14.175 c 0,-1.575 1.3125,-1.575 2.625,-1.575 h 13.125 v 17.325 h -13.125 c -1.3125,0 -2.625,0 -2.625,-1.575 z" />
<path
inkscape:connector-curvature="0"
id="path3577-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:52.5px;font-family:eh17;-inkscape-font-specification:eh17"
d="m 712.9908,814.87335 h 25.725 c 1.575,0 3.15,0 3.15,1.8375 v 4.9875 c 0,1.8375 -1.575,1.8375 -3.15,1.8375 h -3.15 c -6.3,0 -12.6,0 -12.6,7.0875 v 2.625 h 7.875 v -3.4125 c 0,-1.8375 1.575,-1.8375 3.15,-1.8375 h 3.15 c 6.3,0 12.6,0 12.6,-7.0875 v -3.4125 c 0,-7.0875 -6.3,-7.0875 -12.6,-7.0875 h -24.15 z m 9.975,30.1875 h 7.875 v -6.3 h -7.875 z" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:104.87680817px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.04876804px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="135.70105"
y="563.33783"
id="text4272-8-0"><tspan
sodipodi:role="line"
x="135.70105"
y="563.33783"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:55.06032562px;font-family:eh17;-inkscape-font-specification:eh17;stroke-width:1.04876804px"
id="tspan4265-3-6">$title</tspan></text>
<g
transform="matrix(0.53843022,0,0,1.0487681,202.30557,-131.93506)"
id="text4272-36-8-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:100px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:104.87680817px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.04876804px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="52.015373"
y="780.33783"
id="text4272-8-6"><tspan
sodipodi:role="line"
x="52.015373"
y="780.33783"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:55.06032562px;font-family:eh17;-inkscape-font-specification:eh17;text-align:start;text-anchor:start;stroke-width:1.04876804px"
id="tspan4265-3-7">$personnames</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 74 KiB

208
eh17/artwork/logo-bw.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 61 KiB

222
eh17/artwork/logo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 62 KiB

496
eh17/artwork/outro.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 77 KiB

179
eh17/artwork/overlay.svg Normal file
View file

@ -0,0 +1,179 @@
<?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="1024"
height="576"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="overlay.svg">
<defs
id="defs4">
<mask
id="id6">
<linearGradient
y2="2.3961301"
x2="3.27019"
y1="1.96386"
x1="3.27019"
gradientUnits="userSpaceOnUse"
id="id7">
<stop
id="stop3128"
style="stop-opacity:1; stop-color:white"
offset="0" />
<stop
id="stop3130"
style="stop-opacity:0; stop-color:white"
offset="1" />
</linearGradient>
<rect
id="rect3132"
height="0.465563"
width="0.65544897"
y="1.94721"
x="2.9424601"
style="fill:url(#id7)" />
</mask>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="776.45601"
inkscape:cy="355.71948"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-page="true"
inkscape:window-width="1920"
inkscape:window-height="993"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1">
<sodipodi:guide
orientation="0,1"
position="0,556"
id="guide3050" />
<sodipodi:guide
orientation="1,0"
position="1004,0"
id="guide3052" />
<sodipodi:guide
position="0,0"
orientation="0,1024"
id="guide3054" />
<sodipodi:guide
position="1024,0"
orientation="-576,0"
id="guide3056" />
<sodipodi:guide
position="1024,576"
orientation="0,-1024"
id="guide3058" />
<sodipodi:guide
position="0,576"
orientation="576,0"
id="guide3060" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-476.36218)">
<g
style="opacity:0.8"
id="g3041"
transform="translate(663.5809,405.57883)">
<g
mask="none"
id="g3231"
style="fill:#00a2e1;fill-opacity:1;fill-rule:evenodd;stroke:none"
transform="matrix(89.999997,0,0,89.999997,8.29985,-83.44764)">
<path
class="fil0 str1"
d="m 3.27019,1.9359 c 0.231933,0 0.420024,0.188091 0.420024,0.420024 0,0.231933 -0.188091,0.420024 -0.420024,0.420024 -0.231933,0 -0.420024,-0.188091 -0.420024,-0.420024 0,-0.231933 0.188091,-0.420024 0.420024,-0.420024 z"
id="path3233"
style="fill:#00a2e1;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3235"
class="fil9"
d="m 3.27019,1.9359 c 0.231933,0 0.420024,0.188091 0.420024,0.420024 0,0.231933 -0.188091,0.420024 -0.420024,0.420024 -0.231933,0 -0.420024,-0.188091 -0.420024,-0.420024 0,-0.231933 0.188091,-0.420024 0.420024,-0.420024 z"
style="fill:#00a2e1;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
</g>
<path
class="fil5"
d="m 315.16474,106.85195 c 2.01897,1.22319 0.94752,4.71717 1.5552,7.02108 0.3402,1.39113 0.8514,3.12516 -0.3411,4.27887 -1.11078,0.8595 -3.20598,0.7542 -3.66057,2.07711 -0.585,1.70289 1.05417,4.42449 3.34386,4.27536 2.84247,-0.7884 5.13072,-2.90304 7.1568,-4.95639 2.00511,-2.05191 1.33479,-3.66417 1.14417,-6.19974 -0.0854,-1.12887 0.9117,-2.54124 1.77552,-1.91763 1.85382,1.33902 -1.11897,4.37454 1.05588,4.95918 2.22623,0.5985 3.21695,-5.76216 5.28551,-3.13515 1.27557,1.61892 -3.69747,3.07521 -2.4615,4.51485 1.11366,1.20258 2.44206,-2.22345 4.49856,-0.98649 0.4068,0.2448 0.7335,0.8622 0.504,1.28484 -1.20582,2.2167 -4.01814,0.2844 -4.32495,2.09196 -0.3582,2.10753 4.57371,-0.1404 4.19814,2.61747 -0.4914,3.61062 -5.5152,-1.47015 -9.26891,0.6183 -3.71412,2.06613 -5.30325,6.47892 -9.16119,8.17866 -2.24181,0.9882 -4.22046,-1.35882 -6.32196,-1.96371 -0.504,3.40155 -2.74392,5.96484 -4.95855,8.41572 -1.97505,5.34258 10.9782,-1.51686 9.25551,4.83165 -1.09665,4.04154 -6.43788,2.44989 -9.80082,4.75758 -0.45,2.98026 2.10969,4.18464 4.18716,5.24412 3.28716,1.67598 0.92619,2.56428 0.1089,1.74258 -1.74897,-1.75851 -1.86309,-0.5004 -1.56618,-0.1692 1.18386,1.32165 0.4797,0.7515 2.89278,2.58237 1.28304,0.97335 0.0652,2.69892 -1.16433,1.92087 -1.79154,-1.81386 -2.16747,-3.73041 -3.16917,-3.41253 -1.34082,0.4851 0.8208,1.75959 1.63944,4.59315 0.7083,2.45088 -2.56284,2.7018 -2.32974,0.4797 0.2601,-2.4768 -0.7335,-4.02453 -1.31634,-3.99582 -0.7857,0.0386 0.7479,4.90815 -1.10691,4.73526 -1.75995,-0.1638 -0.8325,-3.18825 -0.7326,-3.53835 1.03041,-3.60036 0.432,-3.57309 -1.24866,-6.91938 -0.8496,-1.69299 -5.25546,-5.08572 -2.88,-6.58701 8.15778,-2.57598 -1.09098,-2.31165 -1.83294,-4.13361 -3.6e-4,-0.2871 -0.0276,-0.3033 -0.2763,-0.1593 -1.94877,0.2682 -6.34392,-7.87356 -4.49613,0.4797 -0.1125,2.80773 -5.25366,0.6885 -7.14474,0.7992 -3.73788,0.2178 -4.01382,-0.3141 -6.61644,2.37789 -0.2529,0.2619 -2.40876,2.5767 -3.43062,1.13454 -1.07721,-1.51938 3.90645,-2.62629 3.54717,-3.32577 -0.2664,-0.5193 -2.10366,-0.6057 -4.1184,0.8577 -1.80747,1.31283 -3.22587,-1.64592 -0.7488,-2.25747 2.86299,-0.7074 5.04747,0.5274 4.79727,-0.8766 -0.2259,-1.02681 -2.07315,-0.3942 -4.54005,-1.03851 -1.28835,-0.6759 -0.4032,-2.59335 1.08144,-1.96866 2.79144,1.17423 1.94634,0.8496 3.68289,1.21428 0.4347,0.0909 1.46763,-0.6363 -0.92979,-1.27206 -1.12041,-0.297 -1.53144,-2.78577 1.56366,-0.7767 1.95624,1.26954 4.27887,2.88387 6.63516,1.00413 0.3168,-4.06629 -3.73221,-7.89588 -0.7803,-10.86624 4.6368,-4.6665 5.17284,9.98118 8.81181,5.59917 1.01547,-3.14325 2.11536,-6.36489 4.80897,-8.50185 -1.57428,-1.51758 -4.59603,-2.05758 -4.86108,-4.49325 -0.4572,-4.19103 2.56995,-7.7733 2.50227,-12.02319 -0.068,-4.29516 -6.98031,-6.105866 -4.09887,-8.336336 2.20077,-1.70433 2.7198,3.691076 4.36608,2.326856 1.41201,-1.169636 -1.66752,-2.639066 -0.351,-4.791236 0.2511,-0.4104 0.94923,-0.4356 1.36485,-0.2061 2.09943,1.16253 -0.2034,4.02588 1.395,4.38912 1.8648,0.3501 0.6399,-4.68423 2.67948,-4.38948 3.30912,0.4779 -1.70325,4.51629 -0.0723,6.145106 1.59345,1.59129 2.73618,-2.501186 4.82247,-1.565096 0.97227,0.436496 0.2475,2.005826 -0.7731,2.496596 -2.29149,1.10232 -4.02273,1.32804 -4.79691,4.09041 -0.765,2.78154 -1.45278,5.82057 -0.7137,8.67618 1.01556,2.05758 4.19175,2.11572 5.37444,0.7587 0.91809,-1.05516 -0.2205,-2.81691 -0.0315,-4.20876 0.4032,-1.60938 2.16,-2.03418 3.53484,-2.43495 2.29923,-0.6255 4.78917,-3.30057 6.85845,-2.16351 z"
id="path3237"
style="fill:#ffffff;fill-rule:nonzero"
inkscape:connector-curvature="0" />
<ellipse
d="m 3.4273884,2.21737 c 0,0.00632 -0.00398,0.01144 -0.0089,0.01144 -0.00491,0 -0.0089,-0.00512 -0.0089,-0.01144 0,-0.00632 0.00398,-0.01144 0.0089,-0.01144 0.00491,0 0.0089,0.00512 0.0089,0.01144 z"
class="fil10"
cx="3.4184899"
cy="2.21737"
rx="0.0088984901"
ry="0.0114398"
id="ellipse3239"
sodipodi:cx="3.4184899"
sodipodi:cy="2.21737"
sodipodi:rx="0.0088984901"
sodipodi:ry="0.0114398"
style="fill:#75c5f0;fill-rule:evenodd"
transform="matrix(89.999997,0,0,89.999997,8.29985,-83.44764)" />
<circle
d="M 0.0141142,0 C 0.0141142,0.00779506 0.00779506,0.0141142 0,0.0141142 -0.00779506,0.0141142 -0.0141142,0.00779506 -0.0141142,0 c 0,-0.00779506 0.00631914,-0.0141142 0.0141142,-0.0141142 0.00779506,0 0.0141142,0.00631914 0.0141142,0.0141142 z"
class="fil10"
transform="matrix(-28.370879,-49.139908,-63.173518,36.473309,306.74168,110.79125)"
r="0.0141142"
id="circle3241"
cx="0"
cy="0"
sodipodi:cx="0"
sodipodi:cy="0"
sodipodi:rx="0.0141142"
sodipodi:ry="0.0141142"
style="fill:#75c5f0;fill-rule:evenodd" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

479
eh17/artwork/pause.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 70 KiB