Merge branch 'unnamedculprit-master'
42
README.md
|
@ -1,7 +1,7 @@
|
|||
Frab-Based Into- and Outro-Generator
|
||||
===========================================
|
||||
|
||||
This is a scripted pre-, postroll and pause-clip generator. It takes a Frab/frab schedule-xml and artwork as svg and generates .dv-clips ready-to-use with the [VOC](https://c3voc.de/)-CRS (Continuous Recording System) or any other System. It can aĺso be modified to generate Lossless h264 or something different if reqired.
|
||||
This is a scripted pre-, postroll and pause-clip generator. It takes a Frab/frab schedule-xml and artwork as svg and generates .dv- or .ts-clips ready-to-use with the [VOC](https://c3voc.de/)-CRS (Conference Recording System) or any other System. It can aĺso be modified to generate Lossless h264 or something different if reqired.
|
||||
|
||||
Following the requirements of the CRS-Setup it generates one postroll, one pause-sequence and multiple prerolls - one per Talk in your Schedule-xml, but it should be simple to modify this if your Setup needs it.
|
||||
|
||||
|
@ -11,35 +11,35 @@ Okay, let's go.
|
|||
|
||||
- Install python3, python3-lxml, python3-cssutils, inkscape and libav-tools
|
||||
- Fork this repo on github and clone your personal fork to your local system.
|
||||
- Copy one of the existing setups (I'd suggest sotmeu14 for a start).
|
||||
- Open ```artwork/intro.svg``` (preroll template) in inkscape and modify it. You can also just create a new one. For the VOC-Setup you should use a Pixel-Resolution of ```1024x576``` (16:9 Aspect Ratio).
|
||||
- Copy one of the existing setups (I'd suggest Datengarten `dg` for a start).
|
||||
- Open `artwork/intro.svg` (preroll template) in inkscape and modify it. You can also just create a new one. For the VOC-Setup you should use a Pixel-Resolution of `1920×1080` (or for the legacy SD/.dv-Pipeline `1024×576`).
|
||||
- Group things together that should be animated together (like subtitle and speaker-text)
|
||||
- Use Flow-Text (in Inkscape drag an Area of Text instead of just placing a single line). This way the text will automatically wrap inside the specified area if it gets too long.
|
||||
- Type Placeholder-Texts where the script should substitute content from your schedule.xml. By default the following placeholders are substituted
|
||||
- ```$id``` - Talk-ID (useful in links to the Frab-Page)
|
||||
- ```$title``` - Title of the Talk
|
||||
- ```$subtitle``` - You guessed it...
|
||||
- ```$personnames``` - Comma-Separated list of Speaker-Names
|
||||
- `$id` - Talk-ID (useful in links to the Frab-Page)
|
||||
- `$title` - Title of the Talk
|
||||
- `$subtitle` - You guessed it...
|
||||
- `$personnames` - Comma-Separated list of Speaker-Names
|
||||
- Give IDs to the Objects and Groups you want to animate (Inkscape Shift-Ctrl-O)
|
||||
- Edit your copy of __init__.py - this is your project configuration
|
||||
- set ```scheduleUrl``` to the url of your schedule.xml-file
|
||||
- set `scheduleUrl` to the url of your schedule.xml-file
|
||||
- modify introFrames (preroll) - see section about the frame-generators below
|
||||
- search for ```def debug()``` and comment the sections about outro (postroll) and pause
|
||||
- run ```./make.py yourproject/ --debug``` to generate your first intro
|
||||
- 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```
|
||||
- if everything look like you'd want them to, run ```./make.py yourproject/```.
|
||||
- modify outroFrames and pauseFrames like before an 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 .dv-files. You can run ```./make-snapshots.sh yourproject/ 5``` to get a png for the frame at the 5th second of all your dvs. Default is 3 seconds.
|
||||
- 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.
|
||||
- Viewing through those pngs to check if all intros are looking good with the real-world titles- and person-names
|
||||
- Viewing through the pngs is faster then opening each .dv and waiting 5 seconds.
|
||||
- Viewing through the pngs is faster then opening each clip and waiting 5 seconds.
|
||||
|
||||
The Frame-Generators
|
||||
--------------------
|
||||
The animation sequence is controlled by the three frame-generator routines vorspanFrames, abspannFrames and pauseFrames. Each of them yields one tupel per frame. This Frame-Tupel contains one Sub-Tupel per Animated Element, which has one of two forms:
|
||||
|
||||
### 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.
|
||||
`('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:
|
||||
|
||||
|
@ -50,7 +50,7 @@ To form an fade-in-opacity-animation, the frame-generator could look like this:
|
|||
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
```easeInCubic``` is an easing-function stolen from the [jquery-easing plugin](http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js) ([easing-cheat-sheet](http://easings.net/)). They take 4 parameters:
|
||||
`easeInCubic` is an easing-function stolen from the [jquery-easing plugin](http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js) ([easing-cheat-sheet](http://easings.net/)). They take 4 parameters:
|
||||
- t: current time
|
||||
- b: beginning value
|
||||
- c: change In value
|
||||
|
@ -68,7 +68,7 @@ So to fade the logo out, the generator yould look like this:
|
|||
By yielding multiple sub-tuples, you can animate multiple elements at the same time using different easings. Its up to you to find a combination that looks nice with your artwork.
|
||||
|
||||
### XML-Attribute-Modifications
|
||||
The other form a sub-tuble can have is ```('box', 'attr', 'transform', 'translate(0,0)')``` - locate object with id ```box``` in the svg, and set its ```transform```-attribute to ```translate(0,0)```. This can be used to animate things not specifiable by css - like the spacial translation of an object. A suitable generator, that animates the element ```box``` in an upward movement, could look like this:
|
||||
The other form a sub-tuble can have is `('box', 'attr', 'transform', 'translate(0,0)')` - locate object with id `box` in the svg, and set its `transform`-attribute to `translate(0,0)`. This can be used to animate things not specifiable by css - like the spacial translation of an object. A suitable generator, that animates the element `box` in an upward movement, could look like this:
|
||||
|
||||
# three seconds of animation
|
||||
frames = 3*fps
|
||||
|
@ -80,18 +80,18 @@ The other form a sub-tuble can have is ```('box', 'attr', 'transform', 'tr
|
|||
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.
|
||||
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
|
||||
---------------------------------
|
||||
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 1024x576 and throw your logo into your prefered corner. To have it looking good we would suggest
|
||||
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
|
||||
- to test it on dark as well as bright background and add a glow or a backround-box if neccessary
|
||||
- avoid thin lines or small text that will not be visible in the final size
|
||||
- set an opacity of 0.8 to 1.0 (below 0.8 it usually won't be recognizable on a bumpy background)
|
||||
Save your file as ```artwork/overlay.svg```
|
||||
Save your file as `artwork/overlay.svg`
|
||||
|
||||
When you're done, call ```./make-overlay.sh yourproject/``` which will generate two .pngs in your artwork directory. One of them looks squeezed - don't worry, that is correct.
|
||||
When you're done, call `./make-overlay.sh yourproject/` which will generate three .pngs in your artwork directory. One of them looks squeezed - don't worry, that is correct.
|
||||
|
||||
It works! It doesn't work!
|
||||
--------------------------
|
||||
|
|
BIN
emf2016/.DS_Store
vendored
Normal file
110
emf2016/__init__.py
Normal file
|
@ -0,0 +1,110 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://www.emfcamp.org/schedule.frab'
|
||||
|
||||
titlemap = {}
|
||||
|
||||
def introFrames(p):
|
||||
move=50
|
||||
|
||||
nr = p['$id'];
|
||||
|
||||
|
||||
# Show Title
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('sponsors', 'style', 'opacity', 0),
|
||||
('white', 'style', 'opacity', 0),
|
||||
)
|
||||
|
||||
# Fade In Sponsor
|
||||
frames = int(fps/2)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('white', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||
('sponsors', 'style', 'opacity', 0),
|
||||
('text', 'style', 'opacity', easeLinear(i, 1, 0, frames)),
|
||||
('bg', 'style', 'opacity', easeLinear(i, 1, 0, frames)),
|
||||
)
|
||||
|
||||
frames = int(fps/2)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('white', 'style', 'opacity', 1),
|
||||
('sponsors', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||
('text', 'style', 'opacity', 0),
|
||||
('bg', 'style', 'opacity',0),
|
||||
)
|
||||
|
||||
# Show Sponsor
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('white', 'style', 'opacity', 1),
|
||||
('sponsors', 'style', 'opacity', 1),
|
||||
('text', 'style', 'visibility', 0),
|
||||
('bg', 'style', 'visibility', 0),
|
||||
)
|
||||
|
||||
|
||||
|
||||
def outroFrames(p):
|
||||
# hold slide for 5s
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
)
|
||||
|
||||
def pauseFrames(p):
|
||||
# hold slide for 5s
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
)
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 69,
|
||||
'$title': 'How To Make "Your Mum" Jokes Successfully',
|
||||
'$subtitle': 'But not necessarily tastefully',
|
||||
'$personnames': 'Matt Gray'
|
||||
}
|
||||
)
|
||||
|
||||
render(
|
||||
'outro.svg',
|
||||
'../outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
render(
|
||||
'pause.svg',
|
||||
'../pause.ts',
|
||||
pauseFrames
|
||||
)
|
||||
|
||||
def tasks(queue, args):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl, titlemap):
|
||||
|
||||
# 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']
|
||||
}
|
||||
))
|
BIN
emf2016/artwork/.DS_Store
vendored
Normal file
BIN
emf2016/artwork/ElectromagneticField2016-Logos-13-crop.png
Normal file
After Width: | Height: | Size: 74 KiB |
BIN
emf2016/artwork/Logo-OnBackgroundImage.jpg
Normal file
After Width: | Height: | Size: 3.9 MiB |
BIN
emf2016/artwork/Sponsor Logos/.DS_Store
vendored
Normal file
0
emf2016/artwork/Sponsor Logos/1 Gold/Icon
Normal file
BIN
emf2016/artwork/Sponsor Logos/1 Gold/mathworks.jpg
Normal file
After Width: | Height: | Size: 254 KiB |
BIN
emf2016/artwork/Sponsor Logos/1 Gold/microsoft.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
emf2016/artwork/Sponsor Logos/1 Gold/nexmo.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
emf2016/artwork/Sponsor Logos/1 Gold/spotify.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
emf2016/artwork/Sponsor Logos/1 Gold/ucl.png
Normal file
After Width: | Height: | Size: 29 KiB |
0
emf2016/artwork/Sponsor Logos/2 Badge/Icon
Normal file
BIN
emf2016/artwork/Sponsor Logos/2 Badge/getsmarterenergy.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
emf2016/artwork/Sponsor Logos/2 Badge/hcd.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
emf2016/artwork/Sponsor Logos/2 Badge/rs.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
emf2016/artwork/Sponsor Logos/2 Badge/st.png
Normal file
After Width: | Height: | Size: 303 KiB |
BIN
emf2016/artwork/Sponsor Logos/2 Badge/ti.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
emf2016/artwork/Sponsor Logos/2 Badge/wurth.jpg
Normal file
After Width: | Height: | Size: 77 KiB |
0
emf2016/artwork/Sponsor Logos/3 Silver/Icon
Normal file
BIN
emf2016/artwork/Sponsor Logos/3 Silver/heartinternet.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
emf2016/artwork/Sponsor Logos/3 Silver/portcullis.jpg
Normal file
After Width: | Height: | Size: 128 KiB |
BIN
emf2016/artwork/Sponsor Logos/3 Silver/yelp.png
Normal file
After Width: | Height: | Size: 17 KiB |
0
emf2016/artwork/Sponsor Logos/4 Bronze/Icon
Normal file
BIN
emf2016/artwork/Sponsor Logos/4 Bronze/chef.png
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
emf2016/artwork/Sponsor Logos/4 Bronze/codethink.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
emf2016/artwork/Sponsor Logos/4 Bronze/dhtmlx.jpg
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
emf2016/artwork/Sponsor Logos/4 Bronze/flexoptix.jpg
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
emf2016/artwork/Sponsor Logos/4 Bronze/improbable.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
emf2016/artwork/Sponsor Logos/4 Bronze/justaddsharks.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
emf2016/artwork/Sponsor Logos/4 Bronze/medicalconnections.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
emf2016/artwork/Sponsor Logos/4 Bronze/twilio.png
Normal file
After Width: | Height: | Size: 11 KiB |
409
emf2016/artwork/intro.svg
Normal file
After Width: | Height: | Size: 7.1 MiB |
155
emf2016/artwork/outro.svg
Normal file
After Width: | Height: | Size: 5.3 MiB |
155
emf2016/artwork/pause.svg
Normal file
After Width: | Height: | Size: 5.3 MiB |
|
@ -158,7 +158,7 @@ def debug():
|
|||
pauseFrames
|
||||
)
|
||||
|
||||
def tasks(queue):
|
||||
def tasks(queue, args):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl, titlemap):
|
||||
|
||||
|
|
|
@ -58,9 +58,9 @@
|
|||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.70000001"
|
||||
inkscape:cx="908.42612"
|
||||
inkscape:cy="173.47986"
|
||||
inkscape:zoom="7.919596"
|
||||
inkscape:cx="86.051982"
|
||||
inkscape:cy="21.213031"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer_background"
|
||||
showgrid="false"
|
||||
|
@ -68,9 +68,15 @@
|
|||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1">
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:snap-page="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="1987.9802,1080.8632"
|
||||
|
@ -103,6 +109,10 @@
|
|||
id="guide4176"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="1865.6255,13.404053"
|
||||
orientation="0,1"
|
||||
id="guide4183" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
|
@ -125,21 +135,21 @@
|
|||
id="g_background"
|
||||
transform="translate(-162.78572,747.3215)">
|
||||
<image
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/P1000778-gaussblur-75.JPG"
|
||||
xlink:href="P1000778-gaussblur-75.JPG"
|
||||
y="-1135.3215"
|
||||
x="162.78572"
|
||||
id="image_background"
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/P1000778.JPG"
|
||||
xlink:href="P1000778.JPG"
|
||||
width="1920"
|
||||
height="1440"
|
||||
width="1920" />
|
||||
id="image_background"
|
||||
x="162.78572"
|
||||
y="-1135.3215" />
|
||||
<image
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/logo_ohne_rand.png"
|
||||
xlink:href="logo_ohne_rand.png"
|
||||
y="-743.32147"
|
||||
x="1801.7858"
|
||||
id="image_logo"
|
||||
width="249"
|
||||
height="249"
|
||||
width="249" />
|
||||
id="image_logo"
|
||||
x="1801.7858"
|
||||
y="-743.32147" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
|
@ -218,5 +228,17 @@
|
|||
style="font-weight:bold;font-size:64.69565582px;line-height:89.99999762%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#7b9199;fill-opacity:1;filter:url(#filter3772)"
|
||||
id="flowPara3025">$personnames</flowPara><flowPara
|
||||
id="flowPara3048"
|
||||
style="font-weight:bold;font-size:64.69565582px;line-height:89.99999762%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1">$title</flowPara></flowRoot> </g>
|
||||
style="font-weight:bold;font-size:64.69565582px;line-height:89.99999762%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1">$title</flowPara></flowRoot> <text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:80.00000119%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="30.53125"
|
||||
y="1038.3694"
|
||||
id="text2992-5-5-3-3"
|
||||
sodipodi:linespacing="80.000001%"><tspan
|
||||
sodipodi:role="line"
|
||||
x="30.53125"
|
||||
y="1038.3694"
|
||||
id="url-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:start;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none">Bild © GG</tspan></text>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 9.4 KiB |
|
@ -89,9 +89,9 @@
|
|||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="180.46983"
|
||||
inkscape:cy="-63.258514"
|
||||
inkscape:zoom="1.979899"
|
||||
inkscape:cx="37.327"
|
||||
inkscape:cy="132.58015"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer_background"
|
||||
showgrid="false"
|
||||
|
@ -99,7 +99,7 @@
|
|||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1">
|
||||
<sodipodi:guide
|
||||
|
@ -160,21 +160,21 @@
|
|||
id="g_background"
|
||||
transform="translate(-162.78572,1251.3215)">
|
||||
<image
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/P1000778-gaussblur-75.JPG"
|
||||
xlink:href="P1000778-gaussblur-75.JPG"
|
||||
width="1920"
|
||||
height="1440"
|
||||
id="image_background"
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/P1000778.JPG"
|
||||
xlink:href="P1000778.JPG"
|
||||
y="-1135.3215"
|
||||
x="162.78572"
|
||||
y="-1135.3215" />
|
||||
id="image_background"
|
||||
height="1440"
|
||||
width="1920" />
|
||||
<image
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/logo_ohne_rand.png"
|
||||
xlink:href="logo_ohne_rand.png"
|
||||
width="249"
|
||||
height="249"
|
||||
id="image_logo"
|
||||
y="-743.32147"
|
||||
x="1801.7858"
|
||||
y="-743.32147" />
|
||||
id="image_logo"
|
||||
height="249"
|
||||
width="249" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:1"
|
||||
|
@ -353,5 +353,17 @@
|
|||
style="clip-rule:evenodd;fill-rule:evenodd" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:80.00000119%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="30.53125"
|
||||
y="1542.3694"
|
||||
id="text2992-5-5-3-3"
|
||||
sodipodi:linespacing="80.000001%"><tspan
|
||||
sodipodi:role="line"
|
||||
x="30.53125"
|
||||
y="1542.3694"
|
||||
id="url-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:start;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none">Bild © GG</tspan></text>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 21 KiB |
|
@ -59,8 +59,8 @@
|
|||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="752.42296"
|
||||
inkscape:cy="728.11916"
|
||||
inkscape:cx="400.88988"
|
||||
inkscape:cy="724.07855"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g3091x"
|
||||
showgrid="false"
|
||||
|
@ -68,7 +68,7 @@
|
|||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1">
|
||||
<sodipodi:guide
|
||||
|
@ -129,21 +129,21 @@
|
|||
id="g_background"
|
||||
transform="translate(-162.78572,1251.3215)">
|
||||
<image
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/P1000778-gaussblur-75.JPG"
|
||||
xlink:href="P1000778-gaussblur-75.JPG"
|
||||
width="1920"
|
||||
height="1440"
|
||||
id="image_background"
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/P1000778.JPG"
|
||||
xlink:href="P1000778.JPG"
|
||||
y="-1135.3215"
|
||||
x="162.78572"
|
||||
y="-1135.3215" />
|
||||
id="image_background"
|
||||
height="1440"
|
||||
width="1920" />
|
||||
<image
|
||||
sodipodi:absref="/home/peter/VOC/intro-outro-generator/fossgis16/artwork/logo_ohne_rand.png"
|
||||
xlink:href="logo_ohne_rand.png"
|
||||
width="249"
|
||||
height="249"
|
||||
id="image_logo"
|
||||
y="-743.32147"
|
||||
x="1801.7858"
|
||||
y="-743.32147" />
|
||||
id="image_logo"
|
||||
height="249"
|
||||
width="249" />
|
||||
</g>
|
||||
<g
|
||||
id="g4170"
|
||||
|
@ -159,6 +159,19 @@
|
|||
y="777"
|
||||
ry="0.0062701544"
|
||||
style="fill:#ffffff;fill-opacity:0.50196078" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:21.67332268px;line-height:80.00000119%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="16.542841"
|
||||
y="752.40576"
|
||||
id="text2992-5-5-3-3"
|
||||
sodipodi:linespacing="80.000001%"
|
||||
transform="scale(0.73029674,1.3693064)"><tspan
|
||||
sodipodi:role="line"
|
||||
x="16.542841"
|
||||
y="752.40576"
|
||||
id="url-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.66932869px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:start;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none">Bild © GG</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-8.2519531e-7,504.00003)"
|
||||
|
@ -175,12 +188,12 @@
|
|||
x="75.964493"
|
||||
y="876.83752"
|
||||
id="tspan2996"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#7b9199;fill-opacity:1;stroke:none"> Münster</tspan><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#7b9199;fill-opacity:1;stroke:none"> Salzburg</tspan><tspan
|
||||
sodipodi:role="line"
|
||||
x="75.964493"
|
||||
y="915.23755"
|
||||
id="tspan3002"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#7b9199;fill-opacity:1;stroke:none">11. - 13. März 2015</tspan></text>
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#7b9199;fill-opacity:1;stroke:none">04. - 06. Juli 2016</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:80.00000119%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||
|
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 9.3 KiB |
|
@ -4,6 +4,7 @@ if ! pushd "$1/artwork/" >/dev/null 2>&1; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
inkscape --export-width=1920 --export-height=1080 --export-png=overlay-1920x1080.png overlay.svg
|
||||
inkscape --export-width=1024 --export-height=576 --export-png=overlay-1024x576.png overlay.svg
|
||||
inkscape --export-width=720 --export-height=576 --export-png=overlay-720x576.png overlay.svg
|
||||
|
||||
|
|
113
osc16/__init__.py
Normal file
|
@ -0,0 +1,113 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://events.opensuse.org/conference/oSC16/schedule.xml'
|
||||
|
||||
# For (really) too long titles
|
||||
titlemap = {
|
||||
#
|
||||
}
|
||||
|
||||
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):
|
||||
move=50
|
||||
|
||||
# 3 Sekunde Text Fadein
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
('textblock', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, -move, move, frames)),
|
||||
)
|
||||
|
||||
# 2 Sekunden stehen lassen
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
# 3 Sekunde Text Fadeout
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||
('textblock', 'attr', 'transform', 'translate(%.4f, 0)' % easeInQuad(i, 0, move, frames)),
|
||||
)
|
||||
|
||||
def pauseFrames(parameters):
|
||||
frames = 25*3
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
|
||||
)
|
||||
|
||||
frames = 25*1
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
|
||||
)
|
||||
|
||||
|
||||
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):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
|
||||
if len(args) > 0:
|
||||
if not str(event['id']) in args:
|
||||
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'],
|
||||
'$SUBTITLE': event['subtitle'],
|
||||
'$SPEAKER': event['personnames']
|
||||
}
|
||||
))
|
4147
osc16/artwork/intro.svg
Normal file
After Width: | Height: | Size: 188 KiB |
177
osc16/artwork/old/intro.svg
Normal file
|
@ -0,0 +1,177 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 1920 1080"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="intro.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.40545428"
|
||||
inkscape:cx="1070.3529"
|
||||
inkscape:cy="535.06726"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<sodipodi:guide
|
||||
position="73.571429,972.5"
|
||||
orientation="1,0"
|
||||
id="guide5258" />
|
||||
</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="Background"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:23.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect4162"
|
||||
width="1920"
|
||||
height="1080"
|
||||
x="0"
|
||||
y="0" />
|
||||
<g
|
||||
transform="translate(1541.8346,792.41284)"
|
||||
id="g7206"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
|
||||
d="m 290.12328,115.07966 c -5.46064,-0.20052 -9.74704,-4.80372 -9.56466,-10.27218 0.0841,-2.64754 1.21583,-5.0947 3.13905,-6.90149 1.93101,-1.80627 4.45313,-2.74648 7.10068,-2.64688 5.46845,0.19137 9.75604,4.7869 9.57234,10.2637 -0.0828,2.6392 -1.19901,5.08622 -3.13004,6.90083 -1.94002,1.79845 -4.46215,2.7388 -7.11751,2.65602 l 1.4e-4,0 z m 2.2983,-8.98258 c 2.43032,0 4.40267,-1.31476 4.40267,-2.92951 0,-1.62323 -1.97247,-2.93866 -4.40267,-2.93866 -2.43154,0 -4.3962,1.31543 -4.3962,2.93866 0,1.61475 1.96466,2.92951 4.3962,2.92951"
|
||||
id="path1977" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-miterlimit:4"
|
||||
d="m 177.77915,172.0346 0.35143,-0.033 0.057,-0.41614 c -0.09,-0.32674 -0.30193,-0.62036 -0.62933,-4.67085 -0.2779,-3.58485 -0.84123,-13.41571 4.10688,-18.29079 1.91955,-1.90255 4.85041,-3.59305 7.16205,-4.13988 9.48006,-2.311 21.7856,-0.71053 32.29451,11.44029 5.42256,6.27899 8.08447,9.14514 9.41536,10.42718 l 0.4568,0.42444 0.55566,0.40029 c 0.43263,0.24489 18.06175,8.36159 18.06175,8.36159 l 0.3591,-0.09 0.009,-0.38313 c -0.11419,-0.1307 -11.17005,-14.41297 -9.211,-26.17923 1.55162,-9.37406 9.01444,-8.53296 19.32807,-7.35745 3.3723,0.38378 7.21025,0.82473 11.17889,0.91476 11.0799,0.0654 23.01883,-1.96775 30.37628,-5.18533 4.76036,-2.08196 7.79775,-3.45417 9.7008,-5.18534 0.68506,-0.56333 1.04416,-1.49393 1.41208,-2.47405 l 0.25374,-0.66103 c 0.30959,-0.79237 0.75873,-2.49055 0.95543,-3.41349 0.09,-0.40795 0.13068,-0.84941 -0.15604,-1.0695 l -1.02013,0.18774 c -3.22511,1.9354 -11.30192,5.62627 -18.86243,5.77335 -9.36588,0.19539 -28.24469,-9.42356 -30.21258,-10.44433 l -0.18774,-0.22009 c -0.47445,-1.1273 -3.3076,-7.83127 -3.90392,-9.24336 13.58824,8.94909 24.85586,13.89785 33.48717,14.6654 9.6031,0.85708 17.09125,-4.38477 20.2922,-6.62289 0.62803,-0.42444 1.10249,-0.76755 1.29789,-0.84057 l 0.20423,-0.33493 c -0.53162,-3.37231 -5.55327,-19.70354 -9.34169,-23.62333 -1.05301,-1.07781 -1.89423,-2.12262 -3.59305,-3.11923 -13.72648,-8.001978 -46.3154,-12.83653 -47.8417,-13.056617 l -0.26139,0.07353 -0.0977,0.228399 c 0,0 -0.12302,6.761123 -0.13954,7.512835 -3.33177,-1.110809 -27.52531,-8.925574 -50.2105,-9.717299 -19.22893,-0.677658 -45.49818,-1.592418 -82.61907,21.22216 l -1.09431,0.68571 c -17.45789,10.892822 -29.510359,24.317372 -35.814037,39.929872 -1.97607,4.90744 -4.637854,15.98864 -2.00907,26.41582 1.143159,4.56497 3.258113,9.13748 6.116594,13.23681 6.442691,9.25934 17.261843,15.40894 28.914033,16.44543 16.44542,1.46925 28.90636,-5.9199 33.33998,-19.75304 3.04556,-9.54541 0,-23.54914 -11.67688,-30.69405 -9.49657,-5.8222 -19.72003,-4.4913 -25.64006,-0.57982 -5.14415,3.41297 -8.05901,8.70419 -8.00198,14.52651 0.1142,10.31299 9.00678,15.80025 15.39243,15.80856 1.86122,0 3.72309,-0.31843 5.82986,-1.00414 0.74353,-0.22905 1.45341,-0.50617 2.22916,-0.9883 l 0.23723,-0.15473 0.15473,-0.09 -0.057,0.0247 c 1.46159,-0.98011 2.34335,-2.59644 2.34335,-4.32774 0,-0.47381 -0.0735,-0.95542 -0.20423,-1.43742 -0.75107,-2.60474 -3.33178,-4.18873 -6.01006,-3.69906 l -0.3591,0.0735 -0.4898,0.16305 -0.71052,0.23723 c -1.46978,0.36729 -2.58059,0.39211 -2.80898,0.39964 -0.75107,-0.0489 -4.43428,-1.15069 -4.43428,-5.18469 l 0,-0.0488 c 0.009,-1.4781 0.60452,-2.51524 0.93126,-3.07857 1.13485,-1.79652 4.27058,-3.56005 8.50815,-3.18458 5.55326,0.47329 9.55425,3.32347 12.20785,8.69653 2.46639,4.99695 1.82134,11.13771 -1.65763,15.64487 -3.45417,4.46727 -9.60246,6.36149 -17.78464,5.47076 -8.2474,-0.90593 -15.22042,-5.65032 -19.123707,-13.04011 -3.821442,-7.21857 -4.03399,-15.7844 -0.54683,-22.36532 8.353417,-15.75972 24.120657,-15.59667 32.768467,-14.10208 12.80353,2.21266 24.42324,12.46028 29.59208,26.0892 0.82472,2.17211 1.24904,3.89497 1.61632,5.46258 l 0.55566,2.35985 14.46053,7.06305 0.19669,0.13888 3.9e-4,-1.3e-4 z M 280.56753,95.11467 c -2.72649,2.53108 -4.28708,5.98525 -4.41778,9.70899 -0.25242,7.67524 5.774,14.14261 13.44872,14.42882 3.74025,0.12238 7.28378,-1.19266 10.00273,-3.74024 2.71895,-2.53941 4.27942,-5.98525 4.41777,-9.70081 0.2614,-7.68354 -5.76515,-14.1591 -13.45624,-14.43636 -3.72374,-0.12237 -7.27625,1.19202 -9.9952,3.7396"
|
||||
id="path1979" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2095"
|
||||
d="m 320.78054,191.07184 -0.16152,0 c -0.1867,0 -0.34854,-0.16185 -0.34854,-0.34854 l 0,-2.50132 -0.54768,0.83376 c -0.0621,0.087 -0.17428,0.12426 -0.27368,0.12426 l -0.0625,0 c -0.0994,0 -0.21154,-0.0373 -0.27367,-0.12426 l -0.5601,-0.83376 0,2.50132 c 0,0.18669 -0.16185,0.34854 -0.36097,0.34854 l -0.16154,0 c -0.18669,0 -0.34854,-0.16185 -0.34854,-0.34854 l 0,-2.98687 -1.6803,0 0,2.98687 c 0,0.18669 -0.17427,0.34854 -0.37307,0.34854 l -0.14943,0 c -0.1867,0 -0.34855,-0.16185 -0.34855,-0.34854 l 0,-2.98687 -1.25687,0 c -0.18669,0 -0.33611,-0.12458 -0.33611,-0.32339 l 0,-0.17426 c 0,-0.19913 0.14942,-0.3237 0.33611,-0.3237 l 4.40559,0 c 0.17428,0 0.28611,0.0621 0.34856,0.16185 l 0.83376,1.25687 0.83378,-1.25687 c 0.0621,-0.0873 0.16185,-0.16185 0.34855,-0.16185 l 0.5601,0 0,3.83307 c 0,0.18669 -0.17428,0.34854 -0.3734,0.34854"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2097"
|
||||
d="m 176.72658,185.83248 c -6.02344,0 -9.35885,5.10236 -9.35885,8.6369 l 0,4.53017 c 0,5.18966 4.24374,8.41293 8.18895,8.41293 l 13.81415,0 c 1.72999,0 2.09096,1.1323 2.09096,2.09063 l 0,2.92474 c 0,0.31096 -0.0497,3.12388 -2.09096,3.12388 l -18.85438,0 c -1.867,0 -3.22327,1.29415 -3.22327,3.07383 l 0,0.80894 c 0,1.76726 1.34385,3.07416 3.22327,3.07416 l 19.88759,0 c 5.18966,0 8.54993,-3.60941 8.54993,-9.20975 l 0,-4.89082 c 0,-5.2521 -3.78337,-7.604 -7.52945,-7.604 l -13.59017,0 c -2.05369,0 -2.97444,-1.51845 -2.97444,-2.61348 l 0,-2.68833 c 0,-1.70482 1.1323,-2.67559 3.12354,-2.67559 l 15.0589,0 c 1.84184,0 3.22328,-1.31931 3.22328,-3.07416 l 0,-0.80893 c 0,-1.74241 -1.4063,-3.07385 -3.28539,-3.07385 l -16.22881,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2099"
|
||||
d="m 233.2655,185.83248 c -1.7797,0 -3.22326,1.44357 -3.22326,3.22326 l 0,23.14815 c 0,1.84181 -1.50601,3.33541 -3.33542,3.33541 l -10.50389,0 c -1.84183,0 -3.33543,-1.4936 -3.33543,-3.33541 l 0,-23.14815 c 0,-1.77969 -1.43113,-3.22326 -3.22326,-3.22326 l -1.02047,0 c -1.79212,0 -3.22327,1.41872 -3.22327,3.22326 l 0,24.03162 c 0,5.58792 4.39317,9.64527 10.45388,9.64527 l 11.22584,0 c 6.06071,0 10.45387,-4.05735 10.45387,-9.64527 l 0,-24.03162 c 0,-1.80454 -1.41871,-3.22326 -3.22326,-3.22326 l -1.02048,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2101"
|
||||
d="m 253.38949,185.83248 c -6.02342,0 -9.35884,5.10236 -9.35884,8.6369 l 0,4.53017 c 0,5.18966 4.25617,8.41293 8.18895,8.41293 l 13.81414,0 c 1.73,0 2.1034,1.1323 2.1034,2.09063 l 0,2.92474 c 0,0.31096 -0.0621,3.12388 -2.1034,3.12388 l -18.85437,0 c -1.86699,0 -3.22327,1.29415 -3.22327,3.07383 l 0,0.80894 c 0,1.76726 1.35628,3.07416 3.22327,3.07416 l 19.87516,0 c 5.20209,0 8.54961,-3.60941 8.54961,-9.20975 l 0,-4.89082 c 0,-5.2521 -3.77061,-7.604 -7.52914,-7.604 l -13.59048,0 c -2.05337,0 -2.97412,-1.51845 -2.97412,-2.61348 l 0,-2.68833 c 0,-1.70482 1.1323,-2.67559 3.11112,-2.67559 l 15.05891,0 c 1.8294,0 3.22327,-1.31931 3.22327,-3.07416 l 0,-0.80893 c 0,-1.74241 -1.4063,-3.07385 -3.29813,-3.07385 l -16.21608,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2103"
|
||||
d="m 285.16212,185.83248 c -1.77938,0 -3.1484,1.319 -3.1484,3.07383 l 0,30.52819 c 0,1.74241 1.319,3.07416 3.08627,3.07416 l 24.33046,0 c 1.86699,0 3.22359,-1.29447 3.22359,-3.07416 l 0,-0.80894 c 0,-1.76726 -1.34417,-3.07383 -3.22359,-3.07383 0,0 -19.02865,0 -19.92487,0 0,-0.7965 0,-6.98179 0,-7.77829 0.89622,0 14.59854,0 14.59854,0 1.86667,0 3.22326,-1.29446 3.22326,-3.08659 l 0,-0.79649 c 0,-1.7797 -1.35659,-3.08627 -3.22326,-3.08627 0,0 -13.70232,0 -14.59854,0 0,-0.79649 0,-7.19334 0,-7.98983 0.89622,0 18.91682,0 18.91682,0 1.867,0 3.22359,-1.29446 3.22359,-3.07416 l 0,-0.80892 c 0,-1.7797 -1.35659,-3.07384 -3.22359,-3.07384 l -23.24753,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2105"
|
||||
d="m 78.309297,200.35583 c -3.036651,0 -5.513263,2.36463 -5.513263,5.28937 l 0,11.51195 c 0,2.96201 2.389494,5.37636 5.326597,5.37636 l 7.442252,0 c 2.937103,0 5.33902,-2.41435 5.33902,-5.37636 l 0,-11.51195 c 0,-2.91231 -2.476599,-5.28937 -5.513261,-5.28937 l -7.081345,0 z m -1.605453,16.35305 0,-10.50358 c 0,-1.23234 1.00808,-2.24039 2.240167,-2.24039 l 5.799492,0 c 1.207204,0 2.240134,1.02079 2.240134,2.24039 l 0,10.50358 c 0,1.23235 -1.008048,2.24038 -2.240134,2.24038 l -5.84929,0 c -1.232086,0 -2.190369,-0.98318 -2.190369,-2.24038"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2107"
|
||||
d="m 107.77981,200.21914 c -2.15309,0 -3.75857,0.77165 -5.06534,1.39387 -0.78404,0.37309 -1.46852,0.69678 -2.00367,0.69678 -0.22401,0 -0.43559,-0.0994 -0.54761,-0.27368 l -0.485353,-0.94592 c -0.112019,-0.24883 -0.60983,-0.73436 -1.232086,-0.73436 l -0.721818,0 c -0.696936,0 -1.269427,0.62253 -1.269427,1.40628 l 0,29.18433 c 0,0.90832 0.709393,1.63027 1.630336,1.63027 l 0.634712,0 c 0.89606,0 1.630336,-0.73437 1.630336,-1.63027 l 0,-9.68255 c 0,-0.2861 0.18667,-0.58495 0.36091,-0.58495 0.53515,0 1.21963,0.29885 2.01613,0.67225 1.29431,0.58494 2.91222,1.33142 5.06531,1.33142 l 0.67192,0 c 3.79579,0 6.16044,-2.1652 6.16044,-5.65003 l 0,-11.13855 c 0,-3.43482 -2.41435,-5.66247 -6.16044,-5.66247 l -0.68435,0 0,0 0,-0.0124 z m -7.44238,16.26576 0,-10.0432 c 0,-1.38144 1.08276,-2.46436 2.46418,-2.46436 l 5.42615,0 c 1.38145,0 2.46405,1.08292 2.46405,2.46436 l 0,10.0432 c 0,1.35659 -1.09503,2.46436 -2.46405,2.46436 l -5.42615,0 c -1.35654,0 -2.46418,-1.10777 -2.46418,-2.46436"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2109"
|
||||
d="m 125.651,200.35583 c -3.03657,0 -5.51304,2.36463 -5.51304,5.28937 l 0,11.42465 c 0,2.96201 2.40191,5.47608 5.23936,5.47608 l 7.67887,0 c 0.94561,0 1.63028,-0.64739 1.63028,-1.54329 l 0,-0.49798 c 0,-0.8959 -0.68467,-1.54296 -1.63028,-1.54296 l -6.29743,0 c -1.76727,0 -2.70076,-0.85895 -2.70076,-2.51407 0,0 0,-2.87473 0,-3.33542 0.5104,0 11.37526,0 11.37526,0 1.81697,0 2.912,-1.11987 2.912,-3.01171 l 0,-4.43044 c 0,-2.91232 -2.47647,-5.28907 -5.51304,-5.28907 l -7.16848,0 -0.0127,-0.0252 z m -1.60543,5.79946 c 0,-1.21961 0.95835,-2.19038 2.19037,-2.19038 l 5.98616,0 c 1.23234,0 2.19037,0.95834 2.19037,2.19038 0,0 0,3.099 0,3.55939 -0.48522,0 -9.88135,0 -10.3669,0 0,-0.46039 0,-3.55939 0,-3.55939"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2111"
|
||||
d="m 154.17581,200.21914 c -2.14066,0 -3.75851,0.75922 -5.05298,1.38145 -0.80892,0.37309 -1.5057,0.7092 -2.0658,0.7092 -0.24882,0 -0.34854,-0.0248 -0.53524,-0.36098 l -0.44795,-0.82135 c -0.24883,-0.51007 -0.68435,-0.77163 -1.28173,-0.77163 l -0.63497,0 c -0.7589,0 -1.30657,0.58493 -1.30657,1.40628 l 0,19.1408 c 0,0.90865 0.72163,1.64302 1.63027,1.64302 l 0.63465,0 c 0.89622,0 1.63027,-0.73437 1.63027,-1.64302 l 0,-14.48606 c 0,-1.35659 1.10777,-2.46436 2.46437,-2.46436 l 5.42606,0 c 1.35659,0 2.46405,1.10777 2.46405,2.46436 l 0,14.48606 c 0,0.90865 0.72194,1.64302 1.63059,1.64302 l 0.63465,0 c 0.8959,0 1.63027,-0.73437 1.63027,-1.64302 l 0,-15.02131 c 0,-3.43481 -2.41435,-5.66246 -6.16044,-5.66246 l -0.68435,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Icons"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer-icons"
|
||||
transform="translate(0,27.637839)"
|
||||
style="display:inline" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Text"
|
||||
style="display:inline;">
|
||||
<g
|
||||
id="textblock"
|
||||
inkscape:label="#g5274">
|
||||
<flowRoot
|
||||
transform="translate(-10,-126)"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:120.00000477%;font-family:'TeX Gyre Adventor';-inkscape-font-specification:'TeX Gyre Adventor, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="flowRoot5250"
|
||||
xml:space="preserve"><flowRegion
|
||||
id="flowRegion5252"><rect
|
||||
style="line-height:120.00000477%"
|
||||
y="192.07591"
|
||||
x="80.812202"
|
||||
height="761.07251"
|
||||
width="1765.4708"
|
||||
id="rect5254" /></flowRegion><flowPara
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:80px;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';fill:#ffffff;fill-opacity:1"
|
||||
id="flowPara5256">$SPEAKER</flowPara><flowPara
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:80px;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';fill:#ffffff;fill-opacity:1"
|
||||
id="flowPara4196" /><flowPara
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:80px;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';fill:#ffffff;fill-opacity:1"
|
||||
id="flowPara4194">$TITLE</flowPara><flowPara
|
||||
id="flowPara5262"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:80px;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';opacity:1;fill:#ffffff;fill-opacity:0.50196078">$SUBTITLE</flowPara></flowRoot> <flowRoot
|
||||
xml:space="preserve"
|
||||
id="flowRoot4176"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:559.99999046%;font-family:'TeX Gyre Adventor';-inkscape-font-specification:'TeX Gyre Adventor, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><flowRegion
|
||||
id="flowRegion4178"><rect
|
||||
id="rect4180"
|
||||
width="195.46452"
|
||||
height="96.974648"
|
||||
x="1669.7821"
|
||||
y="676.94916" /></flowRegion><flowPara
|
||||
id="flowPara4182">$ID</flowPara></flowRoot> </g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
431
osc16/artwork/old/outro.svg
Normal file
|
@ -0,0 +1,431 @@
|
|||
<?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"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="outro.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3807">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3809" />
|
||||
<stop
|
||||
id="stop3815"
|
||||
offset="0.2"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||
offset="1"
|
||||
id="stop3811" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3807"
|
||||
id="linearGradient3813"
|
||||
x1="650"
|
||||
y1="595.07648"
|
||||
x2="1230"
|
||||
y2="595.07648"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.99744172,-74.949237,-22.857439)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3807"
|
||||
id="linearGradient3819"
|
||||
x1="575.05078"
|
||||
y1="570.69666"
|
||||
x2="1155.0508"
|
||||
y2="570.69666"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3807-2"
|
||||
id="linearGradient3819-8"
|
||||
x1="575.05078"
|
||||
y1="570.69666"
|
||||
x2="1155.0508"
|
||||
y2="570.69666"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect" />
|
||||
<linearGradient
|
||||
id="linearGradient3807-2">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3809-5" />
|
||||
<stop
|
||||
id="stop3815-1"
|
||||
offset="0.2"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3811-1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="matrix(2.3933139,0,0,1,-1291.5105,359.35582)"
|
||||
y2="570.69666"
|
||||
x2="1155.0508"
|
||||
y1="570.69666"
|
||||
x1="575.05078"
|
||||
spreadMethod="reflect"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4017-1"
|
||||
xlink:href="#linearGradient3807-2-2"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient3807-2-2">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3809-5-5" />
|
||||
<stop
|
||||
id="stop3815-1-7"
|
||||
offset="0.2"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3811-1-0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
y2="570.69666"
|
||||
x2="1155.0508"
|
||||
y1="570.69666"
|
||||
x1="575.05078"
|
||||
spreadMethod="reflect"
|
||||
gradientTransform="matrix(2.3933139,0,0,1,-842.013,2.87365)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4510"
|
||||
xlink:href="#linearGradient3807-2-2"
|
||||
inkscape:collect="always" />
|
||||
<filter
|
||||
id="filter4858"
|
||||
inkscape:label="Drop Shadow"
|
||||
width="1.2"
|
||||
color-interpolation-filters="sRGB">
|
||||
<feFlood
|
||||
id="feFlood4860"
|
||||
flood-opacity="0.29666666666666669"
|
||||
flood-color="rgb(255,255,255)"
|
||||
result="flood" />
|
||||
<feComposite
|
||||
id="feComposite4862"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4864"
|
||||
stdDeviation="2"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset4866"
|
||||
dx="2"
|
||||
dy="2.2000000000000002"
|
||||
result="offset" />
|
||||
<feComposite
|
||||
id="feComposite4868"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
dy="0" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.51666667"
|
||||
inkscape:cx="960"
|
||||
inkscape:cy="540"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1016"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:snap-to-guides="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,0"
|
||||
id="guide3017" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1080"
|
||||
id="guide3019" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="0,0"
|
||||
id="guide3021" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="1920,1337.442"
|
||||
id="guide3023" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,25"
|
||||
id="guide3025" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1048"
|
||||
id="guide3027" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="32,0"
|
||||
id="guide3029" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="1888,0"
|
||||
id="guide3031" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="960,1080"
|
||||
id="guide3819" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,540"
|
||||
id="guide3821" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,27.63782)">
|
||||
<rect
|
||||
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="rect3797"
|
||||
width="1920"
|
||||
height="1080"
|
||||
x="0"
|
||||
y="-27.637817" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
|
||||
x="959.01093"
|
||||
y="742.61218"
|
||||
id="text3893"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3895"
|
||||
x="959.01093"
|
||||
y="742.61218"
|
||||
style="text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:TeX Gyre Adventor;-inkscape-font-specification:TeX Gyre Adventor;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal">More Recordings available on <tspan
|
||||
style="font-weight:bold;-inkscape-font-specification:TeX Gyre Adventor Bold;fill:#000000;fill-opacity:1"
|
||||
id="tspan3028">media.ccc.de</tspan></tspan></text>
|
||||
<g
|
||||
id="g3899"
|
||||
transform="translate(632.47209,157.2726)"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
id="path3901"
|
||||
d="m 294.407,7.95792 c 6.213,1.027 19.117,20.42198 17.554,56.04198 -4.3,2.287 -9.289,0.945 -12.547,0.894 -10.184,-2.682 -0.678,-29.555 -14.953,-39.546 C 263.79,10.8809 119.447,14.4069 45.5808,21.1209 13.592,24.0289 17.478,87.0639 16.8569,120.43 c -0.5169,27.768 0.4448,58.119 11.4189,88.93 9.4468,26.524 44.2989,17.409 75.9712,18.571 56.978,0 160.981,1.883 173.53,-3.125 9.092,-3.629 12.796,-16.972 14.709,-25.575 3.351,-15.069 -0.168,-25.607 11.822,-25.324 6.313,0.149 7.555,5.857 6.592,16.772 -1.001,11.346 -4.393,26.441 -9.128,44.005 -3.421,12.688 -27.012,10.129 -42.628,10.129 C 180.218,242.704 100.45,245.236 24.0554,243.125 1.9155,242.514 1.46946,137.911 0.285625,118.923 -1.10525,96.6069 2.51438,7.01993 21.3615,6.01993 35.3674,5.27692 113.628,0.0309143 159.959,0.0189209 205.016,0.00692749 252.988,1.11093 294.407,7.95792"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3903"
|
||||
d="m 223.69,24.0759 c 5.487,15.616 -8.019,40.096 12.24,48.537 73.438,12.662 159.117,-14.772 221.582,23.635 16.882,16.4601 29.544,35.4531 37.563,55.7121 l 0,-9.285 c -9.285,-25.746 -28.278,-47.6931 -46.427,-70.0621 5.065,-6.753 10.974,1.266 16.038,3.376 18.571,23.213 37.563,46.8491 44.739,74.7051 1.265,1.688 3.798,5.065 5.908,2.11 l 2.955,-2.954 c -6.331,-29.966 -25.324,-54.4461 -41.362,-80.1921 7.175,-4.643 14.35,3.377 20.259,8.019 12.24,20.259 25.746,40.5181 30.388,64.1531 3.376,2.532 7.597,-2.11 9.285,-5.065 -2.532,-18.571 -8.864,-35.031 -16.461,-50.6471 1.266,-2.11 1.266,-5.065 4.221,-5.065 18.149,9.707 17.727,30.8111 24.057,47.2711 5.909,-0.422 8.863,-18.993 16.46,-8.019 2.532,6.753 -10.129,17.305 2.955,18.149 -6.331,30.388 -39.674,54.024 -68.796,60.777 -15.194,3.376 -35.453,8.018 -46.849,-3.798 2.11,-5.487 9.707,-6.331 15.194,-7.175 33.765,-1.266 65.842,-13.506 86.101,-40.518 l -0.844,-0.844 c -32.077,21.525 -71.75,42.206 -111.424,26.168 -3.376,-0.844 -5.065,-5.487 -2.954,-8.019 0.844,-2.532 -1.688,-3.798 -2.955,-4.221 -67.108,2.954 -137.596,-6.324 -202.593,4.227 -7.13,1.158 -7.934,7.746 -9.284,13.082 -3.414,13.511 5.21,32.647 -2.824,39.846 0,0 -5.936,1.741 -10.256,-0.177 -1.011,-5.609 -4.227,-37.144 2.948,-54.026 9.077,-21.357 89.954,-14.153 113.334,-14.626 42.722,-0.863 92.638,-2.254 132.734,0.701 -11.396,-11.396 -29.122,-11.818 -46.427,-11.396 -54.868,-0.844 -140.604,-0.559 -175.376,-2.466 -51.431,-2.822 -69.842,48.893 -102.341,82.658 l -15.194,0 c 20.259,-28.277 42.097,-60.522 70.062,-85.256 4.509,-3.988 7.645,-4.615 15.194,-6.752 21.025,-5.953 224.959,0.844 224.959,0.844 9.285,2.11 19.415,3.376 28.278,7.174 -5.065,-13.084 -21.525,-16.46 -34.609,-18.147 -73.017,-2.11 -146.877,-0.422 -218.628,-5.065 -19.415,-5.909 -29.544,-29.9661 -44.739,-44.7391 l -32.499,-41.362 16.46,0.844 c 21.103,24.479 35.575,54.506 62.887,73.8601 6.02,4.266 134.602,3.027 202.584,2.954 10.96,-0.012 33.77,7.175 48.542,15.195 2.532,-3.376 -1.688,-6.331 -4.221,-8.863 -30.811,-29.5441 -94.362,-20.3431 -117.328,-20.2641 -40.285,0.14 -88.233,8.522 -121.559,-12.235 -8.141,-5.071 -6.752,-35.875 -2.953,-52.758 l 10.973,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3905"
|
||||
d="m 575.267,153.649 c -7.175,30.389 -29.544,57.822 -57.823,73.017 -17.727,3.799 -40.518,15.616 -54.868,-2.11 9.708,-8.863 27.434,-2.954 38.83,-10.13 29.544,-8.441 53.858,-34.474 68.796,-60.777 1.91,-1.321 3.195,-2.823 5.065,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3907"
|
||||
d="m 584.142,179.84 c -5.065,26.168 -17.727,53.602 -44.739,66.686 -11.818,5.487 -30.388,11.818 -41.362,2.11 l 0,-4.221 c 41.784,1.688 62.887,-42.206 79.77,-71.75 4.643,-0.422 5.065,3.798 6.331,7.175"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3909"
|
||||
d="m 611.567,280.265 c 19.879,4.224 39.249,-15.615 43.47,10.131 -16.883,8.863 -39.674,6.331 -57.4,1.266 -3.799,7.597 1.688,16.038 0,25.324 -2.532,24.902 -11.818,48.537 -33.765,63.731 -6.357,3.3 -7.677,5.247 -11.431,5.909 1.138,-5.702 1.527,-10.353 2.5,-13.899 4.346,-2.92 23.503,-15.22 24.125,-31.684 9.707,-34.609 -0.844,-68.796 -24.058,-94.12 l 15.194,-13.928 c 8.863,17.726 18.896,42.495 41.364,47.269"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3911"
|
||||
d="m 542.769,257.054 c 24.479,47.271 1.688,102.561 -4.221,151.098 2.532,18.149 5.065,36.719 20.259,49.381 -1.688,4.221 0.844,14.772 -5.909,12.24 -21.525,-11.396 -28.7,-34.187 -28.278,-57.822 -0.844,-41.784 21.525,-75.127 16.038,-117.333 L 536.86,286.6 c -17.305,18.57 -36.719,41.784 -35.453,70.905 l -11.396,2.11 c -12.662,-40.518 31.655,-63.743 37.564,-100.04 0,0 9.707,-3.786 15.194,-2.521"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:49.64359283px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
|
||||
x="794.13159"
|
||||
y="470.10266"
|
||||
id="text3926"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3928"
|
||||
x="794.13159"
|
||||
y="470.10266"
|
||||
style="font-weight:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:TeX Gyre Adventor;-inkscape-font-specification:TeX Gyre Adventor;font-style:normal;font-stretch:normal;font-variant:normal">www.ccc.de</tspan></text>
|
||||
<g
|
||||
id="layer1-5"
|
||||
inkscape:label="Layer 1"
|
||||
transform="matrix(1.81654,0,0,1.81654,31.999998,951.0675)">
|
||||
<g
|
||||
inkscape:export-ydpi="300.23013"
|
||||
inkscape:export-xdpi="300.23013"
|
||||
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
|
||||
id="g287"
|
||||
transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)">
|
||||
<path
|
||||
style="fill:#aab2ab"
|
||||
d="m 182.23532,75.39014 114.06396,0.20312 c 1.59375,0 3.01758,-0.23682 3.01758,3.18018 l -0.13965,37.56689 -119.82031,0 0,-37.70654 c 0,-1.68457 0.16309,-3.24365 2.87842,-3.24365 z"
|
||||
nodetypes="ccccccc"
|
||||
id="path3817_2_"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)"
|
||||
id="g5908_2_">
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
d="m 187.20944,-55.6792 c 0.006,8.68024 -7.02786,15.72095 -15.7081,15.72708 -8.68021,0.005 -15.72205,-7.02786 -15.72708,-15.70804 0,-0.0067 0,-0.01233 0,-0.01904 -0.005,-8.68134 7.02783,-15.72205 15.70807,-15.72711 8.68134,-0.0056 15.72208,7.02789 15.72711,15.70807 0,0.0056 0,0.01233 0,0.01904 z"
|
||||
rx="22.939548"
|
||||
type="arc"
|
||||
cy="264.3577"
|
||||
ry="22.939548"
|
||||
cx="296.35416"
|
||||
id="path5906_2_"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(-289.6157,99.0653)"
|
||||
id="g5706_2_">
|
||||
<path
|
||||
d="m 473.88455,-167.54724 c 3.48541,3.48596 5.22839,7.75391 5.22839,12.80273 0,5.04938 -1.7128,9.27148 -5.13834,12.66736 -3.63531,3.5766 -7.93179,5.36432 -12.88947,5.36432 -4.89777,0 -9.11987,-1.77261 -12.6651,-5.31955 -3.54584,-3.54581 -5.31845,-7.78299 -5.31845,-12.71213 0,-4.92859 1.77261,-9.19598 5.31845,-12.80273 3.4552,-3.48651 7.67725,-5.22894 12.6651,-5.22894 5.04829,0 9.31401,1.74243 12.79942,5.22894 z m -23.11798,2.34485 c -2.94675,2.97638 -4.41956,6.46289 -4.41956,10.46234 0,3.99835 1.45828,7.4552 4.37424,10.37067 2.91653,2.9165 6.38849,4.37476 10.41705,4.37476 4.02853,0 7.53018,-1.47281 10.50656,-4.41901 2.8259,-2.73584 4.23941,-6.17706 4.23941,-10.32642 0,-4.11804 -1.43646,-7.61292 -4.30768,-10.48474 -2.87064,-2.87067 -6.34988,-4.30652 -10.43829,-4.30652 -4.08837,0 -7.54638,1.44318 -10.37173,4.32892 z m 7.75449,8.70312 c -0.45032,-0.98163 -1.12433,-1.47223 -2.02325,-1.47223 -1.58914,0 -2.38342,1.06952 -2.38342,3.2085 0,2.13959 0.79428,3.20911 2.38342,3.20911 1.04938,0 1.79895,-0.5213 2.24866,-1.56512 l 2.20276,1.17303 c -1.04993,1.86548 -2.62506,2.79901 -4.72549,2.79901 -1.6199,0 -2.91763,-0.4967 -3.89206,-1.48956 -0.97607,-0.99341 -1.46274,-2.36273 -1.46274,-4.10797 0,-1.71558 0.50229,-3.07709 1.50748,-4.08563 1.00519,-1.00793 2.25705,-1.51251 3.75781,-1.51251 2.22012,0 3.80984,0.87488 4.77081,2.62286 l -2.38398,1.22051 z m 10.36334,0 c -0.45087,-0.98163 -1.11148,-1.47223 -1.98239,-1.47223 -1.62106,0 -2.43213,1.06952 -2.43213,3.2085 0,2.13959 0.81107,3.20911 2.43213,3.20911 1.05103,0 1.78717,-0.5213 2.20724,-1.56512 l 2.25201,1.17303 c -1.04825,1.86548 -2.62119,2.79901 -4.71768,2.79901 -1.61771,0 -2.91263,-0.4967 -3.88647,-1.48956 -0.97217,-0.99341 -1.45938,-2.36273 -1.45938,-4.10797 0,-1.71558 0.49448,-3.07709 1.48288,-4.08563 0.98782,-1.00793 2.24527,-1.51251 3.77347,-1.51251 2.21619,0 3.80368,0.87488 4.76132,2.62286 l -2.431,1.22051 z"
|
||||
id="path5708_2_"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
id="path294"
|
||||
d="m 297.29639,74.91064 -116.22951,0 c -1.24658,0 -2.26074,1.01465 -2.26074,2.26123 l 0,39.49561 c 0,0.28174 0.22852,0.51074 0.51025,0.51074 l 119.73,0 c 0.28174,0 0.51074,-0.229 0.51074,-0.51074 l 0,-39.4956 c 0,-1.24659 -1.01416,-2.26124 -2.26074,-2.26124 z m -116.22951,1.02149 116.22951,0 c 0.68359,0 1.23926,0.55615 1.23926,1.23975 0,0 0,15.91943 0,27.41846 l -83.07375,0 c -3.04492,5.50537 -8.91113,9.24365 -15.64355,9.24365 -6.73535,0 -12.6001,-3.73486 -15.64355,-9.24365 l -4.34814,0 c 0,-11.49902 0,-27.41846 0,-27.41846 -2e-5,-0.6836 0.55663,-1.23975 1.24022,-1.23975 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g296"
|
||||
enable-background="new ">
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
id="path298"
|
||||
d="m 265.60986,112.8833 c 0.0801,0.15576 0.1875,0.28174 0.32129,0.37842 0.13379,0.0962 0.29004,0.16797 0.46973,0.21436 0.18066,0.0469 0.36719,0.0703 0.55957,0.0703 0.12988,0 0.26953,-0.0107 0.41895,-0.0327 0.14844,-0.0215 0.28809,-0.064 0.41895,-0.12598 0.12988,-0.062 0.23926,-0.14795 0.3252,-0.25684 0.0879,-0.10889 0.13086,-0.24707 0.13086,-0.41553 0,-0.18018 -0.0576,-0.32617 -0.17285,-0.43848 -0.11426,-0.1123 -0.26562,-0.20508 -0.45215,-0.28027 -0.18555,-0.0742 -0.39746,-0.13965 -0.63281,-0.1958 -0.23633,-0.0562 -0.47559,-0.11816 -0.71777,-0.18701 -0.24902,-0.062 -0.49121,-0.13818 -0.72754,-0.22852 -0.23535,-0.0898 -0.44727,-0.20703 -0.63379,-0.3501 -0.18652,-0.14307 -0.33691,-0.32178 -0.45215,-0.53662 -0.11426,-0.21484 -0.17188,-0.47461 -0.17188,-0.7793 0,-0.34277 0.0732,-0.63965 0.21875,-0.8916 0.14648,-0.25195 0.33789,-0.46191 0.57422,-0.63037 0.23535,-0.16797 0.50293,-0.29248 0.80176,-0.37354 0.29785,-0.0806 0.59668,-0.12109 0.89453,-0.12109 0.34863,0 0.68262,0.0391 1.00293,0.11719 0.31934,0.0776 0.60449,0.2041 0.85254,0.37842 0.24902,0.17432 0.44629,0.39697 0.59277,0.66797 0.14551,0.271 0.21875,0.59961 0.21875,0.98535 l -1.42188,0 c -0.0127,-0.19922 -0.0547,-0.36426 -0.125,-0.49463 -0.0713,-0.13086 -0.16602,-0.2334 -0.2832,-0.30859 -0.11816,-0.0742 -0.25293,-0.12744 -0.4043,-0.1582 -0.15234,-0.0312 -0.31738,-0.0469 -0.49707,-0.0469 -0.11719,0 -0.23535,0.0127 -0.35254,0.0371 -0.11816,0.0254 -0.22461,0.0688 -0.32031,0.13086 -0.0967,0.0625 -0.17578,0.14014 -0.2373,0.2334 -0.0615,0.0937 -0.0928,0.21191 -0.0928,0.35498 0,0.13086 0.0244,0.23682 0.0742,0.31738 0.0498,0.0811 0.14844,0.15576 0.29395,0.22412 0.14551,0.0684 0.34766,0.13721 0.60547,0.20557 0.25781,0.0684 0.59473,0.15576 1.01172,0.26123 0.12402,0.0249 0.2959,0.0703 0.5166,0.13574 0.2207,0.0654 0.43945,0.16943 0.65723,0.3125 0.21777,0.14355 0.40527,0.33496 0.56445,0.57422 0.1582,0.23975 0.2373,0.54639 0.2373,0.91992 0,0.30518 -0.0596,0.58838 -0.17773,0.84961 -0.11816,0.26172 -0.29395,0.4873 -0.52734,0.67676 -0.2334,0.19043 -0.52246,0.33789 -0.86719,0.44385 -0.3457,0.10596 -0.74609,0.15869 -1.19922,0.15869 -0.36719,0 -0.72363,-0.0454 -1.06934,-0.13574 -0.34473,-0.0903 -0.65039,-0.23242 -0.91504,-0.42578 -0.26367,-0.19336 -0.47363,-0.43994 -0.62988,-0.73877 -0.15527,-0.29932 -0.22949,-0.65381 -0.22363,-1.06494 l 1.42188,0 c -3e-5,0.22412 0.04,0.41406 0.12106,0.56933 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
id="path300"
|
||||
d="m 273.8667,107.8667 2.49316,6.66406 -1.52246,0 -0.50391,-1.48438 -2.49316,0 -0.52246,1.48438 -1.47461,0 2.52051,-6.66406 1.50293,0 z m 0.084,4.08594 -0.83984,-2.44336 -0.0186,0 -0.86914,2.44336 1.72753,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g302"
|
||||
enable-background="new ">
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
id="path304"
|
||||
d="m 239.17821,107.8667 c 0.31738,0 0.60742,0.0283 0.86914,0.084 0.26172,0.0561 0.48633,0.14795 0.67383,0.27539 0.18652,0.12744 0.33203,0.29688 0.43457,0.5083 0.10254,0.21142 0.1543,0.47266 0.1543,0.78369 0,0.33594 -0.0762,0.61523 -0.22949,0.83936 -0.15234,0.22412 -0.37891,0.40723 -0.67773,0.55029 0.41211,0.11816 0.71973,0.3252 0.92285,0.62109 0.20312,0.29589 0.30469,0.65234 0.30469,1.06934 0,0.33594 -0.0654,0.62695 -0.19629,0.87305 -0.13086,0.24561 -0.30762,0.44629 -0.52832,0.60205 -0.22168,0.15576 -0.47461,0.271 -0.75781,0.34521 -0.28418,0.0752 -0.5752,0.1123 -0.875,0.1123 l -3.23633,0 0,-6.66406 3.14159,0 0,1e-5 z m -0.1875,2.69531 c 0.26172,0 0.47656,-0.062 0.64551,-0.18604 0.16797,-0.12451 0.25195,-0.32568 0.25195,-0.60498 0,-0.15527 -0.0283,-0.28271 -0.084,-0.38184 -0.0566,-0.0996 -0.13086,-0.17676 -0.22461,-0.23291 -0.0937,-0.0557 -0.20117,-0.0947 -0.32227,-0.11621 -0.12207,-0.022 -0.24805,-0.0327 -0.37891,-0.0327 l -1.37305,0 0,1.55469 1.48536,0 z m 0.0859,2.82813 c 0.14355,0 0.28027,-0.0137 0.41113,-0.042 0.13086,-0.0278 0.24707,-0.0747 0.34668,-0.13965 0.0996,-0.0654 0.17871,-0.1543 0.23828,-0.26611 0.0596,-0.11181 0.0889,-0.25488 0.0889,-0.4292 0,-0.3418 -0.0967,-0.58594 -0.29004,-0.73193 -0.19336,-0.14599 -0.44922,-0.21924 -0.7666,-0.21924 l -1.59961,0 0,1.82812 1.57129,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
id="path306"
|
||||
d="m 241.88914,107.8667 1.64355,0 1.56055,2.63184 1.55078,-2.63184 1.63379,0 -2.47363,4.10645 0,2.55762 -1.46875,0 0,-2.59473 -2.44629,-4.06934 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)"
|
||||
id="g6316_1_">
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
d="m -175.0083,-139.1153 c 0.006,9.4118 -7.61725,17.04779 -17.02982,17.05481 -9.41101,0.007 -17.047,-7.61725 -17.05481,-17.02979 0,-0.008 0,-0.0172 0,-0.025 -0.006,-9.41254 7.6188,-17.047 17.02982,-17.05481 9.41257,-0.007 17.04855,7.61804 17.05481,17.02985 0,0.009 0,0.0164 0,0.025 z"
|
||||
rx="29.209877"
|
||||
type="arc"
|
||||
cy="252.08646"
|
||||
ry="29.209877"
|
||||
cx="475.97119"
|
||||
id="path6318_1_"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(-23.9521,-89.72962)"
|
||||
id="g6320_1_">
|
||||
<path
|
||||
d="m -168.2204,-68.05536 c -5.17194,0 -9.54852,1.80469 -13.13135,5.41333 -3.67661,3.73444 -5.51413,8.1532 -5.51413,13.25635 0,5.10315 1.83752,9.49152 5.51413,13.1626 3.67502,3.67194 8.05316,5.50787 13.13135,5.50787 5.14066,0 9.59537,-1.85156 13.36728,-5.55475 3.55005,-3.51562 5.3266,-7.88831 5.3266,-13.11572 0,-5.22662 -1.8078,-9.64697 -5.42191,-13.25635 -3.61407,-3.60864 -8.03756,-5.41333 -13.27197,-5.41333 z m 0.0469,3.36017 c 4.23752,0 7.836,1.49298 10.79697,4.48053 2.98907,2.9563 4.48441,6.56567 4.48441,10.82898 0,4.29382 -1.46252,7.85712 -4.39224,10.68915 -3.08438,3.04926 -6.71411,4.57349 -10.88913,4.57349 -4.17505,0 -7.7735,-1.5094 -10.79541,-4.52661 -3.02188,-3.01953 -4.53284,-6.59692 -4.53284,-10.73602 0,-4.13831 1.52658,-7.74847 4.57971,-10.82898 2.92815,-2.98756 6.51098,-4.48054 10.74853,-4.48054 z"
|
||||
id="path6322_1_"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -176.49548,-52.02087 c 0.74377,-4.69769 4.05161,-7.20862 8.1954,-7.20862 5.96097,0 9.59225,4.32501 9.59225,10.09229 0,5.62738 -3.86411,9.99927 -9.686,9.99927 -4.00473,0 -7.58914,-2.46484 -8.24228,-7.30084 l 4.70319,0 c 0.14062,2.51099 1.77032,3.39459 4.09845,3.39459 2.65317,0 4.37817,-2.4649 4.37817,-6.23291 0,-3.95233 -1.49063,-6.04535 -4.28598,-6.04535 -2.04846,0 -3.8172,0.74457 -4.19064,3.30157 l 1.36874,-0.007 -3.70316,3.7016 -3.7016,-3.7016 1.47346,0.007 z"
|
||||
id="path6324_1_"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g313">
|
||||
<circle
|
||||
style="fill:#ffffff"
|
||||
id="circle315"
|
||||
r="10.8064"
|
||||
cy="90.224609"
|
||||
cx="242.56226" />
|
||||
<g
|
||||
id="g317">
|
||||
<path
|
||||
id="path319"
|
||||
d="m 245.68994,87.09766 c 0,-0.4165 -0.33789,-0.75342 -0.75391,-0.75342 l -4.77246,0 c -0.41602,0 -0.75391,0.33691 -0.75391,0.75342 l 0,4.77295 1.33105,0 0,5.65234 3.61719,0 0,-5.65234 1.33203,0 0,-4.77295 1e-5,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<circle
|
||||
id="circle321"
|
||||
r="1.63232"
|
||||
cy="84.083008"
|
||||
cx="242.5498" />
|
||||
</g>
|
||||
<path
|
||||
style="clip-rule:evenodd;fill-rule:evenodd"
|
||||
id="path323"
|
||||
d="m 242.53467,78.31836 c -3.23145,0 -5.96826,1.12744 -8.20752,3.38379 -2.29785,2.33301 -3.44629,5.09521 -3.44629,8.28418 0,3.18897 1.14844,5.93213 3.44629,8.22705 2.29785,2.29443 5.03418,3.44189 8.20752,3.44189 3.21289,0 5.99805,-1.15674 8.35352,-3.47168 2.2207,-2.19678 3.33008,-4.92969 3.33008,-8.19727 0,-3.26758 -1.12891,-6.02881 -3.3877,-8.28418 -2.25879,-2.25634 -5.02442,-3.38378 -8.2959,-3.38378 z m 0.0293,2.09961 c 2.64844,0 4.89746,0.93359 6.74707,2.80078 1.87012,1.84717 2.80469,4.10352 2.80469,6.76758 0,2.68359 -0.91504,4.91113 -2.74609,6.68066 -1.92773,1.90576 -4.19629,2.8584 -6.80566,2.8584 -2.60937,0 -4.8584,-0.94287 -6.74658,-2.82959 -1.88965,-1.88623 -2.8335,-4.12256 -2.8335,-6.70947 0,-2.58643 0.9541,-4.84229 2.8623,-6.76758 1.83057,-1.86719 4.07031,-2.80078 6.71777,-2.80078 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
146
osc16/artwork/old/pause.svg
Normal file
|
@ -0,0 +1,146 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 1920 1080"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="pause.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
y="-40%"
|
||||
height="180%"
|
||||
x="-40%"
|
||||
width="180%"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="glow">
|
||||
<feFlood
|
||||
flood-opacity="1.0"
|
||||
flood-color="rgb(255,255,255)"
|
||||
result="flood"
|
||||
id="glowFlood" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4451" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="40"
|
||||
result="blur"
|
||||
id="feGaussianBlur4453" />
|
||||
<feOffset
|
||||
dx="0"
|
||||
dy="0"
|
||||
result="offset"
|
||||
id="feOffset4455" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4457" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49504557"
|
||||
inkscape:cx="569.61926"
|
||||
inkscape:cy="535.95997"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer-icons"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true" />
|
||||
<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="Background">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:23.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect4162"
|
||||
width="1920"
|
||||
height="1080"
|
||||
x="0"
|
||||
y="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Icons"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer-icons"
|
||||
transform="translate(0,27.637839)"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="text"
|
||||
style="filter:url(#glow)"
|
||||
inkscape:label="#g4428"
|
||||
transform="matrix(1.1373172,0,0,1.1373172,-554.2609,-96.960237)">
|
||||
<path
|
||||
d="m 832.90692,410.54575 0,203.63284 40.72656,0 0,-63.99889 52.36273,0 c 56.72629,0 87.27119,-30.54493 87.27119,-69.81698 0,-39.27204 -30.5449,-69.81697 -87.27119,-69.81697 l -93.08929,0 z m 93.08929,33.45397 c 27.63589,0 45.09013,17.45424 45.09013,36.363 0,18.90877 -17.45424,36.36301 -45.09013,36.36301 l -52.36273,0 0,-72.72601 52.36273,0 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:290.90405273px;line-height:559.99999046%;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path4413"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1148.9333,410.54575 -50.9082,0 -84.3622,203.63284 43.6356,0 15.9997,-40.72657 100.3619,0 15.9997,40.72657 43.6356,0 -84.3621,-203.63284 z m -26.1814,43.63561 1.4545,0 34.9085,84.36218 -71.2715,0 34.9085,-84.36218 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:290.90405273px;line-height:559.99999046%;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path4415"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1340.1663,619.99667 c 56.7263,0 93.0893,-36.36301 93.0893,-87.27122 l 0,-122.1797 -40.7266,0 0,122.1797 c 0,31.99945 -20.3632,52.36273 -52.3627,52.36273 -31.9994,0 -52.3627,-20.36328 -52.3627,-52.36273 l 0,-122.1797 -40.7266,0 0,122.1797 c 0,50.90821 36.363,87.27122 93.0893,87.27122 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:290.90405273px;line-height:559.99999046%;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path4417"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1553.9581,404.72767 c -50.9082,0 -79.9986,29.09041 -79.9986,58.18081 0,74.18053 114.9071,55.27177 114.9071,91.63478 0,15.99972 -15.9998,31.99944 -49.4537,31.99944 -33.1631,0 -56.7263,-21.8178 -56.7263,-21.8178 l -17.4543,27.63588 c 0,0 29.9631,27.63589 77.0896,27.63589 58.1808,0 88.7257,-30.54493 88.7257,-65.45341 0,-71.27149 -114.9071,-50.90821 -114.9071,-91.63478 0,-10.18164 13.0907,-23.27232 40.7266,-23.27232 30.5449,0 53.8173,17.45424 53.8173,17.45424 l 15.9997,-27.63588 c 0,0 -29.0904,-24.72685 -72.726,-24.72685 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:290.90405273px;line-height:559.99999046%;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path4419"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 1664.1425,614.17859 165.8153,0 0,-33.45397 -125.0887,0 0,-50.90821 84.3622,0 0,-33.45396 -84.3622,0 0,-52.36273 122.1797,0 0,-33.45397 -162.9063,0 0,203.63284 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:290.90405273px;line-height:559.99999046%;font-family:'Prosto Sans';-inkscape-font-specification:'Prosto Sans Bold';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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path4421"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Text"
|
||||
style="display:inline;" />
|
||||
</svg>
|
After Width: | Height: | Size: 7.4 KiB |
4310
osc16/artwork/outro.svg
Normal file
After Width: | Height: | Size: 201 KiB |
2654
osc16/artwork/pause.svg
Normal file
After Width: | Height: | Size: 160 KiB |
113
osc16_dv/__init__.py
Normal file
|
@ -0,0 +1,113 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://events.opensuse.org/conference/oSC16/schedule.xml'
|
||||
|
||||
# For (really) too long titles
|
||||
titlemap = {
|
||||
#
|
||||
}
|
||||
|
||||
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):
|
||||
move=50
|
||||
|
||||
# 3 Sekunde Text Fadein
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
('textblock', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, -move, move, frames)),
|
||||
)
|
||||
|
||||
# 2 Sekunden stehen lassen
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
# 3 Sekunde Text Fadeout
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||
('textblock', 'attr', 'transform', 'translate(%.4f, 0)' % easeInQuad(i, 0, move, frames)),
|
||||
)
|
||||
|
||||
def pauseFrames(parameters):
|
||||
frames = 25*3
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
|
||||
)
|
||||
|
||||
frames = 25*1
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(p):
|
||||
# 5 Sekunden stehen bleiben
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield []
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.dv',
|
||||
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.dv',
|
||||
# pauseFrames
|
||||
# )
|
||||
#
|
||||
render(
|
||||
'outro.svg',
|
||||
'../outro.dv',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
def tasks(queue, args):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
|
||||
if len(args) > 0:
|
||||
if not str(event['id']) in args:
|
||||
continue
|
||||
|
||||
# generate a task description and put it into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'intro.svg',
|
||||
outfile = str(event['id'])+".dv",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$ID': event['id'],
|
||||
'$TITLE': event['title'],
|
||||
'$SUBTITLE': event['subtitle'],
|
||||
'$SPEAKER': event['personnames']
|
||||
}
|
||||
))
|
4164
osc16_dv/artwork/intro.svg
Normal file
After Width: | Height: | Size: 190 KiB |
556
osc16_dv/artwork/outro.svg
Normal file
|
@ -0,0 +1,556 @@
|
|||
<?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="720"
|
||||
height="576"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="outro.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3807">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3809" />
|
||||
<stop
|
||||
id="stop3815"
|
||||
offset="0.2"
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||
offset="1"
|
||||
id="stop3811" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3807"
|
||||
id="linearGradient3813"
|
||||
x1="650"
|
||||
y1="595.07648"
|
||||
x2="1230"
|
||||
y2="595.07648"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.99744172,-74.949237,-22.857439)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3807"
|
||||
id="linearGradient3819"
|
||||
x1="575.05078"
|
||||
y1="570.69666"
|
||||
x2="1155.0508"
|
||||
y2="570.69666"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3807-2"
|
||||
id="linearGradient3819-8"
|
||||
x1="575.05078"
|
||||
y1="570.69666"
|
||||
x2="1155.0508"
|
||||
y2="570.69666"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect" />
|
||||
<linearGradient
|
||||
id="linearGradient3807-2">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3809-5" />
|
||||
<stop
|
||||
id="stop3815-1"
|
||||
offset="0.2"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3811-1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="matrix(2.3933139,0,0,1,-1291.5105,359.35582)"
|
||||
y2="570.69666"
|
||||
x2="1155.0508"
|
||||
y1="570.69666"
|
||||
x1="575.05078"
|
||||
spreadMethod="reflect"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4017-1"
|
||||
xlink:href="#linearGradient3807-2-2"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient3807-2-2">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3809-5-5" />
|
||||
<stop
|
||||
id="stop3815-1-7"
|
||||
offset="0.2"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3811-1-0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
y2="570.69666"
|
||||
x2="1155.0508"
|
||||
y1="570.69666"
|
||||
x1="575.05078"
|
||||
spreadMethod="reflect"
|
||||
gradientTransform="matrix(2.3933139,0,0,1,-842.013,2.87365)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4510"
|
||||
xlink:href="#linearGradient3807-2-2"
|
||||
inkscape:collect="always" />
|
||||
<filter
|
||||
id="filter4858"
|
||||
inkscape:label="Drop Shadow"
|
||||
width="1.2"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feFlood
|
||||
id="feFlood4860"
|
||||
flood-opacity="0.29666666666666669"
|
||||
flood-color="rgb(255,255,255)"
|
||||
result="flood" />
|
||||
<feComposite
|
||||
id="feComposite4862"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4864"
|
||||
stdDeviation="2"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset4866"
|
||||
dx="2"
|
||||
dy="2.2000000000000002"
|
||||
result="offset" />
|
||||
<feComposite
|
||||
id="feComposite4868"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
dy="0" />
|
||||
</filter>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath18">
|
||||
<path
|
||||
d="m 312.117,871.087 c -6.264,-1.72 -10.84,-10.647 -14.167,-15.645 l 0,0 c -4.194,-6.302 -7.979,-12.897 -11.534,-19.58 l 0,0 c -6.794,-12.771 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.658,-134.44 c -34.506,-10.769 -67.49,-29.469 -99.699,-48.874 l 0,0 c 12.812,-37.59 55.526,-58.834 95.24,-58.766 l 0,0 c 0.024,0 0.047,0 0.071,0 l 0,0 c -6.665,-0.282 -13.34,-0.125 -19.96,0.504 l 0,0 c 17.08,-29.328 37.542,-57.811 69.853,-68.2 l 0,0 c 26.039,-8.372 54.524,-0.76 79.568,10.242 l 0,0 c 16.073,7.061 37.811,23.424 50.174,37.459 l 0,0 c -5.443,-6.931 -9.356,-11.85 -9.378,-14.226 l 0,0 c -0.036,-4.022 11.889,-7.249 15.319,-7.836 l 0,0 c 4.537,-0.776 55.479,-8.821 65.762,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.162 l 0,0 c 9.775,1.619 19.405,4.609 27.984,9.637 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.648 -9.272,-36.305 l 0,0 c -0.171,-0.666 -0.311,-1.344 -0.413,-2.024 l 0,0 c -3.39,-22.815 -3.156,-46.468 -3.991,-69.493 l 0,0 c -0.901,-24.858 -1.418,-49.754 -2.83,-74.59 l 0,0 c -0.791,-13.917 -3.767,-27.11 -7.947,-40.362 l 0,0 c -1.785,-5.66 -3.752,-11.282 -5.94,-16.816 l 0,0 c 2.853,8.361 4.713,17.016 5.261,25.851 l 0,0 c 0.555,8.93 -0.352,17.967 -2.745,26.592 l 0,0 c -2.662,9.599 -7.206,18.729 -13.686,26.328 l 0,0 c -1.536,1.801 -2.531,3.044 -3.792,5.045 l 0,0 c -1.313,2.081 -3.691,4.003 -5.535,5.683 l 0,0 c -4.28,3.901 -8.981,7.314 -13.802,10.512 l 0,0 c -8.952,5.937 -18.089,11.527 -28.039,15.555 l 0,0 c -22.597,9.151 -48.915,13.05 -72.999,8.126 l 0,0 c -49.265,-10.074 -94.2,-46.844 -113.089,-93.79 l 0,0 c -7.565,-18.805 -8.616,-45.719 -6.222,-65.756 l 0,0 c 7.2,-60.243 65.422,-100.088 125.514,-108.448 l 0,0 c 24.824,-3.455 52.18,-1.693 76.294,4.869 l 0,0 c 50.617,13.775 89.298,54.937 112.844,99.669 l 0,0 c 2.794,5.307 14.736,24.552 14.675,26.909 l 0,0 c 0.267,-10.318 3.457,-20.545 9.106,-29.184 l 0,0 16.227,92.559 c 1.621,-9.021 7.294,-17.234 15.157,-21.945 l 0,0 0.204,60.905 c 1.41,-9.085 6.602,-14.523 14.491,-19.244 l 0,0 c -4.166,27.38 -4.717,52.34 -2.482,79.945 l 0,0 c 7.063,-4.324 13.65,-8.62 20.658,-10.281 l 0,0 c -3.651,26.792 -12.97,49.694 -16.621,76.487 l 0,0 c 10.534,-8.562 10.319,-10.84 19.664,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.882,-0.923 c -10.728,25.86 -25.45,41.841 -43.486,63.254 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.489 l 0,0 c -14.416,20.027 -33.431,26.496 -56.345,35.655 l 0,0 c 14.572,6.667 21.146,13.146 30.811,25.412 l 0,0 c -25.908,4.436 -43.613,6.974 -69.672,10.409 l 0,0 c 9.984,6.221 25.959,11.735 32.646,23.966 l 0,0 c -23.093,-0.068 -51.514,-1.99 -74.606,-2.058 l 0,0 c 3.118,9.15 16.024,22.056 15.344,33.286 l 0,0 -67.289,-24.136 c -2.029,7.646 4.971,10.282 1.623,31.588 l 0,0 -54.542,-23.538 c 0,6.9 9.282,21.518 5.236,31.248 l 0,0 c -1.052,2.53 -27.624,-18.934 -36.917,-20.788 l 0,0 c 0,0 19.327,52.162 14.75,52.15 l 0,0 c -15.455,-0.042 -33.75,-18.848 -49.058,-21.738 l 0,0 c -3.6,5.947 -6.717,12.18 -9.698,18.456 l 0,0 c -5.957,12.543 -11.32,25.358 -17.137,37.966 l 0,0 c -2.809,6.088 -5.71,12.138 -8.882,18.045 l 0,0 c -2.044,3.808 -3.89,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.531 -9.801,2.531 l 0,0 c -1.401,0 -2.751,-0.155 -3.948,-0.484 m 41.469,-271.97 c -2.238,-1.885 -4.527,-3.722 -6.865,-5.509 l 0,0 c 2.327,1.793 4.616,3.631 6.865,5.509 m 85.349,-45.569 c 0,0 0,0 0,0 M 383.533,241.747 c -16.443,19.302 -23.431,46.211 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.037 39.804,56.683 l 0,0 c 20.808,11.645 47.481,12.699 68.622,1.67 l 0,0 c 21.142,-11.029 35.713,-34.183 35.364,-58.026 l 0,0 c -0.349,-23.843 -16.558,-46.24 -39.055,-54.146 l 0,0 c -13.248,-4.655 -27.77,-4.347 -39.5,3.375 l 0,0 c -11.729,7.722 -19.3,22.583 -15.553,36.117 l 0,0 c 3.746,13.535 19.143,23.26 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.83 14.374,-7.338 l 0,0 c 6.351,-3.339 14.186,-5.411 20.409,0.204 l 0,0 c 2.348,2.119 3.893,5.052 4.395,8.174 l 0,0 c 1.65,10.257 -5.836,19.545 -14.699,22.812 l 0,0 c -6.84,2.521 -14.529,2.26 -21.749,1.25 l 0,0 c -23.7,-3.318 -46.176,-17.837 -57.931,-38.681 l 0,0 c -11.755,-20.845 -11.322,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.479,-17.733 32.216,-21.387 l 0,0 c -16.77,4.192 -32.281,13.594 -43.507,26.771 m 146.601,21.02 c 0.24,0.346 0.478,0.693 0.716,1.042 l 0,0 c -2.094,-3.187 -4.311,-6.295 -6.662,-9.313 l 0,0 c -5.252,-6.741 -11.254,-13.003 -17.851,-18.524 l 0,0 c 9.038,7.807 17.014,17.001 23.797,26.795"
|
||||
id="path20"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath28">
|
||||
<path
|
||||
d="m 314.284,874.024 c -6.264,-1.721 -10.84,-10.648 -14.166,-15.645 l 0,0 c -4.194,-6.302 -7.981,-12.897 -11.535,-19.58 l 0,0 c -6.794,-12.772 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.657,-134.44 c -34.506,-10.769 -67.491,-29.47 -99.701,-48.874 l 0,0 c 12.813,-37.59 55.528,-58.835 95.241,-58.767 l 0,0 c 0.017,0 0.031,0 0.048,0 l 0,0 c -6.659,-0.281 -13.323,-0.124 -19.938,0.505 l 0,0 c 17.081,-29.328 37.544,-57.812 69.854,-68.2 l 0,0 c 26.039,-8.373 54.524,-0.761 79.568,10.242 l 0,0 c 16.072,7.06 37.807,23.42 50.171,37.455 l 0,0 c -5.441,-6.928 -9.354,-11.847 -9.375,-14.223 l 0,0 c -0.036,-4.022 11.889,-7.249 15.32,-7.836 l 0,0 c 4.536,-0.776 55.478,-8.82 65.761,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.161 l 0,0 c 9.774,1.618 19.404,4.608 27.984,9.636 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.647 -9.272,-36.304 l 0,0 c -0.171,-0.666 -0.312,-1.345 -0.413,-2.025 l 0,0 c -3.39,-22.814 -3.157,-46.467 -3.991,-69.492 l 0,0 c -0.902,-24.859 -1.418,-49.754 -2.83,-74.591 l 0,0 c -0.791,-13.916 -3.768,-27.109 -7.947,-40.362 l 0,0 c -1.785,-5.661 -3.753,-11.284 -5.942,-16.82 l 0,0 c 2.854,8.362 4.714,17.02 5.263,25.856 l 0,0 c 0.554,8.929 -0.353,17.967 -2.745,26.592 l 0,0 c -2.662,9.598 -7.206,18.729 -13.686,26.327 l 0,0 c -1.536,1.801 -3.494,3.382 -4.757,5.383 l 0,0 c -1.312,2.081 -2.726,3.665 -4.57,5.345 l 0,0 c -4.28,3.901 -8.981,7.315 -13.802,10.512 l 0,0 c -8.952,5.938 -18.598,10.791 -28.547,14.819 l 0,0 c -22.597,9.149 -47.586,13.078 -71.67,8.153 l 0,0 c -49.265,-10.074 -95.021,-46.134 -113.91,-93.081 l 0,0 c -7.566,-18.804 -8.616,-45.718 -6.222,-65.755 l 0,0 c 7.2,-60.244 65.422,-100.089 125.514,-108.45 l 0,0 c 24.823,-3.453 52.179,-1.692 76.293,4.87 l 0,0 c 50.618,13.775 89.298,54.937 112.845,99.669 l 0,0 c 2.794,5.306 14.736,24.552 14.675,26.91 l 0,0 c 0.266,-10.318 3.457,-20.545 9.105,-29.185 l 0,0 16.228,92.559 c 1.622,-9.021 7.294,-17.234 15.156,-21.944 l 0,0 0.204,60.905 c 1.411,-9.085 6.603,-14.524 14.491,-19.245 l 0,0 c -4.165,27.381 -4.717,52.34 -2.481,79.945 l 0,0 c 7.063,-4.324 13.65,-8.619 20.657,-10.281 l 0,0 c -3.651,26.793 -12.969,49.695 -16.621,76.488 l 0,0 c 10.535,-8.562 10.321,-10.841 19.665,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.881,-0.924 c -10.726,25.861 -25.449,41.842 -43.485,63.255 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.488 l 0,0 c -14.416,20.028 -33.431,26.496 -56.345,35.655 l 0,0 c 14.571,6.668 21.146,13.147 30.811,25.413 l 0,0 c -25.908,4.436 -43.613,6.973 -69.673,10.409 l 0,0 c 9.985,6.22 25.961,11.735 32.648,23.966 l 0,0 c -23.094,-0.069 -51.515,-1.991 -74.608,-2.06 l 0,0 c 3.119,9.152 16.025,22.058 15.345,33.287 l 0,0 -67.289,-24.135 c -2.03,7.644 4.971,10.282 1.624,31.588 l 0,0 -54.543,-23.538 c 0,6.899 9.282,21.517 5.235,31.248 l 0,0 c -1.052,2.53 -27.623,-18.935 -36.917,-20.789 l 0,0 c 0,0 19.328,52.162 14.751,52.15 l 0,0 c -15.456,-0.043 -33.751,-18.848 -49.059,-21.737 l 0,0 c -3.6,5.946 -6.717,12.18 -9.697,18.454 l 0,0 c -5.958,12.545 -11.32,25.36 -17.137,37.968 l 0,0 c -2.808,6.086 -5.71,12.137 -8.882,18.045 l 0,0 c -2.044,3.808 -3.889,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.53 -9.801,2.53 l 0,0 c -1.401,0 -2.752,-0.154 -3.948,-0.483 m 41.469,-271.971 c -2.231,-1.88 -4.511,-3.71 -6.842,-5.492 l 0,0 c 2.319,1.787 4.601,3.62 6.842,5.492 m 85.349,-45.569 c 0,0 0,0 0,0 M 385.7,244.684 c -16.443,19.301 -23.431,46.21 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.036 39.804,56.681 l 0,0 c 20.807,11.646 47.481,12.699 68.623,1.672 l 0,0 c 21.141,-11.029 35.712,-34.184 35.362,-58.026 l 0,0 C 510.325,292.31 494.456,269.141 471.96,261.234 l 0,0 c -13.249,-4.656 -28.749,-3.925 -40.478,3.797 l 0,0 c -11.73,7.722 -18.663,22.934 -14.915,36.468 l 0,0 c 3.747,13.534 19.144,23.259 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.831 14.374,-7.339 l 0,0 c 6.352,-3.338 14.186,-5.411 20.41,0.205 l 0,0 c 2.347,2.118 3.891,5.052 4.393,8.173 l 0,0 c 1.651,10.257 -5.876,18.554 -14.739,21.821 l 0,0 c -6.84,2.522 -14.381,2.425 -21.601,1.414 l 0,0 c -23.699,-3.317 -46.283,-17.011 -58.038,-37.854 l 0,0 c -11.755,-20.844 -11.323,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.481,-17.733 32.218,-21.388 l 0,0 c -16.769,4.192 -32.283,13.595 -43.509,26.773 m 146.6,21.019 c 0.248,0.358 0.494,0.716 0.739,1.075 l 0,0 c -2.1,-3.197 -4.324,-6.317 -6.684,-9.346 l 0,0 c -5.241,-6.727 -11.231,-12.977 -17.813,-18.49 l 0,0 c 9.023,7.8 16.985,16.98 23.758,26.761"
|
||||
id="path30"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath1428">
|
||||
<path
|
||||
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||
id="path1430"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath1436">
|
||||
<path
|
||||
d="m 153.069,874.507 547.722,0 0,-721.1 -547.722,0 0,721.1 z"
|
||||
id="path1438"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<radialGradient
|
||||
fx="0"
|
||||
fy="0"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(74.078758,0,0,-59.263008,239.82324,731.99097)"
|
||||
spreadMethod="pad"
|
||||
id="radialGradient1468">
|
||||
<stop
|
||||
style="stop-opacity:1;stop-color:#ffffff"
|
||||
offset="0"
|
||||
id="stop1470" />
|
||||
<stop
|
||||
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||
offset="1"
|
||||
id="stop1472" />
|
||||
</radialGradient>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath1480">
|
||||
<path
|
||||
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||
id="path1482"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<radialGradient
|
||||
fx="0"
|
||||
fy="0"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(74.078758,0,0,-59.263008,324.3374,727.64069)"
|
||||
spreadMethod="pad"
|
||||
id="radialGradient1516">
|
||||
<stop
|
||||
style="stop-opacity:1;stop-color:#ffffff"
|
||||
offset="0"
|
||||
id="stop1518" />
|
||||
<stop
|
||||
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||
offset="1"
|
||||
id="stop1520" />
|
||||
</radialGradient>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath1528">
|
||||
<path
|
||||
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||
id="path1530"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath1560">
|
||||
<path
|
||||
d="m 529.474,574.673 c 6.87,-7.702 13.741,-15.405 20.611,-23.107 l 0,0 c 2.925,-3.279 6.035,-7.149 6.026,-11.402 l 0,0 c -10e-4,-0.461 -0.038,-0.925 -0.116,-1.394 l 0,0 c -0.679,-4.076 -4.235,-6.974 -7.641,-9.312 l 0,0 c -8.134,-5.582 -16.812,-10.954 -24.245,-17.441 l 0,0 c -3.348,-2.922 -15.688,-9.847 -17.856,-11.768 l 0,0 c -10.514,-9.322 -29.698,-8.23 -43.695,-6.992 l 0,0 c -2.978,0.263 -6.376,0.501 -8.544,-1.558 l 0,0 c -1.461,-1.388 -1.959,-3.483 -2.345,-5.461 l 0,0 c -0.541,-2.777 -0.961,-5.706 -0.964,-8.569 l 0,0 c -0.005,-3.924 0.773,-7.721 3.093,-10.826 l 0,0 c 5.5,-7.361 17.621,-6.775 24.515,-0.701 l 0,0 c 3.855,3.397 7.098,8.39 12.216,8.854 l 0,0 c 5.187,0.469 9.462,-4.158 11.606,-8.906 l 0,0 c 2.145,-4.748 3.149,-10.106 6.358,-14.211 l 0,0 c 6.392,-8.178 21.134,-7.2 26.389,1.752 l 0,0 c 1.293,2.202 1.885,4.672 1.889,7.167 l 0,0 c 0.013,7.643 -5.488,15.526 -13.22,16.729 l 0,0 c -0.999,1.438 -1.44,3.117 -1.442,4.842 l 0,0 c -0.002,2.689 1.063,5.487 2.742,7.64 l 0,0 c 2.755,3.534 6.807,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.214 l 0,0 c 2.132,2.238 4.348,4.93 4.35,7.937 l 0,0 c 0,0.269 -0.017,0.54 -0.054,0.814 l 0,0 c -0.28,2.082 -1.645,3.833 -2.959,5.471 l 0,0 c -9.167,11.424 -18.333,22.849 -27.5,34.273 l 0,0 -23.071,-6.074 z"
|
||||
id="path1562"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath1646">
|
||||
<path
|
||||
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||
id="path1648"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath1658">
|
||||
<path
|
||||
d="m 444.813,571.047 c 6.832,-7.66 13.665,-15.32 20.499,-22.979 l 0,0 c 3.241,-3.634 6.709,-7.994 5.908,-12.797 l 0,0 c -0.056,-0.338 -0.132,-0.668 -0.226,-0.99 l 0,0 c -0.987,-3.65 -4.29,-6.315 -7.463,-8.492 l 0,0 c -8.135,-5.582 -16.812,-10.954 -24.246,-17.441 l 0,0 c -3.348,-2.922 -15.687,-9.846 -17.855,-11.769 l 0,0 c -10.514,-9.321 -29.699,-8.229 -43.695,-6.992 l 0,0 c -2.979,0.264 -6.375,0.503 -8.543,-1.557 l 0,0 c -0.945,-0.898 -1.487,-2.091 -1.857,-3.358 l 0,0 c -0.178,-0.638 -0.315,-1.291 -0.44,-1.933 l 0,0 c -1.283,-6.581 -1.885,-14.024 2.129,-19.396 l 0,0 c 5.499,-7.36 17.621,-6.774 24.514,-0.7 l 0,0 c 3.856,3.397 7.099,8.391 12.216,8.854 l 0,0 c 5.189,0.47 9.464,-4.158 11.607,-8.906 l 0,0 c 2.144,-4.747 3.15,-10.106 6.357,-14.211 l 0,0 c 6.393,-8.177 21.135,-7.199 26.39,1.752 l 0,0 c 0.57,0.971 1.003,1.993 1.311,3.046 l 0,0 c 2.398,8.633 -3.607,19.267 -12.691,20.68 l 0,0 c -1.621,2.332 -1.772,5.302 -0.964,8.064 l 0,0 c 0.46,1.658 1.268,3.248 2.313,4.588 l 0,0 c 2.754,3.534 6.806,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.215 l 0,0 c 1.669,1.751 3.39,3.782 4.06,6.024 l 0,0 c 0.225,0.825 0.306,1.678 0.187,2.556 l 0,0 c -0.279,2.082 -1.644,3.832 -2.959,5.47 l 0,0 c -9.166,11.425 -18.334,22.85 -27.5,34.274 l 0,0 -22.909,-6.031 z"
|
||||
id="path1660"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.82"
|
||||
inkscape:cx="378.01922"
|
||||
inkscape:cy="259.85857"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1295"
|
||||
inkscape:window-height="744"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:snap-to-guides="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,0"
|
||||
id="guide3017" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1080"
|
||||
id="guide3019" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="0,0"
|
||||
id="guide3021" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="1920,1337.442"
|
||||
id="guide3023" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,25"
|
||||
id="guide3025" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1048"
|
||||
id="guide3027" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="32,0"
|
||||
id="guide3029" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="1888,0"
|
||||
id="guide3031" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="960,1080"
|
||||
id="guide3819" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="1740,580"
|
||||
id="guide3821" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-476.36218)">
|
||||
<rect
|
||||
style="fill:#003543;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="rect3797"
|
||||
width="720"
|
||||
height="580"
|
||||
x="0"
|
||||
y="472.36218" />
|
||||
<g
|
||||
id="layer1-5"
|
||||
inkscape:label="Layer 1"
|
||||
transform="matrix(0.6812025,0,0,0.6812025,11.999999,1014.3767)">
|
||||
<g
|
||||
inkscape:export-ydpi="300.23013"
|
||||
inkscape:export-xdpi="300.23013"
|
||||
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
|
||||
id="g287"
|
||||
transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)">
|
||||
<path
|
||||
style="fill:#aab2ab"
|
||||
d="m 182.23532,75.39014 114.06396,0.20312 c 1.59375,0 3.01758,-0.23682 3.01758,3.18018 l -0.13965,37.56689 -119.82031,0 0,-37.70654 c 0,-1.68457 0.16309,-3.24365 2.87842,-3.24365 z"
|
||||
nodetypes="ccccccc"
|
||||
id="path3817_2_"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)"
|
||||
id="g5908_2_">
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
d="m 187.20944,-55.6792 c 0.006,8.68024 -7.02786,15.72095 -15.7081,15.72708 -8.68021,0.005 -15.72205,-7.02786 -15.72708,-15.70804 0,-0.0067 0,-0.01233 0,-0.01904 -0.005,-8.68134 7.02783,-15.72205 15.70807,-15.72711 8.68134,-0.0056 15.72208,7.02789 15.72711,15.70807 0,0.0056 0,0.01233 0,0.01904 z"
|
||||
rx="22.939548"
|
||||
type="arc"
|
||||
cy="264.3577"
|
||||
ry="22.939548"
|
||||
cx="296.35416"
|
||||
id="path5906_2_"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(-289.6157,99.0653)"
|
||||
id="g5706_2_">
|
||||
<path
|
||||
d="m 473.88455,-167.54724 c 3.48541,3.48596 5.22839,7.75391 5.22839,12.80273 0,5.04938 -1.7128,9.27148 -5.13834,12.66736 -3.63531,3.5766 -7.93179,5.36432 -12.88947,5.36432 -4.89777,0 -9.11987,-1.77261 -12.6651,-5.31955 -3.54584,-3.54581 -5.31845,-7.78299 -5.31845,-12.71213 0,-4.92859 1.77261,-9.19598 5.31845,-12.80273 3.4552,-3.48651 7.67725,-5.22894 12.6651,-5.22894 5.04829,0 9.31401,1.74243 12.79942,5.22894 z m -23.11798,2.34485 c -2.94675,2.97638 -4.41956,6.46289 -4.41956,10.46234 0,3.99835 1.45828,7.4552 4.37424,10.37067 2.91653,2.9165 6.38849,4.37476 10.41705,4.37476 4.02853,0 7.53018,-1.47281 10.50656,-4.41901 2.8259,-2.73584 4.23941,-6.17706 4.23941,-10.32642 0,-4.11804 -1.43646,-7.61292 -4.30768,-10.48474 -2.87064,-2.87067 -6.34988,-4.30652 -10.43829,-4.30652 -4.08837,0 -7.54638,1.44318 -10.37173,4.32892 z m 7.75449,8.70312 c -0.45032,-0.98163 -1.12433,-1.47223 -2.02325,-1.47223 -1.58914,0 -2.38342,1.06952 -2.38342,3.2085 0,2.13959 0.79428,3.20911 2.38342,3.20911 1.04938,0 1.79895,-0.5213 2.24866,-1.56512 l 2.20276,1.17303 c -1.04993,1.86548 -2.62506,2.79901 -4.72549,2.79901 -1.6199,0 -2.91763,-0.4967 -3.89206,-1.48956 -0.97607,-0.99341 -1.46274,-2.36273 -1.46274,-4.10797 0,-1.71558 0.50229,-3.07709 1.50748,-4.08563 1.00519,-1.00793 2.25705,-1.51251 3.75781,-1.51251 2.22012,0 3.80984,0.87488 4.77081,2.62286 l -2.38398,1.22051 z m 10.36334,0 c -0.45087,-0.98163 -1.11148,-1.47223 -1.98239,-1.47223 -1.62106,0 -2.43213,1.06952 -2.43213,3.2085 0,2.13959 0.81107,3.20911 2.43213,3.20911 1.05103,0 1.78717,-0.5213 2.20724,-1.56512 l 2.25201,1.17303 c -1.04825,1.86548 -2.62119,2.79901 -4.71768,2.79901 -1.61771,0 -2.91263,-0.4967 -3.88647,-1.48956 -0.97217,-0.99341 -1.45938,-2.36273 -1.45938,-4.10797 0,-1.71558 0.49448,-3.07709 1.48288,-4.08563 0.98782,-1.00793 2.24527,-1.51251 3.77347,-1.51251 2.21619,0 3.80368,0.87488 4.76132,2.62286 l -2.431,1.22051 z"
|
||||
id="path5708_2_"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
id="path294"
|
||||
d="m 297.29639,74.91064 -116.22951,0 c -1.24658,0 -2.26074,1.01465 -2.26074,2.26123 l 0,39.49561 c 0,0.28174 0.22852,0.51074 0.51025,0.51074 l 119.73,0 c 0.28174,0 0.51074,-0.229 0.51074,-0.51074 l 0,-39.4956 c 0,-1.24659 -1.01416,-2.26124 -2.26074,-2.26124 z m -116.22951,1.02149 116.22951,0 c 0.68359,0 1.23926,0.55615 1.23926,1.23975 0,0 0,15.91943 0,27.41846 l -83.07375,0 c -3.04492,5.50537 -8.91113,9.24365 -15.64355,9.24365 -6.73535,0 -12.6001,-3.73486 -15.64355,-9.24365 l -4.34814,0 c 0,-11.49902 0,-27.41846 0,-27.41846 -2e-5,-0.6836 0.55663,-1.23975 1.24022,-1.23975 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g296"
|
||||
enable-background="new ">
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
id="path298"
|
||||
d="m 265.60986,112.8833 c 0.0801,0.15576 0.1875,0.28174 0.32129,0.37842 0.13379,0.0962 0.29004,0.16797 0.46973,0.21436 0.18066,0.0469 0.36719,0.0703 0.55957,0.0703 0.12988,0 0.26953,-0.0107 0.41895,-0.0327 0.14844,-0.0215 0.28809,-0.064 0.41895,-0.12598 0.12988,-0.062 0.23926,-0.14795 0.3252,-0.25684 0.0879,-0.10889 0.13086,-0.24707 0.13086,-0.41553 0,-0.18018 -0.0576,-0.32617 -0.17285,-0.43848 -0.11426,-0.1123 -0.26562,-0.20508 -0.45215,-0.28027 -0.18555,-0.0742 -0.39746,-0.13965 -0.63281,-0.1958 -0.23633,-0.0562 -0.47559,-0.11816 -0.71777,-0.18701 -0.24902,-0.062 -0.49121,-0.13818 -0.72754,-0.22852 -0.23535,-0.0898 -0.44727,-0.20703 -0.63379,-0.3501 -0.18652,-0.14307 -0.33691,-0.32178 -0.45215,-0.53662 -0.11426,-0.21484 -0.17188,-0.47461 -0.17188,-0.7793 0,-0.34277 0.0732,-0.63965 0.21875,-0.8916 0.14648,-0.25195 0.33789,-0.46191 0.57422,-0.63037 0.23535,-0.16797 0.50293,-0.29248 0.80176,-0.37354 0.29785,-0.0806 0.59668,-0.12109 0.89453,-0.12109 0.34863,0 0.68262,0.0391 1.00293,0.11719 0.31934,0.0776 0.60449,0.2041 0.85254,0.37842 0.24902,0.17432 0.44629,0.39697 0.59277,0.66797 0.14551,0.271 0.21875,0.59961 0.21875,0.98535 l -1.42188,0 c -0.0127,-0.19922 -0.0547,-0.36426 -0.125,-0.49463 -0.0713,-0.13086 -0.16602,-0.2334 -0.2832,-0.30859 -0.11816,-0.0742 -0.25293,-0.12744 -0.4043,-0.1582 -0.15234,-0.0312 -0.31738,-0.0469 -0.49707,-0.0469 -0.11719,0 -0.23535,0.0127 -0.35254,0.0371 -0.11816,0.0254 -0.22461,0.0688 -0.32031,0.13086 -0.0967,0.0625 -0.17578,0.14014 -0.2373,0.2334 -0.0615,0.0937 -0.0928,0.21191 -0.0928,0.35498 0,0.13086 0.0244,0.23682 0.0742,0.31738 0.0498,0.0811 0.14844,0.15576 0.29395,0.22412 0.14551,0.0684 0.34766,0.13721 0.60547,0.20557 0.25781,0.0684 0.59473,0.15576 1.01172,0.26123 0.12402,0.0249 0.2959,0.0703 0.5166,0.13574 0.2207,0.0654 0.43945,0.16943 0.65723,0.3125 0.21777,0.14355 0.40527,0.33496 0.56445,0.57422 0.1582,0.23975 0.2373,0.54639 0.2373,0.91992 0,0.30518 -0.0596,0.58838 -0.17773,0.84961 -0.11816,0.26172 -0.29395,0.4873 -0.52734,0.67676 -0.2334,0.19043 -0.52246,0.33789 -0.86719,0.44385 -0.3457,0.10596 -0.74609,0.15869 -1.19922,0.15869 -0.36719,0 -0.72363,-0.0454 -1.06934,-0.13574 -0.34473,-0.0903 -0.65039,-0.23242 -0.91504,-0.42578 -0.26367,-0.19336 -0.47363,-0.43994 -0.62988,-0.73877 -0.15527,-0.29932 -0.22949,-0.65381 -0.22363,-1.06494 l 1.42188,0 c -3e-5,0.22412 0.04,0.41406 0.12106,0.56933 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
id="path300"
|
||||
d="m 273.8667,107.8667 2.49316,6.66406 -1.52246,0 -0.50391,-1.48438 -2.49316,0 -0.52246,1.48438 -1.47461,0 2.52051,-6.66406 1.50293,0 z m 0.084,4.08594 -0.83984,-2.44336 -0.0186,0 -0.86914,2.44336 1.72753,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g302"
|
||||
enable-background="new ">
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
id="path304"
|
||||
d="m 239.17821,107.8667 c 0.31738,0 0.60742,0.0283 0.86914,0.084 0.26172,0.0561 0.48633,0.14795 0.67383,0.27539 0.18652,0.12744 0.33203,0.29688 0.43457,0.5083 0.10254,0.21142 0.1543,0.47266 0.1543,0.78369 0,0.33594 -0.0762,0.61523 -0.22949,0.83936 -0.15234,0.22412 -0.37891,0.40723 -0.67773,0.55029 0.41211,0.11816 0.71973,0.3252 0.92285,0.62109 0.20312,0.29589 0.30469,0.65234 0.30469,1.06934 0,0.33594 -0.0654,0.62695 -0.19629,0.87305 -0.13086,0.24561 -0.30762,0.44629 -0.52832,0.60205 -0.22168,0.15576 -0.47461,0.271 -0.75781,0.34521 -0.28418,0.0752 -0.5752,0.1123 -0.875,0.1123 l -3.23633,0 0,-6.66406 3.14159,0 0,1e-5 z m -0.1875,2.69531 c 0.26172,0 0.47656,-0.062 0.64551,-0.18604 0.16797,-0.12451 0.25195,-0.32568 0.25195,-0.60498 0,-0.15527 -0.0283,-0.28271 -0.084,-0.38184 -0.0566,-0.0996 -0.13086,-0.17676 -0.22461,-0.23291 -0.0937,-0.0557 -0.20117,-0.0947 -0.32227,-0.11621 -0.12207,-0.022 -0.24805,-0.0327 -0.37891,-0.0327 l -1.37305,0 0,1.55469 1.48536,0 z m 0.0859,2.82813 c 0.14355,0 0.28027,-0.0137 0.41113,-0.042 0.13086,-0.0278 0.24707,-0.0747 0.34668,-0.13965 0.0996,-0.0654 0.17871,-0.1543 0.23828,-0.26611 0.0596,-0.11181 0.0889,-0.25488 0.0889,-0.4292 0,-0.3418 -0.0967,-0.58594 -0.29004,-0.73193 -0.19336,-0.14599 -0.44922,-0.21924 -0.7666,-0.21924 l -1.59961,0 0,1.82812 1.57129,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
id="path306"
|
||||
d="m 241.88914,107.8667 1.64355,0 1.56055,2.63184 1.55078,-2.63184 1.63379,0 -2.47363,4.10645 0,2.55762 -1.46875,0 0,-2.59473 -2.44629,-4.06934 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)"
|
||||
id="g6316_1_">
|
||||
<path
|
||||
style="fill:#ffffff"
|
||||
d="m -175.0083,-139.1153 c 0.006,9.4118 -7.61725,17.04779 -17.02982,17.05481 -9.41101,0.007 -17.047,-7.61725 -17.05481,-17.02979 0,-0.008 0,-0.0172 0,-0.025 -0.006,-9.41254 7.6188,-17.047 17.02982,-17.05481 9.41257,-0.007 17.04855,7.61804 17.05481,17.02985 0,0.009 0,0.0164 0,0.025 z"
|
||||
rx="29.209877"
|
||||
type="arc"
|
||||
cy="252.08646"
|
||||
ry="29.209877"
|
||||
cx="475.97119"
|
||||
id="path6318_1_"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(-23.9521,-89.72962)"
|
||||
id="g6320_1_">
|
||||
<path
|
||||
d="m -168.2204,-68.05536 c -5.17194,0 -9.54852,1.80469 -13.13135,5.41333 -3.67661,3.73444 -5.51413,8.1532 -5.51413,13.25635 0,5.10315 1.83752,9.49152 5.51413,13.1626 3.67502,3.67194 8.05316,5.50787 13.13135,5.50787 5.14066,0 9.59537,-1.85156 13.36728,-5.55475 3.55005,-3.51562 5.3266,-7.88831 5.3266,-13.11572 0,-5.22662 -1.8078,-9.64697 -5.42191,-13.25635 -3.61407,-3.60864 -8.03756,-5.41333 -13.27197,-5.41333 z m 0.0469,3.36017 c 4.23752,0 7.836,1.49298 10.79697,4.48053 2.98907,2.9563 4.48441,6.56567 4.48441,10.82898 0,4.29382 -1.46252,7.85712 -4.39224,10.68915 -3.08438,3.04926 -6.71411,4.57349 -10.88913,4.57349 -4.17505,0 -7.7735,-1.5094 -10.79541,-4.52661 -3.02188,-3.01953 -4.53284,-6.59692 -4.53284,-10.73602 0,-4.13831 1.52658,-7.74847 4.57971,-10.82898 2.92815,-2.98756 6.51098,-4.48054 10.74853,-4.48054 z"
|
||||
id="path6322_1_"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -176.49548,-52.02087 c 0.74377,-4.69769 4.05161,-7.20862 8.1954,-7.20862 5.96097,0 9.59225,4.32501 9.59225,10.09229 0,5.62738 -3.86411,9.99927 -9.686,9.99927 -4.00473,0 -7.58914,-2.46484 -8.24228,-7.30084 l 4.70319,0 c 0.14062,2.51099 1.77032,3.39459 4.09845,3.39459 2.65317,0 4.37817,-2.4649 4.37817,-6.23291 0,-3.95233 -1.49063,-6.04535 -4.28598,-6.04535 -2.04846,0 -3.8172,0.74457 -4.19064,3.30157 l 1.36874,-0.007 -3.70316,3.7016 -3.7016,-3.7016 1.47346,0.007 z"
|
||||
id="path6324_1_"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g313">
|
||||
<circle
|
||||
style="fill:#ffffff"
|
||||
id="circle315"
|
||||
r="10.8064"
|
||||
cy="90.224609"
|
||||
cx="242.56226" />
|
||||
<g
|
||||
id="g317">
|
||||
<path
|
||||
id="path319"
|
||||
d="m 245.68994,87.09766 c 0,-0.4165 -0.33789,-0.75342 -0.75391,-0.75342 l -4.77246,0 c -0.41602,0 -0.75391,0.33691 -0.75391,0.75342 l 0,4.77295 1.33105,0 0,5.65234 3.61719,0 0,-5.65234 1.33203,0 0,-4.77295 1e-5,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<circle
|
||||
id="circle321"
|
||||
r="1.63232"
|
||||
cy="84.083008"
|
||||
cx="242.5498" />
|
||||
</g>
|
||||
<path
|
||||
style="clip-rule:evenodd;fill-rule:evenodd"
|
||||
id="path323"
|
||||
d="m 242.53467,78.31836 c -3.23145,0 -5.96826,1.12744 -8.20752,3.38379 -2.29785,2.33301 -3.44629,5.09521 -3.44629,8.28418 0,3.18897 1.14844,5.93213 3.44629,8.22705 2.29785,2.29443 5.03418,3.44189 8.20752,3.44189 3.21289,0 5.99805,-1.15674 8.35352,-3.47168 2.2207,-2.19678 3.33008,-4.92969 3.33008,-8.19727 0,-3.26758 -1.12891,-6.02881 -3.3877,-8.28418 -2.25879,-2.25634 -5.02442,-3.38378 -8.2959,-3.38378 z m 0.0293,2.09961 c 2.64844,0 4.89746,0.93359 6.74707,2.80078 1.87012,1.84717 2.80469,4.10352 2.80469,6.76758 0,2.68359 -0.91504,4.91113 -2.74609,6.68066 -1.92773,1.90576 -4.19629,2.8584 -6.80566,2.8584 -2.60937,0 -4.8584,-0.94287 -6.74658,-2.82959 -1.88965,-1.88623 -2.8335,-4.12256 -2.8335,-6.70947 0,-2.58643 0.9541,-4.84229 2.8623,-6.76758 1.83057,-1.86719 4.07031,-2.80078 6.71777,-2.80078 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5947"
|
||||
width="497.14282"
|
||||
height="1.125"
|
||||
x="111.42859"
|
||||
y="858.45148" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
x="359.38516"
|
||||
y="891.09015"
|
||||
id="text3893"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3895"
|
||||
x="359.38516"
|
||||
y="891.09015"
|
||||
style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:20px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Ultra-Light';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1">More Recordings available on media.ccc.de</tspan></text>
|
||||
<g
|
||||
id="g3899"
|
||||
transform="matrix(0.375,0,0,0.375,237.17703,658.08778)"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
id="path3901"
|
||||
d="m 294.407,7.95792 c 6.213,1.027 19.117,20.42198 17.554,56.04198 -4.3,2.287 -9.289,0.945 -12.547,0.894 -10.184,-2.682 -0.678,-29.555 -14.953,-39.546 C 263.79,10.8809 119.447,14.4069 45.5808,21.1209 13.592,24.0289 17.478,87.0639 16.8569,120.43 c -0.5169,27.768 0.4448,58.119 11.4189,88.93 9.4468,26.524 44.2989,17.409 75.9712,18.571 56.978,0 160.981,1.883 173.53,-3.125 9.092,-3.629 12.796,-16.972 14.709,-25.575 3.351,-15.069 -0.168,-25.607 11.822,-25.324 6.313,0.149 7.555,5.857 6.592,16.772 -1.001,11.346 -4.393,26.441 -9.128,44.005 -3.421,12.688 -27.012,10.129 -42.628,10.129 C 180.218,242.704 100.45,245.236 24.0554,243.125 1.9155,242.514 1.46946,137.911 0.285625,118.923 -1.10525,96.6069 2.51438,7.01993 21.3615,6.01993 35.3674,5.27692 113.628,0.0309143 159.959,0.0189209 205.016,0.00692749 252.988,1.11093 294.407,7.95792"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3903"
|
||||
d="m 223.69,24.0759 c 5.487,15.616 -8.019,40.096 12.24,48.537 73.438,12.662 159.117,-14.772 221.582,23.635 16.882,16.4601 29.544,35.4531 37.563,55.7121 l 0,-9.285 c -9.285,-25.746 -28.278,-47.6931 -46.427,-70.0621 5.065,-6.753 10.974,1.266 16.038,3.376 18.571,23.213 37.563,46.8491 44.739,74.7051 1.265,1.688 3.798,5.065 5.908,2.11 l 2.955,-2.954 c -6.331,-29.966 -25.324,-54.4461 -41.362,-80.1921 7.175,-4.643 14.35,3.377 20.259,8.019 12.24,20.259 25.746,40.5181 30.388,64.1531 3.376,2.532 7.597,-2.11 9.285,-5.065 -2.532,-18.571 -8.864,-35.031 -16.461,-50.6471 1.266,-2.11 1.266,-5.065 4.221,-5.065 18.149,9.707 17.727,30.8111 24.057,47.2711 5.909,-0.422 8.863,-18.993 16.46,-8.019 2.532,6.753 -10.129,17.305 2.955,18.149 -6.331,30.388 -39.674,54.024 -68.796,60.777 -15.194,3.376 -35.453,8.018 -46.849,-3.798 2.11,-5.487 9.707,-6.331 15.194,-7.175 33.765,-1.266 65.842,-13.506 86.101,-40.518 l -0.844,-0.844 c -32.077,21.525 -71.75,42.206 -111.424,26.168 -3.376,-0.844 -5.065,-5.487 -2.954,-8.019 0.844,-2.532 -1.688,-3.798 -2.955,-4.221 -67.108,2.954 -137.596,-6.324 -202.593,4.227 -7.13,1.158 -7.934,7.746 -9.284,13.082 -3.414,13.511 5.21,32.647 -2.824,39.846 0,0 -5.936,1.741 -10.256,-0.177 -1.011,-5.609 -4.227,-37.144 2.948,-54.026 9.077,-21.357 89.954,-14.153 113.334,-14.626 42.722,-0.863 92.638,-2.254 132.734,0.701 -11.396,-11.396 -29.122,-11.818 -46.427,-11.396 -54.868,-0.844 -140.604,-0.559 -175.376,-2.466 -51.431,-2.822 -69.842,48.893 -102.341,82.658 l -15.194,0 c 20.259,-28.277 42.097,-60.522 70.062,-85.256 4.509,-3.988 7.645,-4.615 15.194,-6.752 21.025,-5.953 224.959,0.844 224.959,0.844 9.285,2.11 19.415,3.376 28.278,7.174 -5.065,-13.084 -21.525,-16.46 -34.609,-18.147 -73.017,-2.11 -146.877,-0.422 -218.628,-5.065 -19.415,-5.909 -29.544,-29.9661 -44.739,-44.7391 l -32.499,-41.362 16.46,0.844 c 21.103,24.479 35.575,54.506 62.887,73.8601 6.02,4.266 134.602,3.027 202.584,2.954 10.96,-0.012 33.77,7.175 48.542,15.195 2.532,-3.376 -1.688,-6.331 -4.221,-8.863 -30.811,-29.5441 -94.362,-20.3431 -117.328,-20.2641 -40.285,0.14 -88.233,8.522 -121.559,-12.235 -8.141,-5.071 -6.752,-35.875 -2.953,-52.758 l 10.973,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3905"
|
||||
d="m 575.267,153.649 c -7.175,30.389 -29.544,57.822 -57.823,73.017 -17.727,3.799 -40.518,15.616 -54.868,-2.11 9.708,-8.863 27.434,-2.954 38.83,-10.13 29.544,-8.441 53.858,-34.474 68.796,-60.777 1.91,-1.321 3.195,-2.823 5.065,0"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3907"
|
||||
d="m 584.142,179.84 c -5.065,26.168 -17.727,53.602 -44.739,66.686 -11.818,5.487 -30.388,11.818 -41.362,2.11 l 0,-4.221 c 41.784,1.688 62.887,-42.206 79.77,-71.75 4.643,-0.422 5.065,3.798 6.331,7.175"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3909"
|
||||
d="m 611.567,280.265 c 19.879,4.224 39.249,-15.615 43.47,10.131 -16.883,8.863 -39.674,6.331 -57.4,1.266 -3.799,7.597 1.688,16.038 0,25.324 -2.532,24.902 -11.818,48.537 -33.765,63.731 -6.357,3.3 -7.677,5.247 -11.431,5.909 1.138,-5.702 1.527,-10.353 2.5,-13.899 4.346,-2.92 23.503,-15.22 24.125,-31.684 9.707,-34.609 -0.844,-68.796 -24.058,-94.12 l 15.194,-13.928 c 8.863,17.726 18.896,42.495 41.364,47.269"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3911"
|
||||
d="m 542.769,257.054 c 24.479,47.271 1.688,102.561 -4.221,151.098 2.532,18.149 5.065,36.719 20.259,49.381 -1.688,4.221 0.844,14.772 -5.909,12.24 -21.525,-11.396 -28.7,-34.187 -28.278,-57.822 -0.844,-41.784 21.525,-75.127 16.038,-117.333 L 536.86,286.6 c -17.305,18.57 -36.719,41.784 -35.453,70.905 l -11.396,2.11 c -12.662,-40.518 31.655,-63.743 37.564,-100.04 0,0 9.707,-3.786 15.194,-2.521"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.61634636px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="360.30148"
|
||||
y="788.89905"
|
||||
id="text3926"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3928"
|
||||
x="360.30148"
|
||||
y="788.89905"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'TeX Gyre Adventor';-inkscape-font-specification:'TeX Gyre Adventor';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1">www.ccc.de</tspan></text>
|
||||
<flowRoot
|
||||
xml:space="preserve"
|
||||
id="flowRoot4268"
|
||||
style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:Umpush;font-style:normal;font-weight:normal;font-size:40px;line-height:125%;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:Umpush;font-stretch:normal;font-variant:normal"><flowRegion
|
||||
id="flowRegion4270"><rect
|
||||
id="rect4272"
|
||||
width="904.87805"
|
||||
height="342.68292"
|
||||
x="-121.95122"
|
||||
y="117.46342" /></flowRegion><flowPara
|
||||
id="flowPara4274"></flowPara></flowRoot> </g>
|
||||
</svg>
|
After Width: | Height: | Size: 41 KiB |
2654
osc16_dv/artwork/pause.svg
Normal file
After Width: | Height: | Size: 160 KiB |
|
@ -129,7 +129,7 @@ def rendertask(task):
|
|||
fp.write( etree.tostring(svg, encoding='unicode') )
|
||||
|
||||
# invoke inkscape to convert the generated svg-file into a png inside the .frames-directory
|
||||
errorReturn = subprocess.check_output('cd {0} && inkscape --export-background=white --export-png=.frames/{1:04d}.png .gen.svg 2>&1 >/dev/null'.format(task.workdir, frameNr), shell=True, universal_newlines=True)
|
||||
errorReturn = subprocess.check_output('cd {0} && inkscape --export-background=white --export-png=$(pwd)/.frames/{1:04d}.png $(pwd)/.gen.svg 2>&1 >/dev/null'.format(task.workdir, frameNr), shell=True, universal_newlines=True)
|
||||
if errorReturn != '':
|
||||
print("inkscape exitted with error\n"+errorReturn)
|
||||
sys.exit(42)
|
||||
|
|