Compare commits
88 commits
gstexperim
...
master
Author | SHA1 | Date | |
---|---|---|---|
![]() |
bfbdda8ffe | ||
![]() |
21a8e014ef | ||
![]() |
a9cbfc5eb3 | ||
![]() |
41db29d24b | ||
![]() |
40eb76b968 | ||
![]() |
5661e690de | ||
![]() |
d8c198f984 | ||
![]() |
b3fb07a6e3 | ||
![]() |
2451c0f25f | ||
![]() |
ca224b9d84 | ||
![]() |
8933550f31 | ||
![]() |
31f01ca386 | ||
![]() |
6876f2cf44 | ||
![]() |
526ef6231a | ||
![]() |
9210d36248 | ||
![]() |
0bb26d6b25 | ||
![]() |
26c660a135 | ||
![]() |
8ca5d334cb | ||
![]() |
367e8ea094 | ||
![]() |
c94b840807 | ||
![]() |
471e0c38b7 | ||
![]() |
848b72b113 | ||
![]() |
3ae90b87c0 | ||
![]() |
1893beda4d | ||
![]() |
ec29473d53 | ||
![]() |
96f410ba6a | ||
![]() |
9cb44b08b2 | ||
![]() |
a6fa12a334 | ||
![]() |
945f7c1cd6 | ||
![]() |
5fb2e1bbf2 | ||
![]() |
32e4f830fc | ||
![]() |
825ecf13b0 | ||
![]() |
32cc33e82f | ||
![]() |
b0e83b1134 | ||
![]() |
909bf79673 | ||
![]() |
85bf295be6 | ||
![]() |
e13ac70e2b | ||
![]() |
c69dbd089a | ||
![]() |
1470c6c08c | ||
![]() |
263c4bf882 | ||
![]() |
23be5074ba | ||
![]() |
6d9aa93a4f | ||
![]() |
cff5566e90 | ||
![]() |
17cef62ded | ||
![]() |
6476846992 | ||
![]() |
c64e1bfea0 | ||
![]() |
343d807f12 | ||
![]() |
28f1cffbea | ||
![]() |
1e4f2f298e | ||
![]() |
ce5d4ab927 | ||
![]() |
4cfe3f7a08 | ||
![]() |
6ec541d49a | ||
![]() |
be7ac0dfde | ||
![]() |
594c11cfad | ||
![]() |
e01fbaa2df | ||
![]() |
74c478567d | ||
![]() |
082a4f359f | ||
![]() |
e14e954a4c | ||
![]() |
7ca92f08d2 | ||
![]() |
350911cbee | ||
![]() |
501910becb | ||
![]() |
8d2a19097b | ||
![]() |
937f1cf532 | ||
![]() |
1875030e82 | ||
![]() |
cce61a637b | ||
![]() |
59ddf7fee8 | ||
![]() |
19f3cb7b05 | ||
![]() |
454197fc18 | ||
![]() |
5063f71f72 | ||
![]() |
faee47d63f | ||
![]() |
e62fe25353 | ||
![]() |
d6219de6ed | ||
![]() |
afca649312 | ||
![]() |
cc0b76e68a | ||
![]() |
ce625ba381 | ||
![]() |
27797b2512 | ||
![]() |
6d81b601ad | ||
![]() |
efd5e61a2e | ||
![]() |
208b13cbe6 | ||
![]() |
9dd516d624 | ||
![]() |
dc1ca779a8 | ||
![]() |
ff01cff7c1 | ||
![]() |
e57134af26 | ||
![]() |
d902ded42a | ||
![]() |
cb0b68a4fb | ||
![]() |
1f57235443 | ||
![]() |
305398ffce | ||
![]() |
b1d718b35c |
2
.pep8
Normal file
|
@ -0,0 +1,2 @@
|
|||
[pycodestyle]
|
||||
max_line_length = 99
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from itertools import zip_longest
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import svg.path, random
|
||||
from lxml import etree
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
def introFrames(p):
|
||||
frames = 0
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
def pyconFrames(params):
|
||||
frames = 500
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
|
||||
|
|
|
@ -3,7 +3,9 @@
|
|||
from lxml import etree
|
||||
from slugify import slugify
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ Yes! That's what I want!
|
|||
------------------------
|
||||
Okay, let's go.
|
||||
|
||||
- Install python3, python3-lxml, python3-cssutils (or use virtualenv, see below), inkscape and libav-tools
|
||||
- Install python3, python3-lxml, python3-cssutils, python3-wand (or use virtualenv, see below), inkscape and libav-tools
|
||||
- Fork this repo on github and clone your personal fork to your local system.
|
||||
- Copy one of the existing setup: 00_example_render_byid
|
||||
- If you are using a newer version of intro-outro-generator, don't copy any of the other projects, as the __init.py__ may not contain all mandatory parameters in the tasks function.
|
||||
|
@ -28,7 +28,7 @@ Okay, let's go.
|
|||
- search for `def debug()` and comment the sections about outro (postroll) and pause
|
||||
- run `./make.py yourproject/ --debug` to generate your first intro
|
||||
- if it looks good, duplicate intro.svg to outro.svg (postroll) and pause.svg (pause-loop) and modify them according to your needs. You can use different IDs in your SVG if required
|
||||
- modify outroFrames and pauseFrames like before an test them using `./make.py yourproject/ --debug`
|
||||
- modify outroFrames and pauseFrames like before and test them using `./make.py yourproject/ --debug`
|
||||
- if everything look like you'd want them to, run `./make.py yourproject/`.
|
||||
- You can use any debianesque linux (can be headless) to generate the videos. More cores help more.
|
||||
- Run `./make-snapshots.sh yourproject/` to generate a png from a specific time-index of your .ts or .dv-files. You can run `./make-snapshots.sh yourproject/ 5` to get a png for the frame at the 5th second of all your clips. Default is 3 seconds.
|
||||
|
@ -109,7 +109,7 @@ The animation sequence is controlled by the three frame-generator routines vorsp
|
|||
### CSS-Style-Modifications
|
||||
`('logo', 'style', 'opacity', 1),` - locate object with id `logo` in the svg, parse its `style`-attribute as css-inline-string and change the value of the css-property `opacity` to 1. The Tupel-Element `'style'` is fixed and declares the type of action which is applied to the specified element. All other tupel-mebers can be modified to suit your needs.
|
||||
|
||||
To form an fade-in-opacity-animation, the frame-generator could look like this:
|
||||
To form a fade-in-opacity-animation, the frame-generator could look like this:
|
||||
|
||||
# three seconds of animation
|
||||
frames = 3*fps
|
||||
|
@ -150,7 +150,7 @@ FEM/VOC-Tracker-Integration
|
|||
*that script-Z-thingy*
|
||||
The [FEM](http://fem.tu-ilmenau.de/) and the [VOC](https://c3voc.de/) uses a special Ticket-Tracker to keep track of the Talks on an event. Various tasks are performed around the recorded Videomaterial (preparing, cutting, encoding, releasing) - synchronized by the Tracker. The files starting with `script-Z` are experiments to integrate the intro-rendering into this process. On some Events the Schedule is very fluid with talks being addes or names changing over the whole conference. Using the Scripts to render the prerols when they are actually needed (and not some days before the conference) would help to get the always-freshest prerolls but it would an additional (computational intense) task to the publishing process.
|
||||
|
||||
Generating an Live-Stream-Overlay
|
||||
Generating a Live-Stream-Overlay
|
||||
---------------------------------
|
||||
While your working on your Video-Artwork you can create another required asset: the stream overlay. When we'll live-stream your Talks we can't send prerolls ovet the live-stream. To let your viewer now what program they are watching at, we usually overlay a transparent image over the live-stream like most television programs do, too.
|
||||
Just create another SVG of the size 1920×1080 (or 1024×576 if you're only targeting the legacy SD-Pipeline) and throw your logo into your prefered corner. To have it looking good we would suggest
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
def introFrames(p):
|
||||
|
|
|
@ -320,7 +320,7 @@ def debug():
|
|||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in renderlib.events(scheduleUrl):
|
||||
for event in schedulelib.events(scheduleUrl):
|
||||
if not (idlist == []):
|
||||
if 000000 in idlist:
|
||||
print("skipping id (%s [%s])" % (event["title"], event["id"]))
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
126
bornhack2021/__init__.py
Normal file
|
@ -0,0 +1,126 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import math
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://bornhack.dk/bornhack-2021/program/frab.xml'
|
||||
|
||||
# For (really) too long titles
|
||||
titlemap = {
|
||||
#708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
|
||||
}
|
||||
|
||||
|
||||
def outroFrames(p):
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||
('plate', 'style', 'opacity', 0),
|
||||
)
|
||||
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', 1),
|
||||
('plate', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', 1),
|
||||
('plate', 'style', 'opacity', 1),
|
||||
)
|
||||
|
||||
def introFrames(p):
|
||||
frames = math.floor(1.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('header', 'attr', 'y', 659),
|
||||
('text', 'style', 'opacity', 0),
|
||||
)
|
||||
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
frames = math.ceil(3.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text', 'style', 'opacity', 1),
|
||||
)
|
||||
|
||||
def pauseFrames(p):
|
||||
pass
|
||||
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 6526,
|
||||
'$title': 'Besser steuern durch Daten? - Zur Performativität soziotechnischer Systeme und der Quantifizierung der sozialen Welt',
|
||||
'$subtitle': '',
|
||||
'$personnames': 'Judith Hartstein und Anne K. Krüger'
|
||||
}
|
||||
)
|
||||
|
||||
#render(
|
||||
# 'outro.svg',
|
||||
# '../outro.ts',
|
||||
# outroFrames
|
||||
#)
|
||||
|
||||
# render('pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
|
||||
def tasks(queue, params, 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
|
||||
if int(event['id']) not in skiplist:
|
||||
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
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
||||
|
||||
# place the pause-sequence into the queue
|
||||
#if not "pause" in skiplist:
|
||||
# queue.put(Rendertask(
|
||||
# infile = 'pause.svg',
|
||||
# outfile = 'pause.ts',
|
||||
# sequence = pauseFrames
|
||||
# ))
|
BIN
bornhack2021/artwork/Computerfont.ttf
Normal file
BIN
bornhack2021/artwork/bornhack-2021-logo.png
Normal file
After Width: | Height: | Size: 149 KiB |
7876
bornhack2021/artwork/intro.svg
Normal file
After Width: | Height: | Size: 1.2 MiB |
240
bornhack2021/artwork/outro.svg
Normal file
After Width: | Height: | Size: 218 KiB |
6626
bornhack2021/artwork/pause.svg
Normal file
After Width: | Height: | Size: 1,015 KiB |
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import math
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'http://annaberg6.de/stuff/camp99/schedule.xml'
|
||||
|
|
BIN
camp2023/beon.ttf
Normal file
35
camp2023/config.ini
Normal file
|
@ -0,0 +1,35 @@
|
|||
[meta]
|
||||
schedule = https://pretalx.c3voc.de/camp2023/schedule/export/schedule.xml
|
||||
template = intro.mp4
|
||||
alpha = false
|
||||
prores = false
|
||||
inout_type = t
|
||||
|
||||
[title]
|
||||
in = 16
|
||||
out = 24
|
||||
fontfile = saira.ttf
|
||||
fontsize = 100
|
||||
fontcolor = #FB48C4
|
||||
x = (w-text_w)/2
|
||||
y = 100
|
||||
|
||||
[speaker]
|
||||
in = 16
|
||||
out = 24
|
||||
fontfile = saira.ttf
|
||||
fontsize = 70
|
||||
fontcolor = #3FFF21
|
||||
x = (w-text_w)/2
|
||||
y = 800
|
||||
|
||||
[text]
|
||||
in = 16
|
||||
out = 24
|
||||
fontfile = saira.ttf
|
||||
fontsize = 45
|
||||
fontcolor = #FB48C4
|
||||
x = (w-text_w)/2
|
||||
y = 1000
|
||||
text = Chaos Communication Camp 2023
|
||||
|
BIN
camp2023/saira.ttf
Normal file
|
@ -2,6 +2,7 @@
|
|||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'http://www.fossgis.de/konferenz/2014/programm/schedule.de.xml'
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import random, sys
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
from colour import Color
|
||||
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
[default]
|
||||
[meta]
|
||||
schedule = https://fahrplan.events.ccc.de/camp/2019/Fahrplan/schedule.xml
|
||||
template = cccamp19_talks_intro_1080p.mov
|
||||
alpha = true
|
||||
prores = true
|
||||
inout_type = n
|
||||
|
||||
[title]
|
||||
in = 193
|
||||
out = 324
|
||||
font = Marvel-Bold.ttf
|
||||
fontfile = Marvel-Bold.ttf
|
||||
fontsize = 120
|
||||
fontcolor = #c68100
|
||||
x = (w-text_w)/2
|
||||
|
@ -16,7 +17,7 @@ y = 480
|
|||
[speaker]
|
||||
in = 233
|
||||
out = 324
|
||||
font = Marvel-Regular.ttf
|
||||
fontfile = Marvel-Regular.ttf
|
||||
fontsize = 70
|
||||
fontcolor = #c68100
|
||||
x = (w-text_w)/2
|
||||
|
@ -25,10 +26,10 @@ y = 845
|
|||
[text]
|
||||
in = 242
|
||||
out = 324
|
||||
font = Marvel-Regular.ttf
|
||||
fontfile = Marvel-Regular.ttf
|
||||
fontsize = 45
|
||||
fontcolor = #c68100
|
||||
x = (w-text_w)/2
|
||||
y = 927
|
||||
text = 'chaos communication camp 2019'
|
||||
text = chaos communication camp 2019
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
scheduleUrl = ""
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
scheduleUrl = "https://berlin.ccc.de/datengarten/index.xml"
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
[default]
|
||||
[meta]
|
||||
schedule = https://pretalx.denog.de/denog11/schedule/export/schedule.xml
|
||||
template = denog11_intro_template.ts
|
||||
alpha = false
|
||||
prores = false
|
||||
inout_type = n
|
||||
|
||||
[title]
|
||||
in = 1
|
||||
out = 6.5
|
||||
font = DejaVuSans.ttf
|
||||
fontfile = DejaVuSans.ttf
|
||||
fontsize = 100
|
||||
fontcolor = #f9cc12
|
||||
x = 640
|
||||
|
@ -16,7 +17,7 @@ y = 200
|
|||
[speaker]
|
||||
in = 2
|
||||
out = 6.5
|
||||
font = DejaVuSans.ttf
|
||||
fontfile = DejaVuSans.ttf
|
||||
fontsize = 60
|
||||
fontcolor = #ffffff
|
||||
x = 640
|
||||
|
@ -25,10 +26,10 @@ y = 900
|
|||
[text]
|
||||
in = 3
|
||||
out = 6.5
|
||||
font = DejaVuSans.ttf
|
||||
fontfile = DejaVuSans.ttf
|
||||
fontsize = 45
|
||||
fontcolor = #ffffff
|
||||
x = 640
|
||||
y = 1000
|
||||
text = ''
|
||||
; text =
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -4,6 +4,7 @@ import svg.path, random
|
|||
from lxml import etree
|
||||
from slugify import slugify
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://www.datenspuren.de/2014/fahrplan/schedule.xml'
|
||||
|
|
75
easing.py
|
@ -4,32 +4,36 @@
|
|||
|
||||
import math
|
||||
|
||||
|
||||
def easeLinear(t, b, c, d):
|
||||
return c*t/d + b
|
||||
|
||||
|
||||
def easeOutCubic(t, b, c, d):
|
||||
t=float(t)/d-1
|
||||
t = float(t)/d-1
|
||||
return c*((t)*t*t + 1) + b
|
||||
|
||||
|
||||
def easeInCubic(t, b, c, d):
|
||||
t=float(t)/d
|
||||
return c*(t)*t*t + b;
|
||||
t = float(t)/d
|
||||
return c*(t)*t*t + b
|
||||
|
||||
|
||||
def easeInQuad(t, b, c, d):
|
||||
t /= d
|
||||
return c*t*t + b
|
||||
|
||||
|
||||
def easeOutQuad(t, b, c, d):
|
||||
t /= d
|
||||
return -c * t*(t-2) + b
|
||||
|
||||
|
||||
def easeInOutQuad(t, b, c, d):
|
||||
t /= d/2
|
||||
if t < 1:
|
||||
return c/2*t*t + b
|
||||
t-=1
|
||||
t -= 1
|
||||
return -c/2 * (t*(t-2) - 1) + b
|
||||
|
||||
|
||||
|
@ -40,15 +44,18 @@ def easeInOutCubic(t, b, c, d):
|
|||
t -= 2
|
||||
return c/2*(t*t*t + 2) + b
|
||||
|
||||
|
||||
def easeInQuart(t, b, c, d):
|
||||
t /= d
|
||||
return c*t*t*t*t + b
|
||||
|
||||
|
||||
def easeOutQuart(t, b, c, d):
|
||||
t /= d
|
||||
t -= 1
|
||||
return -c * (t*t*t*t - 1) + b
|
||||
|
||||
|
||||
def easeInOutQuart(t, b, c, d):
|
||||
t /= d/2
|
||||
if t < 1:
|
||||
|
@ -56,15 +63,18 @@ def easeInOutQuart(t, b, c, d):
|
|||
t -= 2
|
||||
return -c/2 * (t*t*t*t - 2) + b
|
||||
|
||||
|
||||
def easeInQuint(t, b, c, d):
|
||||
t /= d
|
||||
return c*t*t*t*t*t + b
|
||||
|
||||
|
||||
def easeOutQuint(t, b, c, d):
|
||||
t /= d
|
||||
t -= 1
|
||||
return c*(t*t*t*t*t + 1) + b
|
||||
|
||||
|
||||
def easeInOutQuint(t, b, c, d):
|
||||
t /= d/2
|
||||
if t < 1:
|
||||
|
@ -72,9 +82,11 @@ def easeInOutQuint(t, b, c, d):
|
|||
t -= 2
|
||||
return c/2*(t*t*t*t*t + 2) + b
|
||||
|
||||
|
||||
def easeInSine(t, b, c, d):
|
||||
return -c * math.cos(t/d * (math.pi/2)) + c + b
|
||||
|
||||
|
||||
def easeOutSine(t, b, c, d):
|
||||
return c * math.sin(t/d * (math.pi/2)) + b
|
||||
|
||||
|
@ -82,29 +94,34 @@ def easeOutSine(t, b, c, d):
|
|||
def easeInOutSine(t, b, c, d):
|
||||
return -c/2 * (math.cos(math.pi*t/d) - 1) + b
|
||||
|
||||
|
||||
def easeInExpo(t, b, c, d):
|
||||
return c * math.pow( 2, 10 * (t/d - 1) ) + b
|
||||
return c * math.pow(2, 10 * (t/d - 1)) + b
|
||||
|
||||
|
||||
def easeOutExpo(t, b, c, d):
|
||||
return c * ( -math.pow( 2, -10 * t/d ) + 1 ) + b
|
||||
return c * (-math.pow(2, -10 * t/d) + 1) + b
|
||||
|
||||
|
||||
def easeInOutExpo(t, b, c, d):
|
||||
t /= d/2
|
||||
if t < 1:
|
||||
return c/2 * math.pow( 2, 10 * (t - 1) ) + b
|
||||
return c/2 * math.pow(2, 10 * (t - 1)) + b
|
||||
t -= 1
|
||||
return c/2 * ( -math.pow( 2, -10 * t) + 2 ) + b
|
||||
return c/2 * (-math.pow(2, -10 * t) + 2) + b
|
||||
|
||||
|
||||
def easeInCirc(t, b, c, d):
|
||||
t /= d
|
||||
return -c * (math.sqrt(1 - t*t) - 1) + b
|
||||
|
||||
|
||||
def easeOutCirc(t, b, c, d):
|
||||
t /= d;
|
||||
t /= d
|
||||
t -= 1
|
||||
return c * math.sqrt(1 - t*t) + b
|
||||
|
||||
|
||||
def easeInOutCirc(t, b, c, d):
|
||||
t /= d/2
|
||||
if t < 1:
|
||||
|
@ -113,7 +130,7 @@ def easeInOutCirc(t, b, c, d):
|
|||
return c/2 * (math.sqrt(1 - t*t) + 1) + b
|
||||
|
||||
|
||||
def easeInElastic(t, b, c, d, s = 1.70158):
|
||||
def easeInElastic(t, b, c, d, s=1.70158):
|
||||
a = c
|
||||
|
||||
if t == 0:
|
||||
|
@ -132,7 +149,8 @@ def easeInElastic(t, b, c, d, s = 1.70158):
|
|||
t -= 1
|
||||
return -(a * pow(2, 10 * t) * math.sin((t * d - s) * (2 * math.pi) / p)) + b
|
||||
|
||||
def easeOutElastic(t, b, c, d, a = 1.70158):
|
||||
|
||||
def easeOutElastic(t, b, c, d, a=1.70158):
|
||||
if t == 0:
|
||||
return b
|
||||
t /= d
|
||||
|
@ -147,7 +165,8 @@ def easeOutElastic(t, b, c, d, a = 1.70158):
|
|||
|
||||
return a * pow(2, -10 * t) * math.sin((t * d - s) * (2 * math.pi) / p) + c + b
|
||||
|
||||
def easeInOutElastic(t, b, c, d, a = 1.70158):
|
||||
|
||||
def easeInOutElastic(t, b, c, d, a=1.70158):
|
||||
if t == 0:
|
||||
return b
|
||||
t /= (d / 2)
|
||||
|
@ -165,47 +184,53 @@ def easeInOutElastic(t, b, c, d, a = 1.70158):
|
|||
return -0.5 * (a * pow(2, 10 * t) * math.sin((t * d - s) * (2 * math.pi) / p)) + b
|
||||
|
||||
t -= 1
|
||||
return a * pow(2, -10 * t) * math.sin((t * d - s) * (2 * math.pi) / p ) * 0.5 + c + b
|
||||
return a * pow(2, -10 * t) * math.sin((t * d - s) * (2 * math.pi) / p) * 0.5 + c + b
|
||||
|
||||
def easeInBack(t, b, c, d, s = 1.70158):
|
||||
|
||||
def easeInBack(t, b, c, d, s=1.70158):
|
||||
t /= d
|
||||
return c * t * t * ((s + 1) * t - s) + b
|
||||
|
||||
def easeOutBack(t, b, c, d, s = 1.70158):
|
||||
|
||||
def easeOutBack(t, b, c, d, s=1.70158):
|
||||
t = t / d - 1
|
||||
return c * (t * t * ((s + 1) * t + s) + 1) + b
|
||||
|
||||
def easeInOutBack(t, b, c, d, s = 1.70158):
|
||||
|
||||
def easeInOutBack(t, b, c, d, s=1.70158):
|
||||
t /= d / 2
|
||||
s *= 1.525
|
||||
if t < 1:
|
||||
return c / 2 * (t * t * ((s + 1) * t - s)) + b;
|
||||
return c / 2 * (t * t * ((s + 1) * t - s)) + b
|
||||
|
||||
t -= 2
|
||||
return c/2 * (t * t * ((s + 1) * t + s) + 2) + b;
|
||||
return c/2 * (t * t * ((s + 1) * t + s) + 2) + b
|
||||
|
||||
|
||||
def easeInBounce(t, b, c, d):
|
||||
return c - easeOutBounce(d-t, 0, c, d) + b;
|
||||
return c - easeOutBounce(d-t, 0, c, d) + b
|
||||
|
||||
|
||||
def easeOutBounce(t, b, c, d):
|
||||
t /= d
|
||||
if t < (1/2.75):
|
||||
return c*(7.5625*t*t) + b;
|
||||
return c*(7.5625*t*t) + b
|
||||
|
||||
elif t < (2/2.75):
|
||||
t -= (1.5/2.75)
|
||||
return c*(7.5625*t*t + 0.75) + b;
|
||||
return c*(7.5625*t*t + 0.75) + b
|
||||
|
||||
elif t < (2.5/2.75):
|
||||
t -= (2.25/2.75)
|
||||
return c*(7.5625*t*t + 0.9375) + b;
|
||||
return c*(7.5625*t*t + 0.9375) + b
|
||||
|
||||
else:
|
||||
t -= (2.625/2.75)
|
||||
return c*(7.5625*t*t + 0.984375) + b;
|
||||
return c*(7.5625*t*t + 0.984375) + b
|
||||
|
||||
|
||||
def easeInOutBounce(t, b, c, d):
|
||||
if t < d/2:
|
||||
return easeInBounce(t*2, 0, c, d) * .5 + b;
|
||||
return easeInBounce(t*2, 0, c, d) * .5 + b
|
||||
|
||||
return easeOutBounce(t*2-d, 0, c, d) * .5 + c*.5 + b;
|
||||
return easeOutBounce(t*2-d, 0, c, d) * .5 + c*.5 + b
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
import math
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://eh15.easterhegg.eu/frab/en/eh15/public/schedule.xml'
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
import random
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
import math
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import math
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import math
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import math
|
||||
|
||||
|
|
128
fiffkon21/__init__.py
Normal file
|
@ -0,0 +1,128 @@
|
|||
#!/usr/bin/python3
|
||||
# vim: tabstop=4 shiftwidth=4 expandtab
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import math
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://pretalx.c3voc.de/fiffkon2021/schedule/export/schedule.xml'
|
||||
|
||||
# For (really) too long titles
|
||||
titlemap = {
|
||||
#708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
|
||||
}
|
||||
|
||||
|
||||
def outroFrames(p):
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||
('plate', 'style', 'opacity', 0),
|
||||
)
|
||||
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', 1),
|
||||
('plate', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', 1),
|
||||
('plate', 'style', 'opacity', 1),
|
||||
)
|
||||
|
||||
def introFrames(p):
|
||||
frames = math.floor(1.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('header', 'attr', 'y', 659),
|
||||
('text', 'style', 'opacity', 0),
|
||||
)
|
||||
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
frames = math.ceil(3.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text', 'style', 'opacity', 1),
|
||||
)
|
||||
|
||||
def pauseFrames(p):
|
||||
pass
|
||||
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 6526,
|
||||
'$title': 'Besser steuern durch Daten? - Zur Performativität soziotechnischer Systeme und der Quantifizierung der sozialen Welt',
|
||||
'$subtitle': '',
|
||||
'$personnames': 'Judith Hartstein und Anne K. Krüger'
|
||||
}
|
||||
)
|
||||
|
||||
#render(
|
||||
# 'outro.svg',
|
||||
# '../outro.ts',
|
||||
# outroFrames
|
||||
#)
|
||||
|
||||
# render('pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
|
||||
def tasks(queue, params, 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
|
||||
if int(event['id']) not in skiplist:
|
||||
print("processing id (%s [%s])" % (event['title'], event['id']))
|
||||
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
|
||||
if not "out" in skiplist:
|
||||
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
fiffkon21/artwork/background.png
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
fiffkon21/artwork/background_full.jpg
Normal file
After Width: | Height: | Size: 447 KiB |
BIN
fiffkon21/artwork/background_full_dark.jpg
Normal file
After Width: | Height: | Size: 332 KiB |
199
fiffkon21/artwork/by-sa.svg
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?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://web.resource.org/cc/"
|
||||
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="120"
|
||||
height="42"
|
||||
id="svg2759"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docname="by-sa.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs2761" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#8b8b8b"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="179"
|
||||
inkscape:cy="89.569904"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="120px"
|
||||
height="42px"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-width="1198"
|
||||
inkscape:window-height="624"
|
||||
inkscape:window-x="488"
|
||||
inkscape:window-y="401" />
|
||||
<metadata
|
||||
id="metadata2764">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)"
|
||||
id="g287"
|
||||
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
|
||||
inkscape:export-xdpi="300.23013"
|
||||
inkscape:export-ydpi="300.23013">
|
||||
<path
|
||||
id="path3817_2_"
|
||||
nodetypes="ccccccc"
|
||||
d="M 182.23532,75.39014 L 296.29928,75.59326 C 297.89303,75.59326 299.31686,75.35644 299.31686,78.77344 L 299.17721,116.34033 L 179.3569,116.34033 L 179.3569,78.63379 C 179.3569,76.94922 179.51999,75.39014 182.23532,75.39014 z"
|
||||
style="fill:#aab2ab" />
|
||||
|
||||
<g
|
||||
id="g5908_2_"
|
||||
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||
|
||||
<path
|
||||
id="path5906_2_"
|
||||
cx="296.35416"
|
||||
ry="22.939548"
|
||||
cy="264.3577"
|
||||
type="arc"
|
||||
rx="22.939548"
|
||||
d="M 187.20944,-55.6792 C 187.21502,-46.99896 180.18158,-39.95825 171.50134,-39.95212 C 162.82113,-39.94708 155.77929,-46.97998 155.77426,-55.66016 C 155.77426,-55.66687 155.77426,-55.67249 155.77426,-55.6792 C 155.76922,-64.36054 162.80209,-71.40125 171.48233,-71.40631 C 180.16367,-71.41193 187.20441,-64.37842 187.20944,-55.69824 C 187.20944,-55.69263 187.20944,-55.68591 187.20944,-55.6792 z"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<g
|
||||
id="g5706_2_"
|
||||
transform="translate(-289.6157,99.0653)">
|
||||
<path
|
||||
id="path5708_2_"
|
||||
d="M 473.88455,-167.54724 C 477.36996,-164.06128 479.11294,-159.79333 479.11294,-154.74451 C 479.11294,-149.69513 477.40014,-145.47303 473.9746,-142.07715 C 470.33929,-138.50055 466.04281,-136.71283 461.08513,-136.71283 C 456.18736,-136.71283 451.96526,-138.48544 448.42003,-142.03238 C 444.87419,-145.57819 443.10158,-149.81537 443.10158,-154.74451 C 443.10158,-159.6731 444.87419,-163.94049 448.42003,-167.54724 C 451.87523,-171.03375 456.09728,-172.77618 461.08513,-172.77618 C 466.13342,-172.77618 470.39914,-171.03375 473.88455,-167.54724 z M 450.76657,-165.20239 C 447.81982,-162.22601 446.34701,-158.7395 446.34701,-154.74005 C 446.34701,-150.7417 447.80529,-147.28485 450.72125,-144.36938 C 453.63778,-141.45288 457.10974,-139.99462 461.1383,-139.99462 C 465.16683,-139.99462 468.66848,-141.46743 471.64486,-144.41363 C 474.47076,-147.14947 475.88427,-150.59069 475.88427,-154.74005 C 475.88427,-158.85809 474.44781,-162.35297 471.57659,-165.22479 C 468.70595,-168.09546 465.22671,-169.53131 461.1383,-169.53131 C 457.04993,-169.53131 453.59192,-168.08813 450.76657,-165.20239 z M 458.52106,-156.49927 C 458.07074,-157.4809 457.39673,-157.9715 456.49781,-157.9715 C 454.90867,-157.9715 454.11439,-156.90198 454.11439,-154.763 C 454.11439,-152.62341 454.90867,-151.55389 456.49781,-151.55389 C 457.54719,-151.55389 458.29676,-152.07519 458.74647,-153.11901 L 460.94923,-151.94598 C 459.8993,-150.0805 458.32417,-149.14697 456.22374,-149.14697 C 454.60384,-149.14697 453.30611,-149.64367 452.33168,-150.63653 C 451.35561,-151.62994 450.86894,-152.99926 450.86894,-154.7445 C 450.86894,-156.46008 451.37123,-157.82159 452.37642,-158.83013 C 453.38161,-159.83806 454.63347,-160.34264 456.13423,-160.34264 C 458.35435,-160.34264 459.94407,-159.46776 460.90504,-157.71978 L 458.52106,-156.49927 z M 468.8844,-156.49927 C 468.43353,-157.4809 467.77292,-157.9715 466.90201,-157.9715 C 465.28095,-157.9715 464.46988,-156.90198 464.46988,-154.763 C 464.46988,-152.62341 465.28095,-151.55389 466.90201,-151.55389 C 467.95304,-151.55389 468.68918,-152.07519 469.10925,-153.11901 L 471.36126,-151.94598 C 470.31301,-150.0805 468.74007,-149.14697 466.64358,-149.14697 C 465.02587,-149.14697 463.73095,-149.64367 462.75711,-150.63653 C 461.78494,-151.62994 461.29773,-152.99926 461.29773,-154.7445 C 461.29773,-156.46008 461.79221,-157.82159 462.78061,-158.83013 C 463.76843,-159.83806 465.02588,-160.34264 466.55408,-160.34264 C 468.77027,-160.34264 470.35776,-159.46776 471.3154,-157.71978 L 468.8844,-156.49927 z" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
d="M 297.29639,74.91064 L 181.06688,74.91064 C 179.8203,74.91064 178.80614,75.92529 178.80614,77.17187 L 178.80614,116.66748 C 178.80614,116.94922 179.03466,117.17822 179.31639,117.17822 L 299.04639,117.17822 C 299.32813,117.17822 299.55713,116.94922 299.55713,116.66748 L 299.55713,77.17188 C 299.55713,75.92529 298.54297,74.91064 297.29639,74.91064 z M 181.06688,75.93213 L 297.29639,75.93213 C 297.97998,75.93213 298.53565,76.48828 298.53565,77.17188 C 298.53565,77.17188 298.53565,93.09131 298.53565,104.59034 L 215.4619,104.59034 C 212.41698,110.09571 206.55077,113.83399 199.81835,113.83399 C 193.083,113.83399 187.21825,110.09913 184.1748,104.59034 L 179.82666,104.59034 C 179.82666,93.09132 179.82666,77.17188 179.82666,77.17188 C 179.82664,76.48828 180.38329,75.93213 181.06688,75.93213 z"
|
||||
id="path294" />
|
||||
|
||||
<g
|
||||
enable-background="new "
|
||||
id="g296">
|
||||
<path
|
||||
d="M 265.60986,112.8833 C 265.68994,113.03906 265.79736,113.16504 265.93115,113.26172 C 266.06494,113.35791 266.22119,113.42969 266.40088,113.47608 C 266.58154,113.52296 266.76807,113.54639 266.96045,113.54639 C 267.09033,113.54639 267.22998,113.53565 267.3794,113.51368 C 267.52784,113.4922 267.66749,113.44972 267.79835,113.3877 C 267.92823,113.32569 268.03761,113.23975 268.12355,113.13086 C 268.21144,113.02197 268.25441,112.88379 268.25441,112.71533 C 268.25441,112.53515 268.19679,112.38916 268.08156,112.27685 C 267.9673,112.16455 267.81594,112.07177 267.62941,111.99658 C 267.44386,111.92236 267.23195,111.85693 266.9966,111.80078 C 266.76027,111.74463 266.52101,111.68262 266.27883,111.61377 C 266.02981,111.55176 265.78762,111.47559 265.55129,111.38525 C 265.31594,111.29541 265.10402,111.17822 264.9175,111.03515 C 264.73098,110.89208 264.58059,110.71337 264.46535,110.49853 C 264.35109,110.28369 264.29347,110.02392 264.29347,109.71923 C 264.29347,109.37646 264.36671,109.07958 264.51222,108.82763 C 264.6587,108.57568 264.85011,108.36572 265.08644,108.19726 C 265.32179,108.02929 265.58937,107.90478 265.8882,107.82372 C 266.18605,107.74315 266.48488,107.70263 266.78273,107.70263 C 267.13136,107.70263 267.46535,107.74169 267.78566,107.81982 C 268.105,107.89746 268.39015,108.02392 268.6382,108.19824 C 268.88722,108.37256 269.08449,108.59521 269.23097,108.86621 C 269.37648,109.13721 269.44972,109.46582 269.44972,109.85156 L 268.02784,109.85156 C 268.01514,109.65234 267.97315,109.4873 267.90284,109.35693 C 267.83155,109.22607 267.73682,109.12353 267.61964,109.04834 C 267.50148,108.97412 267.36671,108.9209 267.21534,108.89014 C 267.063,108.85889 266.89796,108.84326 266.71827,108.84326 C 266.60108,108.84326 266.48292,108.85596 266.36573,108.88037 C 266.24757,108.90576 266.14112,108.94922 266.04542,109.01123 C 265.94874,109.07373 265.86964,109.15137 265.80812,109.24463 C 265.7466,109.33838 265.71535,109.45654 265.71535,109.59961 C 265.71535,109.73047 265.73976,109.83643 265.78957,109.91699 C 265.83937,109.99804 265.93801,110.07275 266.08352,110.14111 C 266.22903,110.20947 266.43118,110.27832 266.68899,110.34668 C 266.9468,110.41504 267.28372,110.50244 267.70071,110.60791 C 267.82473,110.63281 267.99661,110.67822 268.21731,110.74365 C 268.43801,110.80908 268.65676,110.91308 268.87454,111.05615 C 269.09231,111.1997 269.27981,111.39111 269.43899,111.63037 C 269.59719,111.87012 269.67629,112.17676 269.67629,112.55029 C 269.67629,112.85547 269.61672,113.13867 269.49856,113.3999 C 269.3804,113.66162 269.20461,113.8872 268.97122,114.07666 C 268.73782,114.26709 268.44876,114.41455 268.10403,114.52051 C 267.75833,114.62647 267.35794,114.6792 266.90481,114.6792 C 266.53762,114.6792 266.18118,114.63379 265.83547,114.54346 C 265.49074,114.45313 265.18508,114.31104 264.92043,114.11768 C 264.65676,113.92432 264.4468,113.67774 264.29055,113.37891 C 264.13528,113.07959 264.06106,112.7251 264.06692,112.31397 L 265.4888,112.31397 C 265.48877,112.53809 265.52881,112.72803 265.60986,112.8833 z"
|
||||
id="path298"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<path
|
||||
d="M 273.8667,107.8667 L 276.35986,114.53076 L 274.8374,114.53076 L 274.33349,113.04638 L 271.84033,113.04638 L 271.31787,114.53076 L 269.84326,114.53076 L 272.36377,107.8667 L 273.8667,107.8667 z M 273.95068,111.95264 L 273.11084,109.50928 L 273.09229,109.50928 L 272.22315,111.95264 L 273.95068,111.95264 z"
|
||||
id="path300"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
enable-background="new "
|
||||
id="g302">
|
||||
<path
|
||||
d="M 239.17821,107.8667 C 239.49559,107.8667 239.78563,107.89502 240.04735,107.95068 C 240.30907,108.00683 240.53368,108.09863 240.72118,108.22607 C 240.9077,108.35351 241.05321,108.52295 241.15575,108.73437 C 241.25829,108.94579 241.31005,109.20703 241.31005,109.51806 C 241.31005,109.854 241.23388,110.13329 241.08056,110.35742 C 240.92822,110.58154 240.70165,110.76465 240.40283,110.90771 C 240.81494,111.02587 241.12256,111.23291 241.32568,111.5288 C 241.5288,111.82469 241.63037,112.18114 241.63037,112.59814 C 241.63037,112.93408 241.56494,113.22509 241.43408,113.47119 C 241.30322,113.7168 241.12646,113.91748 240.90576,114.07324 C 240.68408,114.229 240.43115,114.34424 240.14795,114.41845 C 239.86377,114.49365 239.57275,114.53075 239.27295,114.53075 L 236.03662,114.53075 L 236.03662,107.86669 L 239.17821,107.86669 L 239.17821,107.8667 z M 238.99071,110.56201 C 239.25243,110.56201 239.46727,110.5 239.63622,110.37597 C 239.80419,110.25146 239.88817,110.05029 239.88817,109.77099 C 239.88817,109.61572 239.85985,109.48828 239.80419,109.38915 C 239.74755,109.28954 239.67333,109.21239 239.57958,109.15624 C 239.48583,109.10058 239.37841,109.06151 239.25731,109.04003 C 239.13524,109.01806 239.00926,109.00732 238.8784,109.00732 L 237.50535,109.00732 L 237.50535,110.56201 L 238.99071,110.56201 z M 239.07664,113.39014 C 239.22019,113.39014 239.35691,113.37647 239.48777,113.34815 C 239.61863,113.32032 239.73484,113.27344 239.83445,113.2085 C 239.93406,113.14307 240.01316,113.0542 240.07273,112.94239 C 240.1323,112.83058 240.1616,112.68751 240.1616,112.51319 C 240.1616,112.17139 240.06492,111.92725 239.87156,111.78126 C 239.6782,111.63527 239.42234,111.56202 239.10496,111.56202 L 237.50535,111.56202 L 237.50535,113.39014 L 239.07664,113.39014 z"
|
||||
id="path304"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<path
|
||||
d="M 241.88914,107.8667 L 243.53269,107.8667 L 245.09324,110.49854 L 246.64402,107.8667 L 248.27781,107.8667 L 245.80418,111.97315 L 245.80418,114.53077 L 244.33543,114.53077 L 244.33543,111.93604 L 241.88914,107.8667 z"
|
||||
id="path306"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g6316_1_"
|
||||
transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)">
|
||||
|
||||
<path
|
||||
id="path6318_1_"
|
||||
cx="475.97119"
|
||||
ry="29.209877"
|
||||
cy="252.08646"
|
||||
type="arc"
|
||||
rx="29.209877"
|
||||
d="M -175.0083,-139.1153 C -175.00204,-129.7035 -182.62555,-122.06751 -192.03812,-122.06049 C -201.44913,-122.05341 -209.08512,-129.67774 -209.09293,-139.09028 C -209.09293,-139.09809 -209.09293,-139.10749 -209.09293,-139.1153 C -209.09919,-148.52784 -201.47413,-156.1623 -192.06311,-156.17011 C -182.65054,-156.17713 -175.01456,-148.55207 -175.0083,-139.14026 C -175.0083,-139.13092 -175.0083,-139.1239 -175.0083,-139.1153 z"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<g
|
||||
id="g6320_1_"
|
||||
transform="translate(-23.9521,-89.72962)">
|
||||
<path
|
||||
id="path6322_1_"
|
||||
d="M -168.2204,-68.05536 C -173.39234,-68.05536 -177.76892,-66.25067 -181.35175,-62.64203 C -185.02836,-58.90759 -186.86588,-54.48883 -186.86588,-49.38568 C -186.86588,-44.28253 -185.02836,-39.89416 -181.35175,-36.22308 C -177.67673,-32.55114 -173.29859,-30.71521 -168.2204,-30.71521 C -163.07974,-30.71521 -158.62503,-32.56677 -154.85312,-36.26996 C -151.30307,-39.78558 -149.52652,-44.15827 -149.52652,-49.38568 C -149.52652,-54.6123 -151.33432,-59.03265 -154.94843,-62.64203 C -158.5625,-66.25067 -162.98599,-68.05536 -168.2204,-68.05536 z M -168.17352,-64.69519 C -163.936,-64.69519 -160.33752,-63.20221 -157.37655,-60.21466 C -154.38748,-57.25836 -152.89214,-53.64899 -152.89214,-49.38568 C -152.89214,-45.09186 -154.35466,-41.52856 -157.28438,-38.69653 C -160.36876,-35.64727 -163.99849,-34.12304 -168.17351,-34.12304 C -172.34856,-34.12304 -175.94701,-35.63244 -178.96892,-38.64965 C -181.9908,-41.66918 -183.50176,-45.24657 -183.50176,-49.38567 C -183.50176,-53.52398 -181.97518,-57.13414 -178.92205,-60.21465 C -175.9939,-63.20221 -172.41107,-64.69519 -168.17352,-64.69519 z" />
|
||||
|
||||
<path
|
||||
id="path6324_1_"
|
||||
d="M -176.49548,-52.02087 C -175.75171,-56.71856 -172.44387,-59.22949 -168.30008,-59.22949 C -162.33911,-59.22949 -158.70783,-54.90448 -158.70783,-49.1372 C -158.70783,-43.50982 -162.57194,-39.13793 -168.39383,-39.13793 C -172.39856,-39.13793 -175.98297,-41.60277 -176.63611,-46.43877 L -171.93292,-46.43877 C -171.7923,-43.92778 -170.1626,-43.04418 -167.83447,-43.04418 C -165.1813,-43.04418 -163.4563,-45.50908 -163.4563,-49.27709 C -163.4563,-53.22942 -164.94693,-55.32244 -167.74228,-55.32244 C -169.79074,-55.32244 -171.55948,-54.57787 -171.93292,-52.02087 L -170.56418,-52.02789 L -174.26734,-48.32629 L -177.96894,-52.02789 L -176.49548,-52.02087 z" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g313">
|
||||
<circle
|
||||
cx="242.56226"
|
||||
cy="90.224609"
|
||||
r="10.8064"
|
||||
id="circle315"
|
||||
sodipodi:cx="242.56226"
|
||||
sodipodi:cy="90.224609"
|
||||
sodipodi:rx="10.8064"
|
||||
sodipodi:ry="10.8064"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<g
|
||||
id="g317">
|
||||
<path
|
||||
d="M 245.68994,87.09766 C 245.68994,86.68116 245.35205,86.34424 244.93603,86.34424 L 240.16357,86.34424 C 239.74755,86.34424 239.40966,86.68115 239.40966,87.09766 L 239.40966,91.87061 L 240.74071,91.87061 L 240.74071,97.52295 L 244.3579,97.52295 L 244.3579,91.87061 L 245.68993,91.87061 L 245.68993,87.09766 L 245.68994,87.09766 z"
|
||||
id="path319" />
|
||||
|
||||
<circle
|
||||
cx="242.5498"
|
||||
cy="84.083008"
|
||||
r="1.63232"
|
||||
id="circle321"
|
||||
sodipodi:cx="242.5498"
|
||||
sodipodi:cy="84.083008"
|
||||
sodipodi:rx="1.63232"
|
||||
sodipodi:ry="1.63232" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
clip-rule="evenodd"
|
||||
d="M 242.53467,78.31836 C 239.30322,78.31836 236.56641,79.4458 234.32715,81.70215 C 232.0293,84.03516 230.88086,86.79736 230.88086,89.98633 C 230.88086,93.1753 232.0293,95.91846 234.32715,98.21338 C 236.625,100.50781 239.36133,101.65527 242.53467,101.65527 C 245.74756,101.65527 248.53272,100.49853 250.88819,98.18359 C 253.10889,95.98681 254.21827,93.2539 254.21827,89.98632 C 254.21827,86.71874 253.08936,83.95751 250.83057,81.70214 C 248.57178,79.4458 245.80615,78.31836 242.53467,78.31836 z M 242.56396,80.41797 C 245.2124,80.41797 247.46142,81.35156 249.31103,83.21875 C 251.18115,85.06592 252.11572,87.32227 252.11572,89.98633 C 252.11572,92.66992 251.20068,94.89746 249.36963,96.66699 C 247.4419,98.57275 245.17334,99.52539 242.56397,99.52539 C 239.9546,99.52539 237.70557,98.58252 235.81739,96.6958 C 233.92774,94.80957 232.98389,92.57324 232.98389,89.98633 C 232.98389,87.3999 233.93799,85.14404 235.84619,83.21875 C 237.67676,81.35156 239.9165,80.41797 242.56396,80.41797 z"
|
||||
id="path323"
|
||||
style="fill-rule:evenodd" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
BIN
fiffkon21/artwork/fiffkon_bg.png
Normal file
After Width: | Height: | Size: 1.1 MiB |
184
fiffkon21/artwork/intro.svg
Normal file
After Width: | Height: | Size: 1.5 MiB |
2258
fiffkon21/artwork/outro.svg
Normal file
After Width: | Height: | Size: 1.6 MiB |
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'http://www.fossgis.de/konferenz/2014/programm/schedule.de.xml'
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'http://www.fossgis.de/konferenz/2015/programm/schedule.de.xml'
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import svg.path
|
||||
from lxml import etree
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'http://programm.froscon.de/2014/schedule.xml'
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import svg.path
|
||||
from lxml import etree
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
|
||||
|
|
161
froscon2022/__init__.py
Normal file
|
@ -0,0 +1,161 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
import svg.path
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://programm.froscon.de/2022/schedule.xml'
|
||||
|
||||
# For (really) too long titles
|
||||
titlemap = {
|
||||
#
|
||||
}
|
||||
|
||||
|
||||
def introFrames(args):
|
||||
xml = etree.parse('froscon2022/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 = 3*fps
|
||||
for i in range(0, frames):
|
||||
p = path.point(i / frames) - init
|
||||
yield (
|
||||
('animatePath', 'style', 'opacity', 0),
|
||||
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('names', 'style', 'opacity', 0),
|
||||
)
|
||||
|
||||
# frames = int(0.5*fps)
|
||||
# for i in range(0, frames):
|
||||
# yield (
|
||||
# ('animatePath', 'style', 'opacity', 0),
|
||||
# ('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||
# ('title', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||
# ('names', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||
# )
|
||||
|
||||
frames = int(3.0*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('animatePath', 'style', 'opacity', 0),
|
||||
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||
)
|
||||
|
||||
def outroFrames(args):
|
||||
xml = etree.parse('froscon2022/artwork/outro.svg').getroot()
|
||||
|
||||
frames = int(4*fps)
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
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': 2404,
|
||||
'$title': 'Linux Container im High Performance Computing',
|
||||
'$subtitle': 'Vom Wal zur Singularität und weiter',
|
||||
'$personnames': 'Holger Gantikow'
|
||||
}
|
||||
)
|
||||
|
||||
# render('outro.svg',
|
||||
# '../outro.ts',
|
||||
# outroFrames
|
||||
# )
|
||||
|
||||
# render('pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
if event['room'] not in ('HS 1/2', 'HS3', 'HS4', 'HS7', 'HS8'):
|
||||
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||
continue
|
||||
|
||||
if (event['id'] in idlist or not idlist) and not 'intro' in skiplist:
|
||||
# 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']
|
||||
}
|
||||
))
|
||||
|
||||
if not 'outro' in skiplist:
|
||||
# place a task for the outro into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
||||
|
||||
if not 'pause' in skiplist:
|
||||
# place the pause-sequence into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'pause.svg',
|
||||
outfile = 'pause.ts',
|
||||
sequence = pauseFrames
|
||||
))
|
218
froscon2022/artwork/background.svg
Normal file
|
@ -0,0 +1,218 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
width="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 1920 1080"
|
||||
sodipodi:docname="background.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata8">
|
||||
<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>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1025"
|
||||
inkscape:window-height="1026"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.2816083"
|
||||
inkscape:cx="713.75738"
|
||||
inkscape:cy="1200.2487"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<sodipodi:guide
|
||||
position="1664.2857,871.42857"
|
||||
orientation="1,0"
|
||||
id="guide4731"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="1840.4762,-14.285714"
|
||||
orientation="1,0"
|
||||
id="guide4733"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
id="rect2600"
|
||||
width="1920"
|
||||
height="1080"
|
||||
x="0"
|
||||
y="0"
|
||||
style="fill:#1f1fa3;fill-opacity:1;stroke-width:1" />
|
||||
<g
|
||||
id="Assets"
|
||||
stroke="none"
|
||||
stroke-width="1"
|
||||
fill="none"
|
||||
fill-rule="evenodd"
|
||||
transform="matrix(0.5159005,0,0,0.5159005,1535.7523,25.682362)">
|
||||
<g
|
||||
id="Logo-negative-(white)"
|
||||
transform="translate(-152,-723)"
|
||||
fill="#ffffff"
|
||||
fill-rule="nonzero">
|
||||
<g
|
||||
id="FrOSCon-Logo-rgb-white-endorse-below"
|
||||
transform="translate(152.66729,723)">
|
||||
<path
|
||||
d="m 0,125.00892 v -86.223767 0 C 0,31.796236 1.6859231,25.481687 5.0577694,19.841508 8.4296157,14.201329 12.966282,9.695316 18.667767,6.3234697 24.369253,2.9516235 30.653148,1.2657003 37.519453,1.2657003 h 41.531479 c 2.761423,0 5,2.2385763 5,5 V 19.43948 c 0,2.761424 -2.238577,5 -5,5 H 40.462155 v 0 c -3.923603,0 -7.264796,1.410045 -10.023579,4.230135 -2.758783,2.820089 -4.138175,6.191935 -4.138175,10.115538 v 15.782835 c 0,2.761423 2.238576,5 5,5 h 41.497288 c 2.761424,0 5,2.238576 5,5 v 13.173779 c 0,2.761424 -2.238576,5 -5,5 H 31.300401 c -2.761424,0 -5,2.238577 -5,5 v 37.267153 c 0,2.76143 -2.238576,5 -5,5 H 5 c -2.7614237,0 -5,-2.23857 -5,-5 z"
|
||||
id="Path" />
|
||||
<path
|
||||
d="m 92.042871,125.00892 v -62.130392 0 c 0,-8.337657 2.360292,-14.866777 7.080877,-19.587362 4.720582,-4.720585 11.249702,-7.080877 19.587362,-7.080877 h 20.93256 c 2.76143,0 5,2.238576 5,5 v 11.51851 c 0,2.761424 -2.23857,5 -5,5 h -16.51851 v 0 c -1.59396,0 -2.97335,0.551756 -4.13817,1.65527 -1.16482,1.103513 -1.74723,2.513558 -1.74723,4.230134 v 61.394717 c 0,2.76143 -2.23858,5 -5,5 H 97.042871 c -2.761424,0 -5,-2.23857 -5,-5 z"
|
||||
id="path1976" />
|
||||
<path
|
||||
d="m 298.50444,124.99554 v -13.17378 c 0,-2.76142 2.23857,-5 5,-5 h 50.17566 v 0 c 2.69748,0 5.14973,-0.67437 7.35676,-2.02311 2.20703,-1.34874 3.98491,-3.15727 5.33365,-5.425606 1.34874,-2.268333 2.0231,-4.751237 2.0231,-7.448715 0,-2.820089 -0.67436,-5.3643 -2.0231,-7.632633 -1.34874,-2.268333 -3.12662,-4.076869 -5.33365,-5.425608 -2.20703,-1.348738 -4.65928,-2.023107 -7.35676,-2.023107 h -21.51851 c -7.23414,0 -13.79391,-1.471351 -19.67932,-4.414054 -5.8854,-2.942702 -10.57533,-7.203489 -14.06979,-12.782362 -3.49446,-5.578873 -5.24169,-12.291913 -5.24169,-20.139119 0,-7.724593 1.65527,-14.437632 4.96581,-20.139118 3.31054,-5.701485 7.7859,-10.1461917 13.42608,-13.334119 5.64018,-3.1879274 11.89342,-4.7818911 18.75973,-4.7818911 h 50.91134 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -48.33648 v 0 c -2.45225,0 -4.72058,0.643716 -6.805,1.931148 -2.08441,1.287432 -3.70903,2.973355 -4.87385,5.057769 -1.16482,2.084414 -1.74723,4.414054 -1.74723,6.988918 0,2.574865 0.58241,4.904504 1.74723,6.988918 1.16482,2.084414 2.78944,3.739684 4.87385,4.96581 2.08442,1.226126 4.35275,1.839189 6.805,1.839189 h 22.25418 c 7.96982,0 14.89743,1.532657 20.78284,4.597972 5.8854,3.065315 10.45272,7.356755 13.70196,12.874322 3.24923,5.517567 4.87385,11.954728 4.87385,19.311483 0,8.705494 -1.68593,16.123553 -5.05777,22.254183 -3.37185,6.13063 -7.90851,10.78991 -13.61,13.97784 -5.70148,3.18792 -11.98538,4.78189 -18.85169,4.78189 h -53.4862 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||
id="path1978" />
|
||||
<path
|
||||
d="m 469.33159,129.99554 c -10.05424,-0.24523 -19.12757,-2.05376 -27.22,-5.42561 -8.09243,-3.37184 -15.02004,-7.96982 -20.78283,-13.79391 -5.76279,-5.8241 -10.2075,-12.598448 -13.33412,-20.323042 -3.12662,-7.724593 -4.68993,-16.000943 -4.68993,-24.829049 0,-8.828107 1.56331,-17.104457 4.68993,-24.82905 3.12662,-7.724594 7.57133,-14.498939 13.33412,-20.323037 5.76279,-5.824098 12.6904,-10.452724 20.78283,-13.8858764 8.09243,-3.4331526 17.16576,-5.2110351 27.22,-5.3336477 h 15.04716 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -14.49541 v 0 c -5.8854,0.122612 -11.28035,1.226126 -16.18486,3.31054 -4.9045,2.084414 -9.16529,4.96581 -12.78236,8.644187 -3.61707,3.678378 -6.40651,8.000472 -8.36831,12.966282 -1.9618,4.96581 -2.9427,10.391417 -2.9427,16.276822 0,5.885404 0.9809,11.311011 2.9427,16.276821 1.9618,4.96581 4.75124,9.287904 8.36831,12.966282 3.61707,3.678377 7.87786,6.559778 12.78236,8.644188 4.90451,2.08441 10.29946,3.18793 16.18486,3.31054 h 14.49541 c 2.76142,0 5,2.23858 5,5 v 13.17378 c 0,2.76142 -2.23858,5 -5,5 z"
|
||||
id="path1980" />
|
||||
<path
|
||||
d="m 547.43012,132.20257 c -9.68639,0 -18.33058,-2.17638 -25.93256,-6.52912 -7.60198,-4.35275 -13.61,-10.24965 -18.02405,-17.6907 -4.41406,-7.44105 -6.62108,-15.736562 -6.62108,-24.886527 0,-9.149965 2.20702,-17.445473 6.62108,-24.886525 4.41405,-7.441051 10.42207,-13.337951 18.02405,-17.690698 7.60198,-4.352747 16.24617,-6.52912 25.93256,-6.52912 9.6864,0 18.33058,2.176373 25.93256,6.52912 7.60198,4.352747 13.61,10.224741 18.02406,17.615981 4.41405,7.391241 6.62108,15.728897 6.62108,25.012969 0,9.16146 -2.20703,17.45122 -6.62108,24.86928 -4.41406,7.41806 -10.42208,13.30347 -18.02406,17.65622 -7.60198,4.35274 -16.24616,6.52912 -25.93256,6.52912 z m 0,-21.51851 c 5.14973,0 9.59444,-1.22613 13.33412,-3.67838 3.73968,-2.45225 6.62108,-5.75561 8.64419,-9.910069 2.02311,-4.154459 3.03466,-8.813259 3.03466,-13.976398 0,-5.165056 -1.01155,-9.831997 -3.03466,-14.000826 -2.02311,-4.168828 -4.90451,-7.479368 -8.64419,-9.931619 -3.73968,-2.452252 -8.18439,-3.678378 -13.33412,-3.678378 -5.14973,0 -9.59444,1.226126 -13.33412,3.678378 -3.73968,2.452251 -6.62108,5.755607 -8.64419,9.910066 -2.0231,4.15446 -3.03466,8.813259 -3.03466,13.976399 0,5.165055 1.01156,9.831997 3.03466,14.000825 2.02311,4.168832 4.90451,7.479372 8.64419,9.931622 3.73968,2.45225 8.18439,3.67838 13.33412,3.67838 z"
|
||||
id="Shape" />
|
||||
<path
|
||||
d="m 610.07947,124.99554 v -48.888235 0 c 0,-7.724593 1.80853,-14.774817 5.4256,-21.150672 3.61708,-6.375855 8.85876,-11.464277 15.72507,-15.265268 6.8663,-3.80099 15.08135,-5.701485 24.64513,-5.701485 9.68639,0 17.93209,1.900495 24.73709,5.701485 6.805,3.800991 12.01603,8.889413 15.63311,15.265268 3.61707,6.375855 5.4256,13.426079 5.4256,21.150672 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 v -48.888235 0 c 0,-3.80099 -0.9196,-7.264796 -2.75879,-10.391417 -1.83919,-3.126621 -4.32209,-5.609526 -7.44871,-7.448715 -3.12662,-1.839189 -6.59043,-2.758783 -10.39142,-2.758783 -3.80099,0 -7.2648,0.919594 -10.39142,2.758783 -3.12662,1.839189 -5.60952,4.322094 -7.44871,7.448715 -1.83919,3.126621 -2.75879,6.590427 -2.75879,10.391417 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||
id="path1983" />
|
||||
<path
|
||||
d="m 220,0 c 36.45079,0 66,29.549206 66,66 0,36.45079 -29.54921,66 -66,66 -36.45079,0 -66,-29.54921 -66,-66 0,-36.450794 29.54921,-66 66,-66 z m -17.00189,18.568446 -1.93756,2.831494 1.53943,2.668682 -0.63153,5.078586 -1.8052,-2.303226 0.34534,-3.389575 -3.06967,-2.015477 -3.39205,1.361896 -0.0169,3.912827 2.97572,1.516205 1.45972,5.927492 2.15161,6.815043 -0.0305,7.082912 2.34465,2.071055 4.61088,0.221223 1.8584,0.946904 -4.51345,8.779253 -0.42032,7.509823 -8.75187,-8.896009 -3.40232,-1.733568 -5.60842,2.151177 -1.00711,1.97656 -0.36684,10.187218 4.61019,13.623996 -4.36646,-3.879041 -3.78726,-6.589605 -1.167,-3.653386 0.36458,-2.304699 2.18849,-2.430273 -1.37613,-3.145307 -3.29197,-0.699651 -1.96044,3.203366 1.47629,2.195534 -0.57391,2.87169 -1.97667,-2.314596 -0.0599,-2.520959 -3.84258,-1.369528 -1.98185,2.199722 0.57695,3.220288 2.81609,0.721386 1.23051,2.572829 -2.24123,0.291333 -2.30388,-2.607181 -3.31321,1.246521 -0.27564,3.134268 2.48751,1.660461 2.05638,-0.786817 3.60758,1.838155 7.71477,5.765467 6.95085,7.952341 3.6232,1.385835 4.33669,-2.787504 -0.68495,-13.861259 5.28244,6.489427 2.48527,2.416679 8.6469,4.405812 3.41594,0.590138 8.35499,0.459194 -11.61659,7.593309 0.2939,5.146904 3.25083,2.11666 10.51918,0.94909 9.19899,2.85252 3.60758,1.83816 0.57217,2.12612 2.80546,1.03644 2.37366,-2.06526 -0.93901,-3.41314 -3.46343,-0.33141 -1.08167,-1.98444 2.80474,-0.51677 2.23887,1.85425 2.94439,-1.42608 0.61471,-2.89631 -3.36659,-2.30373 -2.07468,1.43336 -3.03441,-0.23868 1.98592,-2.15223 2.64396,-0.0962 1.43926,-3.468912 -2.501,-2.252016 -3.35348,0.735449 -0.67977,3.199007 -1.65024,1.649618 -3.6416,1.203284 -7.5572,0.80932 -5.70475,-1.2525 13.73185,-4.278263 8.02601,-6.284677 1.00711,-1.97656 -1.55621,-5.801736 -3.40232,-1.733568 -12.34125,-1.851476 5.82852,-4.754204 4.44963,-8.811776 1.8584,0.946903 2.88918,3.60025 3.05367,0.679523 5.71227,-4.187905 6.77817,-2.265089 5.65344,-2.30316 2.97572,1.516205 3.15563,-2.313542 -0.892,-3.544729 -3.43486,-1.298747 -2.53924,2.271729 -2.92441,-0.106632 3.73745,-3.496042 3.06387,-0.323182 1.15185,-3.231833 -2.05137,-2.667005 -3.45449,0.792909 -0.63713,3.251767 -3.16848,2.671159 0.10965,-4.229708 1.66104,-2.137611 -2.23877,-3.241974 -3.54914,0.292887 -1.24839,3.543213 1.6286,2.38328 -1.09677,3.288072 -3.7193,6.163988 -4.50112,2.161253 -4.63654,-10.479651 3.61811,-4.86316 0.0449,-6.64112 1.34093,-1.90326 -0.4133,-5.102476 -1.03338,-1.16321 -1.11562,-4.370289 -2.81584,-3.091877 0.0301,-0.05818 -0.0927,-0.0099 -0.0625,-0.06915 -0.0303,0.05808 -4.1556,-0.460247 -4.19138,1.666237 -1.54846,-0.152307 -4.37092,2.664798 -0.75159,2.203542 -5.3464,3.939863 -1.80771,5.785606 -11.20351,2.408738 -0.8972,-4.911831 2.80062,-6.632079 2.01545,-2.819981 2.88538,-0.08329 2.13273,-3.09262 -1.84918,-3.043465 -3.93873,0.09438 -0.75303,2.600265 -3.35745,2.574872 0.29863,-4.133421 2.25623,-2.426791 -1.38902,-3.260807 z"
|
||||
id="path1985" />
|
||||
<path
|
||||
d="m 0.83694671,181.344 v -21.05081 c 0,-1.14329 0.17423049,-2.0978 0.52269139,-2.86354 0.3484609,-0.76574 0.8060417,-1.37036 1.3727422,-1.81388 0.5667005,-0.44351 1.1987969,-0.7587 1.8962891,-0.94558 0.6974921,-0.18687 1.3884257,-0.2803 2.0728007,-0.2803 0.9448177,0.0103 2.0588282,0.0239 3.3420309,0.0411 1.283204,0.0171 2.634274,0.0557 4.053211,0.11577 1.418938,0.0601 2.788828,0.15228 4.109672,0.2766 v 3.73669 H 7.901978 c -0.8189688,0 -1.4476433,0.22699 -1.8860235,0.68095 -0.4383802,0.45397 -0.6575703,1.06915 -0.6575703,1.84554 v 5.44477 l 11.1735628,0.25949 v 3.54335 L 5.3583842,170.59418 V 181.344 Z"
|
||||
id="path1987" />
|
||||
<path
|
||||
d="m 20.623859,181.344 v -19.55317 h 3.478906 l 1.042531,3.12931 c 0.764599,-0.94368 1.625486,-1.74478 2.58266,-2.4033 0.957175,-0.65852 2.083637,-0.98778 3.379387,-0.98778 0.274891,0 0.558716,0.0146 0.851477,0.0439 0.29276,0.0293 0.56594,0.0804 0.819539,0.15342 v 4.62922 c -0.353594,-0.0487 -0.723252,-0.0902 -1.108973,-0.12461 -0.385721,-0.0344 -0.758801,-0.0516 -1.119238,-0.0516 -0.774865,0 -1.470836,0.0898 -2.087914,0.26947 -0.617078,0.17965 -1.19452,0.44427 -1.732324,0.79387 -0.537805,0.34961 -1.06601,0.79226 -1.584614,1.32798 V 181.344 Z"
|
||||
id="path1989" />
|
||||
<path
|
||||
d="m 43.180654,181.54132 c -2.118141,0 -3.805886,-0.29485 -5.063235,-0.88455 -1.257349,-0.5897 -2.161104,-1.61094 -2.711265,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236627,-0.584 2.91116,-0.876 5.023597,-0.876 1.871766,0 3.37587,0.19219 4.512313,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.247231,2.25255 -0.741692,2.99243 -0.49446,0.73989 -1.194994,1.26762 -2.101601,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204076,2.17165 0.483339,2.89576 0.279263,0.72411 0.791119,1.24452 1.535567,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922695 v 2.66393 c -1.012494,0.18326 -2.073656,0.35131 -3.183484,0.50416 -1.109828,0.15284 -2.411852,0.22926 -3.90607,0.22926 z M 39.016802,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404731,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125754,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284344,-0.31367 -2.196844,-0.31367 -1.014395,0 -1.81673,0.16007 -2.407004,0.4802 -0.590273,0.32014 -1.011069,0.89026 -1.262386,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||
id="path1991" />
|
||||
<path
|
||||
d="m 62.113652,181.54132 c -2.118141,0 -3.805885,-0.29485 -5.063234,-0.88455 -1.257349,-0.5897 -2.161105,-1.61094 -2.711266,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236628,-0.584 2.91116,-0.876 5.023598,-0.876 1.871765,0 3.375869,0.19219 4.512312,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.741691,2.99243 -0.494461,0.73989 -1.194995,1.26762 -2.101602,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204077,2.17165 0.48334,2.89576 0.279263,0.72411 0.791118,1.24452 1.535566,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922696 v 2.66393 c -1.012495,0.18326 -2.073657,0.35131 -3.183485,0.50416 -1.109828,0.15284 -2.411851,0.22926 -3.90607,0.22926 z M 57.9498,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404732,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125753,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284343,-0.31367 -2.196843,-0.31367 -1.014396,0 -1.816731,0.16007 -2.407004,0.4802 -0.590274,0.32014 -1.011069,0.89026 -1.262387,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||
id="path1993" />
|
||||
<path
|
||||
d="m 85.95017,181.563 c -1.458479,0 -2.653664,-0.43515 -3.585554,-1.30545 -0.931891,-0.8703 -1.397836,-2.07689 -1.397836,-3.61977 v -1.64592 c 0,-1.50031 0.517748,-2.72962 1.553246,-3.68793 1.035497,-0.95832 2.630946,-1.43747 4.786348,-1.43747 h 5.56796 v -1.70467 c 0,-0.68741 -0.117769,-1.26134 -0.353308,-1.72177 -0.235539,-0.46043 -0.675155,-0.80557 -1.318848,-1.0354 -0.643693,-0.22984 -1.600297,-0.34476 -2.869812,-0.34476 h -5.926688 v -2.62172 c 0.91174,-0.25284 1.972996,-0.46795 3.18377,-0.64531 1.210773,-0.17737 2.6568,-0.271 4.338082,-0.28088 1.614745,-0.0103 2.978742,0.18573 4.091992,0.58799 1.11325,0.40226 1.954271,1.06601 2.523062,1.99125 0.568792,0.92523 0.853188,2.18211 0.853188,3.77062 V 181.344 H 93.85242 l -0.763648,-2.12157 c -0.152844,0.14296 -0.450832,0.33858 -0.893965,0.58685 -0.443133,0.24828 -0.993389,0.51062 -1.650769,0.78704 -0.657381,0.27641 -1.380157,0.50662 -2.168329,0.69064 -0.788172,0.18403 -1.596684,0.27604 -2.425539,0.27604 z m 2.187149,-3.19204 c 0.312531,0.01 0.669737,-0.0249 1.071617,-0.10437 0.40188,-0.0795 0.808798,-0.17509 1.220754,-0.28687 0.411956,-0.11178 0.797772,-0.22603 1.157449,-0.34276 0.359677,-0.11672 0.653388,-0.22204 0.881133,-0.31595 0.227745,-0.0939 0.363099,-0.1479 0.406062,-0.16197 v -5.1214 l -4.221453,0.23382 c -1.112869,0.0772 -1.918531,0.35902 -2.416984,0.84549 -0.498453,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.124709,1.097 0.374125,1.46941 0.249417,0.37241 0.577156,0.6339 0.983219,0.78446 0.406062,0.15057 0.836648,0.23079 1.291758,0.24068 z"
|
||||
id="path1995" />
|
||||
<path
|
||||
d="m 101.1903,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77747,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.3766,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52143 v -12.47559 c 0,-0.70186 -0.13289,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07256,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path1997" />
|
||||
<path
|
||||
d="m 128.4808,181.563 c -1.55467,0 -2.85261,-0.33288 -3.89381,-0.99862 -1.0412,-0.66575 -1.82053,-1.72139 -2.338,-3.16695 -0.51746,-1.44555 -0.77619,-3.32986 -0.77619,-5.65293 0,-2.42345 0.2305,-4.38552 0.6915,-5.8862 0.461,-1.50068 1.22931,-2.601 2.30492,-3.30097 1.07561,-0.69996 2.53447,-1.04994 4.37658,-1.04994 0.96953,0 1.92528,0.10066 2.86724,0.30198 0.94197,0.20132 1.77244,0.43144 2.49141,0.69036 v -9.00523 h 4.52144 v 27.8495 h -3.75779 l -0.76365,-1.90884 c -0.40226,0.36348 -0.92162,0.70728 -1.55809,1.03141 -0.63647,0.32413 -1.31514,0.5879 -2.03602,0.79131 -0.72087,0.20341 -1.43072,0.30512 -2.12954,0.30512 z m 1.52273,-3.65514 c 0.8779,0 1.66855,-0.13934 2.37193,-0.41804 0.70339,-0.27869 1.31305,-0.56841 1.82899,-0.86915 V 165.7431 c -0.6205,-0.20189 -1.24727,-0.38839 -1.88032,-0.55948 -0.63304,-0.17109 -1.32065,-0.25664 -2.06282,-0.25664 -1.01858,0 -1.84401,0.18478 -2.47629,0.55434 -0.63229,0.36957 -1.08883,1.03046 -1.36961,1.9827 -0.28078,0.95223 -0.42117,2.30757 -0.42117,4.06604 0,1.62957 0.13183,2.90973 0.39551,3.84048 0.26367,0.93075 0.69198,1.58633 1.28491,1.96673 0.59293,0.38039 1.36923,0.57059 2.32887,0.57059 z"
|
||||
id="path1999" />
|
||||
<path
|
||||
d="m 161.73343,181.563 c -1.80219,0 -3.38195,-0.17357 -4.7393,-0.5207 -1.35734,-0.34713 -2.49008,-0.99225 -3.39821,-1.93536 -0.90812,-0.9431 -1.58794,-2.31603 -2.03943,-4.11879 -0.4515,-1.80276 -0.67725,-4.15501 -0.67725,-7.05676 0,-2.91126 0.22822,-5.2733 0.68466,-7.08614 0.45644,-1.81283 1.1412,-3.20088 2.05427,-4.16413 0.91307,-0.96326 2.0459,-1.62596 3.39849,-1.98811 1.35259,-0.36215 2.92485,-0.54323 4.71677,-0.54323 1.82196,0 3.41161,0.18108 4.76895,0.54323 1.35735,0.36215 2.48761,1.02485 3.3908,1.98811 0.90318,0.96325 1.57805,2.3513 2.0246,4.16413 0.44656,1.81284 0.66984,4.17488 0.66984,7.08614 0,2.90175 -0.22585,5.254 -0.67754,7.05676 -0.45168,1.80276 -1.1315,3.17569 -2.03943,4.11879 -0.90794,0.94311 -2.0382,1.58823 -3.3908,1.93536 -1.35259,0.34713 -2.93473,0.5207 -4.74642,0.5207 z m 0,-4.06234 c 1.18549,0 2.18315,-0.12461 2.993,-0.37384 0.80984,-0.24923 1.45933,-0.70928 1.94847,-1.38016 0.48914,-0.67087 0.84321,-1.63594 1.06221,-2.89519 0.219,-1.25925 0.3285,-2.89928 0.3285,-4.92008 0,-2.12347 -0.11207,-3.82747 -0.3362,-5.112 -0.22413,-1.28453 -0.58067,-2.25863 -1.06962,-2.92228 -0.48895,-0.66365 -1.13587,-1.1104 -1.94077,-1.34024 -0.80491,-0.22983 -1.8001,-0.34475 -2.98559,-0.34475 -1.12123,0 -2.08535,0.11492 -2.89234,0.34475 -0.80699,0.22984 -1.46257,0.67659 -1.96672,1.34024 -0.50416,0.66365 -0.87581,1.63775 -1.11496,2.92228 -0.23916,1.28453 -0.35873,2.98853 -0.35873,5.112 0,2.0208 0.10456,3.66083 0.31367,4.92008 0.20911,1.25925 0.55567,2.22432 1.03968,2.89519 0.48401,0.67088 1.13454,1.13093 1.95161,1.38016 0.81707,0.24923 1.82633,0.37384 3.02779,0.37384 z"
|
||||
id="path2001" />
|
||||
<path
|
||||
d="m 175.99709,189.9945 v -28.20367 h 3.75779 l 0.76364,1.90884 c 0.45663,-0.35322 0.98636,-0.69806 1.58918,-1.03455 0.60282,-0.33648 1.26077,-0.61356 1.97385,-0.83123 0.71308,-0.21767 1.44755,-0.3265 2.2034,-0.3265 1.22808,0 2.28515,0.24447 3.17123,0.73342 0.88607,0.48895 1.60999,1.18083 2.17175,2.07565 0.56175,0.89482 0.97257,1.95693 1.23244,3.18634 0.25987,1.2294 0.38981,2.58247 0.38981,4.0592 0,2.13449 -0.22375,3.95103 -0.67126,5.44962 -0.4475,1.49859 -1.1776,2.63893 -2.19028,3.42102 -1.01269,0.78208 -2.38058,1.17313 -4.10369,1.17313 -0.97789,0 -1.97299,-0.13317 -2.9853,-0.3995 -1.0123,-0.26634 -1.93934,-0.62801 -2.78113,-1.08502 v 9.87325 z m 8.87235,-12.12941 c 0.70224,0 1.34518,-0.18374 1.9288,-0.55121 0.58361,-0.36747 1.05127,-1.00593 1.40296,-1.91539 0.3517,-0.90946 0.52754,-2.18829 0.52754,-3.83649 0,-1.58813 -0.17299,-2.85223 -0.51898,-3.7923 -0.34599,-0.94006 -0.80623,-1.60961 -1.38073,-2.00864 -0.57449,-0.39903 -1.22047,-0.59854 -1.93792,-0.59854 -0.89235,0 -1.70809,0.13935 -2.44721,0.41804 -0.73913,0.27869 -1.38092,0.56841 -1.92538,0.86915 v 10.2354 c 0.6148,0.35094 1.30279,0.63533 2.06397,0.85319 0.76117,0.21786 1.52349,0.32679 2.28695,0.32679 z"
|
||||
id="path2003" />
|
||||
<path
|
||||
d="m 204.51433,181.54132 c -2.11815,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87177,0 3.37587,0.19219 4.51231,0.57658 1.13645,0.38439 1.96625,1.05888 2.48942,2.02347 0.52316,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49447,0.73989 -1.195,1.26762 -2.10161,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73221 c 0.043,1.2064 0.20407,2.17165 0.48334,2.89576 0.27926,0.72411 0.79111,1.24452 1.53556,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41186,0.22926 -3.90607,0.22926 z m -4.16386,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40474,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.407,0.4802 -0.59028,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path2005" />
|
||||
<path
|
||||
d="m 215.46409,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73998,0.30987 3.62092,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path2007" />
|
||||
<path
|
||||
d="m 253.36294,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27042,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68646,-0.0914 -1.29584,-0.20236 -1.82813,-0.33277 v -3.54335 c 0.68703,0.0631 1.48604,0.11653 2.39702,0.16025 0.91098,0.0437 1.86673,0.0778 2.86725,0.10209 1.00052,0.0243 1.96178,0.0365 2.88378,0.0365 0.9836,0 1.84848,-0.0885 2.59464,-0.26548 0.74616,-0.17699 1.33082,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63475,-1.1219 0.63475,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.8067,-2.19085 -0.53781,-0.50359 -1.33311,-0.75538 -2.38591,-0.75538 h -2.52192 c -2.4512,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32958,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18316,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21241,-1.74857 0.92277,0 1.87652,0.0448 2.86126,0.1343 0.98474,0.0895 1.93127,0.19828 2.83959,0.32622 0.90831,0.12794 1.68014,0.26206 2.31546,0.40236 v 3.54335 c -1.08929,-0.0871 -2.31841,-0.16606 -3.68735,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81397,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69597,0.19257 -1.23007,0.54284 -1.60229,1.0508 -0.37223,0.50796 -0.55834,1.23738 -0.55834,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.9376,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57292,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78488,1.37284 2.29151,2.37963 0.50663,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39142,3.53403 -1.17427,4.60014 -0.78285,1.0661 -1.85371,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||
id="path2009" />
|
||||
<path
|
||||
d="m 274.02527,181.54132 c -1.54098,0 -2.86857,-0.15987 -3.98277,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74378,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50787,-4.98453 0.33857,-1.30184 0.86535,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62947,-1.25031 2.74348,-1.54155 1.11401,-0.29124 2.43448,-0.43686 3.96139,-0.43686 1.54137,0 2.87162,0.15284 3.99076,0.45853 1.11915,0.30569 2.0326,0.82667 2.74036,1.56294 0.70775,0.73627 1.23349,1.75533 1.5772,3.05716 0.3437,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84787,2.32136 -1.55582,3.06486 -0.70794,0.74349 -1.62149,1.26799 -2.74063,1.57349 -1.11915,0.3055 -2.46366,0.45824 -4.03354,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90713,-0.20303 0.53799,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35093,-0.42754 0.61556,-1.07095 0.79387,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17831,-0.8471 -0.44294,-1.48186 -0.79387,-1.90427 -0.35093,-0.42241 -0.7954,-0.7013 -1.33339,-0.83665 -0.538,-0.13536 -1.17371,-0.20303 -1.90713,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89885,0.20303 -0.53286,0.13535 -0.97486,0.41424 -1.32598,0.83665 -0.35112,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17337,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43563,1.50268 0.78675,1.93022 0.35112,0.42755 0.79312,0.709 1.32598,0.84435 0.53286,0.13536 1.16581,0.20303 1.89885,0.20303 z"
|
||||
id="path2011" />
|
||||
<path
|
||||
d="m 291.7726,181.563 c -1.79345,0 -3.18938,-0.50625 -4.18781,-1.51875 -0.99843,-1.01249 -1.49764,-2.49226 -1.49764,-4.43931 v -13.81411 h 4.52144 v 12.50581 c 0,1.28625 0.29542,2.15246 0.88626,2.59863 0.59085,0.44618 1.40696,0.66926 2.44836,0.66926 0.83683,0 1.65656,-0.13953 2.45918,-0.4186 0.80262,-0.27908 1.55848,-0.66214 2.26757,-1.14918 v -14.20592 h 4.522 V 181.344 h -3.68478 l -0.83722,-2.04857 c -0.91745,0.59541 -1.96815,1.12219 -3.15212,1.58034 -1.18397,0.45815 -2.43238,0.68723 -3.74524,0.68723 z"
|
||||
id="path2013" />
|
||||
<path
|
||||
d="m 307.02893,181.344 v -19.55317 h 3.4789 l 1.04254,3.12931 c 0.76459,-0.94368 1.62548,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08363,-0.98778 3.37938,-0.98778 0.27489,0 0.55872,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.3536,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38573,-0.0344 -0.75881,-0.0516 -1.11924,-0.0516 -0.77487,0 -1.47084,0.0898 -2.08792,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73232,0.79387 -0.53781,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path2015" />
|
||||
<path
|
||||
d="m 329.05362,181.563 c -1.16039,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98626,-0.30835 -1.84145,-0.82971 -2.56555,-1.56408 -0.72411,-0.73437 -1.28549,-1.74535 -1.68414,-3.03292 -0.39864,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10337,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63793,1.99324 -0.35455,0.96877 -0.53182,2.36832 -0.53182,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74236,0.32946 1.69829,0.49418 2.86782,0.49418 h 5.56625 v 2.57838 c -0.5783,0.15285 -1.25916,0.29761 -2.04258,0.4343 -0.78342,0.13668 -1.60742,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||
id="path2017" />
|
||||
<path
|
||||
d="m 346.74072,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73222 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01106,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path2019" />
|
||||
<path
|
||||
d="m 374.69033,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27041,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68647,-0.0914 -1.29584,-0.20236 -1.82814,-0.33277 v -3.54335 c 0.68704,0.0631 1.48605,0.11653 2.39703,0.16025 0.91098,0.0437 1.86672,0.0778 2.86724,0.10209 1.00052,0.0243 1.96178,0.0365 2.88379,0.0365 0.9836,0 1.84848,-0.0885 2.59463,-0.26548 0.74616,-0.17699 1.33083,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63476,-1.1219 0.63476,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.80671,-2.19085 -0.5378,-0.50359 -1.3331,-0.75538 -2.3859,-0.75538 h -2.52192 c -2.45121,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32959,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18315,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21242,-1.74857 0.92276,0 1.87651,0.0448 2.86125,0.1343 0.98475,0.0895 1.93127,0.19828 2.83959,0.32622 0.90832,0.12794 1.68014,0.26206 2.31547,0.40236 v 3.54335 c -1.0893,-0.0871 -2.31842,-0.16606 -3.68736,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81396,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69598,0.19257 -1.23007,0.54284 -1.6023,1.0508 -0.37222,0.50796 -0.55833,1.23738 -0.55833,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.93759,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57293,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78489,1.37284 2.29152,2.37963 0.50662,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39143,3.53403 -1.17428,4.60014 -0.78284,1.0661 -1.8537,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||
id="path2021" />
|
||||
<path
|
||||
d="m 395.35267,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26747,-2.00065 0.26747,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26747,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.366,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61338,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17337,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53286,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||
id="path2023" />
|
||||
<path
|
||||
d="m 408.72569,181.344 v -15.91914 h -2.85384 v -2.90004 l 2.85384,-0.73399 v -1.64193 c 0,-1.55809 0.20275,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.9596,-2.26813 0.9009,-0.49598 2.10625,-0.74397 3.61606,-0.74397 0.85167,0 1.60914,0.0529 2.27241,0.15883 0.66328,0.10589 1.22399,0.21168 1.68214,0.31738 v 3.22169 h -3.0814 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61897,0.534 -0.76364,0.96383 -0.14467,0.42983 -0.21701,0.98198 -0.21701,1.65647 v 1.87804 h 5.36094 v 3.63403 h -5.36094 V 181.344 Z"
|
||||
id="path2025" />
|
||||
<path
|
||||
d="m 427.85323,181.344 c -1.41818,0 -2.57696,-0.21501 -3.47634,-0.64503 -0.89938,-0.43001 -1.55201,-1.13882 -1.95788,-2.12641 -0.40587,-0.98759 -0.59436,-2.30777 -0.56547,-3.96053 l 0.15855,-9.18717 h -3.07455 v -2.90004 l 3.21599,-0.73399 0.63533,-5.48127 h 3.54335 v 5.48127 h 4.97198 v 3.63403 h -4.97198 v 9.1655 c 0,0.6376 0.0644,1.15735 0.19333,1.55923 0.12889,0.40188 0.30579,0.71698 0.53068,0.94529 0.22489,0.22832 0.47526,0.39257 0.7511,0.49275 0.27584,0.10019 0.5533,0.16245 0.83237,0.18678 l 2.44322,0.24067 v 3.32892 z"
|
||||
id="path2027" />
|
||||
<polygon
|
||||
id="polygon2029"
|
||||
points="460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 " />
|
||||
<path
|
||||
d="m 466.27267,181.563 c -1.45848,0 -2.65366,-0.43515 -3.58555,-1.30545 -0.93189,-0.8703 -1.39784,-2.07689 -1.39784,-3.61977 v -1.64592 c 0,-1.50031 0.51775,-2.72962 1.55325,-3.68793 1.03549,-0.95832 2.63094,-1.43747 4.78634,-1.43747 h 5.56797 v -1.70467 c 0,-0.68741 -0.11777,-1.26134 -0.35331,-1.72177 -0.23554,-0.46043 -0.67516,-0.80557 -1.31885,-1.0354 -0.64369,-0.22984 -1.6003,-0.34476 -2.86981,-0.34476 h -5.92669 v -2.62172 c 0.91174,-0.25284 1.973,-0.46795 3.18377,-0.64531 1.21077,-0.17737 2.6568,-0.271 4.33808,-0.28088 1.61475,-0.0103 2.97874,0.18573 4.09199,0.58799 1.11325,0.40226 1.95427,1.06601 2.52307,1.99125 0.56879,0.92523 0.85318,2.18211 0.85318,3.77062 V 181.344 h -3.54335 l -0.76365,-2.12157 c -0.15284,0.14296 -0.45083,0.33858 -0.89396,0.58685 -0.44313,0.24828 -0.99339,0.51062 -1.65077,0.78704 -0.65738,0.27641 -1.38016,0.50662 -2.16833,0.69064 -0.78817,0.18403 -1.59668,0.27604 -2.42554,0.27604 z m 2.18715,-3.19204 c 0.31253,0.01 0.66974,-0.0249 1.07162,-0.10437 0.40188,-0.0795 0.80879,-0.17509 1.22075,-0.28687 0.41196,-0.11178 0.79777,-0.22603 1.15745,-0.34276 0.35968,-0.11672 0.65339,-0.22204 0.88113,-0.31595 0.22775,-0.0939 0.3631,-0.1479 0.40607,-0.16197 v -5.1214 l -4.22146,0.23382 c -1.11287,0.0772 -1.91853,0.35902 -2.41698,0.84549 -0.49845,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.12471,1.097 0.37412,1.46941 0.24942,0.37241 0.57716,0.6339 0.98322,0.78446 0.40606,0.15057 0.83665,0.23079 1.29176,0.24068 z"
|
||||
id="path2031" />
|
||||
<path
|
||||
d="m 481.5128,181.344 v -19.55317 h 3.47891 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85147,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path2033" />
|
||||
<path
|
||||
d="m 504.0696,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71126,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80185,-6.12431 0.53458,-1.4522 1.42018,-2.4703 2.65681,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96624,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.195,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74444,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32443 c 0.85813,0 1.48956,-0.16472 1.8943,-0.49418 0.40473,-0.32945 0.60709,-0.92229 0.60709,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28435,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||
id="path2035" />
|
||||
<path
|
||||
d="m 533.04178,181.563 c -1.58319,0 -2.9756,-0.1825 -4.17725,-0.5475 -1.20165,-0.365 -2.21035,-1.0317 -3.02608,-2.00009 -0.81574,-0.96839 -1.42968,-2.35748 -1.84183,-4.16727 -0.41214,-1.8098 -0.61821,-4.16481 -0.61821,-7.06503 0,-2.76222 0.2132,-5.03368 0.6396,-6.81438 0.4264,-1.78071 1.05603,-3.16628 1.88888,-4.15673 0.83284,-0.99044 1.8576,-1.68175 3.07426,-2.07394 1.21667,-0.39218 2.61033,-0.58828 4.18097,-0.58828 1.05698,0 2.09057,0.059 3.10079,0.17709 1.01021,0.11805 1.95056,0.26149 2.82105,0.4303 0.87048,0.16881 1.62434,0.35264 2.26157,0.55149 v 3.47891 c -0.4323,-0.0874 -1.02352,-0.1748 -1.77367,-0.26206 -0.75015,-0.0873 -1.60115,-0.16131 -2.553,-0.22214 -0.95186,-0.0608 -1.94011,-0.0913 -2.96478,-0.0913 -1.11857,0 -2.07165,0.12537 -2.85926,0.37612 -0.7876,0.25075 -1.42198,0.71688 -1.90313,1.39841 -0.48115,0.68152 -0.83342,1.65305 -1.05679,2.91458 -0.22337,1.26153 -0.33506,2.90327 -0.33506,4.92522 0,1.99191 0.10095,3.6251 0.30284,4.89955 0.20189,1.27446 0.53381,2.25568 0.99576,2.94367 0.46196,0.68799 1.08636,1.16515 1.8732,1.43149 0.78684,0.26633 1.77015,0.3995 2.94994,0.3995 1.83945,0 3.34203,-0.0405 4.50775,-0.12148 1.16572,-0.081 2.10445,-0.17508 2.8162,-0.2823 v 3.4789 c -0.68894,0.20304 -1.46352,0.37717 -2.32374,0.52241 -0.86022,0.14524 -1.78764,0.25902 -2.78227,0.34133 -0.99462,0.0823 -2.06054,0.12348 -3.19774,0.12348 z"
|
||||
id="path2037" />
|
||||
<path
|
||||
d="m 552.26543,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53287,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||
id="path2039" />
|
||||
<path
|
||||
d="m 564.37008,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57644,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path2041" />
|
||||
<path
|
||||
d="m 586.53746,181.344 v -15.91914 h -2.85385 v -2.90004 l 2.85385,-0.73399 v -1.64193 c 0,-1.55809 0.20274,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.95959,-2.26813 0.9009,-0.49598 2.10626,-0.74397 3.61607,-0.74397 0.85166,0 1.60913,0.0529 2.27241,0.15883 0.66327,0.10589 1.22398,0.21168 1.68213,0.31738 v 3.22169 h -3.08139 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61898,0.534 -0.76365,0.96383 -0.14467,0.42983 -0.217,0.98198 -0.217,1.65647 v 1.87804 h 5.36093 v 3.63403 H 591.0589 V 181.344 Z"
|
||||
id="path2043" />
|
||||
<path
|
||||
d="m 606.53244,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path2045" />
|
||||
<path
|
||||
d="m 617.48221,181.344 v -19.55317 h 3.4789 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95718,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81953,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.066,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path2047" />
|
||||
<path
|
||||
d="m 640.039,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37727,-2.02005 -0.2515,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25131,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||
id="path2049" />
|
||||
<path
|
||||
d="m 650.98876,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77748,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88095,0.61974 1.50972,1.45059 1.88631,2.49255 0.3766,1.04196 0.5649,2.18401 0.5649,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63637,-0.87524 -1.11182,-1.14519 -0.47545,-0.26995 -1.05347,-0.40492 -1.73404,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76825,0.19847 -0.5515,0.13231 -1.07257,0.3188 -1.56323,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path2051" />
|
||||
<path
|
||||
d="m 679.3389,181.563 c -1.1604,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98627,-0.30835 -1.84145,-0.82971 -2.56556,-1.56408 -0.7241,-0.73437 -1.28548,-1.74535 -1.68413,-3.03292 -0.39865,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10336,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63794,1.99324 -0.35454,0.96877 -0.53181,2.36832 -0.53181,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74235,0.32946 1.69829,0.49418 2.86781,0.49418 h 5.56625 v 2.57838 c -0.57829,0.15285 -1.25915,0.29761 -2.04257,0.4343 -0.78342,0.13668 -1.60743,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||
id="path2053" />
|
||||
<path
|
||||
d="m 697.026,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path2055" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 49 KiB |
501
froscon2022/artwork/intro.svg
Normal file
After Width: | Height: | Size: 201 KiB |
534
froscon2022/artwork/outro.svg
Normal file
|
@ -0,0 +1,534 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
sodipodi:docname="outro.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="576"
|
||||
width="1024"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3811">
|
||||
<stop
|
||||
style="stop-color:#fafbff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3819" />
|
||||
<stop
|
||||
id="stop3815"
|
||||
offset="1"
|
||||
style="stop-color:#fffbff;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="id12"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="1.71676"
|
||||
cy="9.7279596"
|
||||
r="0.29498801"
|
||||
fx="1.71676"
|
||||
fy="9.7279596">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#75C5F0"
|
||||
id="stop3151" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#007CC3"
|
||||
id="stop3153" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="id14"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#id12"
|
||||
cx="3.27019"
|
||||
cy="2.1879101"
|
||||
r="0.420028"
|
||||
fx="3.27019"
|
||||
fy="2.1879101" />
|
||||
<linearGradient
|
||||
id="linearGradient3382"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.27019"
|
||||
y1="1.96386"
|
||||
x2="3.27019"
|
||||
y2="2.3961301">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-opacity:1; stop-color:white"
|
||||
id="stop3384" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-opacity:0; stop-color:white"
|
||||
id="stop3386" />
|
||||
</linearGradient>
|
||||
<mask
|
||||
id="id6">
|
||||
<linearGradient
|
||||
id="id7"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.27019"
|
||||
y1="1.96386"
|
||||
x2="3.27019"
|
||||
y2="2.3961301">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-opacity:1; stop-color:white"
|
||||
id="stop3128" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-opacity:0; stop-color:white"
|
||||
id="stop3130" />
|
||||
</linearGradient>
|
||||
<rect
|
||||
style="fill:url(#id7)"
|
||||
x="2.9424601"
|
||||
y="1.94721"
|
||||
width="0.65544897"
|
||||
height="0.465563"
|
||||
id="rect3132" />
|
||||
</mask>
|
||||
<inkscape:perspective
|
||||
id="perspective3373"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective3412" />
|
||||
<radialGradient
|
||||
id="id12-3"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="1.71676"
|
||||
cy="9.7279596"
|
||||
r="0.29498801"
|
||||
fx="1.71676"
|
||||
fy="9.7279596">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#75C5F0"
|
||||
id="stop3151-0" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#007CC3"
|
||||
id="stop3153-0" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="id14-6"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#id12-3"
|
||||
cx="3.27019"
|
||||
cy="2.1879101"
|
||||
r="0.420028"
|
||||
fx="3.27019"
|
||||
fy="2.1879101" />
|
||||
<linearGradient
|
||||
id="linearGradient3382-2"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.27019"
|
||||
y1="1.96386"
|
||||
x2="3.27019"
|
||||
y2="2.3961301">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-opacity:1; stop-color:white"
|
||||
id="stop3384-5" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-opacity:0; stop-color:white"
|
||||
id="stop3386-2" />
|
||||
</linearGradient>
|
||||
<mask
|
||||
id="id6-4">
|
||||
<linearGradient
|
||||
id="id7-2"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="3.27019"
|
||||
y1="1.96386"
|
||||
x2="3.27019"
|
||||
y2="2.3961301">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-opacity:1; stop-color:white"
|
||||
id="stop3128-9" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-opacity:0; stop-color:white"
|
||||
id="stop3130-9" />
|
||||
</linearGradient>
|
||||
<rect
|
||||
style="fill:url(#id7-2)"
|
||||
x="2.9424601"
|
||||
y="1.94721"
|
||||
width="0.65544897"
|
||||
height="0.465563"
|
||||
id="rect3132-4" />
|
||||
</mask>
|
||||
<inkscape:perspective
|
||||
id="perspective3373-6"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective3412-2" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1026"
|
||||
inkscape:window-width="1916"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="402.77692"
|
||||
inkscape:cx="190.70472"
|
||||
inkscape:zoom="0.936002"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<sodipodi:guide
|
||||
inkscape:locked="false"
|
||||
id="guide3846"
|
||||
position="54,576"
|
||||
orientation="1,0" />
|
||||
<sodipodi:guide
|
||||
inkscape:locked="false"
|
||||
id="guide3848"
|
||||
position="913,541"
|
||||
orientation="1,0" />
|
||||
<sodipodi:guide
|
||||
inkscape:locked="false"
|
||||
id="guide3049"
|
||||
position="1130.6638,384.66611"
|
||||
orientation="0,1" />
|
||||
<sodipodi:guide
|
||||
inkscape:locked="false"
|
||||
id="guide7766"
|
||||
orientation="0,1"
|
||||
position="285.3176,641.34588" />
|
||||
<sodipodi:guide
|
||||
inkscape:locked="false"
|
||||
id="guide7798"
|
||||
orientation="1,0"
|
||||
position="290.97446,691.19691" />
|
||||
<sodipodi:guide
|
||||
inkscape:locked="false"
|
||||
id="guide7800"
|
||||
orientation="1,0"
|
||||
position="426.73896,684.4794" />
|
||||
<sodipodi:guide
|
||||
inkscape:locked="false"
|
||||
id="guide8000"
|
||||
orientation="0,1"
|
||||
position="524.67326,801.85913" />
|
||||
<sodipodi:guide
|
||||
position="885.37234,363.23404"
|
||||
orientation="0,-1"
|
||||
id="guide450" />
|
||||
<sodipodi:guide
|
||||
position="885.90426,337.70213"
|
||||
orientation="0,-1"
|
||||
id="guide452" />
|
||||
<sodipodi:guide
|
||||
position="886.43617,271.74468"
|
||||
orientation="1,0"
|
||||
id="guide454" />
|
||||
<sodipodi:guide
|
||||
position="154.78723,272.80851"
|
||||
orientation="1,0"
|
||||
id="guide456" />
|
||||
</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" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 2"
|
||||
id="layer3"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(0,-476.36218)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<rect
|
||||
y="476.40805"
|
||||
x="0.054346703"
|
||||
height="11.77061"
|
||||
width="1024.9558"
|
||||
id="rect3809"
|
||||
style="fill:#1f1fa3;fill-opacity:1" />
|
||||
<g
|
||||
transform="matrix(1.0009495,0,0,3.8635175,-0.97322136,-1535.9091)"
|
||||
id="bar">
|
||||
<rect
|
||||
style="fill:#1f1fa3;fill-opacity:1"
|
||||
id="rect3809-1"
|
||||
width="1024"
|
||||
height="149.19937"
|
||||
x="1"
|
||||
y="520.72675" />
|
||||
</g>
|
||||
<g
|
||||
id="Assets"
|
||||
stroke="none"
|
||||
stroke-width="1"
|
||||
fill="none"
|
||||
fill-rule="evenodd"
|
||||
transform="matrix(1.038239,0,0,1.038239,154.09442,626.91092)">
|
||||
<g
|
||||
id="Logo-negative-(white)"
|
||||
transform="translate(-152,-723)"
|
||||
fill="#ffffff"
|
||||
fill-rule="nonzero">
|
||||
<g
|
||||
id="FrOSCon-Logo-rgb-white-endorse-below"
|
||||
transform="translate(152.66729,723)">
|
||||
<path
|
||||
d="m 0,125.00892 v -86.223767 0 C 0,31.796236 1.6859231,25.481687 5.0577694,19.841508 8.4296157,14.201329 12.966282,9.695316 18.667767,6.3234697 24.369253,2.9516235 30.653148,1.2657003 37.519453,1.2657003 h 41.531479 c 2.761423,0 5,2.2385763 5,5 V 19.43948 c 0,2.761424 -2.238577,5 -5,5 H 40.462155 v 0 c -3.923603,0 -7.264796,1.410045 -10.023579,4.230135 -2.758783,2.820089 -4.138175,6.191935 -4.138175,10.115538 v 15.782835 c 0,2.761423 2.238576,5 5,5 h 41.497288 c 2.761424,0 5,2.238576 5,5 v 13.173779 c 0,2.761424 -2.238576,5 -5,5 H 31.300401 c -2.761424,0 -5,2.238577 -5,5 v 37.267153 c 0,2.76143 -2.238576,5 -5,5 H 5 c -2.7614237,0 -5,-2.23857 -5,-5 z"
|
||||
id="Path" />
|
||||
<path
|
||||
d="m 92.042871,125.00892 v -62.130392 0 c 0,-8.337657 2.360292,-14.866777 7.080877,-19.587362 4.720582,-4.720585 11.249702,-7.080877 19.587362,-7.080877 h 20.93256 c 2.76143,0 5,2.238576 5,5 v 11.51851 c 0,2.761424 -2.23857,5 -5,5 h -16.51851 v 0 c -1.59396,0 -2.97335,0.551756 -4.13817,1.65527 -1.16482,1.103513 -1.74723,2.513558 -1.74723,4.230134 v 61.394717 c 0,2.76143 -2.23858,5 -5,5 H 97.042871 c -2.761424,0 -5,-2.23857 -5,-5 z"
|
||||
id="path236" />
|
||||
<path
|
||||
d="m 298.50444,124.99554 v -13.17378 c 0,-2.76142 2.23857,-5 5,-5 h 50.17566 v 0 c 2.69748,0 5.14973,-0.67437 7.35676,-2.02311 2.20703,-1.34874 3.98491,-3.15727 5.33365,-5.425606 1.34874,-2.268333 2.0231,-4.751237 2.0231,-7.448715 0,-2.820089 -0.67436,-5.3643 -2.0231,-7.632633 -1.34874,-2.268333 -3.12662,-4.076869 -5.33365,-5.425608 -2.20703,-1.348738 -4.65928,-2.023107 -7.35676,-2.023107 h -21.51851 c -7.23414,0 -13.79391,-1.471351 -19.67932,-4.414054 -5.8854,-2.942702 -10.57533,-7.203489 -14.06979,-12.782362 -3.49446,-5.578873 -5.24169,-12.291913 -5.24169,-20.139119 0,-7.724593 1.65527,-14.437632 4.96581,-20.139118 3.31054,-5.701485 7.7859,-10.1461917 13.42608,-13.334119 5.64018,-3.1879274 11.89342,-4.7818911 18.75973,-4.7818911 h 50.91134 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -48.33648 v 0 c -2.45225,0 -4.72058,0.643716 -6.805,1.931148 -2.08441,1.287432 -3.70903,2.973355 -4.87385,5.057769 -1.16482,2.084414 -1.74723,4.414054 -1.74723,6.988918 0,2.574865 0.58241,4.904504 1.74723,6.988918 1.16482,2.084414 2.78944,3.739684 4.87385,4.96581 2.08442,1.226126 4.35275,1.839189 6.805,1.839189 h 22.25418 c 7.96982,0 14.89743,1.532657 20.78284,4.597972 5.8854,3.065315 10.45272,7.356755 13.70196,12.874322 3.24923,5.517567 4.87385,11.954728 4.87385,19.311483 0,8.705494 -1.68593,16.123553 -5.05777,22.254183 -3.37185,6.13063 -7.90851,10.78991 -13.61,13.97784 -5.70148,3.18792 -11.98538,4.78189 -18.85169,4.78189 h -53.4862 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||
id="path238" />
|
||||
<path
|
||||
d="m 469.33159,129.99554 c -10.05424,-0.24523 -19.12757,-2.05376 -27.22,-5.42561 -8.09243,-3.37184 -15.02004,-7.96982 -20.78283,-13.79391 -5.76279,-5.8241 -10.2075,-12.598448 -13.33412,-20.323042 -3.12662,-7.724593 -4.68993,-16.000943 -4.68993,-24.829049 0,-8.828107 1.56331,-17.104457 4.68993,-24.82905 3.12662,-7.724594 7.57133,-14.498939 13.33412,-20.323037 5.76279,-5.824098 12.6904,-10.452724 20.78283,-13.8858764 8.09243,-3.4331526 17.16576,-5.2110351 27.22,-5.3336477 h 15.04716 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -14.49541 v 0 c -5.8854,0.122612 -11.28035,1.226126 -16.18486,3.31054 -4.9045,2.084414 -9.16529,4.96581 -12.78236,8.644187 -3.61707,3.678378 -6.40651,8.000472 -8.36831,12.966282 -1.9618,4.96581 -2.9427,10.391417 -2.9427,16.276822 0,5.885404 0.9809,11.311011 2.9427,16.276821 1.9618,4.96581 4.75124,9.287904 8.36831,12.966282 3.61707,3.678377 7.87786,6.559778 12.78236,8.644188 4.90451,2.08441 10.29946,3.18793 16.18486,3.31054 h 14.49541 c 2.76142,0 5,2.23858 5,5 v 13.17378 c 0,2.76142 -2.23858,5 -5,5 z"
|
||||
id="path240" />
|
||||
<path
|
||||
d="m 547.43012,132.20257 c -9.68639,0 -18.33058,-2.17638 -25.93256,-6.52912 -7.60198,-4.35275 -13.61,-10.24965 -18.02405,-17.6907 -4.41406,-7.44105 -6.62108,-15.736562 -6.62108,-24.886527 0,-9.149965 2.20702,-17.445473 6.62108,-24.886525 4.41405,-7.441051 10.42207,-13.337951 18.02405,-17.690698 7.60198,-4.352747 16.24617,-6.52912 25.93256,-6.52912 9.6864,0 18.33058,2.176373 25.93256,6.52912 7.60198,4.352747 13.61,10.224741 18.02406,17.615981 4.41405,7.391241 6.62108,15.728897 6.62108,25.012969 0,9.16146 -2.20703,17.45122 -6.62108,24.86928 -4.41406,7.41806 -10.42208,13.30347 -18.02406,17.65622 -7.60198,4.35274 -16.24616,6.52912 -25.93256,6.52912 z m 0,-21.51851 c 5.14973,0 9.59444,-1.22613 13.33412,-3.67838 3.73968,-2.45225 6.62108,-5.75561 8.64419,-9.910069 2.02311,-4.154459 3.03466,-8.813259 3.03466,-13.976398 0,-5.165056 -1.01155,-9.831997 -3.03466,-14.000826 -2.02311,-4.168828 -4.90451,-7.479368 -8.64419,-9.931619 -3.73968,-2.452252 -8.18439,-3.678378 -13.33412,-3.678378 -5.14973,0 -9.59444,1.226126 -13.33412,3.678378 -3.73968,2.452251 -6.62108,5.755607 -8.64419,9.910066 -2.0231,4.15446 -3.03466,8.813259 -3.03466,13.976399 0,5.165055 1.01156,9.831997 3.03466,14.000825 2.02311,4.168832 4.90451,7.479372 8.64419,9.931622 3.73968,2.45225 8.18439,3.67838 13.33412,3.67838 z"
|
||||
id="Shape" />
|
||||
<path
|
||||
d="m 610.07947,124.99554 v -48.888235 0 c 0,-7.724593 1.80853,-14.774817 5.4256,-21.150672 3.61708,-6.375855 8.85876,-11.464277 15.72507,-15.265268 6.8663,-3.80099 15.08135,-5.701485 24.64513,-5.701485 9.68639,0 17.93209,1.900495 24.73709,5.701485 6.805,3.800991 12.01603,8.889413 15.63311,15.265268 3.61707,6.375855 5.4256,13.426079 5.4256,21.150672 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 v -48.888235 0 c 0,-3.80099 -0.9196,-7.264796 -2.75879,-10.391417 -1.83919,-3.126621 -4.32209,-5.609526 -7.44871,-7.448715 -3.12662,-1.839189 -6.59043,-2.758783 -10.39142,-2.758783 -3.80099,0 -7.2648,0.919594 -10.39142,2.758783 -3.12662,1.839189 -5.60952,4.322094 -7.44871,7.448715 -1.83919,3.126621 -2.75879,6.590427 -2.75879,10.391417 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||
id="path243" />
|
||||
<path
|
||||
d="m 220,0 c 36.45079,0 66,29.549206 66,66 0,36.45079 -29.54921,66 -66,66 -36.45079,0 -66,-29.54921 -66,-66 0,-36.450794 29.54921,-66 66,-66 z m -17.00189,18.568446 -1.93756,2.831494 1.53943,2.668682 -0.63153,5.078586 -1.8052,-2.303226 0.34534,-3.389575 -3.06967,-2.015477 -3.39205,1.361896 -0.0169,3.912827 2.97572,1.516205 1.45972,5.927492 2.15161,6.815043 -0.0305,7.082912 2.34465,2.071055 4.61088,0.221223 1.8584,0.946904 -4.51345,8.779253 -0.42032,7.509823 -8.75187,-8.896009 -3.40232,-1.733568 -5.60842,2.151177 -1.00711,1.97656 -0.36684,10.187218 4.61019,13.623996 -4.36646,-3.879041 -3.78726,-6.589605 -1.167,-3.653386 0.36458,-2.304699 2.18849,-2.430273 -1.37613,-3.145307 -3.29197,-0.699651 -1.96044,3.203366 1.47629,2.195534 -0.57391,2.87169 -1.97667,-2.314596 -0.0599,-2.520959 -3.84258,-1.369528 -1.98185,2.199722 0.57695,3.220288 2.81609,0.721386 1.23051,2.572829 -2.24123,0.291333 -2.30388,-2.607181 -3.31321,1.246521 -0.27564,3.134268 2.48751,1.660461 2.05638,-0.786817 3.60758,1.838155 7.71477,5.765467 6.95085,7.952341 3.6232,1.385835 4.33669,-2.787504 -0.68495,-13.861259 5.28244,6.489427 2.48527,2.416679 8.6469,4.405812 3.41594,0.590138 8.35499,0.459194 -11.61659,7.593309 0.2939,5.146904 3.25083,2.11666 10.51918,0.94909 9.19899,2.85252 3.60758,1.83816 0.57217,2.12612 2.80546,1.03644 2.37366,-2.06526 -0.93901,-3.41314 -3.46343,-0.33141 -1.08167,-1.98444 2.80474,-0.51677 2.23887,1.85425 2.94439,-1.42608 0.61471,-2.89631 -3.36659,-2.30373 -2.07468,1.43336 -3.03441,-0.23868 1.98592,-2.15223 2.64396,-0.0962 1.43926,-3.468912 -2.501,-2.252016 -3.35348,0.735449 -0.67977,3.199007 -1.65024,1.649618 -3.6416,1.203284 -7.5572,0.80932 -5.70475,-1.2525 13.73185,-4.278263 8.02601,-6.284677 1.00711,-1.97656 -1.55621,-5.801736 -3.40232,-1.733568 -12.34125,-1.851476 5.82852,-4.754204 4.44963,-8.811776 1.8584,0.946903 2.88918,3.60025 3.05367,0.679523 5.71227,-4.187905 6.77817,-2.265089 5.65344,-2.30316 2.97572,1.516205 3.15563,-2.313542 -0.892,-3.544729 -3.43486,-1.298747 -2.53924,2.271729 -2.92441,-0.106632 3.73745,-3.496042 3.06387,-0.323182 1.15185,-3.231833 -2.05137,-2.667005 -3.45449,0.792909 -0.63713,3.251767 -3.16848,2.671159 0.10965,-4.229708 1.66104,-2.137611 -2.23877,-3.241974 -3.54914,0.292887 -1.24839,3.543213 1.6286,2.38328 -1.09677,3.288072 -3.7193,6.163988 -4.50112,2.161253 -4.63654,-10.479651 3.61811,-4.86316 0.0449,-6.64112 1.34093,-1.90326 -0.4133,-5.102476 -1.03338,-1.16321 -1.11562,-4.370289 -2.81584,-3.091877 0.0301,-0.05818 -0.0927,-0.0099 -0.0625,-0.06915 -0.0303,0.05808 -4.1556,-0.460247 -4.19138,1.666237 -1.54846,-0.152307 -4.37092,2.664798 -0.75159,2.203542 -5.3464,3.939863 -1.80771,5.785606 -11.20351,2.408738 -0.8972,-4.911831 2.80062,-6.632079 2.01545,-2.819981 2.88538,-0.08329 2.13273,-3.09262 -1.84918,-3.043465 -3.93873,0.09438 -0.75303,2.600265 -3.35745,2.574872 0.29863,-4.133421 2.25623,-2.426791 -1.38902,-3.260807 z"
|
||||
id="path245" />
|
||||
<path
|
||||
d="m 0.83694671,181.344 v -21.05081 c 0,-1.14329 0.17423049,-2.0978 0.52269139,-2.86354 0.3484609,-0.76574 0.8060417,-1.37036 1.3727422,-1.81388 0.5667005,-0.44351 1.1987969,-0.7587 1.8962891,-0.94558 0.6974921,-0.18687 1.3884257,-0.2803 2.0728007,-0.2803 0.9448177,0.0103 2.0588282,0.0239 3.3420309,0.0411 1.283204,0.0171 2.634274,0.0557 4.053211,0.11577 1.418938,0.0601 2.788828,0.15228 4.109672,0.2766 v 3.73669 H 7.901978 c -0.8189688,0 -1.4476433,0.22699 -1.8860235,0.68095 -0.4383802,0.45397 -0.6575703,1.06915 -0.6575703,1.84554 v 5.44477 l 11.1735628,0.25949 v 3.54335 L 5.3583842,170.59418 V 181.344 Z"
|
||||
id="path247" />
|
||||
<path
|
||||
d="m 20.623859,181.344 v -19.55317 h 3.478906 l 1.042531,3.12931 c 0.764599,-0.94368 1.625486,-1.74478 2.58266,-2.4033 0.957175,-0.65852 2.083637,-0.98778 3.379387,-0.98778 0.274891,0 0.558716,0.0146 0.851477,0.0439 0.29276,0.0293 0.56594,0.0804 0.819539,0.15342 v 4.62922 c -0.353594,-0.0487 -0.723252,-0.0902 -1.108973,-0.12461 -0.385721,-0.0344 -0.758801,-0.0516 -1.119238,-0.0516 -0.774865,0 -1.470836,0.0898 -2.087914,0.26947 -0.617078,0.17965 -1.19452,0.44427 -1.732324,0.79387 -0.537805,0.34961 -1.06601,0.79226 -1.584614,1.32798 V 181.344 Z"
|
||||
id="path249" />
|
||||
<path
|
||||
d="m 43.180654,181.54132 c -2.118141,0 -3.805886,-0.29485 -5.063235,-0.88455 -1.257349,-0.5897 -2.161104,-1.61094 -2.711265,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236627,-0.584 2.91116,-0.876 5.023597,-0.876 1.871766,0 3.37587,0.19219 4.512313,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.247231,2.25255 -0.741692,2.99243 -0.49446,0.73989 -1.194994,1.26762 -2.101601,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204076,2.17165 0.483339,2.89576 0.279263,0.72411 0.791119,1.24452 1.535567,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922695 v 2.66393 c -1.012494,0.18326 -2.073656,0.35131 -3.183484,0.50416 -1.109828,0.15284 -2.411852,0.22926 -3.90607,0.22926 z M 39.016802,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404731,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125754,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284344,-0.31367 -2.196844,-0.31367 -1.014395,0 -1.81673,0.16007 -2.407004,0.4802 -0.590273,0.32014 -1.011069,0.89026 -1.262386,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||
id="path251" />
|
||||
<path
|
||||
d="m 62.113652,181.54132 c -2.118141,0 -3.805885,-0.29485 -5.063234,-0.88455 -1.257349,-0.5897 -2.161105,-1.61094 -2.711266,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236628,-0.584 2.91116,-0.876 5.023598,-0.876 1.871765,0 3.375869,0.19219 4.512312,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.741691,2.99243 -0.494461,0.73989 -1.194995,1.26762 -2.101602,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204077,2.17165 0.48334,2.89576 0.279263,0.72411 0.791118,1.24452 1.535566,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922696 v 2.66393 c -1.012495,0.18326 -2.073657,0.35131 -3.183485,0.50416 -1.109828,0.15284 -2.411851,0.22926 -3.90607,0.22926 z M 57.9498,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404732,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125753,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284343,-0.31367 -2.196843,-0.31367 -1.014396,0 -1.816731,0.16007 -2.407004,0.4802 -0.590274,0.32014 -1.011069,0.89026 -1.262387,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||
id="path253" />
|
||||
<path
|
||||
d="m 85.95017,181.563 c -1.458479,0 -2.653664,-0.43515 -3.585554,-1.30545 -0.931891,-0.8703 -1.397836,-2.07689 -1.397836,-3.61977 v -1.64592 c 0,-1.50031 0.517748,-2.72962 1.553246,-3.68793 1.035497,-0.95832 2.630946,-1.43747 4.786348,-1.43747 h 5.56796 v -1.70467 c 0,-0.68741 -0.117769,-1.26134 -0.353308,-1.72177 -0.235539,-0.46043 -0.675155,-0.80557 -1.318848,-1.0354 -0.643693,-0.22984 -1.600297,-0.34476 -2.869812,-0.34476 h -5.926688 v -2.62172 c 0.91174,-0.25284 1.972996,-0.46795 3.18377,-0.64531 1.210773,-0.17737 2.6568,-0.271 4.338082,-0.28088 1.614745,-0.0103 2.978742,0.18573 4.091992,0.58799 1.11325,0.40226 1.954271,1.06601 2.523062,1.99125 0.568792,0.92523 0.853188,2.18211 0.853188,3.77062 V 181.344 H 93.85242 l -0.763648,-2.12157 c -0.152844,0.14296 -0.450832,0.33858 -0.893965,0.58685 -0.443133,0.24828 -0.993389,0.51062 -1.650769,0.78704 -0.657381,0.27641 -1.380157,0.50662 -2.168329,0.69064 -0.788172,0.18403 -1.596684,0.27604 -2.425539,0.27604 z m 2.187149,-3.19204 c 0.312531,0.01 0.669737,-0.0249 1.071617,-0.10437 0.40188,-0.0795 0.808798,-0.17509 1.220754,-0.28687 0.411956,-0.11178 0.797772,-0.22603 1.157449,-0.34276 0.359677,-0.11672 0.653388,-0.22204 0.881133,-0.31595 0.227745,-0.0939 0.363099,-0.1479 0.406062,-0.16197 v -5.1214 l -4.221453,0.23382 c -1.112869,0.0772 -1.918531,0.35902 -2.416984,0.84549 -0.498453,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.124709,1.097 0.374125,1.46941 0.249417,0.37241 0.577156,0.6339 0.983219,0.78446 0.406062,0.15057 0.836648,0.23079 1.291758,0.24068 z"
|
||||
id="path255" />
|
||||
<path
|
||||
d="m 101.1903,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77747,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.3766,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52143 v -12.47559 c 0,-0.70186 -0.13289,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07256,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path257" />
|
||||
<path
|
||||
d="m 128.4808,181.563 c -1.55467,0 -2.85261,-0.33288 -3.89381,-0.99862 -1.0412,-0.66575 -1.82053,-1.72139 -2.338,-3.16695 -0.51746,-1.44555 -0.77619,-3.32986 -0.77619,-5.65293 0,-2.42345 0.2305,-4.38552 0.6915,-5.8862 0.461,-1.50068 1.22931,-2.601 2.30492,-3.30097 1.07561,-0.69996 2.53447,-1.04994 4.37658,-1.04994 0.96953,0 1.92528,0.10066 2.86724,0.30198 0.94197,0.20132 1.77244,0.43144 2.49141,0.69036 v -9.00523 h 4.52144 v 27.8495 h -3.75779 l -0.76365,-1.90884 c -0.40226,0.36348 -0.92162,0.70728 -1.55809,1.03141 -0.63647,0.32413 -1.31514,0.5879 -2.03602,0.79131 -0.72087,0.20341 -1.43072,0.30512 -2.12954,0.30512 z m 1.52273,-3.65514 c 0.8779,0 1.66855,-0.13934 2.37193,-0.41804 0.70339,-0.27869 1.31305,-0.56841 1.82899,-0.86915 V 165.7431 c -0.6205,-0.20189 -1.24727,-0.38839 -1.88032,-0.55948 -0.63304,-0.17109 -1.32065,-0.25664 -2.06282,-0.25664 -1.01858,0 -1.84401,0.18478 -2.47629,0.55434 -0.63229,0.36957 -1.08883,1.03046 -1.36961,1.9827 -0.28078,0.95223 -0.42117,2.30757 -0.42117,4.06604 0,1.62957 0.13183,2.90973 0.39551,3.84048 0.26367,0.93075 0.69198,1.58633 1.28491,1.96673 0.59293,0.38039 1.36923,0.57059 2.32887,0.57059 z"
|
||||
id="path259" />
|
||||
<path
|
||||
d="m 161.73343,181.563 c -1.80219,0 -3.38195,-0.17357 -4.7393,-0.5207 -1.35734,-0.34713 -2.49008,-0.99225 -3.39821,-1.93536 -0.90812,-0.9431 -1.58794,-2.31603 -2.03943,-4.11879 -0.4515,-1.80276 -0.67725,-4.15501 -0.67725,-7.05676 0,-2.91126 0.22822,-5.2733 0.68466,-7.08614 0.45644,-1.81283 1.1412,-3.20088 2.05427,-4.16413 0.91307,-0.96326 2.0459,-1.62596 3.39849,-1.98811 1.35259,-0.36215 2.92485,-0.54323 4.71677,-0.54323 1.82196,0 3.41161,0.18108 4.76895,0.54323 1.35735,0.36215 2.48761,1.02485 3.3908,1.98811 0.90318,0.96325 1.57805,2.3513 2.0246,4.16413 0.44656,1.81284 0.66984,4.17488 0.66984,7.08614 0,2.90175 -0.22585,5.254 -0.67754,7.05676 -0.45168,1.80276 -1.1315,3.17569 -2.03943,4.11879 -0.90794,0.94311 -2.0382,1.58823 -3.3908,1.93536 -1.35259,0.34713 -2.93473,0.5207 -4.74642,0.5207 z m 0,-4.06234 c 1.18549,0 2.18315,-0.12461 2.993,-0.37384 0.80984,-0.24923 1.45933,-0.70928 1.94847,-1.38016 0.48914,-0.67087 0.84321,-1.63594 1.06221,-2.89519 0.219,-1.25925 0.3285,-2.89928 0.3285,-4.92008 0,-2.12347 -0.11207,-3.82747 -0.3362,-5.112 -0.22413,-1.28453 -0.58067,-2.25863 -1.06962,-2.92228 -0.48895,-0.66365 -1.13587,-1.1104 -1.94077,-1.34024 -0.80491,-0.22983 -1.8001,-0.34475 -2.98559,-0.34475 -1.12123,0 -2.08535,0.11492 -2.89234,0.34475 -0.80699,0.22984 -1.46257,0.67659 -1.96672,1.34024 -0.50416,0.66365 -0.87581,1.63775 -1.11496,2.92228 -0.23916,1.28453 -0.35873,2.98853 -0.35873,5.112 0,2.0208 0.10456,3.66083 0.31367,4.92008 0.20911,1.25925 0.55567,2.22432 1.03968,2.89519 0.48401,0.67088 1.13454,1.13093 1.95161,1.38016 0.81707,0.24923 1.82633,0.37384 3.02779,0.37384 z"
|
||||
id="path261" />
|
||||
<path
|
||||
d="m 175.99709,189.9945 v -28.20367 h 3.75779 l 0.76364,1.90884 c 0.45663,-0.35322 0.98636,-0.69806 1.58918,-1.03455 0.60282,-0.33648 1.26077,-0.61356 1.97385,-0.83123 0.71308,-0.21767 1.44755,-0.3265 2.2034,-0.3265 1.22808,0 2.28515,0.24447 3.17123,0.73342 0.88607,0.48895 1.60999,1.18083 2.17175,2.07565 0.56175,0.89482 0.97257,1.95693 1.23244,3.18634 0.25987,1.2294 0.38981,2.58247 0.38981,4.0592 0,2.13449 -0.22375,3.95103 -0.67126,5.44962 -0.4475,1.49859 -1.1776,2.63893 -2.19028,3.42102 -1.01269,0.78208 -2.38058,1.17313 -4.10369,1.17313 -0.97789,0 -1.97299,-0.13317 -2.9853,-0.3995 -1.0123,-0.26634 -1.93934,-0.62801 -2.78113,-1.08502 v 9.87325 z m 8.87235,-12.12941 c 0.70224,0 1.34518,-0.18374 1.9288,-0.55121 0.58361,-0.36747 1.05127,-1.00593 1.40296,-1.91539 0.3517,-0.90946 0.52754,-2.18829 0.52754,-3.83649 0,-1.58813 -0.17299,-2.85223 -0.51898,-3.7923 -0.34599,-0.94006 -0.80623,-1.60961 -1.38073,-2.00864 -0.57449,-0.39903 -1.22047,-0.59854 -1.93792,-0.59854 -0.89235,0 -1.70809,0.13935 -2.44721,0.41804 -0.73913,0.27869 -1.38092,0.56841 -1.92538,0.86915 v 10.2354 c 0.6148,0.35094 1.30279,0.63533 2.06397,0.85319 0.76117,0.21786 1.52349,0.32679 2.28695,0.32679 z"
|
||||
id="path263" />
|
||||
<path
|
||||
d="m 204.51433,181.54132 c -2.11815,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87177,0 3.37587,0.19219 4.51231,0.57658 1.13645,0.38439 1.96625,1.05888 2.48942,2.02347 0.52316,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49447,0.73989 -1.195,1.26762 -2.10161,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73221 c 0.043,1.2064 0.20407,2.17165 0.48334,2.89576 0.27926,0.72411 0.79111,1.24452 1.53556,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41186,0.22926 -3.90607,0.22926 z m -4.16386,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40474,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.407,0.4802 -0.59028,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path265" />
|
||||
<path
|
||||
d="m 215.46409,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73998,0.30987 3.62092,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path267" />
|
||||
<path
|
||||
d="m 253.36294,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27042,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68646,-0.0914 -1.29584,-0.20236 -1.82813,-0.33277 v -3.54335 c 0.68703,0.0631 1.48604,0.11653 2.39702,0.16025 0.91098,0.0437 1.86673,0.0778 2.86725,0.10209 1.00052,0.0243 1.96178,0.0365 2.88378,0.0365 0.9836,0 1.84848,-0.0885 2.59464,-0.26548 0.74616,-0.17699 1.33082,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63475,-1.1219 0.63475,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.8067,-2.19085 -0.53781,-0.50359 -1.33311,-0.75538 -2.38591,-0.75538 h -2.52192 c -2.4512,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32958,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18316,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21241,-1.74857 0.92277,0 1.87652,0.0448 2.86126,0.1343 0.98474,0.0895 1.93127,0.19828 2.83959,0.32622 0.90831,0.12794 1.68014,0.26206 2.31546,0.40236 v 3.54335 c -1.08929,-0.0871 -2.31841,-0.16606 -3.68735,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81397,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69597,0.19257 -1.23007,0.54284 -1.60229,1.0508 -0.37223,0.50796 -0.55834,1.23738 -0.55834,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.9376,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57292,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78488,1.37284 2.29151,2.37963 0.50663,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39142,3.53403 -1.17427,4.60014 -0.78285,1.0661 -1.85371,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||
id="path269" />
|
||||
<path
|
||||
d="m 274.02527,181.54132 c -1.54098,0 -2.86857,-0.15987 -3.98277,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74378,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50787,-4.98453 0.33857,-1.30184 0.86535,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62947,-1.25031 2.74348,-1.54155 1.11401,-0.29124 2.43448,-0.43686 3.96139,-0.43686 1.54137,0 2.87162,0.15284 3.99076,0.45853 1.11915,0.30569 2.0326,0.82667 2.74036,1.56294 0.70775,0.73627 1.23349,1.75533 1.5772,3.05716 0.3437,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84787,2.32136 -1.55582,3.06486 -0.70794,0.74349 -1.62149,1.26799 -2.74063,1.57349 -1.11915,0.3055 -2.46366,0.45824 -4.03354,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90713,-0.20303 0.53799,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35093,-0.42754 0.61556,-1.07095 0.79387,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17831,-0.8471 -0.44294,-1.48186 -0.79387,-1.90427 -0.35093,-0.42241 -0.7954,-0.7013 -1.33339,-0.83665 -0.538,-0.13536 -1.17371,-0.20303 -1.90713,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89885,0.20303 -0.53286,0.13535 -0.97486,0.41424 -1.32598,0.83665 -0.35112,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17337,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43563,1.50268 0.78675,1.93022 0.35112,0.42755 0.79312,0.709 1.32598,0.84435 0.53286,0.13536 1.16581,0.20303 1.89885,0.20303 z"
|
||||
id="path271" />
|
||||
<path
|
||||
d="m 291.7726,181.563 c -1.79345,0 -3.18938,-0.50625 -4.18781,-1.51875 -0.99843,-1.01249 -1.49764,-2.49226 -1.49764,-4.43931 v -13.81411 h 4.52144 v 12.50581 c 0,1.28625 0.29542,2.15246 0.88626,2.59863 0.59085,0.44618 1.40696,0.66926 2.44836,0.66926 0.83683,0 1.65656,-0.13953 2.45918,-0.4186 0.80262,-0.27908 1.55848,-0.66214 2.26757,-1.14918 v -14.20592 h 4.522 V 181.344 h -3.68478 l -0.83722,-2.04857 c -0.91745,0.59541 -1.96815,1.12219 -3.15212,1.58034 -1.18397,0.45815 -2.43238,0.68723 -3.74524,0.68723 z"
|
||||
id="path273" />
|
||||
<path
|
||||
d="m 307.02893,181.344 v -19.55317 h 3.4789 l 1.04254,3.12931 c 0.76459,-0.94368 1.62548,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08363,-0.98778 3.37938,-0.98778 0.27489,0 0.55872,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.3536,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38573,-0.0344 -0.75881,-0.0516 -1.11924,-0.0516 -0.77487,0 -1.47084,0.0898 -2.08792,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73232,0.79387 -0.53781,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path275" />
|
||||
<path
|
||||
d="m 329.05362,181.563 c -1.16039,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98626,-0.30835 -1.84145,-0.82971 -2.56555,-1.56408 -0.72411,-0.73437 -1.28549,-1.74535 -1.68414,-3.03292 -0.39864,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10337,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63793,1.99324 -0.35455,0.96877 -0.53182,2.36832 -0.53182,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74236,0.32946 1.69829,0.49418 2.86782,0.49418 h 5.56625 v 2.57838 c -0.5783,0.15285 -1.25916,0.29761 -2.04258,0.4343 -0.78342,0.13668 -1.60742,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||
id="path277" />
|
||||
<path
|
||||
d="m 346.74072,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73222 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01106,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path279" />
|
||||
<path
|
||||
d="m 374.69033,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27041,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68647,-0.0914 -1.29584,-0.20236 -1.82814,-0.33277 v -3.54335 c 0.68704,0.0631 1.48605,0.11653 2.39703,0.16025 0.91098,0.0437 1.86672,0.0778 2.86724,0.10209 1.00052,0.0243 1.96178,0.0365 2.88379,0.0365 0.9836,0 1.84848,-0.0885 2.59463,-0.26548 0.74616,-0.17699 1.33083,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63476,-1.1219 0.63476,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.80671,-2.19085 -0.5378,-0.50359 -1.3331,-0.75538 -2.3859,-0.75538 h -2.52192 c -2.45121,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32959,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18315,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21242,-1.74857 0.92276,0 1.87651,0.0448 2.86125,0.1343 0.98475,0.0895 1.93127,0.19828 2.83959,0.32622 0.90832,0.12794 1.68014,0.26206 2.31547,0.40236 v 3.54335 c -1.0893,-0.0871 -2.31842,-0.16606 -3.68736,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81396,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69598,0.19257 -1.23007,0.54284 -1.6023,1.0508 -0.37222,0.50796 -0.55833,1.23738 -0.55833,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.93759,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57293,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78489,1.37284 2.29152,2.37963 0.50662,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39143,3.53403 -1.17428,4.60014 -0.78284,1.0661 -1.8537,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||
id="path281" />
|
||||
<path
|
||||
d="m 395.35267,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26747,-2.00065 0.26747,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26747,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.366,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61338,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17337,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53286,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||
id="path283" />
|
||||
<path
|
||||
d="m 408.72569,181.344 v -15.91914 h -2.85384 v -2.90004 l 2.85384,-0.73399 v -1.64193 c 0,-1.55809 0.20275,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.9596,-2.26813 0.9009,-0.49598 2.10625,-0.74397 3.61606,-0.74397 0.85167,0 1.60914,0.0529 2.27241,0.15883 0.66328,0.10589 1.22399,0.21168 1.68214,0.31738 v 3.22169 h -3.0814 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61897,0.534 -0.76364,0.96383 -0.14467,0.42983 -0.21701,0.98198 -0.21701,1.65647 v 1.87804 h 5.36094 v 3.63403 h -5.36094 V 181.344 Z"
|
||||
id="path285" />
|
||||
<path
|
||||
d="m 427.85323,181.344 c -1.41818,0 -2.57696,-0.21501 -3.47634,-0.64503 -0.89938,-0.43001 -1.55201,-1.13882 -1.95788,-2.12641 -0.40587,-0.98759 -0.59436,-2.30777 -0.56547,-3.96053 l 0.15855,-9.18717 h -3.07455 v -2.90004 l 3.21599,-0.73399 0.63533,-5.48127 h 3.54335 v 5.48127 h 4.97198 v 3.63403 h -4.97198 v 9.1655 c 0,0.6376 0.0644,1.15735 0.19333,1.55923 0.12889,0.40188 0.30579,0.71698 0.53068,0.94529 0.22489,0.22832 0.47526,0.39257 0.7511,0.49275 0.27584,0.10019 0.5533,0.16245 0.83237,0.18678 l 2.44322,0.24067 v 3.32892 z"
|
||||
id="path287" />
|
||||
<polygon
|
||||
id="polygon289"
|
||||
points="448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 " />
|
||||
<path
|
||||
d="m 466.27267,181.563 c -1.45848,0 -2.65366,-0.43515 -3.58555,-1.30545 -0.93189,-0.8703 -1.39784,-2.07689 -1.39784,-3.61977 v -1.64592 c 0,-1.50031 0.51775,-2.72962 1.55325,-3.68793 1.03549,-0.95832 2.63094,-1.43747 4.78634,-1.43747 h 5.56797 v -1.70467 c 0,-0.68741 -0.11777,-1.26134 -0.35331,-1.72177 -0.23554,-0.46043 -0.67516,-0.80557 -1.31885,-1.0354 -0.64369,-0.22984 -1.6003,-0.34476 -2.86981,-0.34476 h -5.92669 v -2.62172 c 0.91174,-0.25284 1.973,-0.46795 3.18377,-0.64531 1.21077,-0.17737 2.6568,-0.271 4.33808,-0.28088 1.61475,-0.0103 2.97874,0.18573 4.09199,0.58799 1.11325,0.40226 1.95427,1.06601 2.52307,1.99125 0.56879,0.92523 0.85318,2.18211 0.85318,3.77062 V 181.344 h -3.54335 l -0.76365,-2.12157 c -0.15284,0.14296 -0.45083,0.33858 -0.89396,0.58685 -0.44313,0.24828 -0.99339,0.51062 -1.65077,0.78704 -0.65738,0.27641 -1.38016,0.50662 -2.16833,0.69064 -0.78817,0.18403 -1.59668,0.27604 -2.42554,0.27604 z m 2.18715,-3.19204 c 0.31253,0.01 0.66974,-0.0249 1.07162,-0.10437 0.40188,-0.0795 0.80879,-0.17509 1.22075,-0.28687 0.41196,-0.11178 0.79777,-0.22603 1.15745,-0.34276 0.35968,-0.11672 0.65339,-0.22204 0.88113,-0.31595 0.22775,-0.0939 0.3631,-0.1479 0.40607,-0.16197 v -5.1214 l -4.22146,0.23382 c -1.11287,0.0772 -1.91853,0.35902 -2.41698,0.84549 -0.49845,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.12471,1.097 0.37412,1.46941 0.24942,0.37241 0.57716,0.6339 0.98322,0.78446 0.40606,0.15057 0.83665,0.23079 1.29176,0.24068 z"
|
||||
id="path291" />
|
||||
<path
|
||||
d="m 481.5128,181.344 v -19.55317 h 3.47891 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85147,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path293" />
|
||||
<path
|
||||
d="m 504.0696,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71126,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80185,-6.12431 0.53458,-1.4522 1.42018,-2.4703 2.65681,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96624,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.195,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74444,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32443 c 0.85813,0 1.48956,-0.16472 1.8943,-0.49418 0.40473,-0.32945 0.60709,-0.92229 0.60709,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28435,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||
id="path295" />
|
||||
<path
|
||||
d="m 533.04178,181.563 c -1.58319,0 -2.9756,-0.1825 -4.17725,-0.5475 -1.20165,-0.365 -2.21035,-1.0317 -3.02608,-2.00009 -0.81574,-0.96839 -1.42968,-2.35748 -1.84183,-4.16727 -0.41214,-1.8098 -0.61821,-4.16481 -0.61821,-7.06503 0,-2.76222 0.2132,-5.03368 0.6396,-6.81438 0.4264,-1.78071 1.05603,-3.16628 1.88888,-4.15673 0.83284,-0.99044 1.8576,-1.68175 3.07426,-2.07394 1.21667,-0.39218 2.61033,-0.58828 4.18097,-0.58828 1.05698,0 2.09057,0.059 3.10079,0.17709 1.01021,0.11805 1.95056,0.26149 2.82105,0.4303 0.87048,0.16881 1.62434,0.35264 2.26157,0.55149 v 3.47891 c -0.4323,-0.0874 -1.02352,-0.1748 -1.77367,-0.26206 -0.75015,-0.0873 -1.60115,-0.16131 -2.553,-0.22214 -0.95186,-0.0608 -1.94011,-0.0913 -2.96478,-0.0913 -1.11857,0 -2.07165,0.12537 -2.85926,0.37612 -0.7876,0.25075 -1.42198,0.71688 -1.90313,1.39841 -0.48115,0.68152 -0.83342,1.65305 -1.05679,2.91458 -0.22337,1.26153 -0.33506,2.90327 -0.33506,4.92522 0,1.99191 0.10095,3.6251 0.30284,4.89955 0.20189,1.27446 0.53381,2.25568 0.99576,2.94367 0.46196,0.68799 1.08636,1.16515 1.8732,1.43149 0.78684,0.26633 1.77015,0.3995 2.94994,0.3995 1.83945,0 3.34203,-0.0405 4.50775,-0.12148 1.16572,-0.081 2.10445,-0.17508 2.8162,-0.2823 v 3.4789 c -0.68894,0.20304 -1.46352,0.37717 -2.32374,0.52241 -0.86022,0.14524 -1.78764,0.25902 -2.78227,0.34133 -0.99462,0.0823 -2.06054,0.12348 -3.19774,0.12348 z"
|
||||
id="path297" />
|
||||
<path
|
||||
d="m 552.26543,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53287,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||
id="path299" />
|
||||
<path
|
||||
d="m 564.37008,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57644,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path301" />
|
||||
<path
|
||||
d="m 586.53746,181.344 v -15.91914 h -2.85385 v -2.90004 l 2.85385,-0.73399 v -1.64193 c 0,-1.55809 0.20274,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.95959,-2.26813 0.9009,-0.49598 2.10626,-0.74397 3.61607,-0.74397 0.85166,0 1.60913,0.0529 2.27241,0.15883 0.66327,0.10589 1.22398,0.21168 1.68213,0.31738 v 3.22169 h -3.08139 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61898,0.534 -0.76365,0.96383 -0.14467,0.42983 -0.217,0.98198 -0.217,1.65647 v 1.87804 h 5.36093 v 3.63403 H 591.0589 V 181.344 Z"
|
||||
id="path303" />
|
||||
<path
|
||||
d="m 606.53244,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path305" />
|
||||
<path
|
||||
d="m 617.48221,181.344 v -19.55317 h 3.4789 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95718,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81953,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.066,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path307" />
|
||||
<path
|
||||
d="m 640.039,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37727,-2.02005 -0.2515,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25131,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||
id="path309" />
|
||||
<path
|
||||
d="m 650.98876,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77748,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88095,0.61974 1.50972,1.45059 1.88631,2.49255 0.3766,1.04196 0.5649,2.18401 0.5649,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63637,-0.87524 -1.11182,-1.14519 -0.47545,-0.26995 -1.05347,-0.40492 -1.73404,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76825,0.19847 -0.5515,0.13231 -1.07257,0.3188 -1.56323,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path311" />
|
||||
<path
|
||||
d="m 679.3389,181.563 c -1.1604,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98627,-0.30835 -1.84145,-0.82971 -2.56556,-1.56408 -0.7241,-0.73437 -1.28548,-1.74535 -1.68413,-3.03292 -0.39865,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10336,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63794,1.99324 -0.35454,0.96877 -0.53181,2.36832 -0.53181,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74235,0.32946 1.69829,0.49418 2.86781,0.49418 h 5.56625 v 2.57838 c -0.57829,0.15285 -1.25915,0.29761 -2.04257,0.4343 -0.78342,0.13668 -1.60743,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||
id="path313" />
|
||||
<path
|
||||
d="m 697.026,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path315" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-366.71206,-8)"
|
||||
id="g4680">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.25517px;line-height:0%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.771264"
|
||||
x="764.92072"
|
||||
y="1015.8785"
|
||||
id="text3062-4"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3064-8"
|
||||
x="764.92072"
|
||||
y="1015.8785"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.2835px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke-width:0.771264">Creative Commons Attribution 4.0 International </tspan><tspan
|
||||
sodipodi:role="line"
|
||||
x="764.92072"
|
||||
y="1028.7329"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.2835px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke-width:0.771264"
|
||||
id="tspan492"> http://creativecommons.org/licenses/by/4.0/</tspan></text>
|
||||
<g
|
||||
id="license"
|
||||
transform="matrix(0.47397866,0,0,0.47397866,648.37531,619.29603)">
|
||||
<g
|
||||
transform="matrix(2.404762,0,0,2.404762,-253.42861,-1037.1755)"
|
||||
id="g3607">
|
||||
<g
|
||||
id="surface1"
|
||||
transform="translate(258.00002,728.36216)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a8b0ab;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 3.40625,0.476563 113.35547,0.203125 c 1.58594,0 3,-0.238282 3,3.160156 l -0.14063,37.328125 H 0.546875 V 3.699219 c 0,-1.671875 0.164063,-3.222656 2.859375,-3.222656 z"
|
||||
id="path3511" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 34.523438,19.574219 c 0.0039,7.53125 -6.097657,13.636719 -13.628907,13.644531 -7.527343,0.0039 -13.636718,-6.097656 -13.640625,-13.625 0,-0.0078 0,-0.01172 0,-0.01953 -0.00391,-7.527345 6.09375,-13.63672 13.625,-13.640626 7.53125,-0.00391 13.640625,6.097656 13.644532,13.625 0,0.0039 0,0.01172 0,0.01563 z"
|
||||
id="path3513" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 31.972656,8.46875 c 3.023438,3.027344 4.535157,6.726563 4.535157,11.105469 0,4.382812 -1.488282,8.042969 -4.457032,10.988281 -3.15625,3.101563 -6.882812,4.652344 -11.183593,4.652344 -4.25,0 -7.910157,-1.535156 -10.984375,-4.613281 -3.078125,-3.074219 -4.617188,-6.75 -4.617188,-11.027344 0,-4.273438 1.539063,-7.976563 4.617188,-11.105469 2.996093,-3.023437 6.65625,-4.535156 10.984375,-4.535156 4.378906,0 8.082031,1.511719 11.105468,4.535156 z m -20.054687,2.035156 c -2.558594,2.582032 -3.835938,5.605469 -3.835938,9.074219 0,3.46875 1.265625,6.46875 3.796875,8.996094 2.527344,2.53125 5.539063,3.796875 9.035157,3.796875 3.496093,0 6.53125,-1.277344 9.113281,-3.835938 2.453125,-2.371093 3.679687,-5.355468 3.679687,-8.957031 0,-3.570312 -1.246093,-6.601562 -3.738281,-9.09375 C 27.480469,7.996094 24.460938,6.75 20.914063,6.75 17.367188,6.75 14.367188,8 11.917969,10.503906 Z m 6.726562,7.550782 c -0.390625,-0.851563 -0.976562,-1.277344 -1.757812,-1.277344 -1.375,0 -2.066406,0.925781 -2.066406,2.78125 0,1.855469 0.691406,2.785156 2.066406,2.785156 0.910156,0 1.5625,-0.453125 1.953125,-1.359375 L 20.75,22.003906 c -0.910156,1.617188 -2.277344,2.425782 -4.097656,2.425782 -1.40625,0 -2.53125,-0.429688 -3.378906,-1.289063 -0.847657,-0.863281 -1.269532,-2.050781 -1.269532,-3.566406 0,-1.488281 0.4375,-2.667969 1.308594,-3.542969 0.871094,-0.875 1.957031,-1.3125 3.261719,-1.3125 1.925781,0 3.304687,0.761719 4.136719,2.277344 z m 8.988282,0 c -0.390625,-0.851563 -0.964844,-1.277344 -1.71875,-1.277344 -1.40625,0 -2.109375,0.925781 -2.109375,2.78125 0,1.855469 0.703125,2.785156 2.109375,2.785156 0.910156,0 1.550781,-0.453125 1.914062,-1.359375 l 1.953125,1.019531 c -0.910156,1.617188 -2.273437,2.425782 -4.089844,2.425782 -1.40625,0 -2.527343,-0.429688 -3.375,-1.289063 -0.839843,-0.863281 -1.265625,-2.050781 -1.265625,-3.566406 0,-1.488281 0.429688,-2.667969 1.289063,-3.542969 0.855469,-0.875 1.945312,-1.3125 3.273437,-1.3125 1.921875,0 3.296875,0.761719 4.128907,2.277344 z"
|
||||
id="path3515" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 117.75391,0 H 2.246094 C 1.007813,0 0,1.007813 0,2.246094 V 41.492188 C 0,41.773438 0.226563,42 0.507813,42 H 119.49219 C 119.77344,42 120,41.773438 120,41.492188 V 2.246094 C 120,1.007813 118.99219,0 117.75391,0 Z M 2.246094,1.015625 H 117.75391 c 0.67968,0 1.23047,0.550781 1.23047,1.230469 0,0 0,15.820312 0,27.246094 H 36.429688 c -3.027344,5.46875 -8.859375,9.183593 -15.546875,9.183593 -6.695313,0 -12.523438,-3.710937 -15.546875,-9.183593 H 1.015625 c 0,-11.425782 0,-27.246094 0,-27.246094 0,-0.679688 0.550781,-1.230469 1.230469,-1.230469 z"
|
||||
id="path3517" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 74.882669,32.746094 c 0.316406,0 0.605469,0.03125 0.863281,0.08594 0.261719,0.05469 0.484375,0.144532 0.671875,0.273438 0.183594,0.125 0.328125,0.292969 0.429688,0.503906 0.101562,0.210938 0.152343,0.46875 0.152343,0.777344 0,0.335937 -0.07422,0.613281 -0.226562,0.835937 -0.152344,0.222657 -0.375,0.40625 -0.671875,0.546875 0.410156,0.117188 0.714844,0.324219 0.914062,0.617188 0.203125,0.292969 0.304688,0.648437 0.304688,1.0625 0,0.332031 -0.06641,0.621094 -0.195313,0.867187 -0.128906,0.242188 -0.304687,0.445313 -0.523437,0.597657 -0.222656,0.15625 -0.472656,0.269531 -0.753906,0.34375 -0.28125,0.07422 -0.570313,0.113281 -0.871094,0.113281 h -3.214844 v -6.625 z m -0.1875,2.679687 c 0.261719,0 0.476562,-0.0625 0.644531,-0.183593 0.164063,-0.125 0.25,-0.324219 0.25,-0.601563 0,-0.15625 -0.02734,-0.28125 -0.08594,-0.378906 -0.05469,-0.101563 -0.128907,-0.175781 -0.222657,-0.234375 -0.09375,-0.05469 -0.199218,-0.09375 -0.320312,-0.113281 -0.121094,-0.02344 -0.246094,-0.03516 -0.375,-0.03516 H 73.22251 v 1.546875 z m 0.08594,2.808594 c 0.144532,0 0.28125,-0.01172 0.410157,-0.03906 0.128906,-0.02734 0.246093,-0.07422 0.34375,-0.140625 0.09766,-0.0625 0.179687,-0.152344 0.238281,-0.265625 0.05859,-0.109375 0.08594,-0.25 0.08594,-0.425782 0,-0.339843 -0.09375,-0.582031 -0.285156,-0.726562 -0.195312,-0.144531 -0.449219,-0.21875 -0.765625,-0.21875 h -1.585937 v 1.816406 z"
|
||||
id="path3523" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 77.577981,32.746094 h 1.632813 l 1.550781,2.617187 1.539063,-2.617187 h 1.625 l -2.457032,4.082031 v 2.542969 h -1.460937 v -2.582031 z"
|
||||
id="path3525" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 88.984231,15.21875 c 0,5.929688 -4.808593,10.734375 -10.738281,10.734375 -5.929687,0 -10.738281,-4.804687 -10.738281,-10.734375 0,-5.933594 4.808594,-10.738281 10.738281,-10.738281 5.929688,0 10.738281,4.804687 10.738281,10.738281 z"
|
||||
id="path3533" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 81.355325,12.109375 c 0,-0.414062 -0.335937,-0.75 -0.75,-0.75 h -4.742187 c -0.414063,0 -0.75,0.335938 -0.75,0.75 v 4.742188 h 1.324218 v 5.617187 h 3.59375 v -5.617187 h 1.324219 z"
|
||||
id="path3535" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 79.855325,9.113281 c 0,0.898438 -0.726562,1.621094 -1.621094,1.621094 -0.894531,0 -1.621093,-0.722656 -1.621093,-1.621094 0,-0.894531 0.726562,-1.621093 1.621093,-1.621093 0.894532,0 1.621094,0.726562 1.621094,1.621093 z"
|
||||
id="path3537" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 78.218606,3.386719 c -3.210937,0 -5.929687,1.121094 -8.15625,3.363281 -2.285156,2.316406 -3.425781,5.0625 -3.425781,8.230469 0,3.167969 1.140625,5.894531 3.425781,8.175781 2.285157,2.277344 5.003907,3.417969 8.15625,3.417969 3.191407,0 5.960938,-1.148438 8.300782,-3.449219 2.207031,-2.183594 3.308593,-4.898437 3.308593,-8.144531 C 89.827981,11.734375 88.706888,8.988281 86.4647,6.75 84.218606,4.507813 81.468606,3.386719 78.218606,3.386719 Z m 0.02734,2.085937 c 2.632813,0 4.867188,0.925782 6.707031,2.78125 1.859375,1.835938 2.789063,4.078125 2.789063,6.726563 0,2.667969 -0.910156,4.878906 -2.730469,6.636719 -1.917969,1.894531 -4.171875,2.839843 -6.765625,2.839843 -2.589844,0 -4.828125,-0.933593 -6.703125,-2.808593 -1.878906,-1.875 -2.816406,-4.097657 -2.816406,-6.667969 0,-2.570313 0.949219,-4.8125 2.84375,-6.726563 1.820312,-1.855468 4.046875,-2.78125 6.675781,-2.78125 z"
|
||||
id="path3539" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 65 KiB |
561
froscon2022/artwork/pause.svg
Normal file
|
@ -0,0 +1,561 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="1024"
|
||||
height="576"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="pause.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<radialGradient
|
||||
fy="9.7279596"
|
||||
fx="1.71676"
|
||||
r="0.29498801"
|
||||
cy="9.7279596"
|
||||
cx="1.71676"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="id12-2">
|
||||
<stop
|
||||
id="stop3151-3"
|
||||
style="stop-color:#75C5F0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3153-8"
|
||||
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-2"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="id14-68" />
|
||||
<linearGradient
|
||||
y2="2.3961301"
|
||||
x2="3.27019"
|
||||
y1="1.96386"
|
||||
x1="3.27019"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3382-8">
|
||||
<stop
|
||||
id="stop3384-8"
|
||||
style="stop-opacity:1; stop-color:white"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3386-5"
|
||||
style="stop-opacity:0; stop-color:white"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<mask
|
||||
id="id6-3">
|
||||
<linearGradient
|
||||
y2="2.3961301"
|
||||
x2="3.27019"
|
||||
y1="1.96386"
|
||||
x1="3.27019"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="id7-8">
|
||||
<stop
|
||||
id="stop3128-0"
|
||||
style="stop-opacity:1; stop-color:white"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3130-7"
|
||||
style="stop-opacity:0; stop-color:white"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<rect
|
||||
id="rect3132-41"
|
||||
height="0.465563"
|
||||
width="0.65544897"
|
||||
y="1.94721"
|
||||
x="2.9424601"
|
||||
style="fill:url(#id7-8)" />
|
||||
</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-8" />
|
||||
<inkscape:perspective
|
||||
id="perspective3412-8"
|
||||
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="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.10647803"
|
||||
inkscape:cx="3949.1714"
|
||||
inkscape:cy="-568.19232"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1400"
|
||||
inkscape:window-height="601"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<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 />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bg">
|
||||
<rect
|
||||
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect905"
|
||||
width="1082"
|
||||
height="615"
|
||||
x="-45"
|
||||
y="-23"
|
||||
ry="18" />
|
||||
<g
|
||||
id="FrOSCon-Logo-rgb-dark-blue-endorse-below"
|
||||
transform="matrix(0.57529828,0,0,0.57529828,610.26734,464.5851)"
|
||||
style="fill:#1f1fa3">
|
||||
<path
|
||||
d="m 0,125.00892 v -86.223767 0 C 0,31.796236 1.6859231,25.481687 5.0577694,19.841508 8.4296157,14.201329 12.966282,9.695316 18.667767,6.3234697 24.369253,2.9516235 30.653148,1.2657003 37.519453,1.2657003 h 41.531479 c 2.761423,0 5,2.2385763 5,5 V 19.43948 c 0,2.761424 -2.238577,5 -5,5 H 40.462155 v 0 c -3.923603,0 -7.264796,1.410045 -10.023579,4.230135 -2.758783,2.820089 -4.138175,6.191935 -4.138175,10.115538 v 15.782835 c 0,2.761423 2.238576,5 5,5 h 41.497288 c 2.761424,0 5,2.238576 5,5 v 13.173779 c 0,2.761424 -2.238576,5 -5,5 H 31.300401 c -2.761424,0 -5,2.238577 -5,5 v 37.267153 c 0,2.76143 -2.238576,5 -5,5 H 5 c -2.7614237,0 -5,-2.23857 -5,-5 z"
|
||||
id="Path"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 92.042871,125.00892 v -62.130392 0 c 0,-8.337657 2.360292,-14.866777 7.080877,-19.587362 4.720582,-4.720585 11.249702,-7.080877 19.587362,-7.080877 h 20.93256 c 2.76143,0 5,2.238576 5,5 v 11.51851 c 0,2.761424 -2.23857,5 -5,5 h -16.51851 v 0 c -1.59396,0 -2.97335,0.551756 -4.13817,1.65527 -1.16482,1.103513 -1.74723,2.513558 -1.74723,4.230134 v 61.394717 c 0,2.76143 -2.23858,5 -5,5 H 97.042871 c -2.761424,0 -5,-2.23857 -5,-5 z"
|
||||
id="path2287"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 298.50444,124.99554 v -13.17378 c 0,-2.76142 2.23857,-5 5,-5 h 50.17566 v 0 c 2.69748,0 5.14973,-0.67437 7.35676,-2.02311 2.20703,-1.34874 3.98491,-3.15727 5.33365,-5.425606 1.34874,-2.268333 2.0231,-4.751237 2.0231,-7.448715 0,-2.820089 -0.67436,-5.3643 -2.0231,-7.632633 -1.34874,-2.268333 -3.12662,-4.076869 -5.33365,-5.425608 -2.20703,-1.348738 -4.65928,-2.023107 -7.35676,-2.023107 h -21.51851 c -7.23414,0 -13.79391,-1.471351 -19.67932,-4.414054 -5.8854,-2.942702 -10.57533,-7.203489 -14.06979,-12.782362 -3.49446,-5.578873 -5.24169,-12.291913 -5.24169,-20.139119 0,-7.724593 1.65527,-14.437632 4.96581,-20.139118 3.31054,-5.701485 7.7859,-10.1461917 13.42608,-13.334119 5.64018,-3.1879274 11.89342,-4.7818911 18.75973,-4.7818911 h 50.91134 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -48.33648 v 0 c -2.45225,0 -4.72058,0.643716 -6.805,1.931148 -2.08441,1.287432 -3.70903,2.973355 -4.87385,5.057769 -1.16482,2.084414 -1.74723,4.414054 -1.74723,6.988918 0,2.574865 0.58241,4.904504 1.74723,6.988918 1.16482,2.084414 2.78944,3.739684 4.87385,4.96581 2.08442,1.226126 4.35275,1.839189 6.805,1.839189 h 22.25418 c 7.96982,0 14.89743,1.532657 20.78284,4.597972 5.8854,3.065315 10.45272,7.356755 13.70196,12.874322 3.24923,5.517567 4.87385,11.954728 4.87385,19.311483 0,8.705494 -1.68593,16.123553 -5.05777,22.254183 -3.37185,6.13063 -7.90851,10.78991 -13.61,13.97784 -5.70148,3.18792 -11.98538,4.78189 -18.85169,4.78189 h -53.4862 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||
id="path2289"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 469.33159,129.99554 c -10.05424,-0.24523 -19.12757,-2.05376 -27.22,-5.42561 -8.09243,-3.37184 -15.02004,-7.96982 -20.78283,-13.79391 -5.76279,-5.8241 -10.2075,-12.598448 -13.33412,-20.323042 -3.12662,-7.724593 -4.68993,-16.000943 -4.68993,-24.829049 0,-8.828107 1.56331,-17.104457 4.68993,-24.82905 3.12662,-7.724594 7.57133,-14.498939 13.33412,-20.323037 5.76279,-5.824098 12.6904,-10.452724 20.78283,-13.8858764 8.09243,-3.4331526 17.16576,-5.2110351 27.22,-5.3336477 h 15.04716 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -14.49541 v 0 c -5.8854,0.122612 -11.28035,1.226126 -16.18486,3.31054 -4.9045,2.084414 -9.16529,4.96581 -12.78236,8.644187 -3.61707,3.678378 -6.40651,8.000472 -8.36831,12.966282 -1.9618,4.96581 -2.9427,10.391417 -2.9427,16.276822 0,5.885404 0.9809,11.311011 2.9427,16.276821 1.9618,4.96581 4.75124,9.287904 8.36831,12.966282 3.61707,3.678377 7.87786,6.559778 12.78236,8.644188 4.90451,2.08441 10.29946,3.18793 16.18486,3.31054 h 14.49541 c 2.76142,0 5,2.23858 5,5 v 13.17378 c 0,2.76142 -2.23858,5 -5,5 z"
|
||||
id="path2291"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 547.43012,132.20257 c -9.68639,0 -18.33058,-2.17638 -25.93256,-6.52912 -7.60198,-4.35275 -13.61,-10.24965 -18.02405,-17.6907 -4.41406,-7.44105 -6.62108,-15.736562 -6.62108,-24.886527 0,-9.149965 2.20702,-17.445473 6.62108,-24.886525 4.41405,-7.441051 10.42207,-13.337951 18.02405,-17.690698 7.60198,-4.352747 16.24617,-6.52912 25.93256,-6.52912 9.6864,0 18.33058,2.176373 25.93256,6.52912 7.60198,4.352747 13.61,10.224741 18.02406,17.615981 4.41405,7.391241 6.62108,15.728897 6.62108,25.012969 0,9.16146 -2.20703,17.45122 -6.62108,24.86928 -4.41406,7.41806 -10.42208,13.30347 -18.02406,17.65622 -7.60198,4.35274 -16.24616,6.52912 -25.93256,6.52912 z m 0,-21.51851 c 5.14973,0 9.59444,-1.22613 13.33412,-3.67838 3.73968,-2.45225 6.62108,-5.75561 8.64419,-9.910069 2.02311,-4.154459 3.03466,-8.813259 3.03466,-13.976398 0,-5.165056 -1.01155,-9.831997 -3.03466,-14.000826 -2.02311,-4.168828 -4.90451,-7.479368 -8.64419,-9.931619 -3.73968,-2.452252 -8.18439,-3.678378 -13.33412,-3.678378 -5.14973,0 -9.59444,1.226126 -13.33412,3.678378 -3.73968,2.452251 -6.62108,5.755607 -8.64419,9.910066 -2.0231,4.15446 -3.03466,8.813259 -3.03466,13.976399 0,5.165055 1.01156,9.831997 3.03466,14.000825 2.02311,4.168832 4.90451,7.479372 8.64419,9.931622 3.73968,2.45225 8.18439,3.67838 13.33412,3.67838 z"
|
||||
id="Shape"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 610.07947,124.99554 v -48.888235 0 c 0,-7.724593 1.80853,-14.774817 5.4256,-21.150672 3.61708,-6.375855 8.85876,-11.464277 15.72507,-15.265268 6.8663,-3.80099 15.08135,-5.701485 24.64513,-5.701485 9.68639,0 17.93209,1.900495 24.73709,5.701485 6.805,3.800991 12.01603,8.889413 15.63311,15.265268 3.61707,6.375855 5.4256,13.426079 5.4256,21.150672 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 v -48.888235 0 c 0,-3.80099 -0.9196,-7.264796 -2.75879,-10.391417 -1.83919,-3.126621 -4.32209,-5.609526 -7.44871,-7.448715 -3.12662,-1.839189 -6.59043,-2.758783 -10.39142,-2.758783 -3.80099,0 -7.2648,0.919594 -10.39142,2.758783 -3.12662,1.839189 -5.60952,4.322094 -7.44871,7.448715 -1.83919,3.126621 -2.75879,6.590427 -2.75879,10.391417 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||
id="path2294"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 220,0 c 36.45079,0 66,29.549206 66,66 0,36.45079 -29.54921,66 -66,66 -36.45079,0 -66,-29.54921 -66,-66 0,-36.450794 29.54921,-66 66,-66 z m -17.00189,18.568446 -1.93756,2.831494 1.53943,2.668682 -0.63153,5.078586 -1.8052,-2.303226 0.34534,-3.389575 -3.06967,-2.015477 -3.39205,1.361896 -0.0169,3.912827 2.97572,1.516205 1.45972,5.927492 2.15161,6.815043 -0.0305,7.082912 2.34465,2.071055 4.61088,0.221223 1.8584,0.946904 -4.51345,8.779253 -0.42032,7.509823 -8.75187,-8.896009 -3.40232,-1.733568 -5.60842,2.151177 -1.00711,1.97656 -0.36684,10.187218 4.61019,13.623996 -4.36646,-3.879041 -3.78726,-6.589605 -1.167,-3.653386 0.36458,-2.304699 2.18849,-2.430273 -1.37613,-3.145307 -3.29197,-0.699651 -1.96044,3.203366 1.47629,2.195534 -0.57391,2.87169 -1.97667,-2.314596 -0.0599,-2.520959 -3.84258,-1.369528 -1.98185,2.199722 0.57695,3.220288 2.81609,0.721386 1.23051,2.572829 -2.24123,0.291333 -2.30388,-2.607181 -3.31321,1.246521 -0.27564,3.134268 2.48751,1.660461 2.05638,-0.786817 3.60758,1.838155 7.71477,5.765467 6.95085,7.952341 3.6232,1.385835 4.33669,-2.787504 -0.68495,-13.861259 5.28244,6.489427 2.48527,2.416679 8.6469,4.405812 3.41594,0.590138 8.35499,0.459194 -11.61659,7.593309 0.2939,5.146904 3.25083,2.11666 10.51918,0.94909 9.19899,2.85252 3.60758,1.83816 0.57217,2.12612 2.80546,1.03644 2.37366,-2.06526 -0.93901,-3.41314 -3.46343,-0.33141 -1.08167,-1.98444 2.80474,-0.51677 2.23887,1.85425 2.94439,-1.42608 0.61471,-2.89631 -3.36659,-2.30373 -2.07468,1.43336 -3.03441,-0.23868 1.98592,-2.15223 2.64396,-0.0962 1.43926,-3.468912 -2.501,-2.252016 -3.35348,0.735449 -0.67977,3.199007 -1.65024,1.649618 -3.6416,1.203284 -7.5572,0.80932 -5.70475,-1.2525 13.73185,-4.278263 8.02601,-6.284677 1.00711,-1.97656 -1.55621,-5.801736 -3.40232,-1.733568 -12.34125,-1.851476 5.82852,-4.754204 4.44963,-8.811776 1.8584,0.946903 2.88918,3.60025 3.05367,0.679523 5.71227,-4.187905 6.77817,-2.265089 5.65344,-2.30316 2.97572,1.516205 3.15563,-2.313542 -0.892,-3.544729 -3.43486,-1.298747 -2.53924,2.271729 -2.92441,-0.106632 3.73745,-3.496042 3.06387,-0.323182 1.15185,-3.231833 -2.05137,-2.667005 -3.45449,0.792909 -0.63713,3.251767 -3.16848,2.671159 0.10965,-4.229708 1.66104,-2.137611 -2.23877,-3.241974 -3.54914,0.292887 -1.24839,3.543213 1.6286,2.38328 -1.09677,3.288072 -3.7193,6.163988 -4.50112,2.161253 -4.63654,-10.479651 3.61811,-4.86316 0.0449,-6.64112 1.34093,-1.90326 -0.4133,-5.102476 -1.03338,-1.16321 -1.11562,-4.370289 -2.81584,-3.091877 0.0301,-0.05818 -0.0927,-0.0099 -0.0625,-0.06915 -0.0303,0.05808 -4.1556,-0.460247 -4.19138,1.666237 -1.54846,-0.152307 -4.37092,2.664798 -0.75159,2.203542 -5.3464,3.939863 -1.80771,5.785606 -11.20351,2.408738 -0.8972,-4.911831 2.80062,-6.632079 2.01545,-2.819981 2.88538,-0.08329 2.13273,-3.09262 -1.84918,-3.043465 -3.93873,0.09438 -0.75303,2.600265 -3.35745,2.574872 0.29863,-4.133421 2.25623,-2.426791 -1.38902,-3.260807 z"
|
||||
id="path2296"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 0.83694671,181.344 v -21.05081 c 0,-1.14329 0.17423049,-2.0978 0.52269139,-2.86354 0.3484609,-0.76574 0.8060417,-1.37036 1.3727422,-1.81388 0.5667005,-0.44351 1.1987969,-0.7587 1.8962891,-0.94558 0.6974921,-0.18687 1.3884257,-0.2803 2.0728007,-0.2803 0.9448177,0.0103 2.0588282,0.0239 3.3420309,0.0411 1.283204,0.0171 2.634274,0.0557 4.053211,0.11577 1.418938,0.0601 2.788828,0.15228 4.109672,0.2766 v 3.73669 H 7.901978 c -0.8189688,0 -1.4476433,0.22699 -1.8860235,0.68095 -0.4383802,0.45397 -0.6575703,1.06915 -0.6575703,1.84554 v 5.44477 l 11.1735628,0.25949 v 3.54335 L 5.3583842,170.59418 V 181.344 Z"
|
||||
id="path2298"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 20.623859,181.344 v -19.55317 h 3.478906 l 1.042531,3.12931 c 0.764599,-0.94368 1.625486,-1.74478 2.58266,-2.4033 0.957175,-0.65852 2.083637,-0.98778 3.379387,-0.98778 0.274891,0 0.558716,0.0146 0.851477,0.0439 0.29276,0.0293 0.56594,0.0804 0.819539,0.15342 v 4.62922 c -0.353594,-0.0487 -0.723252,-0.0902 -1.108973,-0.12461 -0.385721,-0.0344 -0.758801,-0.0516 -1.119238,-0.0516 -0.774865,0 -1.470836,0.0898 -2.087914,0.26947 -0.617078,0.17965 -1.19452,0.44427 -1.732324,0.79387 -0.537805,0.34961 -1.06601,0.79226 -1.584614,1.32798 V 181.344 Z"
|
||||
id="path2300"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 43.180654,181.54132 c -2.118141,0 -3.805886,-0.29485 -5.063235,-0.88455 -1.257349,-0.5897 -2.161104,-1.61094 -2.711265,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236627,-0.584 2.91116,-0.876 5.023597,-0.876 1.871766,0 3.37587,0.19219 4.512313,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.247231,2.25255 -0.741692,2.99243 -0.49446,0.73989 -1.194994,1.26762 -2.101601,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204076,2.17165 0.483339,2.89576 0.279263,0.72411 0.791119,1.24452 1.535567,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922695 v 2.66393 c -1.012494,0.18326 -2.073656,0.35131 -3.183484,0.50416 -1.109828,0.15284 -2.411852,0.22926 -3.90607,0.22926 z M 39.016802,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404731,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125754,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284344,-0.31367 -2.196844,-0.31367 -1.014395,0 -1.81673,0.16007 -2.407004,0.4802 -0.590273,0.32014 -1.011069,0.89026 -1.262386,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||
id="path2302"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 62.113652,181.54132 c -2.118141,0 -3.805885,-0.29485 -5.063234,-0.88455 -1.257349,-0.5897 -2.161105,-1.61094 -2.711266,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236628,-0.584 2.91116,-0.876 5.023598,-0.876 1.871765,0 3.375869,0.19219 4.512312,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.741691,2.99243 -0.494461,0.73989 -1.194995,1.26762 -2.101602,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204077,2.17165 0.48334,2.89576 0.279263,0.72411 0.791118,1.24452 1.535566,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922696 v 2.66393 c -1.012495,0.18326 -2.073657,0.35131 -3.183485,0.50416 -1.109828,0.15284 -2.411851,0.22926 -3.90607,0.22926 z M 57.9498,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404732,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125753,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284343,-0.31367 -2.196843,-0.31367 -1.014396,0 -1.816731,0.16007 -2.407004,0.4802 -0.590274,0.32014 -1.011069,0.89026 -1.262387,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||
id="path2304"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 85.95017,181.563 c -1.458479,0 -2.653664,-0.43515 -3.585554,-1.30545 -0.931891,-0.8703 -1.397836,-2.07689 -1.397836,-3.61977 v -1.64592 c 0,-1.50031 0.517748,-2.72962 1.553246,-3.68793 1.035497,-0.95832 2.630946,-1.43747 4.786348,-1.43747 h 5.56796 v -1.70467 c 0,-0.68741 -0.117769,-1.26134 -0.353308,-1.72177 -0.235539,-0.46043 -0.675155,-0.80557 -1.318848,-1.0354 -0.643693,-0.22984 -1.600297,-0.34476 -2.869812,-0.34476 h -5.926688 v -2.62172 c 0.91174,-0.25284 1.972996,-0.46795 3.18377,-0.64531 1.210773,-0.17737 2.6568,-0.271 4.338082,-0.28088 1.614745,-0.0103 2.978742,0.18573 4.091992,0.58799 1.11325,0.40226 1.954271,1.06601 2.523062,1.99125 0.568792,0.92523 0.853188,2.18211 0.853188,3.77062 V 181.344 H 93.85242 l -0.763648,-2.12157 c -0.152844,0.14296 -0.450832,0.33858 -0.893965,0.58685 -0.443133,0.24828 -0.993389,0.51062 -1.650769,0.78704 -0.657381,0.27641 -1.380157,0.50662 -2.168329,0.69064 -0.788172,0.18403 -1.596684,0.27604 -2.425539,0.27604 z m 2.187149,-3.19204 c 0.312531,0.01 0.669737,-0.0249 1.071617,-0.10437 0.40188,-0.0795 0.808798,-0.17509 1.220754,-0.28687 0.411956,-0.11178 0.797772,-0.22603 1.157449,-0.34276 0.359677,-0.11672 0.653388,-0.22204 0.881133,-0.31595 0.227745,-0.0939 0.363099,-0.1479 0.406062,-0.16197 v -5.1214 l -4.221453,0.23382 c -1.112869,0.0772 -1.918531,0.35902 -2.416984,0.84549 -0.498453,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.124709,1.097 0.374125,1.46941 0.249417,0.37241 0.577156,0.6339 0.983219,0.78446 0.406062,0.15057 0.836648,0.23079 1.291758,0.24068 z"
|
||||
id="path2306"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 101.1903,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77747,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.3766,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52143 v -12.47559 c 0,-0.70186 -0.13289,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07256,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path2308"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 128.4808,181.563 c -1.55467,0 -2.85261,-0.33288 -3.89381,-0.99862 -1.0412,-0.66575 -1.82053,-1.72139 -2.338,-3.16695 -0.51746,-1.44555 -0.77619,-3.32986 -0.77619,-5.65293 0,-2.42345 0.2305,-4.38552 0.6915,-5.8862 0.461,-1.50068 1.22931,-2.601 2.30492,-3.30097 1.07561,-0.69996 2.53447,-1.04994 4.37658,-1.04994 0.96953,0 1.92528,0.10066 2.86724,0.30198 0.94197,0.20132 1.77244,0.43144 2.49141,0.69036 v -9.00523 h 4.52144 v 27.8495 h -3.75779 l -0.76365,-1.90884 c -0.40226,0.36348 -0.92162,0.70728 -1.55809,1.03141 -0.63647,0.32413 -1.31514,0.5879 -2.03602,0.79131 -0.72087,0.20341 -1.43072,0.30512 -2.12954,0.30512 z m 1.52273,-3.65514 c 0.8779,0 1.66855,-0.13934 2.37193,-0.41804 0.70339,-0.27869 1.31305,-0.56841 1.82899,-0.86915 V 165.7431 c -0.6205,-0.20189 -1.24727,-0.38839 -1.88032,-0.55948 -0.63304,-0.17109 -1.32065,-0.25664 -2.06282,-0.25664 -1.01858,0 -1.84401,0.18478 -2.47629,0.55434 -0.63229,0.36957 -1.08883,1.03046 -1.36961,1.9827 -0.28078,0.95223 -0.42117,2.30757 -0.42117,4.06604 0,1.62957 0.13183,2.90973 0.39551,3.84048 0.26367,0.93075 0.69198,1.58633 1.28491,1.96673 0.59293,0.38039 1.36923,0.57059 2.32887,0.57059 z"
|
||||
id="path2310"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 161.73343,181.563 c -1.80219,0 -3.38195,-0.17357 -4.7393,-0.5207 -1.35734,-0.34713 -2.49008,-0.99225 -3.39821,-1.93536 -0.90812,-0.9431 -1.58794,-2.31603 -2.03943,-4.11879 -0.4515,-1.80276 -0.67725,-4.15501 -0.67725,-7.05676 0,-2.91126 0.22822,-5.2733 0.68466,-7.08614 0.45644,-1.81283 1.1412,-3.20088 2.05427,-4.16413 0.91307,-0.96326 2.0459,-1.62596 3.39849,-1.98811 1.35259,-0.36215 2.92485,-0.54323 4.71677,-0.54323 1.82196,0 3.41161,0.18108 4.76895,0.54323 1.35735,0.36215 2.48761,1.02485 3.3908,1.98811 0.90318,0.96325 1.57805,2.3513 2.0246,4.16413 0.44656,1.81284 0.66984,4.17488 0.66984,7.08614 0,2.90175 -0.22585,5.254 -0.67754,7.05676 -0.45168,1.80276 -1.1315,3.17569 -2.03943,4.11879 -0.90794,0.94311 -2.0382,1.58823 -3.3908,1.93536 -1.35259,0.34713 -2.93473,0.5207 -4.74642,0.5207 z m 0,-4.06234 c 1.18549,0 2.18315,-0.12461 2.993,-0.37384 0.80984,-0.24923 1.45933,-0.70928 1.94847,-1.38016 0.48914,-0.67087 0.84321,-1.63594 1.06221,-2.89519 0.219,-1.25925 0.3285,-2.89928 0.3285,-4.92008 0,-2.12347 -0.11207,-3.82747 -0.3362,-5.112 -0.22413,-1.28453 -0.58067,-2.25863 -1.06962,-2.92228 -0.48895,-0.66365 -1.13587,-1.1104 -1.94077,-1.34024 -0.80491,-0.22983 -1.8001,-0.34475 -2.98559,-0.34475 -1.12123,0 -2.08535,0.11492 -2.89234,0.34475 -0.80699,0.22984 -1.46257,0.67659 -1.96672,1.34024 -0.50416,0.66365 -0.87581,1.63775 -1.11496,2.92228 -0.23916,1.28453 -0.35873,2.98853 -0.35873,5.112 0,2.0208 0.10456,3.66083 0.31367,4.92008 0.20911,1.25925 0.55567,2.22432 1.03968,2.89519 0.48401,0.67088 1.13454,1.13093 1.95161,1.38016 0.81707,0.24923 1.82633,0.37384 3.02779,0.37384 z"
|
||||
id="path2312"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 175.99709,189.9945 v -28.20367 h 3.75779 l 0.76364,1.90884 c 0.45663,-0.35322 0.98636,-0.69806 1.58918,-1.03455 0.60282,-0.33648 1.26077,-0.61356 1.97385,-0.83123 0.71308,-0.21767 1.44755,-0.3265 2.2034,-0.3265 1.22808,0 2.28515,0.24447 3.17123,0.73342 0.88607,0.48895 1.60999,1.18083 2.17175,2.07565 0.56175,0.89482 0.97257,1.95693 1.23244,3.18634 0.25987,1.2294 0.38981,2.58247 0.38981,4.0592 0,2.13449 -0.22375,3.95103 -0.67126,5.44962 -0.4475,1.49859 -1.1776,2.63893 -2.19028,3.42102 -1.01269,0.78208 -2.38058,1.17313 -4.10369,1.17313 -0.97789,0 -1.97299,-0.13317 -2.9853,-0.3995 -1.0123,-0.26634 -1.93934,-0.62801 -2.78113,-1.08502 v 9.87325 z m 8.87235,-12.12941 c 0.70224,0 1.34518,-0.18374 1.9288,-0.55121 0.58361,-0.36747 1.05127,-1.00593 1.40296,-1.91539 0.3517,-0.90946 0.52754,-2.18829 0.52754,-3.83649 0,-1.58813 -0.17299,-2.85223 -0.51898,-3.7923 -0.34599,-0.94006 -0.80623,-1.60961 -1.38073,-2.00864 -0.57449,-0.39903 -1.22047,-0.59854 -1.93792,-0.59854 -0.89235,0 -1.70809,0.13935 -2.44721,0.41804 -0.73913,0.27869 -1.38092,0.56841 -1.92538,0.86915 v 10.2354 c 0.6148,0.35094 1.30279,0.63533 2.06397,0.85319 0.76117,0.21786 1.52349,0.32679 2.28695,0.32679 z"
|
||||
id="path2314"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 204.51433,181.54132 c -2.11815,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87177,0 3.37587,0.19219 4.51231,0.57658 1.13645,0.38439 1.96625,1.05888 2.48942,2.02347 0.52316,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49447,0.73989 -1.195,1.26762 -2.10161,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73221 c 0.043,1.2064 0.20407,2.17165 0.48334,2.89576 0.27926,0.72411 0.79111,1.24452 1.53556,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41186,0.22926 -3.90607,0.22926 z m -4.16386,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40474,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.407,0.4802 -0.59028,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path2316"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 215.46409,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73998,0.30987 3.62092,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path2318"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 253.36294,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27042,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68646,-0.0914 -1.29584,-0.20236 -1.82813,-0.33277 v -3.54335 c 0.68703,0.0631 1.48604,0.11653 2.39702,0.16025 0.91098,0.0437 1.86673,0.0778 2.86725,0.10209 1.00052,0.0243 1.96178,0.0365 2.88378,0.0365 0.9836,0 1.84848,-0.0885 2.59464,-0.26548 0.74616,-0.17699 1.33082,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63475,-1.1219 0.63475,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.8067,-2.19085 -0.53781,-0.50359 -1.33311,-0.75538 -2.38591,-0.75538 h -2.52192 c -2.4512,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32958,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18316,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21241,-1.74857 0.92277,0 1.87652,0.0448 2.86126,0.1343 0.98474,0.0895 1.93127,0.19828 2.83959,0.32622 0.90831,0.12794 1.68014,0.26206 2.31546,0.40236 v 3.54335 c -1.08929,-0.0871 -2.31841,-0.16606 -3.68735,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81397,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69597,0.19257 -1.23007,0.54284 -1.60229,1.0508 -0.37223,0.50796 -0.55834,1.23738 -0.55834,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.9376,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57292,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78488,1.37284 2.29151,2.37963 0.50663,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39142,3.53403 -1.17427,4.60014 -0.78285,1.0661 -1.85371,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||
id="path2320"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 274.02527,181.54132 c -1.54098,0 -2.86857,-0.15987 -3.98277,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74378,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50787,-4.98453 0.33857,-1.30184 0.86535,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62947,-1.25031 2.74348,-1.54155 1.11401,-0.29124 2.43448,-0.43686 3.96139,-0.43686 1.54137,0 2.87162,0.15284 3.99076,0.45853 1.11915,0.30569 2.0326,0.82667 2.74036,1.56294 0.70775,0.73627 1.23349,1.75533 1.5772,3.05716 0.3437,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84787,2.32136 -1.55582,3.06486 -0.70794,0.74349 -1.62149,1.26799 -2.74063,1.57349 -1.11915,0.3055 -2.46366,0.45824 -4.03354,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90713,-0.20303 0.53799,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35093,-0.42754 0.61556,-1.07095 0.79387,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17831,-0.8471 -0.44294,-1.48186 -0.79387,-1.90427 -0.35093,-0.42241 -0.7954,-0.7013 -1.33339,-0.83665 -0.538,-0.13536 -1.17371,-0.20303 -1.90713,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89885,0.20303 -0.53286,0.13535 -0.97486,0.41424 -1.32598,0.83665 -0.35112,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17337,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43563,1.50268 0.78675,1.93022 0.35112,0.42755 0.79312,0.709 1.32598,0.84435 0.53286,0.13536 1.16581,0.20303 1.89885,0.20303 z"
|
||||
id="path2322"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 291.7726,181.563 c -1.79345,0 -3.18938,-0.50625 -4.18781,-1.51875 -0.99843,-1.01249 -1.49764,-2.49226 -1.49764,-4.43931 v -13.81411 h 4.52144 v 12.50581 c 0,1.28625 0.29542,2.15246 0.88626,2.59863 0.59085,0.44618 1.40696,0.66926 2.44836,0.66926 0.83683,0 1.65656,-0.13953 2.45918,-0.4186 0.80262,-0.27908 1.55848,-0.66214 2.26757,-1.14918 v -14.20592 h 4.522 V 181.344 h -3.68478 l -0.83722,-2.04857 c -0.91745,0.59541 -1.96815,1.12219 -3.15212,1.58034 -1.18397,0.45815 -2.43238,0.68723 -3.74524,0.68723 z"
|
||||
id="path2324"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 307.02893,181.344 v -19.55317 h 3.4789 l 1.04254,3.12931 c 0.76459,-0.94368 1.62548,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08363,-0.98778 3.37938,-0.98778 0.27489,0 0.55872,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.3536,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38573,-0.0344 -0.75881,-0.0516 -1.11924,-0.0516 -0.77487,0 -1.47084,0.0898 -2.08792,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73232,0.79387 -0.53781,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path2326"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 329.05362,181.563 c -1.16039,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98626,-0.30835 -1.84145,-0.82971 -2.56555,-1.56408 -0.72411,-0.73437 -1.28549,-1.74535 -1.68414,-3.03292 -0.39864,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10337,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63793,1.99324 -0.35455,0.96877 -0.53182,2.36832 -0.53182,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74236,0.32946 1.69829,0.49418 2.86782,0.49418 h 5.56625 v 2.57838 c -0.5783,0.15285 -1.25916,0.29761 -2.04258,0.4343 -0.78342,0.13668 -1.60742,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||
id="path2328"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 346.74072,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73222 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01106,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path2330"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 374.69033,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27041,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68647,-0.0914 -1.29584,-0.20236 -1.82814,-0.33277 v -3.54335 c 0.68704,0.0631 1.48605,0.11653 2.39703,0.16025 0.91098,0.0437 1.86672,0.0778 2.86724,0.10209 1.00052,0.0243 1.96178,0.0365 2.88379,0.0365 0.9836,0 1.84848,-0.0885 2.59463,-0.26548 0.74616,-0.17699 1.33083,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63476,-1.1219 0.63476,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.80671,-2.19085 -0.5378,-0.50359 -1.3331,-0.75538 -2.3859,-0.75538 h -2.52192 c -2.45121,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32959,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18315,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21242,-1.74857 0.92276,0 1.87651,0.0448 2.86125,0.1343 0.98475,0.0895 1.93127,0.19828 2.83959,0.32622 0.90832,0.12794 1.68014,0.26206 2.31547,0.40236 v 3.54335 c -1.0893,-0.0871 -2.31842,-0.16606 -3.68736,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81396,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69598,0.19257 -1.23007,0.54284 -1.6023,1.0508 -0.37222,0.50796 -0.55833,1.23738 -0.55833,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.93759,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57293,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78489,1.37284 2.29152,2.37963 0.50662,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39143,3.53403 -1.17428,4.60014 -0.78284,1.0661 -1.8537,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||
id="path2332"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 395.35267,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26747,-2.00065 0.26747,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26747,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.366,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61338,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17337,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53286,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||
id="path2334"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 408.72569,181.344 v -15.91914 h -2.85384 v -2.90004 l 2.85384,-0.73399 v -1.64193 c 0,-1.55809 0.20275,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.9596,-2.26813 0.9009,-0.49598 2.10625,-0.74397 3.61606,-0.74397 0.85167,0 1.60914,0.0529 2.27241,0.15883 0.66328,0.10589 1.22399,0.21168 1.68214,0.31738 v 3.22169 h -3.0814 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61897,0.534 -0.76364,0.96383 -0.14467,0.42983 -0.21701,0.98198 -0.21701,1.65647 v 1.87804 h 5.36094 v 3.63403 h -5.36094 V 181.344 Z"
|
||||
id="path2336"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 427.85323,181.344 c -1.41818,0 -2.57696,-0.21501 -3.47634,-0.64503 -0.89938,-0.43001 -1.55201,-1.13882 -1.95788,-2.12641 -0.40587,-0.98759 -0.59436,-2.30777 -0.56547,-3.96053 l 0.15855,-9.18717 h -3.07455 v -2.90004 l 3.21599,-0.73399 0.63533,-5.48127 h 3.54335 v 5.48127 h 4.97198 v 3.63403 h -4.97198 v 9.1655 c 0,0.6376 0.0644,1.15735 0.19333,1.55923 0.12889,0.40188 0.30579,0.71698 0.53068,0.94529 0.22489,0.22832 0.47526,0.39257 0.7511,0.49275 0.27584,0.10019 0.5533,0.16245 0.83237,0.18678 l 2.44322,0.24067 v 3.32892 z"
|
||||
id="path2338"
|
||||
style="fill:#1f1fa3" />
|
||||
<polygon
|
||||
id="polygon2340"
|
||||
points="436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 "
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 466.27267,181.563 c -1.45848,0 -2.65366,-0.43515 -3.58555,-1.30545 -0.93189,-0.8703 -1.39784,-2.07689 -1.39784,-3.61977 v -1.64592 c 0,-1.50031 0.51775,-2.72962 1.55325,-3.68793 1.03549,-0.95832 2.63094,-1.43747 4.78634,-1.43747 h 5.56797 v -1.70467 c 0,-0.68741 -0.11777,-1.26134 -0.35331,-1.72177 -0.23554,-0.46043 -0.67516,-0.80557 -1.31885,-1.0354 -0.64369,-0.22984 -1.6003,-0.34476 -2.86981,-0.34476 h -5.92669 v -2.62172 c 0.91174,-0.25284 1.973,-0.46795 3.18377,-0.64531 1.21077,-0.17737 2.6568,-0.271 4.33808,-0.28088 1.61475,-0.0103 2.97874,0.18573 4.09199,0.58799 1.11325,0.40226 1.95427,1.06601 2.52307,1.99125 0.56879,0.92523 0.85318,2.18211 0.85318,3.77062 V 181.344 h -3.54335 l -0.76365,-2.12157 c -0.15284,0.14296 -0.45083,0.33858 -0.89396,0.58685 -0.44313,0.24828 -0.99339,0.51062 -1.65077,0.78704 -0.65738,0.27641 -1.38016,0.50662 -2.16833,0.69064 -0.78817,0.18403 -1.59668,0.27604 -2.42554,0.27604 z m 2.18715,-3.19204 c 0.31253,0.01 0.66974,-0.0249 1.07162,-0.10437 0.40188,-0.0795 0.80879,-0.17509 1.22075,-0.28687 0.41196,-0.11178 0.79777,-0.22603 1.15745,-0.34276 0.35968,-0.11672 0.65339,-0.22204 0.88113,-0.31595 0.22775,-0.0939 0.3631,-0.1479 0.40607,-0.16197 v -5.1214 l -4.22146,0.23382 c -1.11287,0.0772 -1.91853,0.35902 -2.41698,0.84549 -0.49845,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.12471,1.097 0.37412,1.46941 0.24942,0.37241 0.57716,0.6339 0.98322,0.78446 0.40606,0.15057 0.83665,0.23079 1.29176,0.24068 z"
|
||||
id="path2342"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 481.5128,181.344 v -19.55317 h 3.47891 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85147,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path2344"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 504.0696,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71126,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80185,-6.12431 0.53458,-1.4522 1.42018,-2.4703 2.65681,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96624,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.195,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74444,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32443 c 0.85813,0 1.48956,-0.16472 1.8943,-0.49418 0.40473,-0.32945 0.60709,-0.92229 0.60709,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28435,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||
id="path2346"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 533.04178,181.563 c -1.58319,0 -2.9756,-0.1825 -4.17725,-0.5475 -1.20165,-0.365 -2.21035,-1.0317 -3.02608,-2.00009 -0.81574,-0.96839 -1.42968,-2.35748 -1.84183,-4.16727 -0.41214,-1.8098 -0.61821,-4.16481 -0.61821,-7.06503 0,-2.76222 0.2132,-5.03368 0.6396,-6.81438 0.4264,-1.78071 1.05603,-3.16628 1.88888,-4.15673 0.83284,-0.99044 1.8576,-1.68175 3.07426,-2.07394 1.21667,-0.39218 2.61033,-0.58828 4.18097,-0.58828 1.05698,0 2.09057,0.059 3.10079,0.17709 1.01021,0.11805 1.95056,0.26149 2.82105,0.4303 0.87048,0.16881 1.62434,0.35264 2.26157,0.55149 v 3.47891 c -0.4323,-0.0874 -1.02352,-0.1748 -1.77367,-0.26206 -0.75015,-0.0873 -1.60115,-0.16131 -2.553,-0.22214 -0.95186,-0.0608 -1.94011,-0.0913 -2.96478,-0.0913 -1.11857,0 -2.07165,0.12537 -2.85926,0.37612 -0.7876,0.25075 -1.42198,0.71688 -1.90313,1.39841 -0.48115,0.68152 -0.83342,1.65305 -1.05679,2.91458 -0.22337,1.26153 -0.33506,2.90327 -0.33506,4.92522 0,1.99191 0.10095,3.6251 0.30284,4.89955 0.20189,1.27446 0.53381,2.25568 0.99576,2.94367 0.46196,0.68799 1.08636,1.16515 1.8732,1.43149 0.78684,0.26633 1.77015,0.3995 2.94994,0.3995 1.83945,0 3.34203,-0.0405 4.50775,-0.12148 1.16572,-0.081 2.10445,-0.17508 2.8162,-0.2823 v 3.4789 c -0.68894,0.20304 -1.46352,0.37717 -2.32374,0.52241 -0.86022,0.14524 -1.78764,0.25902 -2.78227,0.34133 -0.99462,0.0823 -2.06054,0.12348 -3.19774,0.12348 z"
|
||||
id="path2348"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 552.26543,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53287,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||
id="path2350"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 564.37008,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57644,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path2352"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 586.53746,181.344 v -15.91914 h -2.85385 v -2.90004 l 2.85385,-0.73399 v -1.64193 c 0,-1.55809 0.20274,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.95959,-2.26813 0.9009,-0.49598 2.10626,-0.74397 3.61607,-0.74397 0.85166,0 1.60913,0.0529 2.27241,0.15883 0.66327,0.10589 1.22398,0.21168 1.68213,0.31738 v 3.22169 h -3.08139 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61898,0.534 -0.76365,0.96383 -0.14467,0.42983 -0.217,0.98198 -0.217,1.65647 v 1.87804 h 5.36093 v 3.63403 H 591.0589 V 181.344 Z"
|
||||
id="path2354"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 606.53244,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path2356"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 617.48221,181.344 v -19.55317 h 3.4789 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95718,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81953,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.066,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||
id="path2358"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 640.039,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37727,-2.02005 -0.2515,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25131,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||
id="path2360"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 650.98876,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77748,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88095,0.61974 1.50972,1.45059 1.88631,2.49255 0.3766,1.04196 0.5649,2.18401 0.5649,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63637,-0.87524 -1.11182,-1.14519 -0.47545,-0.26995 -1.05347,-0.40492 -1.73404,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76825,0.19847 -0.5515,0.13231 -1.07257,0.3188 -1.56323,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||
id="path2362"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 679.3389,181.563 c -1.1604,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98627,-0.30835 -1.84145,-0.82971 -2.56556,-1.56408 -0.7241,-0.73437 -1.28548,-1.74535 -1.68413,-3.03292 -0.39865,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10336,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63794,1.99324 -0.35454,0.96877 -0.53181,2.36832 -0.53181,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74235,0.32946 1.69829,0.49418 2.86781,0.49418 h 5.56625 v 2.57838 c -0.57829,0.15285 -1.25915,0.29761 -2.04257,0.4343 -0.78342,0.13668 -1.60743,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||
id="path2364"
|
||||
style="fill:#1f1fa3" />
|
||||
<path
|
||||
d="m 697.026,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||
id="path2366"
|
||||
style="fill:#1f1fa3" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-476.36218)">
|
||||
<g
|
||||
id="bar"
|
||||
transform="translate(0,-80)">
|
||||
<rect
|
||||
y="628.72675"
|
||||
x="1"
|
||||
height="241.19937"
|
||||
width="1024"
|
||||
id="rect3809-1"
|
||||
style="fill:#1f1fa3;fill-opacity:1" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
x="424.54688"
|
||||
y="771.85767"
|
||||
id="text2"
|
||||
inkscape:label="text2"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3105"
|
||||
x="424.54688"
|
||||
y="771.85767"
|
||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:64px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1">Pause</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="360"
|
||||
y="131"
|
||||
id="text3875"
|
||||
transform="translate(0,556.36218)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3877"
|
||||
x="360"
|
||||
y="131"
|
||||
style="font-size:40px;line-height:1.25;font-family:sans-serif"> </tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:0.25;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
x="423.70312"
|
||||
y="773.32642"
|
||||
id="text1"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3105-9"
|
||||
x="423.70312"
|
||||
y="773.32642"
|
||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:64px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1">Break</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 59 KiB |
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
142
fusion22/__init__.py
Normal file
|
@ -0,0 +1,142 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'http://data.c3voc.de/fusion22/schedule.xml'
|
||||
|
||||
titlemap = {
|
||||
1234: 'Title',
|
||||
}
|
||||
|
||||
personmap = {
|
||||
1234: 'Name',
|
||||
}
|
||||
|
||||
def bounce(i, min, max, frames):
|
||||
if i == frames - 1:
|
||||
return 0
|
||||
|
||||
if i <= frames / 2:
|
||||
return easeInOutQuad(i, min, max, frames / 2)
|
||||
else:
|
||||
return max - easeInOutQuad(i - frames / 2, min, max, frames / 2)
|
||||
|
||||
|
||||
def introFrames(parameters):
|
||||
# 1 Sekunde Text Fadein
|
||||
frames = 1 * fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
# 4 Sekunden stehen lassen
|
||||
frames = 4 * fps
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
# 3 Sekunde Text Fadeout
|
||||
frames = 1 * fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||
)
|
||||
|
||||
# two final frames
|
||||
for i in range(0, 2):
|
||||
yield (
|
||||
('text', 'style', 'opacity', "%.4f" % 0),
|
||||
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % move),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(p):
|
||||
# 5 Sekunden stehen bleiben
|
||||
frames = 5 * fps
|
||||
for i in range(0, frames):
|
||||
yield []
|
||||
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$ID': 4711,
|
||||
'$TITLE': "Long Long Long title is LONG",
|
||||
'$SUBTITLE': 'Long Long Long Long subtitle is LONGER',
|
||||
'$SPEAKER': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||
}
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
#
|
||||
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 event['room'] not in ('Content'):
|
||||
print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
|
||||
continue
|
||||
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 it into the queue
|
||||
queue.put(Rendertask(
|
||||
infile='intro.svg',
|
||||
outfile=str(event['id']) + ".ts",
|
||||
sequence=introFrames,
|
||||
parameters={
|
||||
'$ID': event['id'],
|
||||
'$TITLE': event['title'] if event['id'] not in titlemap else titlemap[event['id']],
|
||||
'$SUBTITLE': event['subtitle'],
|
||||
'$SPEAKER': event['personnames'] if event['id'] not in personmap else personmap[event['id']]
|
||||
}
|
||||
))
|
||||
|
||||
queue.put(Rendertask(
|
||||
infile='intro_small.svg',
|
||||
outfile=str(event['id']) + "_small.ts",
|
||||
sequence=introFrames,
|
||||
parameters={
|
||||
'$ID': event['id'],
|
||||
'$TITLE': event['title'] if event['id'] not in titlemap else titlemap[event['id']],
|
||||
'$SUBTITLE': event['subtitle'],
|
||||
'$SPEAKER': event['personnames'] if event['id'] not in personmap else personmap[event['id']]
|
||||
}
|
||||
))
|
||||
|
||||
# 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
|
||||
))
|
||||
|
||||
# place the pause-sequence into the queue
|
||||
if not "pause" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile='pause.svg',
|
||||
outfile='pause.ts',
|
||||
sequence=pauseFrames
|
||||
))
|
155
fusion22/artwork/by.svg
Normal file
|
@ -0,0 +1,155 @@
|
|||
<?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://web.resource.org/cc/"
|
||||
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="120"
|
||||
height="42"
|
||||
id="svg2759"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docname="by.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs2761" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#8b8b8b"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="179"
|
||||
inkscape:cy="89.569904"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="120px"
|
||||
height="42px"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-width="1198"
|
||||
inkscape:window-height="624"
|
||||
inkscape:window-x="396"
|
||||
inkscape:window-y="242" />
|
||||
<metadata
|
||||
id="metadata2764">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(0.9937728,0,0,0.9936696,-177.69267,6.25128e-7)"
|
||||
id="g260"
|
||||
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by.png"
|
||||
inkscape:export-xdpi="300.23013"
|
||||
inkscape:export-ydpi="300.23013">
|
||||
<path
|
||||
id="path3817_1_"
|
||||
nodetypes="ccccccc"
|
||||
d="M 181.96579,0.51074 L 296.02975,0.71338 C 297.6235,0.71338 299.04733,0.47705 299.04733,3.89404 L 298.90768,41.46093 L 179.08737,41.46093 L 179.08737,3.75439 C 179.08737,2.06934 179.25046,0.51074 181.96579,0.51074 z"
|
||||
style="fill:#aab2ab" />
|
||||
|
||||
<path
|
||||
d="M 297.29636,0 L 181.06736,0 C 179.82078,0 178.80613,1.01416 178.80613,2.26074 L 178.80613,41.75732 C 178.80613,42.03906 179.03513,42.26757 179.31687,42.26757 L 299.04734,42.26757 C 299.32908,42.26757 299.55808,42.03905 299.55808,41.75732 L 299.55808,2.26074 C 299.55807,1.01416 298.54343,0 297.29636,0 z M 181.06735,1.02148 L 297.29635,1.02148 C 297.98043,1.02148 298.53658,1.57714 298.53658,2.26074 C 298.53658,2.26074 298.53658,18.20898 298.53658,29.71045 L 215.19234,29.71045 C 212.14742,35.21631 206.28121,38.95459 199.54879,38.95459 C 192.81344,38.95459 186.94869,35.21973 183.90524,29.71045 L 179.8276,29.71045 C 179.8276,18.20899 179.8276,2.26074 179.8276,2.26074 C 179.82761,1.57715 180.38376,1.02148 181.06735,1.02148 z"
|
||||
id="path263" />
|
||||
|
||||
<g
|
||||
enable-background="new "
|
||||
id="g265">
|
||||
<path
|
||||
d="M 253.07761,32.95605 C 253.39499,32.95605 253.68503,32.98437 253.94773,33.04003 C 254.20945,33.09569 254.43308,33.18749 254.62058,33.31542 C 254.8071,33.44237 254.95261,33.6123 255.05515,33.82323 C 255.15769,34.03514 255.20945,34.29589 255.20945,34.60741 C 255.20945,34.94335 255.13328,35.22264 254.97996,35.44628 C 254.82762,35.67089 254.60105,35.85351 254.30223,35.99706 C 254.71434,36.11522 255.02196,36.32226 255.22508,36.61815 C 255.4282,36.91404 255.52977,37.27049 255.52977,37.68749 C 255.52977,38.02343 255.46434,38.31444 255.33348,38.56054 C 255.20262,38.80566 255.02586,39.00683 254.80516,39.1621 C 254.58348,39.31835 254.33055,39.43358 254.04735,39.5078 C 253.76317,39.583 253.47215,39.6201 253.17235,39.6201 L 249.936,39.6201 L 249.936,32.95604 L 253.07761,32.95604 L 253.07761,32.95605 z M 252.89011,35.65137 C 253.15183,35.65137 253.36667,35.58887 253.53562,35.46485 C 253.70359,35.34083 253.78757,35.13965 253.78757,34.86036 C 253.78757,34.70509 253.75925,34.57716 253.70359,34.47852 C 253.64695,34.37891 253.57273,34.30176 253.47898,34.24512 C 253.38523,34.18946 253.27781,34.15039 253.15671,34.12891 C 253.03561,34.10743 252.90866,34.09668 252.77878,34.09668 L 251.40476,34.09668 L 251.40476,35.65137 L 252.89011,35.65137 z M 252.97604,38.47949 C 253.11959,38.47949 253.25631,38.46582 253.38717,38.4375 C 253.51803,38.40918 253.63326,38.3623 253.73385,38.29785 C 253.83346,38.23242 253.91256,38.14355 253.97213,38.03125 C 254.0317,37.91992 254.061,37.77637 254.061,37.60254 C 254.061,37.26074 253.96432,37.0166 253.77096,36.87012 C 253.5776,36.72461 253.32174,36.65137 253.00436,36.65137 L 251.40475,36.65137 L 251.40475,38.47949 L 252.97604,38.47949 z"
|
||||
id="path267"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<path
|
||||
d="M 255.78854,32.95605 L 257.43209,32.95605 L 258.99264,35.58789 L 260.54342,32.95605 L 262.17721,32.95605 L 259.70358,37.0625 L 259.70358,39.62012 L 258.23483,39.62012 L 258.23483,37.02539 L 255.78854,32.95605 z"
|
||||
id="path269"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g5908_1_"
|
||||
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||
|
||||
<path
|
||||
id="path5906_1_"
|
||||
cx="296.35416"
|
||||
ry="22.939548"
|
||||
cy="264.3577"
|
||||
type="arc"
|
||||
rx="22.939548"
|
||||
d="M 186.90065,-141.46002 C 186.90623,-132.77923 179.87279,-125.73852 171.19257,-125.73291 C 162.51235,-125.72736 155.47051,-132.76025 155.46547,-141.44098 C 155.46547,-141.44714 155.46547,-141.45331 155.46547,-141.46002 C 155.46043,-150.14081 162.49333,-157.18152 171.17355,-157.18658 C 179.8549,-157.19213 186.89561,-150.15924 186.90065,-141.47845 C 186.90065,-141.4729 186.90065,-141.46619 186.90065,-141.46002 z"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<g
|
||||
id="g5706_1_"
|
||||
transform="translate(-289.6157,99.0653)">
|
||||
<path
|
||||
id="path5708_1_"
|
||||
d="M 473.57574,-253.32751 C 477.06115,-249.8421 478.80413,-245.5736 478.80413,-240.52532 C 478.80413,-235.47594 477.09136,-231.25329 473.66582,-227.85741 C 470.03051,-224.28081 465.734,-222.49309 460.77635,-222.49309 C 455.87858,-222.49309 451.65648,-224.26628 448.11122,-227.81261 C 444.56541,-231.35845 442.79277,-235.59563 442.79277,-240.52532 C 442.79277,-245.45391 444.56541,-249.7213 448.11122,-253.32751 C 451.56642,-256.81402 455.7885,-258.557 460.77635,-258.557 C 465.82465,-258.55701 470.09039,-256.81403 473.57574,-253.32751 z M 450.45776,-250.98267 C 447.51104,-248.00629 446.03823,-244.51978 446.03823,-240.52033 C 446.03823,-236.52198 447.49651,-233.06507 450.41247,-230.14966 C 453.32897,-227.23316 456.80096,-225.77545 460.82952,-225.77545 C 464.85808,-225.77545 468.35967,-227.24768 471.33605,-230.19385 C 474.16198,-232.9303 475.57549,-236.37091 475.57549,-240.52033 C 475.57549,-244.63837 474.13903,-248.13379 471.26781,-251.00501 C 468.39714,-253.87568 464.9179,-255.31159 460.82952,-255.31159 C 456.74112,-255.31158 453.28314,-253.86841 450.45776,-250.98267 z M 458.21225,-242.27948 C 457.76196,-243.26117 457.08795,-243.75232 456.18903,-243.75232 C 454.59986,-243.75232 453.80558,-242.68225 453.80558,-240.54321 C 453.80558,-238.40368 454.59986,-237.33471 456.18903,-237.33471 C 457.23841,-237.33471 457.98795,-237.85546 458.43769,-238.89922 L 460.64045,-237.72625 C 459.59052,-235.86077 458.01536,-234.92779 455.91496,-234.92779 C 454.29506,-234.92779 452.99733,-235.42449 452.0229,-236.4168 C 451.0468,-237.41021 450.56016,-238.77953 450.56016,-240.52532 C 450.56016,-242.24035 451.06245,-243.60186 452.06764,-244.61034 C 453.07283,-245.61888 454.32466,-246.12291 455.82545,-246.12291 C 458.04557,-246.12291 459.63526,-245.24803 460.59626,-243.50005 L 458.21225,-242.27948 z M 468.57562,-242.27948 C 468.12475,-243.26117 467.46417,-243.75232 466.5932,-243.75232 C 464.97217,-243.75232 464.16107,-242.68225 464.16107,-240.54321 C 464.16107,-238.40368 464.97217,-237.33471 466.5932,-237.33471 C 467.64429,-237.33471 468.38037,-237.85546 468.80048,-238.89922 L 471.05249,-237.72625 C 470.00421,-235.86077 468.43127,-234.92779 466.33478,-234.92779 C 464.7171,-234.92779 463.42218,-235.42449 462.44831,-236.4168 C 461.47614,-237.41021 460.98896,-238.77953 460.98896,-240.52532 C 460.98896,-242.24035 461.48341,-243.60186 462.47181,-244.61034 C 463.45966,-245.61888 464.71711,-246.12291 466.24531,-246.12291 C 468.4615,-246.12291 470.04896,-245.24803 471.0066,-243.50005 L 468.57562,-242.27948 z" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g275">
|
||||
<circle
|
||||
cx="255.55124"
|
||||
cy="15.31348"
|
||||
r="10.80664"
|
||||
id="circle277"
|
||||
sodipodi:cx="255.55124"
|
||||
sodipodi:cy="15.31348"
|
||||
sodipodi:rx="10.80664"
|
||||
sodipodi:ry="10.80664"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<g
|
||||
id="g279">
|
||||
<path
|
||||
d="M 258.67819,12.18701 C 258.67819,11.77051 258.3403,11.4331 257.92526,11.4331 L 253.15182,11.4331 C 252.73678,11.4331 252.39889,11.7705 252.39889,12.18701 L 252.39889,16.95996 L 253.72994,16.95996 L 253.72994,22.61182 L 257.34713,22.61182 L 257.34713,16.95996 L 258.67818,16.95996 L 258.67818,12.18701 L 258.67819,12.18701 z"
|
||||
id="path281" />
|
||||
|
||||
<circle
|
||||
cx="255.53854"
|
||||
cy="9.1723604"
|
||||
r="1.63281"
|
||||
id="circle283"
|
||||
sodipodi:cx="255.53854"
|
||||
sodipodi:cy="9.1723604"
|
||||
sodipodi:rx="1.63281"
|
||||
sodipodi:ry="1.63281" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
clip-rule="evenodd"
|
||||
d="M 255.5239,3.40723 C 252.29148,3.40723 249.55515,4.53516 247.31589,6.79102 C 245.01804,9.12452 243.8696,11.88672 243.8696,15.07569 C 243.8696,18.26466 245.01804,21.00733 247.31589,23.30225 C 249.61374,25.59668 252.35007,26.74414 255.5239,26.74414 C 258.73679,26.74414 261.52195,25.58789 263.87742,23.27295 C 266.09715,21.07568 267.2075,18.34326 267.2075,15.07568 C 267.2075,11.8081 266.07762,9.04687 263.8198,6.79101 C 261.56003,4.53516 258.79538,3.40723 255.5239,3.40723 z M 255.55319,5.50684 C 258.20163,5.50684 260.45065,6.44092 262.30026,8.30811 C 264.1694,10.15528 265.10397,12.41114 265.10397,15.07569 C 265.10397,17.75928 264.18893,19.98633 262.35885,21.75587 C 260.43014,23.66212 258.16256,24.61476 255.55319,24.61476 C 252.94284,24.61476 250.69381,23.67189 248.80612,21.78517 C 246.91647,19.89845 245.97311,17.66212 245.97311,15.0757 C 245.97311,12.48879 246.92721,10.23341 248.83541,8.30812 C 250.6655,6.44092 252.90475,5.50684 255.55319,5.50684 z"
|
||||
id="path285"
|
||||
style="fill-rule:evenodd" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
4156
fusion22/artwork/intro.svg
Normal file
After Width: | Height: | Size: 5.5 MiB |
4156
fusion22/artwork/intro_small.svg
Normal file
After Width: | Height: | Size: 5.5 MiB |
158942
fusion22/artwork/outro.svg
Normal file
After Width: | Height: | Size: 11 MiB |
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
108
glt22/__init__.py
Normal file
|
@ -0,0 +1,108 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://pretalx.linuxtage.at/glt22/schedule/export/schedule.xml'
|
||||
|
||||
def introFrames(args):
|
||||
#fade in tux and set other opacities to 0
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('tux', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('persons', 'style', 'opacity', 0),
|
||||
)
|
||||
|
||||
#fade in title and persons
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('title', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('persons', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
#show whole image for 5 seconds
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('title', 'style', 'opacity', 1),
|
||||
('persons', 'style', 'opacity', 1),
|
||||
)
|
||||
|
||||
|
||||
|
||||
def outroFrames(args):
|
||||
#fadein outro graphics
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('tux', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
('cctext', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
('logo', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
)
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('tux', 'style', 'opacity', 1),
|
||||
('cctext', 'style', 'opacity', 1),
|
||||
('logo', 'style', 'opacity', 1),
|
||||
)
|
||||
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$title': "Long Long Long title is LONG",
|
||||
'$speaker': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||
}
|
||||
)
|
||||
|
||||
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 event['room'] not in ('HS i1', 'HS i2', 'HS i7'):
|
||||
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||
continue
|
||||
if event['day'] not in ('2'):
|
||||
print("skipping day %s" % (event['day']))
|
||||
continue
|
||||
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 it into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$title': event['title'],
|
||||
'$persons': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
# 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
|
||||
))
|
||||
|
455
glt22/artwork/intro.svg
Normal file
After Width: | Height: | Size: 56 KiB |
711
glt22/artwork/outro.svg
Normal file
|
@ -0,0 +1,711 @@
|
|||
<?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="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 1920 1080"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||
sodipodi:docname="outro.svg">
|
||||
<title
|
||||
id="title4199">Intro GLT Talk $id</title>
|
||||
<defs
|
||||
id="defs4">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4215">
|
||||
<rect
|
||||
style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4217"
|
||||
width="598.23157"
|
||||
height="820.54736"
|
||||
x="1321.2684"
|
||||
y="111.3658" />
|
||||
</clipPath>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4313">
|
||||
<stop
|
||||
style="stop-color:#ffdf00;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4315" />
|
||||
<stop
|
||||
style="stop-color:#e1ecff;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop4317" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4313"
|
||||
id="linearGradient4159"
|
||||
x1="1157.7411"
|
||||
y1="845.13428"
|
||||
x2="1019.1442"
|
||||
y2="-16.928713"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.111049,0,0,1.7357139,42.487372,-407.41737)" />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4215-3">
|
||||
<rect
|
||||
style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4217-6"
|
||||
width="598.23157"
|
||||
height="820.54736"
|
||||
x="1321.2684"
|
||||
y="111.3658" />
|
||||
</clipPath>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4796"
|
||||
x="-0.038746551"
|
||||
width="1.0774931"
|
||||
y="-0.13289771"
|
||||
height="1.2657954">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="11.131234"
|
||||
id="feGaussianBlur4798" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4960"
|
||||
x="-0.27244336"
|
||||
width="1.5448867"
|
||||
y="-0.10258976"
|
||||
height="1.2051795">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4962" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4964"
|
||||
x="-0.23194713"
|
||||
width="1.4638943"
|
||||
y="-0.10238546"
|
||||
height="1.2047709">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4966" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4968"
|
||||
x="-0.20941914"
|
||||
width="1.4188383"
|
||||
y="-0.10258976"
|
||||
height="1.2051795">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4970" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4972"
|
||||
x="-0.26201419"
|
||||
width="1.5240284"
|
||||
y="-0.10258563"
|
||||
height="1.2051713">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4974" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4976"
|
||||
x="-0.2165181"
|
||||
width="1.4330362"
|
||||
y="-0.10258976"
|
||||
height="1.2051795">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4978" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4980"
|
||||
x="-0.23133016"
|
||||
width="1.4626603"
|
||||
y="-0.10127264"
|
||||
height="1.2025453">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4982" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4984"
|
||||
x="-0.21489924"
|
||||
width="1.4297985"
|
||||
y="-0.10258976"
|
||||
height="1.2051795">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4986" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4988"
|
||||
x="-0.97433105"
|
||||
width="2.9486621"
|
||||
y="-0.10258976"
|
||||
height="1.2051795">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4990" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4992"
|
||||
x="-0.30823353"
|
||||
width="1.6164671"
|
||||
y="-0.10258976"
|
||||
height="1.2051795">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="5.7383836"
|
||||
id="feGaussianBlur4994" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter5630"
|
||||
x="-0.54786137"
|
||||
width="2.0957227"
|
||||
y="-1.1859937"
|
||||
height="3.3719873">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="6.613574"
|
||||
id="feGaussianBlur5632" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter5634"
|
||||
x="-0.53378794"
|
||||
width="2.0675759"
|
||||
y="-0.77324616"
|
||||
height="2.5464923">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="6.613574"
|
||||
id="feGaussianBlur5636" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter5638"
|
||||
x="-0.55945083"
|
||||
width="2.1189017"
|
||||
y="-0.88426742"
|
||||
height="2.7685348">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="6.613574"
|
||||
id="feGaussianBlur5640" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter5642"
|
||||
x="-0.53476919"
|
||||
width="2.0695384"
|
||||
y="-0.86680106"
|
||||
height="2.7336021">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="6.613574"
|
||||
id="feGaussianBlur5644" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter5646"
|
||||
x="-0.54786137"
|
||||
width="2.0957227"
|
||||
y="-1.1859945"
|
||||
height="3.3719889">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="6.613574"
|
||||
id="feGaussianBlur5648" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter5650"
|
||||
x="-0.40237127"
|
||||
width="1.8047425"
|
||||
y="-0.64061023"
|
||||
height="2.2812205">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="6.613574"
|
||||
id="feGaussianBlur5652" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.52480581"
|
||||
inkscape:cx="153.02433"
|
||||
inkscape:cy="327.94601"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1863"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="57"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<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>Intro GLT Talk $id</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>meisterluk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:identifier>$id</dc:identifier>
|
||||
<dc:language>$language</dc:language>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>CC-BY AT 4.0</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,27.63784)">
|
||||
<rect
|
||||
style="opacity:1;fill:#1e1e1e;fill-opacity:1;stroke:none;stroke-width:0.99601775;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.99601775, 2.98805323;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4332"
|
||||
width="1920"
|
||||
height="1080"
|
||||
x="0"
|
||||
y="-27.63784" />
|
||||
<g
|
||||
transform="matrix(0.83983181,0,0,0.83983181,767.53662,66.962691)"
|
||||
style="display:inline"
|
||||
id="tux">
|
||||
<path
|
||||
id="path5578"
|
||||
style="fill:#ffffff;stroke:#ffffff;stroke-width:32;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 302.39927,158.25906 c 4.95972,27.22874 1.0154,56.17731 12.50548,82.12068 12.59936,23.52316 26.6976,46.41063 44.72227,66.66421 18.80391,23.2771 30.30057,51.16114 34.63712,80.04146 3.47677,15.36121 5.54615,34.0451 -7.98699,45.84849 4.09204,7.00434 16.02765,8.84112 14.42729,17.32327 -0.41492,17.07705 16.61211,27.42692 30.17191,35.50021 7.89896,3.73334 12.48974,14.81843 4.0584,20.44735 -13.07656,10.07265 -28.28654,16.91132 -43.49079,23.55278 -14.42168,6.89378 -25.88389,17.63719 -37.27092,28.16718 -13.11299,10.23041 -32.50543,9.0026 -47.64415,3.95549 -8.57147,-3.09835 -11.09801,-11.99098 -16.7305,-17.72675 -31.55954,-2.45964 -72.48996,-4.3004 -100.05912,0.39664 -15.33226,2.0838 -23.87824,16.07462 -37.54869,21.0067 -16.41847,2.61149 -31.4464,-7.03163 -46.48659,-11.75918 -25.212812,-9.97879 -53.01561,-11.32554 -78.712766,-19.6238 -8.948525,-2.81699 -9.394291,-12.89251 -5.401021,-19.61121 5.498182,-10.94002 5.315258,-23.5007 0.521375,-34.61977 -2.867591,-8.78669 -0.938595,-23.05432 11.278204,-23.61968 11.239188,-0.26876 26.6409,2.21336 32.639358,-9.47048 3.083812,-4.48378 2.938329,-11.16296 7.389143,-14.5755 7.395926,-1.93238 2.729126,-14.92366 2.413592,-22.80524 -0.674048,-16.83673 12.886852,-29.82931 18.52497,-44.98683 9.515295,-19.95436 14.430415,-42.30263 30.252535,-59.09709 12.15921,-14.84682 23.07189,-30.60364 34.03076,-46.20927 3.34849,-10.50708 -0.47655,-21.85396 0.0335,-32.70971 -0.79498,-16.30099 -1.42519,-33.0826 -2.02144,-47.75136 l 2.95966,-17.54244 c -16.6897,-7.27789 -34.24246,-33.56744 -16.44443,-47.03439 14.09142,-3.16724 20.77367,-4.84393 23.76492,-20.642574 3.99544,-21.10253 13.82487,-43.1248 32.08351,-57.09464 18.07979,-9.5916 20.26033,28.01404 32.68472,4.33361 15.25333,-21.43753 39.38222,-6.61056 44.05893,14.89553 -10.87707,-29.023396 8.70854,-14.810027 6.69365,-36.934081 32.14094,-3.075196 68.01,6.11296 88.88342,30.52034 -20.17114,16.186215 -39.78936,33.59352 -55.32554,53.818925 -11.27302,10.09573 0.98494,15.06509 0.98494,15.06509 7.73205,16.87569 -4.16878,26.43789 -14.59671,40.15604 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccscccccccscccccccc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5580"
|
||||
d="m 190.64953,200.73493 c 21.1249,-9.68557 44.52455,2.23507 64.79428,8.53199 11.09401,2.35619 19.02666,7.39285 18.75785,18.69403 0.12067,14.13474 -28.98641,17.28417 -38.96944,28.16856 -17.73072,12.14113 -43.33213,10.63659 -57.96702,-5.22547 -19.47628,-10.91984 -13.79198,-34.68293 4.60816,-43.5826 2.88288,-2.24519 5.81977,-4.42807 8.77617,-6.5865"
|
||||
style="display:inline;fill:#f8c200;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 201.03939,203.38446 c -3.58171,-1.49763 -12.58395,1.40768 -7.94981,5.61535 3.46697,-0.18093 5.10755,-5.15101 7.94981,-5.61535 z"
|
||||
id="path5582"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 215.94525,203.9193 c 2.08632,4.09932 14.28325,3.45115 6.9563,-0.93603 -1.66897,0.47167 -6.71314,-0.88117 -6.9563,0.93603 z"
|
||||
id="path5584"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 169.0979,230.25872 c 9.53709,2.48878 11.38486,14.93391 22.24539,15.03042 21.61843,1.60545 42.1343,-6.95013 61.7959,-14.22809 1.4348,-3.5524 8.35574,-7.95405 8.94367,-1.6045 -5.91924,7.19895 -17.39371,7.67049 -25.85587,11.36253 -13.15975,5.7875 -27.03515,12.36695 -42.08843,9.78535 -2.60893,-0.13323 -14.5588,-2.29892 -8.24728,3.1651 7.03153,7.39136 18.01397,10.58315 28.06661,7.10743 14.12696,-4.44006 27.45763,-11.10186 40.72346,-17.13058 8.36013,-0.51548 2.53243,7.95095 -2.3938,8.57356 -15.08193,5.38056 -27.85293,15.17646 -40.03327,24.86877 -9.09713,4.49169 -20.6032,1.87351 -26.12102,-6.41779 -6.05872,-5.12938 -7.79844,-14.55251 -15.47364,-17.64888 -1.79367,-7.96162 -6.986,-20.85113 -1.56172,-22.86332 z"
|
||||
id="path5586"
|
||||
sodipodi:nodetypes="cccccccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccscccccscccccccccccccc"
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 511.40907,651.8895 c -3.81532,-4.78934 -10.13414,-7.11259 -15.33744,-9.59965 2.30202,-12.52248 7.01262,-25.1968 5.04847,-38.21511 -2.16137,-21.87 -14.32051,-41.98289 -28.7453,-58.79093 -2.62421,-2.73048 -8.73719,-8.77742 -11.65136,-6.88161 16.30392,21.65596 32.70499,45.24438 34.57979,72.52686 0.46573,11.74421 0.49787,27.39 -11.7241,34.03495 -5.99389,1.66394 -16.81296,2.78663 -16.60946,-5.74921 -0.34464,-22.43388 1.25476,-46.35207 -11.30802,-66.49236 -7.14168,-13.26959 -16.17872,-25.8642 -18.64585,-40.87166 -3.55964,-12.66517 -10.26702,-24.16753 -18.88096,-34.36185 -7.3109,-8.72912 -4.60929,-19.97448 -1.07232,-29.52283 3.52499,-8.08996 -5.22804,-13.36139 -12.58437,-14.41397 -9.89629,-3.24322 -25.40292,-5.92182 -26.09246,-18.10164 -1.38142,-8.83584 5.53151,-20.02158 16.2918,-17.11791 10.57919,0.79152 14.70046,12.21226 10.48644,20.40447 -3.95905,4.89468 0.27693,10.14486 6.2866,9.46086 7.8762,-2.04071 6.63047,-12.50202 6.11653,-18.63027 -2.20963,-10.70274 -4.98628,-25.62682 -18.88095,-27.543 -8.96236,-2.3978 -20.12449,-1.44896 -24.73445,7.34389 -6.36375,8.62749 -6.45662,19.61884 -5.21939,29.55824 -6.05912,-0.78781 -13.09034,-2.58248 -19.73284,-1.73815 -4.83073,-2.75032 -0.86227,-9.95548 -2.83908,-14.43988 -0.23034,-9.68585 -8.05088,-22.08609 -19.965,-18.56056 -14.68354,4.59163 -14.1766,21.98042 -11.65851,33.69818 1.20292,4.1656 2.40446,13.11421 8.62568,11.87048 5.49701,-4.21628 3.43643,-7.56077 -1.84549,-10.16128 -4.81923,-7.05191 -5.70263,-20.871 6.10434,-21.79373 8.8868,-0.0196 13.2223,10.89843 12.39516,18.01787 -1.23073,7.68368 -11.1149,9.62965 -15.60772,15.41161 -6.15392,3.52876 -14.73413,11.07513 -9.42209,18.17991 2.33156,8.90786 4.84784,17.94697 1.56172,22.86332 -3.05798,13.5649 -11.40017,25.50586 -17.31921,38.10568 -3.79561,8.87603 -0.36666,18.54331 -2.56326,27.45343 -12.32734,16.53359 -21.2438,35.58022 -25.64701,55.38046 -2.407,12.51354 -2.67412,25.25507 -2.59557,37.90035 -1.7857,6.93255 -9.541,-0.40385 -12.06678,-3.34265 -11.19452,-11.76883 -6.38251,-28.69017 -4.11671,-42.38406 -5.64115,3.30146 -6.16939,12.12181 -7.17578,18.17347 -2.02742,16.26902 6.61987,32.00041 20.11585,41.85477 16.96278,15.38569 35.75518,28.82623 53.81464,42.95462 8.16682,5.91339 10.25021,18.87535 0.50626,24.43148 -4.06382,2.71521 -9.48369,4.31218 -8.83669,7.32459 0.2421,1.12723 1.33369,2.45265 3.6637,4.10901 l -11.72975,-9.53528 c -1.62155,-2.39931 -3.29406,-4.72669 -4.94523,-6.96896 -16.40404,-22.13097 -30.3375,-46.58884 -51.80142,-64.85118 -6.28565,-5.58611 -15.33608,-4.94951 -22.28782,-0.93605 -6.72477,0.16472 -4.54697,-11.28231 -4.6406,-13.46061 -0.73683,-17.14153 13.12175,-30.37303 18.86265,-45.80686 9.68875,-20.31807 14.69346,-43.07372 30.80398,-60.1743 12.38084,-15.11746 23.49244,-31.16149 34.65109,-47.05157 3.40953,-10.69862 -0.48525,-22.25233 0.0341,-33.30596 -0.81189,-16.20257 -1.39425,-32.4135 -2.05831,-48.62178 h 2e-5 c -0.56641,-24.19405 2.77653,-52.95259 25.77385,-67.8525 21.59677,-12.67894 49.32924,-12.32766 73.24689,-6.41186 25.82378,6.60253 46.98823,27.93022 49.38305,53.43286 5.05013,27.72506 1.0339,57.2013 12.73343,83.61757 12.82902,23.95195 27.18424,47.25661 45.53748,67.87937 19.14667,23.70141 30.8529,52.09373 35.26849,81.50047 3.54015,15.64122 5.64725,34.66568 -8.13258,46.68421 z"
|
||||
id="path5588"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 326.56973,781.34152 c 13.02664,-6.78672 10.0856,-25.268 -0.80527,-32.54657 -2.9699,-6.336 7.89961,-2.5876 9.55567,0.69945 13.12158,10.92111 32.22597,6.97917 48.12175,6.02246 17.60208,-1.3639 34.9205,-9.5678 44.10169,-24.17183 2.27383,-3.69641 9.71717,-7.52753 10.73933,-0.98391 2.73802,15.13733 -10.47328,29.82698 -4.98608,44.82643 2.96954,2.67573 4.74315,1.94565 5.67297,0.0729 2.9245,4.91899 0.79588,8.95917 0.11902,13.25183 -0.72831,-0.95628 -1.66576,-2.04363 -2.49901,-2.89216 -10.38716,-2.80837 -21.8866,-1.29462 -32.719,-1.95363 -23.02775,0.67509 -46.41921,-1.75934 -69.16402,2.3575 -4.30191,0.58468 -8.07914,2.08994 -11.58544,4.06914 z"
|
||||
id="path5590"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#ffffff;stroke:none"
|
||||
d="m 446.051,494.82468 c -2.02429,-0.36568 -9.25652,-7.47605 -10.9217,-10.73764 -1.63059,-3.19389 -1.84902,-7.39086 -0.41209,-7.91766 0.61922,-0.227 1.87261,0.48668 3.51511,2.00148 1.4041,1.29485 4.65893,3.27294 7.23304,4.39579 5.70256,2.48751 6.94106,3.98717 6.35833,7.69929 -0.28474,1.81431 -0.89185,2.97493 -1.98602,3.79716 -0.86667,0.65129 -1.74502,1.14836 -1.9519,1.10462 -0.20681,-0.0438 -1.03247,-0.1981 -1.83477,-0.34304 z"
|
||||
id="path5592" />
|
||||
<path
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#ffffff;stroke:none"
|
||||
d="m 261.36105,572.40414 c 0,-0.60552 1.23622,-2.53546 2.74712,-4.28876 1.51094,-1.75332 2.91993,-4.08304 3.13114,-5.17721 0.47513,-2.4616 1.83159,-4.61745 2.90532,-4.61745 1.26985,0 2.83161,1.99025 2.83161,3.60844 0,1.65786 -2.34634,4.98157 -6.29802,8.92149 -2.82271,2.8144 -5.31717,3.54316 -5.31717,1.55349 z"
|
||||
id="path5594" />
|
||||
<path
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 392.15582,423.95204 c 5.89646,0.85476 5.43298,8.60913 8.3758,11.09749 5.43472,-3.01937 0.67143,-12.60031 -5.12545,-13.71153 -2.44009,-1.89797 -8.17716,1.40675 -3.25035,2.61404 z"
|
||||
id="path5596" />
|
||||
<path
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 329.69284,422.61503 c -5.35938,2.55745 3.54968,6.4248 2.69712,10.56252 0.96421,8.11847 5.73813,-1.36523 2.09524,-4.76233 -0.70141,-1.84312 -2.07474,-6.71607 -4.79236,-5.80019 z"
|
||||
id="path5598" />
|
||||
<path
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#ffffff;stroke:none"
|
||||
d="m 399.13738,432.31981 c -2.58114,-6.06398 -3.30178,-7.03323 -6.19548,-8.33266 -2.67498,-1.20124 -2.78093,-1.33265 -1.68874,-2.0956 1.60706,-1.12259 3.13158,-1.02048 5.74946,0.38514 4.12866,2.21675 6.72843,7.91442 5.01049,10.98095 -1.01432,1.81065 -1.81728,1.54878 -2.87567,-0.93783 z"
|
||||
id="path5600" />
|
||||
<path
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#ffffff;stroke:none"
|
||||
d="m 332.59333,433.0656 c -0.33934,-1.47634 -1.53458,-3.97448 -2.65605,-5.55142 -1.80813,-2.54245 -1.89302,-3.00684 -0.74861,-4.10011 1.13262,-1.082 1.43038,-1.08489 2.43298,-0.0235 2.19051,2.31894 4.27234,8.0774 3.70328,10.24338 -0.7639,2.90767 -1.99139,2.65233 -2.7316,-0.56831 z"
|
||||
id="path5602" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5604"
|
||||
d="m 107.47335,426.57322 c 16.97018,16.80535 38.91986,44.13651 51.95284,65.39796 11.23055,18.32105 23.73527,35.55008 12.88255,53.92275 -2.43239,22.90516 -30.47675,14.42756 -46.28163,11.31035 -29.58883,-7.78398 -59.32627,-15.1352 -89.01179,-22.58147 -4.60691,-3.17663 -17.9842,-2.25449 -15.82797,-8.59183 2.74572,-9.46094 7.49606,-18.93996 9.03988,-28.39006 -2.94161,-11.05345 -10.69462,-21.57622 -8.88773,-33.20719 8.81448,-10.20366 26.32568,0.0121 37.75431,-7.6135 8.55049,-0.5412 6.7685,-9.76499 9.25162,-15.40471 2.23193,-9.54402 1.939408,-16.91009 12.368675,-21.67403 8.491568,-3.87883 21.041475,0.60647 26.759245,6.83173 z"
|
||||
style="display:inline;fill:#f8c200;fill-rule:evenodd;stroke:none"
|
||||
sodipodi:nodetypes="csccccccccsc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 177.43252,550.94063 c -9.21814,5.20334 -16.5637,13.68233 -26.6477,17.32047 -16.71775,2.65909 -32.0196,-7.1598 -47.33396,-11.97351 -25.67239,-10.1607 -53.98199,-11.532 -80.14755,-19.9815 -9.11164,-2.86836 -9.56553,-13.12754 -5.49947,-19.96869 5.59839,-11.13944 5.41215,-23.9291 0.53088,-35.25084 -2.91987,-8.94684 -0.95571,-23.47456 11.48378,-24.05022 11.44406,-0.27366 27.12651,2.25372 33.23432,-9.64311 3.14003,-4.56551 2.99189,-11.36642 7.52382,-14.84117 3.84319,7.36363 -0.68436,16.75103 -4.40071,23.66571 -8.80585,10.73778 -24.35547,4.77617 -36.31344,5.303 -9.6553,1.11194 -6.50756,12.04903 -3.00832,17.42406 7.12515,11.88369 9.35132,28.10752 -1.42127,38.77655 -5.76834,4.4693 -3.60748,12.33492 4.15886,12.60579 35.4094,8.49526 70.89049,16.90418 106.51262,24.47934 12.12974,2.44969 26.5556,-2.21826 30.28201,-14.32198 4.96342,-11.2195 4.50071,-24.9346 -0.65234,-36.29023 -1.15911,-2.5543 -4.279,-8.03783 -6.63133,-12.86335 l 9.33634,13.75224 c 7.76099,10.51045 22.17757,28.75139 14.03745,41.7217 -1.39471,2.22231 -3.07735,3.11656 -5.04399,4.13574 z"
|
||||
id="path5606"
|
||||
sodipodi:nodetypes="ccccccccccccccccsccsc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 403.42269,445.86199 c -0.0791,7.6043 -0.15834,15.20863 -0.23752,22.81295 10.15616,6.92292 21.45557,12.89719 30.90745,20.4045 9.50928,9.90014 3.576,18.3032 -8.86782,22.98162 -15.88865,6.63518 -30.67103,15.01808 -44.24564,25.23572 -9.35623,5.95675 -18.12228,13.41929 -27.83705,18.46124 -12.05285,0.86765 -24.10571,1.73532 -36.15857,2.60298 -5.63667,-9.79681 -12.91585,-19.20212 -17.53297,-29.24196 1.17409,-31.33085 2.34817,-62.66169 3.52227,-93.99254 7.63652,-4.02219 13.91036,-12.46791 23.55796,-9.96174 20.30327,-0.95476 38.88471,9.25625 59.05053,9.16864 7.13716,1.08705 16.82329,3.47534 17.84136,11.52857 z"
|
||||
style="display:inline;fill:#f8c200;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 293.11001,536.27895 c 1.26709,-2.55201 1.28471,-7.5434 1.80927,-10.1122 4.87353,-23.27603 4.1822,-47.14156 4.44316,-70.74223 -0.27022,-9.99394 -2.93767,-25.00712 9.5676,-29.42379 4.86683,-0.58759 13.63422,-3.26946 16.04178,2.00538 -3.7037,5.45766 -14.24357,0.39989 -17.23497,7.70243 -5.17962,10.87427 -3.61455,23.68757 -1.84403,35.1868 4.20685,15.26633 5.23332,31.1349 1.70421,46.62065 -2.5576,11.22504 -2.02896,24.89298 9.14163,31.94692 13.38949,9.79666 32.67077,4.22297 43.39965,-6.5753 13.27213,-10.55679 28.06845,-19.76448 45.25684,-23.37087 12.01199,-4.0197 27.47823,-7.8082 32.15208,-20.38031 -0.0651,-9.88956 -13.51058,-11.96057 -21.52644,-13.7957 -15.29895,-3.74589 -19.26448,-21.4007 -18.15172,-34.31073 -0.27716,-7.75082 7.5891,-8.80695 5.95958,-0.17019 -0.42248,17.38833 16.91492,27.92686 30.72188,36.14731 8.04297,3.8014 12.71743,15.08855 4.1324,20.82005 -13.31493,10.25627 -28.80215,17.21959 -44.28357,23.98214 -14.68454,7.01943 -26.35569,17.95867 -37.9503,28.68059 -13.35202,10.4169 -33.09793,9.16671 -48.51262,4.02759 -7.45967,-2.69646 -10.42284,-9.70298 -14.70741,-15.32867"
|
||||
id="path5610" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;fill:#000000;fill-rule:nonzero;stroke:none"
|
||||
d="m 389.13838,433.22076 c -12.16955,11.55576 -26.89029,26.89709 -45.99538,23.79918 -14.82985,-4.78899 -24.76624,-20.97397 -22.85602,-35.43151 3.46121,-12.90886 21.15219,-13.92849 32.55537,-11.47442 3.25291,-0.0697 14.44936,7.93863 12.8779,2.62299 10.58873,0.64418 18.90024,6.34883 23.41813,20.48376 z"
|
||||
id="path5612"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccssccsc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5614"
|
||||
d="m 289.88849,103.24784 c 24.9636,-0.49799 36.64782,21.81701 21.99644,42.53264 -12.79239,20.09626 -40.6322,20.42579 -62.60862,23.36844 -29.88638,1.73177 -61.55246,3.27129 -89.66445,-7.97371 -16.6897,-7.27789 -37.15611,-38.71843 -16.44443,-47.03439 21.89678,-8.79179 20.77367,-4.84393 23.76492,-20.642574 3.99544,-21.10253 13.82487,-43.1248 32.08351,-57.09464 18.07979,-9.5916 20.26033,28.01404 32.68472,4.33361 15.25333,-21.43753 39.38222,-6.61056 44.05893,14.89553 3.52927,16.22952 9.92567,31.62192 14.12898,47.615094 z"
|
||||
style="display:inline;fill:#006c34;fill-rule:evenodd;stroke:#000000;stroke-width:6.57600021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5616"
|
||||
d="m 139.46118,117.14937 c 33.62867,45.49425 159.89149,33.56521 178.34525,2.84522"
|
||||
style="display:inline;fill:none;stroke:#000000;stroke-width:6.57633829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5618"
|
||||
d="m 159.54841,106.89551 c 37.36717,10.26274 79.3151,17.18779 116.77335,3.58875 9.47785,-3.23766 16.34199,-14.762433 16.75462,4.34473 0.24653,11.41565 8.53529,19.30305 1.69723,22.65883 -40.44952,15.93698 -101.9237,15.01864 -136.25135,-1.80879 -5.15636,-6.86691 0.7629,-20.13781 1.02615,-28.78352 z"
|
||||
style="display:inline;fill:#000000;fill-rule:evenodd;stroke:none" />
|
||||
<g
|
||||
transform="translate(-145.68882,-239.1525)"
|
||||
style="display:inline"
|
||||
id="g5620">
|
||||
<path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:6.57633829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 517.02542,288.78824 c -28.76116,23.07925 -56.39823,48.64105 -72.6807,81.31492 -18.78146,-0.49478 -11.03643,-18.05637 -11.64245,-30.61129 0.69491,-27.13576 -0.96154,-54.29894 -4.56026,-81.22397 32.14094,-3.0752 68.01,6.11296 88.88341,30.52034 z"
|
||||
id="path5622"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.57633829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 430.45667,278.97813 c 24.11568,4.78447 47.03876,11.62624 68.3531,23.44545 -19.27943,17.39006 -32.80723,34.21969 -32.80723,34.21969 -12.89435,-11.14801 -32.50544,-13.91412 -32.50544,-13.91412 0,0 -2.30645,-33.34508 -3.04043,-43.75102 z"
|
||||
id="path5624"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="959.36597"
|
||||
y="677.32166"
|
||||
id="cctext"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan5631"
|
||||
x="959.36597"
|
||||
y="677.32166"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Bold';fill:#ffffff;fill-opacity:1;text-anchor:middle;text-align:center;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal">Content released under CC-BY AT 3.0</tspan></text>
|
||||
<g
|
||||
id="logo"
|
||||
transform="translate(209.24617,40)">
|
||||
<rect
|
||||
style="display:inline;opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:14.74640846;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4796)"
|
||||
id="rect5522"
|
||||
width="689.47974"
|
||||
height="201.01898"
|
||||
x="406.01398"
|
||||
y="687.32812"
|
||||
inkscape:export-filename="/home/flo/Documents/projects/linuxtage/gltgit/glt12/grafiken/shirts/linuxtage2012-hinten_10jahre_v2.png"
|
||||
inkscape:export-xdpi="80.963211"
|
||||
inkscape:export-ydpi="80.963211" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
d="M 529.0372,834.41418 H 498.25177 V 721.50906 H 484.3564 v 134.24459 h 44.6808 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4992)"
|
||||
id="path5524"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
d="M 558.84478,855.75365 V 721.50906 h -14.13495 v 134.24459 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4988)"
|
||||
id="path5526"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
d="m 591.61606,855.75365 v -110.5772 h 1.67703 l 25.2752,110.5772 h 23.11902 V 721.50906 h -14.13495 v 110.57719 h -1.67703 L 601.19908,721.50906 H 577.6009 v 134.24459 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4984)"
|
||||
id="path5528"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsssccsscc"
|
||||
d="m 674.18158,721.50906 h -14.01516 v 90.98369 c 0,31.81516 9.10389,45.00685 29.70735,45.00685 20.84303,0 29.82713,-13.19169 29.82713,-45.00685 v -90.98369 h -14.01516 v 90.98369 c 0,16.87755 -5.03109,23.2794 -15.81197,23.2794 -10.6611,0 -15.69219,-6.20786 -15.69219,-23.2794 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4980)"
|
||||
id="path5530"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
d="m 731.50374,721.50906 23.11902,67.70427 -23.11902,66.54032 h 15.69218 l 16.17133,-50.24473 16.05155,50.24473 h 15.69219 l -22.75966,-66.54032 22.75966,-67.70427 H 779.4188 l -16.05155,51.2147 -16.17133,-51.2147 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4976)"
|
||||
id="path5532"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4972)"
|
||||
d="m 809.81806,721.50709 -7.375,21.9375 h 17.84375 v 112.3125 h 13.875 v -112.3125 h 20.84375 v -21.9375 z"
|
||||
id="path5534"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
d="m 873.50641,855.75365 4.07278,-26.77132 h 28.86883 l 4.55193,26.77132 h 14.13494 L 905.6095,721.50906 h -26.47307 l -19.76497,134.24459 z m 20.96284,-114.26311 9.34344,66.34632 H 880.4541 l 9.7028,-66.34632 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4968)"
|
||||
id="path5536"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 966.35098,799.76297 h 13.34345 v 35.42719 c -0.11979,0 -7.06748,1.35797 -11.73919,1.35797 -15.33281,0 -19.04624,-13.96767 -19.04624,-48.11078 0,-35.11307 4.55193,-47.72279 19.40559,-47.72279 9.94238,0 25.38098,0.0342 25.38098,0.0342 l -0.0283,-19.33797 c 0,0 -15.76972,-0.0356 -27.38911,-0.0356 -23.47837,0 -31.86353,20.50347 -31.86353,67.06223 0,44.23084 7.66644,67.45024 32.34268,67.45024 9.46321,0 26.83243,-0.24407 26.83243,-0.24407 l 0.20101,-76.79701 h -27.23881"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4964)"
|
||||
id="path5538"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccsssccsssccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
d="m 1060.7439,855.75365 v -20.95147 h -36.655 v -35.50111 h 29.4677 v -20.36948 h -29.4677 v -36.47106 h 36.655 v -20.95147 h -50.5504 v 134.24459 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';display:inline;opacity:0.4;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter4960)"
|
||||
id="path5540"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(0,-80)"
|
||||
id="g5654">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5544"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;filter:url(#filter5650)"
|
||||
d="m -609.9432,74.185678 h 4.8178 v 16.092469 c -0.39737,0.132449 -0.97683,0.281453 -1.73838,0.447013 -0.72849,0.165561 -1.58941,0.331121 -2.58274,0.496681 -0.96028,0.165561 -2.01986,0.298009 -3.17876,0.397345 -1.15894,0.132448 -2.33442,0.198672 -3.52644,0.198673 -2.41719,-10e-7 -4.61915,-0.397345 -6.60586,-1.192035 -1.98673,-0.794688 -3.692,-1.95361 -5.11581,-3.476768 -1.42383,-1.52315 -2.53308,-3.39398 -3.32776,-5.612497 -0.76159,-2.218497 -1.14237,-4.768124 -1.14237,-7.648889 0,-2.880731 0.43045,-5.430358 1.29137,-7.64889 0.89402,-2.251594 2.08605,-4.13898 3.5761,-5.662165 1.49004,-1.523123 3.22842,-2.682045 5.21516,-3.476768 2.01982,-0.794655 4.1721,-1.191999 6.45685,-1.192034 1.55625,3.5e-5 2.9304,0.09937 4.12245,0.298008 1.22513,0.198707 2.26816,0.430492 3.12909,0.695354 0.86089,0.26493 1.55624,0.529827 2.08607,0.79469 0.56287,0.264929 0.94366,0.463602 1.14236,0.596017 l -1.53971,4.023117 c -0.96028,-0.6291 -2.23509,-1.142336 -3.82444,-1.539711 -1.58941,-0.430426 -3.2119,-0.645655 -4.86748,-0.645686 -1.75496,3.1e-5 -3.36089,0.314596 -4.81781,0.943694 -1.42383,0.629159 -2.64897,1.53974 -3.67544,2.731747 -0.99337,1.192061 -1.7715,2.64899 -2.3344,4.370794 -0.56291,1.688737 -0.84436,3.592679 -0.84436,5.711833 0,2.052964 0.23178,3.923794 0.69536,5.612497 0.49667,1.688725 1.22513,3.145655 2.18539,4.370794 0.99336,1.19204 2.20194,2.119178 3.62578,2.781414 1.45691,0.662245 3.16218,0.993366 5.11581,0.993362 1.39069,4e-6 2.56617,-0.06622 3.52644,-0.198672 0.99334,-0.165557 1.70525,-0.314561 2.13573,-0.447013 V 74.185678"
|
||||
transform="matrix(0,-0.95410843,1.0480989,0,375.75386,335.47542)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5546"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;filter:url(#filter5646)"
|
||||
d="m -588.14976,64.748737 c 0.39733,2.6e-5 0.84434,0.03314 1.34104,0.09934 0.52977,0.03314 1.04301,0.09936 1.53971,0.198672 0.49666,0.06625 0.94367,0.149031 1.34104,0.248341 0.43043,0.06625 0.745,0.132474 0.94369,0.198673 l -0.79469,4.023117 c -0.36425,-0.132427 -0.97682,-0.281431 -1.83772,-0.447013 -0.82782,-0.198651 -1.90396,-0.297987 -3.22843,-0.298009 -0.86092,2.2e-5 -1.72184,0.09936 -2.58274,0.298009 -0.82781,0.165582 -1.37416,0.281474 -1.63905,0.347676 v 21.704966 h -4.61913 v -24.73472 c 1.09269,-0.39732 2.45029,-0.761553 4.07278,-1.092699 1.62249,-0.364207 3.44365,-0.546323 5.4635,-0.546349"
|
||||
transform="matrix(0,-0.95410843,1.0480989,0,375.75386,335.47542)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5548"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;filter:url(#filter5642)"
|
||||
d="m -569.54285,87.794742 c 1.09269,3e-6 2.05294,-0.01655 2.88075,-0.04967 0.8609,-0.06622 1.57281,-0.165556 2.13573,-0.298008 v -7.698558 c -0.33114,-0.165549 -0.87748,-0.297997 -1.63904,-0.397345 -0.72849,-0.132436 -1.62251,-0.19866 -2.68208,-0.198672 -0.69537,1.2e-5 -1.44039,0.04968 -2.23507,0.149004 -0.76159,0.09935 -1.4735,0.314576 -2.13573,0.645686 -0.62913,0.298019 -1.15893,0.728476 -1.58938,1.291371 -0.43046,0.529802 -0.64569,1.241711 -0.64568,2.135728 -10e-6,1.65561 0.52978,2.814532 1.58938,3.476768 1.05957,0.629133 2.49995,0.943698 4.32112,0.943695 M -569.94019,64.6494 c 1.85426,2.6e-5 3.41053,0.248366 4.6688,0.745021 1.29135,0.463595 2.31783,1.142391 3.07942,2.036393 0.79467,0.860937 1.35758,1.903966 1.68872,3.129091 0.3311,1.192054 0.49666,2.516536 0.49668,3.973449 v 16.142137 c -0.39737,0.06622 -0.96027,0.165561 -1.68871,0.298009 -0.69538,0.09934 -1.49007,0.198672 -2.38407,0.298009 -0.89405,0.09934 -1.87085,0.182116 -2.93042,0.24834 -1.02649,0.09934 -2.05296,0.149004 -3.07943,0.149004 -1.45694,0 -2.79798,-0.149004 -4.02311,-0.447013 -1.22516,-0.298008 -2.28474,-0.761577 -3.17876,-1.390707 -0.89403,-0.662239 -1.58939,-1.523152 -2.08606,-2.582742 -0.49669,-1.059581 -0.74503,-2.334395 -0.74502,-3.824444 -10e-6,-1.423811 0.28145,-2.648956 0.84435,-3.675441 0.59602,-1.026462 1.39071,-1.854263 2.38407,-2.483406 0.99336,-0.629114 2.15228,-1.092683 3.47677,-1.390707 1.32447,-0.297993 2.71518,-0.446997 4.17212,-0.447013 0.46356,1.6e-5 0.94368,0.03313 1.44038,0.09934 0.49666,0.03313 0.96023,0.09935 1.3907,0.198673 0.46356,0.06624 0.8609,0.132464 1.19204,0.198672 0.3311,0.06624 0.56289,0.115908 0.69535,0.149005 v -1.291371 c -10e-6,-0.761561 -0.0828,-1.506582 -0.24834,-2.235065 -0.16558,-0.761559 -0.46358,-1.4238 -0.89402,-1.986725 -0.43048,-0.595996 -1.02649,-1.059565 -1.78806,-1.390707 -0.72848,-0.364211 -1.68872,-0.546327 -2.88075,-0.546349 -1.52316,2.2e-5 -2.8642,0.115914 -4.02311,0.347676 -1.12582,0.198695 -1.97018,0.413923 -2.53308,0.645686 l -0.54635,-3.824445 c 0.59602,-0.264871 1.58938,-0.513211 2.98009,-0.745022 1.3907,-0.26487 2.8973,-0.397318 4.5198,-0.397344"
|
||||
transform="matrix(0,-0.95410843,1.0480989,0,375.75386,335.47542)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5550"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;filter:url(#filter5638)"
|
||||
d="m -535.05377,68.771854 c -0.69537,0.761599 -1.62251,1.837741 -2.78141,3.228427 -1.12583,1.390725 -2.35098,2.930435 -3.67544,4.619135 -1.29139,1.688729 -2.59931,3.460223 -3.92379,5.314488 -1.29138,1.854284 -2.43374,3.625778 -3.4271,5.314488 h 14.20509 v 3.874113 h -19.71825 v -3.079423 c 0.79469,-1.456927 1.7715,-3.062861 2.93042,-4.817807 1.15892,-1.75493 2.36751,-3.493312 3.62577,-5.215152 1.29137,-1.754925 2.53307,-3.393971 3.72511,-4.917143 1.22514,-1.556248 2.28472,-2.864174 3.17876,-3.923781 h -12.7647 v -3.874113 h 18.62554 v 3.476768"
|
||||
transform="matrix(0,-0.95410843,1.0480989,0,375.75386,335.47542)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5552"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;filter:url(#filter5634)"
|
||||
d="m -531.02678,78.258464 c 0,-2.284718 0.33112,-4.271441 0.99336,-5.960174 0.66224,-1.721807 1.53971,-3.145625 2.63242,-4.271458 1.09269,-1.125786 2.35094,-1.970143 3.77477,-2.533073 1.42381,-0.56288 2.88074,-0.844332 4.3708,-0.844358 3.47675,2.6e-5 6.14227,1.092723 7.99656,3.278095 1.85425,2.152306 2.78139,5.446954 2.78142,9.883955 -3e-5,0.198685 -3e-5,0.463582 0,0.79469 -3e-5,0.29802 -0.0166,0.579473 -0.0497,0.844357 H -526.209 c 0.19866,2.682088 0.9768,4.718478 2.3344,6.109178 1.35759,1.390712 3.47676,2.086065 6.35752,2.086061 1.62247,4e-6 2.98007,-0.132444 4.07278,-0.397345 1.12579,-0.298004 1.97015,-0.579457 2.53308,-0.844358 l 0.64568,3.874113 c -0.56292,0.298009 -1.55629,0.612574 -2.98008,0.943694 -1.39073,0.331121 -2.98011,0.496681 -4.76814,0.496682 -2.25164,-1e-6 -4.20525,-0.331121 -5.86084,-0.993363 -1.6225,-0.695352 -2.96354,-1.639045 -4.02312,-2.831082 -1.05959,-1.192031 -1.85428,-2.599292 -2.38407,-4.22179 -0.49668,-1.655595 -0.74502,-3.460201 -0.74502,-5.413824 m 17.73152,-2.533074 c 0.0331,-2.086043 -0.4967,-3.791314 -1.58938,-5.115816 -1.0596,-1.357573 -2.53309,-2.03637 -4.42046,-2.036392 -1.0596,2.2e-5 -2.0033,0.21525 -2.83108,0.645685 -0.79471,0.397366 -1.4735,0.927159 -2.0364,1.58938 -0.56291,0.662261 -1.00992,1.423838 -1.34104,2.284733 -0.29801,0.860931 -0.49669,1.7384 -0.59601,2.63241 h 12.81437"
|
||||
transform="matrix(0,-0.95410843,1.0480989,0,375.75386,335.47542)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5554"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;filter:url(#filter5630)"
|
||||
d="m -492.11181,64.748737 c 0.39733,2.6e-5 0.84435,0.03314 1.34104,0.09934 0.52978,0.03314 1.04302,0.09936 1.53971,0.198672 0.49667,0.06625 0.94368,0.149031 1.34104,0.248341 0.43044,0.06625 0.745,0.132474 0.9437,0.198673 l -0.79469,4.023117 c -0.36425,-0.132427 -0.97683,-0.281431 -1.83772,-0.447013 -0.82782,-0.198651 -1.90396,-0.297987 -3.22843,-0.298009 -0.86093,2.2e-5 -1.72184,0.09936 -2.58274,0.298009 -0.82781,0.165582 -1.37416,0.281474 -1.63905,0.347676 v 21.704966 h -4.61914 v -24.73472 c 1.0927,-0.39732 2.45029,-0.761553 4.07279,-1.092699 1.62248,-0.364207 3.44364,-0.546323 5.46349,-0.546349"
|
||||
transform="matrix(0,-0.95410843,1.0480989,0,375.75386,335.47542)" />
|
||||
</g>
|
||||
<g
|
||||
id="g2994"
|
||||
style="display:inline"
|
||||
transform="translate(375.75386,255.47823)">
|
||||
<rect
|
||||
style="display:inline;fill:none;fill-opacity:1;stroke:#f3f3f3;stroke-width:14.74640846;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4170"
|
||||
width="689.47974"
|
||||
height="201.01898"
|
||||
x="30.260132"
|
||||
y="431.85269"
|
||||
inkscape:export-filename="/home/flo/Documents/projects/linuxtage/gltgit/glt12/grafiken/shirts/linuxtage2012-hinten_10jahre_v2.png"
|
||||
inkscape:export-xdpi="80.963211"
|
||||
inkscape:export-ydpi="80.963211" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
d="M 153.28335,578.93876 H 122.49792 V 466.03364 h -13.89538 v 134.24459 h 44.68081 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="path4843"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
d="M 183.09093,600.27823 V 466.03364 h -14.13495 v 134.24459 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="path4845"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
d="m 215.86221,600.27823 v -110.5772 h 1.67703 l 25.2752,110.5772 h 23.11902 V 466.03364 h -14.13495 v 110.57719 h -1.67703 L 225.44523,466.03364 h -23.59818 v 134.24459 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="path4847"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccsssccsscc"
|
||||
d="m 298.42773,466.03364 h -14.01516 v 90.98369 c 0,31.81516 9.10389,45.00685 29.70735,45.00685 20.84303,0 29.82713,-13.19169 29.82713,-45.00685 v -90.98369 h -14.01516 v 90.98369 c 0,16.87755 -5.03109,23.2794 -15.81197,23.2794 -10.6611,0 -15.69219,-6.20786 -15.69219,-23.2794 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="path4849"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
d="m 355.74989,466.03364 23.11902,67.70427 -23.11902,66.54032 h 15.69218 l 16.17133,-50.24473 16.05155,50.24473 h 15.69219 l -22.75966,-66.54032 22.75966,-67.70427 h -15.69219 l -16.05155,51.2147 -16.17133,-51.2147 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="path4851"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 434.06421,466.03167 -7.375,21.9375 h 17.84375 v 112.3125 h 13.875 v -112.3125 h 20.84375 v -21.9375 z"
|
||||
id="path4853"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
d="m 497.75256,600.27823 4.07278,-26.77132 h 28.86883 l 4.55193,26.77132 h 14.13494 L 529.85565,466.03364 h -26.47307 l -19.76497,134.24459 z m 20.96284,-114.26311 9.34344,66.34632 h -23.35859 l 9.7028,-66.34632 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="path4855"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 590.59713,544.28755 h 13.34345 v 35.42719 c -0.11979,0 -7.06748,1.35797 -11.73919,1.35797 -15.33281,0 -19.04624,-13.96767 -19.04624,-48.11078 0,-35.11307 4.55193,-47.72279 19.40559,-47.72279 9.94238,0 25.38098,0.0342 25.38098,0.0342 l -0.0283,-19.33797 c 0,0 -15.76972,-0.0356 -27.38911,-0.0356 -23.47837,0 -31.86353,20.50347 -31.86353,67.06223 0,44.23084 7.66644,67.45024 32.34268,67.45024 9.46321,0 26.83243,-0.24407 26.83243,-0.24407 l 0.20101,-76.79701 h -27.23881"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="path4857"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccsssccsssccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
d="M 684.99002,600.27823 V 579.32676 H 648.335 v -35.50111 h 29.46776 V 523.45617 H 648.335 v -36.47106 h 36.65502 v -20.95147 h -50.5504 v 134.24459 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:121.95269012px;font-family:TitilliumMaps29L;-inkscape-font-specification:'TitilliumMaps29L Ultra-Bold';fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-width:8.91283321;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="path4859"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="text4861"
|
||||
style="font-style:normal;font-weight:normal;font-size:39.40029526px;line-height:125%;font-family:'Bitstream Vera Sans';display:inline;fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-opacity:1"
|
||||
transform="matrix(0,-0.95410843,1.0480989,0,0,0)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2996"
|
||||
style="font-variant:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-opacity:1"
|
||||
d="m -609.9432,74.185678 h 4.8178 v 16.092469 c -0.39737,0.132449 -0.97683,0.281453 -1.73838,0.447013 -0.72849,0.165561 -1.58941,0.331121 -2.58274,0.496681 -0.96028,0.165561 -2.01986,0.298009 -3.17876,0.397345 -1.15894,0.132448 -2.33442,0.198672 -3.52644,0.198673 -2.41719,-10e-7 -4.61915,-0.397345 -6.60586,-1.192035 -1.98673,-0.794688 -3.692,-1.95361 -5.11581,-3.476768 -1.42383,-1.52315 -2.53308,-3.39398 -3.32776,-5.612497 -0.76159,-2.218497 -1.14237,-4.768124 -1.14237,-7.648889 0,-2.880731 0.43045,-5.430358 1.29137,-7.64889 0.89402,-2.251594 2.08605,-4.13898 3.5761,-5.662165 1.49004,-1.523123 3.22842,-2.682045 5.21516,-3.476768 2.01982,-0.794655 4.1721,-1.191999 6.45685,-1.192034 1.55625,3.5e-5 2.9304,0.09937 4.12245,0.298008 1.22513,0.198707 2.26816,0.430492 3.12909,0.695354 0.86089,0.26493 1.55624,0.529827 2.08607,0.79469 0.56287,0.264929 0.94366,0.463602 1.14236,0.596017 l -1.53971,4.023117 c -0.96028,-0.6291 -2.23509,-1.142336 -3.82444,-1.539711 -1.58941,-0.430426 -3.2119,-0.645655 -4.86748,-0.645686 -1.75496,3.1e-5 -3.36089,0.314596 -4.81781,0.943694 -1.42383,0.629159 -2.64897,1.53974 -3.67544,2.731747 -0.99337,1.192061 -1.7715,2.64899 -2.3344,4.370794 -0.56291,1.688737 -0.84436,3.592679 -0.84436,5.711833 0,2.052964 0.23178,3.923794 0.69536,5.612497 0.49667,1.688725 1.22513,3.145655 2.18539,4.370794 0.99336,1.19204 2.20194,2.119178 3.62578,2.781414 1.45691,0.662245 3.16218,0.993366 5.11581,0.993362 1.39069,4e-6 2.56617,-0.06622 3.52644,-0.198672 0.99334,-0.165557 1.70525,-0.314561 2.13573,-0.447013 V 74.185678" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2998"
|
||||
style="font-variant:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-opacity:1"
|
||||
d="m -588.14976,64.748737 c 0.39733,2.6e-5 0.84434,0.03314 1.34104,0.09934 0.52977,0.03314 1.04301,0.09936 1.53971,0.198672 0.49666,0.06625 0.94367,0.149031 1.34104,0.248341 0.43043,0.06625 0.745,0.132474 0.94369,0.198673 l -0.79469,4.023117 c -0.36425,-0.132427 -0.97682,-0.281431 -1.83772,-0.447013 -0.82782,-0.198651 -1.90396,-0.297987 -3.22843,-0.298009 -0.86092,2.2e-5 -1.72184,0.09936 -2.58274,0.298009 -0.82781,0.165582 -1.37416,0.281474 -1.63905,0.347676 v 21.704966 h -4.61913 v -24.73472 c 1.09269,-0.39732 2.45029,-0.761553 4.07278,-1.092699 1.62249,-0.364207 3.44365,-0.546323 5.4635,-0.546349" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3000"
|
||||
style="font-variant:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-opacity:1"
|
||||
d="m -569.54285,87.794742 c 1.09269,3e-6 2.05294,-0.01655 2.88075,-0.04967 0.8609,-0.06622 1.57281,-0.165556 2.13573,-0.298008 v -7.698558 c -0.33114,-0.165549 -0.87748,-0.297997 -1.63904,-0.397345 -0.72849,-0.132436 -1.62251,-0.19866 -2.68208,-0.198672 -0.69537,1.2e-5 -1.44039,0.04968 -2.23507,0.149004 -0.76159,0.09935 -1.4735,0.314576 -2.13573,0.645686 -0.62913,0.298019 -1.15893,0.728476 -1.58938,1.291371 -0.43046,0.529802 -0.64569,1.241711 -0.64568,2.135728 -10e-6,1.65561 0.52978,2.814532 1.58938,3.476768 1.05957,0.629133 2.49995,0.943698 4.32112,0.943695 M -569.94019,64.6494 c 1.85426,2.6e-5 3.41053,0.248366 4.6688,0.745021 1.29135,0.463595 2.31783,1.142391 3.07942,2.036393 0.79467,0.860937 1.35758,1.903966 1.68872,3.129091 0.3311,1.192054 0.49666,2.516536 0.49668,3.973449 v 16.142137 c -0.39737,0.06622 -0.96027,0.165561 -1.68871,0.298009 -0.69538,0.09934 -1.49007,0.198672 -2.38407,0.298009 -0.89405,0.09934 -1.87085,0.182116 -2.93042,0.24834 -1.02649,0.09934 -2.05296,0.149004 -3.07943,0.149004 -1.45694,0 -2.79798,-0.149004 -4.02311,-0.447013 -1.22516,-0.298008 -2.28474,-0.761577 -3.17876,-1.390707 -0.89403,-0.662239 -1.58939,-1.523152 -2.08606,-2.582742 -0.49669,-1.059581 -0.74503,-2.334395 -0.74502,-3.824444 -10e-6,-1.423811 0.28145,-2.648956 0.84435,-3.675441 0.59602,-1.026462 1.39071,-1.854263 2.38407,-2.483406 0.99336,-0.629114 2.15228,-1.092683 3.47677,-1.390707 1.32447,-0.297993 2.71518,-0.446997 4.17212,-0.447013 0.46356,1.6e-5 0.94368,0.03313 1.44038,0.09934 0.49666,0.03313 0.96023,0.09935 1.3907,0.198673 0.46356,0.06624 0.8609,0.132464 1.19204,0.198672 0.3311,0.06624 0.56289,0.115908 0.69535,0.149005 v -1.291371 c -10e-6,-0.761561 -0.0828,-1.506582 -0.24834,-2.235065 -0.16558,-0.761559 -0.46358,-1.4238 -0.89402,-1.986725 -0.43048,-0.595996 -1.02649,-1.059565 -1.78806,-1.390707 -0.72848,-0.364211 -1.68872,-0.546327 -2.88075,-0.546349 -1.52316,2.2e-5 -2.8642,0.115914 -4.02311,0.347676 -1.12582,0.198695 -1.97018,0.413923 -2.53308,0.645686 l -0.54635,-3.824445 c 0.59602,-0.264871 1.58938,-0.513211 2.98009,-0.745022 1.3907,-0.26487 2.8973,-0.397318 4.5198,-0.397344" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3002"
|
||||
style="font-variant:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-opacity:1"
|
||||
d="m -535.05377,68.771854 c -0.69537,0.761599 -1.62251,1.837741 -2.78141,3.228427 -1.12583,1.390725 -2.35098,2.930435 -3.67544,4.619135 -1.29139,1.688729 -2.59931,3.460223 -3.92379,5.314488 -1.29138,1.854284 -2.43374,3.625778 -3.4271,5.314488 h 14.20509 v 3.874113 h -19.71825 v -3.079423 c 0.79469,-1.456927 1.7715,-3.062861 2.93042,-4.817807 1.15892,-1.75493 2.36751,-3.493312 3.62577,-5.215152 1.29137,-1.754925 2.53307,-3.393971 3.72511,-4.917143 1.22514,-1.556248 2.28472,-2.864174 3.17876,-3.923781 h -12.7647 v -3.874113 h 18.62554 v 3.476768" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3004"
|
||||
style="font-variant:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-opacity:1"
|
||||
d="m -531.02678,78.258464 c 0,-2.284718 0.33112,-4.271441 0.99336,-5.960174 0.66224,-1.721807 1.53971,-3.145625 2.63242,-4.271458 1.09269,-1.125786 2.35094,-1.970143 3.77477,-2.533073 1.42381,-0.56288 2.88074,-0.844332 4.3708,-0.844358 3.47675,2.6e-5 6.14227,1.092723 7.99656,3.278095 1.85425,2.152306 2.78139,5.446954 2.78142,9.883955 -3e-5,0.198685 -3e-5,0.463582 0,0.79469 -3e-5,0.29802 -0.0166,0.579473 -0.0497,0.844357 H -526.209 c 0.19866,2.682088 0.9768,4.718478 2.3344,6.109178 1.35759,1.390712 3.47676,2.086065 6.35752,2.086061 1.62247,4e-6 2.98007,-0.132444 4.07278,-0.397345 1.12579,-0.298004 1.97015,-0.579457 2.53308,-0.844358 l 0.64568,3.874113 c -0.56292,0.298009 -1.55629,0.612574 -2.98008,0.943694 -1.39073,0.331121 -2.98011,0.496681 -4.76814,0.496682 -2.25164,-1e-6 -4.20525,-0.331121 -5.86084,-0.993363 -1.6225,-0.695352 -2.96354,-1.639045 -4.02312,-2.831082 -1.05959,-1.192031 -1.85428,-2.599292 -2.38407,-4.22179 -0.49668,-1.655595 -0.74502,-3.460201 -0.74502,-5.413824 m 17.73152,-2.533074 c 0.0331,-2.086043 -0.4967,-3.791314 -1.58938,-5.115816 -1.0596,-1.357573 -2.53309,-2.03637 -4.42046,-2.036392 -1.0596,2.2e-5 -2.0033,0.21525 -2.83108,0.645685 -0.79471,0.397366 -1.4735,0.927159 -2.0364,1.58938 -0.56291,0.662261 -1.00992,1.423838 -1.34104,2.284733 -0.29801,0.860931 -0.49669,1.7384 -0.59601,2.63241 h 12.81437" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3006"
|
||||
style="font-variant:normal;font-stretch:normal;font-size:49.66811371px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f3f3f3;fill-opacity:1;stroke:#f3f3f3;stroke-opacity:1"
|
||||
d="m -492.11181,64.748737 c 0.39733,2.6e-5 0.84435,0.03314 1.34104,0.09934 0.52978,0.03314 1.04302,0.09936 1.53971,0.198672 0.49667,0.06625 0.94368,0.149031 1.34104,0.248341 0.43044,0.06625 0.745,0.132474 0.9437,0.198673 l -0.79469,4.023117 c -0.36425,-0.132427 -0.97683,-0.281431 -1.83772,-0.447013 -0.82782,-0.198651 -1.90396,-0.297987 -3.22843,-0.298009 -0.86093,2.2e-5 -1.72184,0.09936 -2.58274,0.298009 -0.82781,0.165582 -1.37416,0.281474 -1.63905,0.347676 v 21.704966 h -4.61914 v -24.73472 c 1.0927,-0.39732 2.45029,-0.761553 4.07279,-1.092699 1.62248,-0.364207 3.44364,-0.546323 5.46349,-0.546349" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 62 KiB |
145
god2024/__init__.py
Normal file
|
@ -0,0 +1,145 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://import.c3voc.de/schedule/god2024.xml?showall=yes'
|
||||
|
||||
titlemap = {
|
||||
|
||||
}
|
||||
|
||||
def introFrames(p):
|
||||
givenFrame = 0
|
||||
|
||||
nr = p['$id'];
|
||||
|
||||
# 1 Sekunden nix
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
givenFrame += 1
|
||||
yield (
|
||||
('bg', 'attr', '{http://www.w3.org/1999/xlink}href', "given-frames/frame%04d.png" % (givenFrame)),
|
||||
('layer1', 'style', 'opacity', "%.4f" % 0), # nix
|
||||
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
|
||||
)
|
||||
|
||||
# 1 Sekunde Text Fadein
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
givenFrame += 1
|
||||
yield (
|
||||
('bg', 'attr', '{http://www.w3.org/1999/xlink}href', "given-frames/frame%04d.png" % (givenFrame)),
|
||||
('layer1', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
|
||||
)
|
||||
|
||||
# 5 Sekunden Text
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
givenFrame += 1
|
||||
yield (
|
||||
('bg', 'attr', '{http://www.w3.org/1999/xlink}href', "given-frames/frame%04d.png" % (givenFrame)),
|
||||
('layer1', 'style', 'opacity', "%.4f" %1),
|
||||
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
|
||||
)
|
||||
|
||||
def outroFrames(p):
|
||||
xml = etree.parse('god2024/artwork/outro.svg').getroot()
|
||||
|
||||
frames = int(5*fps)
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
def pauseFrames(p):
|
||||
# 1 sekunden fade in
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
# 1 sekunde sehen
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', "%.4f" % 1),
|
||||
)
|
||||
|
||||
# 1 sekunde fadeout
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||
)
|
||||
|
||||
# 1 sekunde bild
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', "%.4f" % 0),
|
||||
)
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 65,
|
||||
'$title': 'OWASP Juice Shop 10th anniversary: Is it still fresh?'.upper(),
|
||||
'$subtitle': '',
|
||||
'$personnames': 'Jannik Hollenbach'.upper(),
|
||||
#'only_render_frame': 353
|
||||
'only_rerender_frames_after': 225
|
||||
}
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
|
||||
def tasks(queue, args, id_list, skip_list):
|
||||
if not 'outro' in skip_list:
|
||||
# place a task for the outro into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
||||
|
||||
if not 'pause' in skip_list:
|
||||
# place the pause-sequence into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'pause.svg',
|
||||
outfile = 'pause.ts',
|
||||
sequence = pauseFrames
|
||||
))
|
||||
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl, titlemap):
|
||||
|
||||
# skip events which will not be recorded
|
||||
if event['room'] not in ('Da Capo',) or event['track'] == 'Nomnom':
|
||||
print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
|
||||
continue
|
||||
|
||||
# when id_list is not empty, only render events which are in id_list
|
||||
if id_list and int(event['id']) not in id_list:
|
||||
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 = {
|
||||
'$id': event['id'],
|
||||
'$title': event['title'].upper(),
|
||||
'$subtitle': event['subtitle'],
|
||||
'$personnames': event['personnames'].upper(),
|
||||
}
|
||||
))
|
||||
|
101
god2024/artwork/intro.svg
Normal file
After Width: | Height: | Size: 1.9 MiB |
131
god2024/artwork/outro.svg
Normal file
After Width: | Height: | Size: 2.4 MiB |
78
god2024/artwork/pause.svg
Normal file
After Width: | Height: | Size: 1.9 MiB |
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'http://bl0rg.net/~andi/gpn15-fahrplan/schedule.xml'
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
|
|
191
gpn20/__init__.py
Normal file
|
@ -0,0 +1,191 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from schedulelib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://cfp.gulas.ch/gpn20/schedule/export/schedule.xml'
|
||||
|
||||
def introFrames(args):
|
||||
for frame in range(0, fps):
|
||||
yield (
|
||||
('title', 'style', 'opacity', 0),
|
||||
('persons', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', int(i<=frame)) for i in range(0,26))
|
||||
)
|
||||
|
||||
|
||||
|
||||
#fade in title and persons
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('title', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('persons', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('gfactoryreset', 'style', 'opacity', 1),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
|
||||
#show whole image for 5 seconds
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('title', 'style', 'opacity', 1),
|
||||
('persons', 'style', 'opacity', 1),
|
||||
('gfactoryreset', 'style', 'opacity', 1),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('title', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
('persons', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
('gfactoryreset', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
*((f'g{g}', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)) for g in range(0,26))
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(args):
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('cc-text', 'style', 'opacity', 1),
|
||||
('logo', 'style', 'opacity', 1),
|
||||
)
|
||||
#fadeout outro graphics
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('cc-text', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
('logo', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
)
|
||||
|
||||
def pauseFrames(params):
|
||||
# kringel
|
||||
for frame in range(0, fps):
|
||||
yield (
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', int(i<=frame)) for i in range(0,26))
|
||||
)
|
||||
# ease in factory
|
||||
frames = int(0.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# show factory
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', 1),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# ease out factory
|
||||
frames = int(0.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# ease in pause
|
||||
frames = int(0.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# show pause
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', 1),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# ease out pause
|
||||
frames = int(0.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# kringel
|
||||
for frame in range(0, fps+2):
|
||||
yield (
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', int(i>=frame)) for i in range(0,26))
|
||||
)
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$title': "Long Long Long title is LONG ",
|
||||
'$speaker': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||
}
|
||||
)
|
||||
|
||||
#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 event['room'] not in ('Medientheater', "Vortragssaal", "Blauer Salon"):
|
||||
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||
continue
|
||||
if event['day'] not in ('0', '1', '2', '3', '4'):
|
||||
print("skipping day %s" % (event['day']))
|
||||
continue
|
||||
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 it into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$title': event['title'],
|
||||
'$persons': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
# 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
|
||||
))
|
||||
|
||||
if not 'pause' in skiplist:
|
||||
# place the pause-sequence into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'pause.svg',
|
||||
outfile = 'pause.ts',
|
||||
sequence = pauseFrames
|
||||
))
|
||||
|
||||
|
3133
gpn20/artwork/intro.svg
Normal file
After Width: | Height: | Size: 136 KiB |
3136
gpn20/artwork/outro.svg
Normal file
After Width: | Height: | Size: 152 KiB |