added lac18
This commit is contained in:
parent
31cde009de
commit
ba6d080b2e
6 changed files with 1508 additions and 0 deletions
129
lac18/__init__.py
Normal file
129
lac18/__init__.py
Normal file
|
@ -0,0 +1,129 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
from renderlib import *
|
||||||
|
from easing import *
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'https://lac.linuxaudio.org/2018/lac2018.xml'
|
||||||
|
|
||||||
|
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):
|
||||||
|
# 3 Sekunde Text Fadein
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 4 Sekunden stehen lassen
|
||||||
|
frames = 4*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield ()
|
||||||
|
|
||||||
|
# 1 Sekunde Fade to black layer
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('fadeout', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def pauseFrames(parameters):
|
||||||
|
frames = 3*fps
|
||||||
|
colors = ['#21A4D4', '#73BA25', '#6DA741', '#35B9AB', '#00A489', '#173F4F']
|
||||||
|
yield (
|
||||||
|
('pause_bg', 'style', 'fill', "%s" % '#173F4F'),
|
||||||
|
('pause_bg', 'attr', 'opacity', '%.4f' % 1.0),
|
||||||
|
)
|
||||||
|
for i in range(0, len(colors)):
|
||||||
|
z = 0
|
||||||
|
for z in range(0,frames):
|
||||||
|
yield (
|
||||||
|
('pause_bg_alt', 'style', 'fill', "%s" % colors[i]),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.0, 1.0, frames)),
|
||||||
|
)
|
||||||
|
yield (
|
||||||
|
('pause_bg', 'style', 'fill', "%s" % colors[i]),
|
||||||
|
('pause_bg', 'attr', 'opacity', '%.4f' % 1.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, idlist, skiplist):
|
||||||
|
# iterate over all events extracted from the schedule xml-export
|
||||||
|
for event in events(scheduleUrl):
|
||||||
|
if event['room'] not in ('105 (Main)', '155 (Medium)', '107 (Small)'):
|
||||||
|
print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
|
||||||
|
continue
|
||||||
|
if not (idlist==[]):
|
||||||
|
if 000000 in idlist:
|
||||||
|
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||||
|
continue
|
||||||
|
if int(event['id']) not in idlist:
|
||||||
|
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||||
|
continue
|
||||||
|
|
||||||
|
# generate a task description and put it into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'intro.svg',
|
||||||
|
outfile = str(event['id'])+".ts",
|
||||||
|
sequence = introFrames,
|
||||||
|
parameters = {
|
||||||
|
'$ID': event['id'],
|
||||||
|
'$TITLE': event['title'],
|
||||||
|
'$SUBTITLE': event['subtitle'],
|
||||||
|
'$SPEAKER': event['personnames']
|
||||||
|
}
|
||||||
|
))
|
||||||
|
|
||||||
|
# place a task for the outro into the queue
|
||||||
|
if not "out" in skiplist:
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'outro.svg',
|
||||||
|
outfile = 'outro.ts',
|
||||||
|
sequence = outroFrames
|
||||||
|
))
|
||||||
|
|
||||||
|
# place the pause-sequence into the queue
|
||||||
|
if not "pause" in skiplist:
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'pause.svg',
|
||||||
|
outfile = 'pause.ts',
|
||||||
|
sequence = pauseFrames
|
||||||
|
))
|
190
lac18/artwork/Cc-by-nc.svg
Normal file
190
lac18/artwork/Cc-by-nc.svg
Normal file
|
@ -0,0 +1,190 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://web.resource.org/cc/"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="120"
|
||||||
|
height="42"
|
||||||
|
id="svg2759"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.45+devel"
|
||||||
|
version="1.0"
|
||||||
|
sodipodi:docname="by-nc.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||||
|
<defs
|
||||||
|
id="defs2761" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#8b8b8b"
|
||||||
|
borderopacity="1"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1"
|
||||||
|
inkscape:cx="179"
|
||||||
|
inkscape:cy="89.569904"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
width="120px"
|
||||||
|
height="42px"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-width="1198"
|
||||||
|
inkscape:window-height="624"
|
||||||
|
inkscape:window-x="488"
|
||||||
|
inkscape:window-y="401" />
|
||||||
|
<metadata
|
||||||
|
id="metadata2764">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.9937808,0,0,0.9936927,-177.69414,-148.87729)"
|
||||||
|
id="g325"
|
||||||
|
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-nc.png"
|
||||||
|
inkscape:export-xdpi="300.23013"
|
||||||
|
inkscape:export-ydpi="300.23013">
|
||||||
|
<path
|
||||||
|
id="path3817_3_"
|
||||||
|
nodetypes="ccccccc"
|
||||||
|
d="M 182.23535,150.26416 L 296.29931,150.4668 C 297.89306,150.4668 299.31689,150.23047 299.31689,153.64698 L 299.17724,191.21387 L 179.35693,191.21387 L 179.35693,153.50782 C 179.35693,151.82275 179.52002,150.26416 182.23535,150.26416 z"
|
||||||
|
style="fill:#aab2ab" />
|
||||||
|
|
||||||
|
<g
|
||||||
|
id="g5908_3_"
|
||||||
|
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||||
|
|
||||||
|
<path
|
||||||
|
id="path5906_3_"
|
||||||
|
cx="296.35416"
|
||||||
|
ry="22.939548"
|
||||||
|
cy="264.3577"
|
||||||
|
type="arc"
|
||||||
|
rx="22.939548"
|
||||||
|
d="M 187.20946,30.09433 C 187.21504,38.77457 180.1816,45.81586 171.50138,45.82144 C 162.82116,45.82648 155.77932,38.79358 155.77428,30.11337 C 155.77428,30.10666 155.77428,30.10104 155.77428,30.09433 C 155.76924,21.41357 162.80213,14.37228 171.48236,14.36725 C 180.16368,14.36221 187.20442,21.39511 187.20946,30.07532 C 187.20946,30.08148 187.20946,30.08762 187.20946,30.09433 z"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
|
||||||
|
<g
|
||||||
|
id="g5706_3_"
|
||||||
|
transform="translate(-289.6157,99.0653)">
|
||||||
|
<path
|
||||||
|
id="path5708_3_"
|
||||||
|
d="M 473.88458,-81.77313 C 477.36999,-78.28775 479.11297,-74.01977 479.11297,-68.97098 C 479.11297,-63.92157 477.40014,-59.69895 473.9746,-56.30304 C 470.33929,-52.72702 466.04284,-50.93927 461.08517,-50.93927 C 456.18737,-50.93927 451.9653,-52.71191 448.42004,-56.25885 C 444.87423,-59.80411 443.10162,-64.04184 443.10162,-68.97098 C 443.10162,-73.89954 444.87423,-78.16693 448.42004,-81.77313 C 451.87524,-85.26022 456.09732,-87.00265 461.08517,-87.00265 C 466.13342,-87.00266 470.39917,-85.26022 473.88458,-81.77313 z M 450.7666,-79.42883 C 447.81982,-76.45245 446.34704,-72.96539 446.34704,-68.96649 C 446.34704,-64.96814 447.80529,-61.51126 450.72125,-58.5953 C 453.63781,-55.67935 457.10977,-54.22106 461.1383,-54.22106 C 465.16686,-54.22106 468.66851,-55.69332 471.64489,-58.64004 C 474.47076,-61.37591 475.88427,-64.8171 475.88427,-68.96649 C 475.88427,-73.08453 474.44781,-76.57944 471.57659,-79.45065 C 468.70598,-82.32132 465.22674,-83.7572 461.1383,-83.7572 C 457.04993,-83.7572 453.59192,-82.31406 450.7666,-79.42883 z M 458.52106,-70.72513 C 458.07077,-71.70737 457.39673,-72.19794 456.49784,-72.19794 C 454.9087,-72.19794 454.11439,-71.12787 454.11439,-68.98941 C 454.11439,-66.84985 454.9087,-65.78033 456.49784,-65.78033 C 457.54719,-65.78033 458.29676,-66.30111 458.74647,-67.34487 L 460.94926,-66.1719 C 459.89933,-64.30642 458.32417,-63.37341 456.22377,-63.37341 C 454.60384,-63.37341 453.30611,-63.87011 452.33168,-64.86297 C 451.35561,-65.85641 450.86897,-67.22573 450.86897,-68.97097 C 450.86897,-70.68597 451.37126,-72.04803 452.37645,-73.05599 C 453.38161,-74.06453 454.6335,-74.5685 456.13426,-74.5685 C 458.35438,-74.5685 459.9441,-73.69423 460.90507,-71.94622 L 458.52106,-70.72513 z M 468.8844,-70.72513 C 468.43353,-71.70737 467.77295,-72.19794 466.90204,-72.19794 C 465.28095,-72.19794 464.46991,-71.12787 464.46991,-68.98941 C 464.46991,-66.84985 465.28095,-65.78033 466.90204,-65.78033 C 467.95307,-65.78033 468.68921,-66.30111 469.10925,-67.34487 L 471.36126,-66.1719 C 470.31304,-64.30642 468.74011,-63.37341 466.64361,-63.37341 C 465.02587,-63.37341 463.73095,-63.87011 462.75714,-64.86297 C 461.78497,-65.85641 461.29773,-67.22573 461.29773,-68.97097 C 461.29773,-70.68597 461.79224,-72.04803 462.78064,-73.05599 C 463.76843,-74.06453 465.02588,-74.5685 466.55408,-74.5685 C 468.77027,-74.5685 470.35779,-73.69423 471.31543,-71.94622 L 468.8844,-70.72513 z" />
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<path
|
||||||
|
d="M 297.29639,149.82227 L 181.06739,149.82227 C 179.82081,149.82227 178.80616,150.83594 178.80616,152.08252 L 178.80616,191.57861 C 178.80616,191.86035 179.03516,192.08886 179.3169,192.08886 L 299.04639,192.08886 C 299.32813,192.08886 299.55713,191.86034 299.55713,191.57861 L 299.55713,152.08252 C 299.55713,150.83594 298.54297,149.82227 297.29639,149.82227 z M 181.06738,150.84277 L 297.29638,150.84277 C 297.97997,150.84277 298.53564,151.39892 298.53564,152.08252 C 298.53564,152.08252 298.53564,167.96777 298.53564,179.46387 L 215.46191,179.46387 C 212.41699,184.96973 206.55078,188.70752 199.81836,188.70752 C 193.08301,188.70752 187.21826,184.97266 184.17481,179.46387 L 179.82764,179.46387 C 179.82764,167.96778 179.82764,152.08252 179.82764,152.08252 C 179.82764,151.39893 180.38379,150.84277 181.06738,150.84277 z"
|
||||||
|
id="path332" />
|
||||||
|
|
||||||
|
<g
|
||||||
|
enable-background="new "
|
||||||
|
id="g334">
|
||||||
|
<path
|
||||||
|
d="M 239.17822,182.77734 C 239.49609,182.77734 239.78564,182.80566 240.04736,182.86132 C 240.30908,182.91698 240.53369,183.00878 240.72119,183.13671 C 240.90771,183.26366 241.05322,183.43359 241.15576,183.64452 C 241.2583,183.85643 241.31006,184.11718 241.31006,184.4287 C 241.31006,184.76464 241.23389,185.04393 241.08057,185.26757 C 240.92823,185.49218 240.70166,185.6748 240.40284,185.81835 C 240.81495,185.93651 241.12257,186.14355 241.32569,186.43944 C 241.52881,186.73533 241.63038,187.09178 241.63038,187.50878 C 241.63038,187.84472 241.56495,188.13573 241.43409,188.38183 C 241.30323,188.62695 241.12647,188.82812 240.90577,188.98339 C 240.68409,189.13964 240.43116,189.25487 240.14796,189.32909 C 239.86378,189.40429 239.57276,189.44139 239.27296,189.44139 L 236.03663,189.44139 L 236.03663,182.77733 L 239.17822,182.77733 L 239.17822,182.77734 z M 238.99121,185.47266 C 239.25244,185.47266 239.46777,185.41016 239.63623,185.28614 C 239.8042,185.16212 239.88818,184.96094 239.88818,184.68165 C 239.88818,184.52638 239.85986,184.39845 239.8042,184.29981 C 239.74756,184.2002 239.67334,184.12305 239.57959,184.06641 C 239.48633,184.01075 239.37891,183.97168 239.25732,183.9502 C 239.13573,183.92872 239.00976,183.91797 238.8789,183.91797 L 237.50536,183.91797 L 237.50536,185.47266 L 238.99121,185.47266 z M 239.07666,188.30078 C 239.22021,188.30078 239.35693,188.28711 239.48828,188.25879 C 239.61865,188.23047 239.73486,188.18359 239.83447,188.11914 C 239.93408,188.05371 240.01318,187.96484 240.07275,187.85254 C 240.13232,187.74121 240.16162,187.59766 240.16162,187.42383 C 240.16162,187.08203 240.06494,186.83789 239.87158,186.69141 C 239.67822,186.5459 239.42285,186.47266 239.10498,186.47266 L 237.50537,186.47266 L 237.50537,188.30078 L 239.07666,188.30078 L 239.07666,188.30078 z"
|
||||||
|
id="path336"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
|
||||||
|
<path
|
||||||
|
d="M 241.88916,182.77734 L 243.53271,182.77734 L 245.09326,185.40918 L 246.64404,182.77734 L 248.27783,182.77734 L 245.8042,186.88379 L 245.8042,189.44141 L 244.33545,189.44141 L 244.33545,186.84668 L 241.88916,182.77734 z"
|
||||||
|
id="path338"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g
|
||||||
|
enable-background="new "
|
||||||
|
id="g340">
|
||||||
|
<path
|
||||||
|
d="M 265.78076,182.77734 L 268.56494,187.24804 L 268.58056,187.24804 L 268.58056,182.77734 L 269.95556,182.77734 L 269.95556,189.4414 L 268.48974,189.4414 L 265.7163,184.97949 L 265.69775,184.97949 L 265.69775,189.4414 L 264.32275,189.4414 L 264.32275,182.77734 L 265.78076,182.77734 z"
|
||||||
|
id="path342"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
|
||||||
|
<path
|
||||||
|
d="M 275.51904,184.55273 C 275.43213,184.41211 275.32275,184.28906 275.19189,184.18359 C 275.06103,184.07812 274.91357,183.99511 274.74853,183.93652 C 274.58349,183.87695 274.41064,183.84765 274.23095,183.84765 C 273.90087,183.84765 273.6206,183.91113 273.39013,184.03906 C 273.15966,184.16601 272.97314,184.33691 272.83056,184.55176 C 272.68701,184.7666 272.58251,185.01074 272.51708,185.28418 C 272.45165,185.55762 272.41942,185.84082 272.41942,186.13281 C 272.41942,186.41308 272.45165,186.68554 272.51708,186.94922 C 272.58251,187.21387 272.687,187.45215 272.83056,187.66309 C 272.97314,187.875 273.15966,188.04395 273.39013,188.17188 C 273.6206,188.29981 273.90087,188.36329 274.23095,188.36329 C 274.67822,188.36329 275.0288,188.22657 275.28075,187.95216 C 275.5327,187.67872 275.687,187.31739 275.74266,186.86915 L 277.16161,186.86915 C 277.1245,187.28614 277.02782,187.6631 276.87255,187.99903 C 276.71728,188.33594 276.51122,188.62208 276.25634,188.85938 C 276.00146,189.09668 275.70263,189.27735 275.35986,189.40235 C 275.01806,189.52735 274.64111,189.58985 274.23095,189.58985 C 273.72021,189.58985 273.26122,189.50098 272.85302,189.32325 C 272.44579,189.14649 272.10107,188.90137 271.82079,188.59083 C 271.53954,188.27931 271.3247,187.9131 271.17528,187.49317 C 271.02587,187.07227 270.95067,186.62012 270.95067,186.13379 C 270.95067,185.63574 271.02587,185.17383 271.17528,184.74707 C 271.32469,184.32031 271.53954,183.94824 271.82079,183.63086 C 272.10106,183.31348 272.44579,183.06445 272.85302,182.88379 C 273.26122,182.70313 273.72021,182.61328 274.23095,182.61328 C 274.59814,182.61328 274.94482,182.66601 275.27197,182.77246 C 275.59814,182.87793 275.89111,183.03223 276.14892,183.23535 C 276.40771,183.4375 276.6206,183.68847 276.78857,183.9873 C 276.95654,184.28613 277.06201,184.6289 277.10595,185.01464 L 275.687,185.01464 C 275.6626,184.84668 275.60596,184.69238 275.51904,184.55273 z"
|
||||||
|
id="path344"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g
|
||||||
|
id="g6379_1_"
|
||||||
|
transform="matrix(1.146822,0,0,1.146822,457.9375,166.153)">
|
||||||
|
|
||||||
|
<path
|
||||||
|
id="path6381_1_"
|
||||||
|
cx="475.97119"
|
||||||
|
ry="29.209877"
|
||||||
|
cy="252.08646"
|
||||||
|
type="arc"
|
||||||
|
rx="29.209877"
|
||||||
|
d="M -154.14499,-1.09436 C -154.14157,3.73257 -158.051,7.64752 -162.87836,7.65134 C -167.70488,7.65433 -171.62026,3.74448 -171.62366,-1.0816 C -171.62366,-1.0867 -171.62366,-1.09054 -171.62366,-1.09436 C -171.62706,-5.92175 -167.71765,-9.8367 -162.89115,-9.84051 C -158.06376,-9.8435 -154.14838,-5.93365 -154.145,-1.10757 C -154.14499,-1.1033 -154.14499,-1.09863 -154.14499,-1.09436 z"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
|
||||||
|
<path
|
||||||
|
id="path6383_1_"
|
||||||
|
d="M -162.89709,-11.26941 C -160.04528,-11.26941 -157.63372,-10.28589 -155.66412,-8.31925 C -153.69452,-6.35178 -152.70929,-3.94321 -152.70929,-1.09437 C -152.70929,1.75445 -153.67749,4.13704 -155.61304,6.05385 C -157.66779,8.07198 -160.09552,9.08022 -162.8971,9.08022 C -165.66544,9.08022 -168.0506,8.07967 -170.05428,6.07854 C -172.05794,4.07827 -173.05935,1.68672 -173.05935,-1.09437 C -173.05935,-3.87593 -172.05795,-6.28449 -170.05428,-8.31925 C -168.1017,-10.28589 -165.71568,-11.26941 -162.89709,-11.26941 z M -170.77042,-3.82825 C -171.07357,-2.96945 -171.22513,-2.05832 -171.22513,-1.09436 C -171.22513,1.16092 -170.40254,3.11054 -168.75568,4.7561 C -167.1088,6.40045 -165.14771,7.22345 -162.87156,7.22345 C -160.59623,7.22345 -158.61897,6.39276 -156.93803,4.73013 C -156.37516,4.18686 -155.91108,3.59335 -155.54747,2.95044 L -159.38365,1.24268 C -159.64339,2.53318 -160.79295,3.40473 -162.18352,3.5069 L -162.18352,5.07587 L -163.35182,5.07587 L -163.35182,3.5069 C -164.49374,3.49414 -165.59733,3.02707 -166.44035,2.28879 L -165.03958,0.87567 C -164.3643,1.51089 -163.68904,1.79617 -162.76768,1.79617 C -162.17073,1.79617 -161.5091,1.56241 -161.5091,0.78454 C -161.5091,0.50906 -161.6164,0.31747 -161.78412,0.17355 L -162.75403,-0.25901 L -163.96237,-0.79633 C -164.55929,-1.06287 -165.06511,-1.28727 -165.57347,-1.51377 L -170.77042,-3.82825 z M -162.87155,-9.43817 C -165.18092,-9.43817 -167.1335,-8.62451 -168.72928,-6.99597 C -169.16441,-6.5574 -169.54164,-6.0993 -169.86353,-5.62158 L -165.97286,-3.88955 C -165.62201,-4.96887 -164.59676,-5.62371 -163.35181,-5.69607 L -163.35181,-7.26504 L -162.18351,-7.26504 L -162.18351,-5.69607 C -161.37882,-5.65734 -160.49662,-5.43679 -159.62721,-4.76321 L -160.96412,-3.38885 C -161.45716,-3.7384 -162.07963,-3.98492 -162.70295,-3.98492 C -163.20875,-3.98492 -163.92236,-3.82992 -163.92236,-3.19513 C -163.92236,-3.09763 -163.89085,-3.01245 -163.83123,-2.93668 L -162.5301,-2.35764 L -161.64961,-1.96506 C -161.08674,-1.71344 -160.54857,-1.47501 -160.01552,-1.23743 L -154.80239,1.08343 C -154.62954,0.40093 -154.54354,-0.32544 -154.54354,-1.09437 C -154.54354,-3.41865 -155.35845,-5.38487 -156.9883,-6.99598 C -158.60193,-8.62451 -160.56302,-9.43817 -162.87155,-9.43817 z" />
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g
|
||||||
|
id="g349">
|
||||||
|
<circle
|
||||||
|
cx="242.56226"
|
||||||
|
cy="165.13574"
|
||||||
|
r="10.8064"
|
||||||
|
id="circle351"
|
||||||
|
sodipodi:cx="242.56226"
|
||||||
|
sodipodi:cy="165.13574"
|
||||||
|
sodipodi:rx="10.8064"
|
||||||
|
sodipodi:ry="10.8064"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
|
||||||
|
<g
|
||||||
|
id="g353">
|
||||||
|
<path
|
||||||
|
d="M 245.68994,162.00928 C 245.68994,161.59278 245.35205,161.25537 244.93603,161.25537 L 240.16357,161.25537 C 239.74755,161.25537 239.40966,161.59277 239.40966,162.00928 L 239.40966,166.78223 L 240.74071,166.78223 L 240.74071,172.43409 L 244.3579,172.43409 L 244.3579,166.78223 L 245.68993,166.78223 L 245.68993,162.00928 L 245.68994,162.00928 z"
|
||||||
|
id="path355" />
|
||||||
|
|
||||||
|
<circle
|
||||||
|
cx="242.5498"
|
||||||
|
cy="158.99463"
|
||||||
|
r="1.63232"
|
||||||
|
id="circle357"
|
||||||
|
sodipodi:cx="242.5498"
|
||||||
|
sodipodi:cy="158.99463"
|
||||||
|
sodipodi:rx="1.63232"
|
||||||
|
sodipodi:ry="1.63232" />
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<path
|
||||||
|
clip-rule="evenodd"
|
||||||
|
d="M 242.53467,153.22949 C 239.30322,153.22949 236.56641,154.35693 234.32715,156.61328 C 232.0293,158.94678 230.88086,161.70898 230.88086,164.89795 C 230.88086,168.08692 232.0293,170.82959 234.32715,173.12451 C 236.625,175.41894 239.36133,176.5664 242.53467,176.5664 C 245.74756,176.5664 248.53272,175.41015 250.88819,173.09521 C 253.10889,170.89794 254.21827,168.16552 254.21827,164.89794 C 254.21827,161.63036 253.08936,158.86913 250.83057,156.61327 C 248.57178,154.35693 245.80615,153.22949 242.53467,153.22949 z M 242.56396,155.3291 C 245.2124,155.3291 247.46142,156.26318 249.31103,158.12988 C 251.18115,159.97754 252.11572,162.2334 252.11572,164.89795 C 252.11572,167.58154 251.20068,169.80859 249.36963,171.57813 C 247.4419,173.48438 245.17334,174.43702 242.56397,174.43702 C 239.9546,174.43702 237.70557,173.49366 235.81739,171.60743 C 233.92774,169.72071 232.98389,167.48438 232.98389,164.89796 C 232.98389,162.31105 233.93799,160.05519 235.84619,158.12989 C 237.67676,156.26318 239.9165,155.3291 242.56396,155.3291 z"
|
||||||
|
id="path359"
|
||||||
|
style="fill-rule:evenodd" />
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 15 KiB |
343
lac18/artwork/intro.svg
Normal file
343
lac18/artwork/intro.svg
Normal file
|
@ -0,0 +1,343 @@
|
||||||
|
<?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.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="intro.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>
|
||||||
|
<linearGradient
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
y2="576.9375"
|
||||||
|
x2="989.08734"
|
||||||
|
y1="576.9375"
|
||||||
|
x1="781.76086"
|
||||||
|
id="linearGradient3922"
|
||||||
|
xlink:href="#linearGradient3916"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3916">
|
||||||
|
<stop
|
||||||
|
id="stop3918"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.64313725;"
|
||||||
|
offset="0.5"
|
||||||
|
id="stop3928" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.28682169;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3924" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
inkscape:cx="700.99831"
|
||||||
|
inkscape:cy="626.11187"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1916"
|
||||||
|
inkscape:window-height="987"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="72"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
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"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,1080"
|
||||||
|
id="guide3019"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="0,0"
|
||||||
|
id="guide3021"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1920,1337.442"
|
||||||
|
id="guide3023"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,25"
|
||||||
|
id="guide3025"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,1048"
|
||||||
|
id="guide3027"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="32,0"
|
||||||
|
id="guide3029"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1888,0"
|
||||||
|
id="guide3031"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="960,1080"
|
||||||
|
id="guide3819"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="660,454.28571"
|
||||||
|
id="guide3821"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1">
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="text"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
transform="translate(0,103.63782)"
|
||||||
|
inkscape:label="#flowRoot3029"><flowRegion
|
||||||
|
id="flowRegion3031"><rect
|
||||||
|
ry="0"
|
||||||
|
id="rect3033"
|
||||||
|
width="1855.1428"
|
||||||
|
height="411.36218"
|
||||||
|
x="32.857143"
|
||||||
|
y="540"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:64px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:start;writing-mode:lr-tb;text-anchor:start" /></flowRegion><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-size:32px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato Heavy';text-align:start;writing-mode:lr-tb;text-anchor:start"
|
||||||
|
id="flowPara4714">$id</flowPara><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-size:72px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato Heavy';text-align:start;writing-mode:lr-tb;text-anchor:start"
|
||||||
|
id="flowPara4718">$title</flowPara><flowPara
|
||||||
|
id="flowPara3039"
|
||||||
|
style="font-style:italic;font-variant:normal;font-weight:900;font-stretch:normal;font-size:48px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato Heavy Italic';text-align:start;writing-mode:lr-tb;text-anchor:start">$person</flowPara><flowPara
|
||||||
|
id="flowPara4762"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-size:48px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato Heavy';text-align:start;writing-mode:lr-tb;text-anchor:start"> </flowPara><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-size:48px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato Heavy';text-align:start;writing-mode:lr-tb;text-anchor:start"
|
||||||
|
id="flowPara4730"> </flowPara></flowRoot> <flowRoot
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
id="flowRoot3043"
|
||||||
|
xml:space="preserve"><flowRegion
|
||||||
|
id="flowRegion3045"><rect
|
||||||
|
y="528.57141"
|
||||||
|
x="-187.14285"
|
||||||
|
height="668.57141"
|
||||||
|
width="1004.2857"
|
||||||
|
id="rect3047" /></flowRegion><flowPara
|
||||||
|
id="flowPara3049"
|
||||||
|
style="font-size:40px;line-height:1.25"> </flowPara></flowRoot> <path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3936"
|
||||||
|
d="m 36.00307,534.26513 h 672.2254 z"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:8.24500561;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000"
|
||||||
|
d="m 38.103751,520.05648 c 5.42819,-10.64012 5.621663,-12.88274 2.743245,-31.79693 -4.445491,-29.21142 -3.580881,-63.35227 2.125859,-83.94333 2.681214,-9.6744 9.428939,-34.02951 14.994928,-54.12247 15.302592,-55.24158 22.75908,-63.58839 61.001797,-68.28558 11.16281,-1.37109 25.47148,-3.13004 31.79701,-3.9088 6.3256,-0.77876 11.4831,-0.37999 11.46131,0.88615 -0.0217,1.26615 -6.26503,5.34647 -13.87381,9.06739 -16.63512,8.1351 -33.18663,28.41343 -26.59452,32.58258 2.18644,1.38278 10.97747,2.53279 19.53558,2.55558 22.40638,0.0597 21.07708,4.73913 -2.70614,9.52586 -4.83722,0.97355 -8.79489,2.35529 -8.79489,3.0705 0,0.71521 4.14625,6.73063 9.21395,13.36759 11.41748,14.95291 16.31973,34.1464 13.97111,54.6995 -0.97068,8.49496 -6.59534,35.01315 -12.49914,58.92933 -5.90377,23.91618 -11.02774,48.26013 -11.38657,54.09767 -0.6252,10.17053 1.62092,12.09299 10.69687,13.72028 5.20937,0.93396 -18.30852,0.45005 -49.966551,0.646 l -57.560123,0.35619 z m 48.424058,4.64407 c 2.668307,-3.21516 6.96409,-3.73484 19.950721,-2.41352 l 16.55029,1.68389 11.7217,-48.74255 c 20.23208,-84.13132 20.21821,-101.6759 -0.10071,-126.83594 l -11.1987,-13.86694 -10.69941,3.77494 c -19.563696,6.90249 -27.436264,4.2883 -29.37893,-9.75567 -1.398664,-10.11131 -13.344471,-9.50449 -16.105158,0.81809 -1.70728,6.38376 -1.047298,7.95632 4.171944,9.94067 3.410032,1.29649 6.764733,3.97274 7.454897,5.94721 0.690157,1.97447 0.42436,23.07404 -0.590648,46.88793 -1.703639,39.96998 -2.621719,45.68997 -11.94444,74.41839 -5.554431,17.11623 -10.771591,38.12252 -11.593688,46.6806 l -1.494724,15.56026 h 14.928182 c 10.029956,0 16.043938,-1.34445 18.328674,-4.09736 z M 208.2717,310.86959 c 0,-3.76786 -2.49633,-14.26092 -5.54741,-23.3179 -6.41033,-19.02862 -5.44903,-24.26576 1.33978,-7.299 4.84928,12.11959 8.86627,37.46757 5.93766,37.46757 -0.95152,0 -1.73003,-3.08279 -1.73003,-6.85067 z m -47.16393,-5.52017 c -0.99528,-3.96586 -1.28784,-7.73255 -0.64995,-8.37042 0.63788,-0.63787 1.97415,2.08502 2.9695,6.05089 0.99541,3.96586 1.28784,7.73254 0.64995,8.37041 -0.63781,0.63787 -1.97415,-2.08502 -2.9695,-6.05088 z m 22.80876,0.36946 c 0,-3.62403 -1.29435,-10.01725 -2.87634,-14.20715 -1.80414,-4.77816 -1.86196,-6.60922 -0.15519,-4.91188 3.7963,3.77525 8.44593,25.70817 5.44998,25.70817 -1.33014,0 -2.41845,-2.96512 -2.41845,-6.58914 z"
|
||||||
|
id="path3140"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="sssssscssssssssssscssscsscsssssssscsssssssssssssssss" />
|
||||||
|
<text
|
||||||
|
id="text3035"
|
||||||
|
y="470.72241"
|
||||||
|
x="157.21445"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-size:40px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato Heavy';text-align:start;writing-mode:lr-tb;text-anchor:start"
|
||||||
|
y="470.72241"
|
||||||
|
x="157.21445"
|
||||||
|
id="tspan3037"
|
||||||
|
sodipodi:role="line">Linux Audio Conference 2018</tspan><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-size:40px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato Heavy';text-align:start;writing-mode:lr-tb;text-anchor:start"
|
||||||
|
id="tspan3039"
|
||||||
|
y="520.72241"
|
||||||
|
x="157.21445"
|
||||||
|
sodipodi:role="line">June 7th-10th, c-base Berlin</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="523.25903"
|
||||||
|
y="481.98969"
|
||||||
|
id="text3825"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3823"
|
||||||
|
x="523.25903"
|
||||||
|
y="517.38031" /></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 15 KiB |
101
lac18/artwork/linuxaudio.svg
Normal file
101
lac18/artwork/linuxaudio.svg
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
<?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="287.04709"
|
||||||
|
height="417.92252"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.4 r9939"
|
||||||
|
sodipodi:docname="New document 1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3916">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3918" />
|
||||||
|
<stop
|
||||||
|
id="stop3928"
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.64313725;" />
|
||||||
|
<stop
|
||||||
|
id="stop3924"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.28682169;" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3916"
|
||||||
|
id="linearGradient3922"
|
||||||
|
x1="781.76086"
|
||||||
|
y1="576.9375"
|
||||||
|
x2="989.08734"
|
||||||
|
y2="576.9375"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.7"
|
||||||
|
inkscape:cx="644.23374"
|
||||||
|
inkscape:cy="36.429751"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="1855"
|
||||||
|
inkscape:window-height="1056"
|
||||||
|
inkscape:window-x="65"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-18.528189,-27.43553)">
|
||||||
|
<g
|
||||||
|
id="g3974"
|
||||||
|
transform="translate(-815.71429,-215.71429)">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="sssssscssssssssssscssscsscsssssssscsssssssssssssssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3140"
|
||||||
|
d="m 844.50095,634.53306 c 8.49609,-16.65371 8.79891,-20.16379 4.29367,-49.76793 -6.95799,-45.72111 -5.60472,-99.15766 3.32735,-131.38636 4.19658,-15.14216 14.75798,-53.26228 23.46975,-84.71137 23.9513,-86.46297 35.62204,-99.52722 95.47876,-106.87917 17.4718,-2.14599 39.86742,-4.89907 49.76802,-6.11797 9.9007,-1.2189 17.9731,-0.59475 17.939,1.38699 -0.034,1.98175 -9.8059,8.36818 -21.715,14.19209 -26.03694,12.73289 -51.94303,44.47211 -41.62519,50.99757 3.42217,2.16431 17.18171,3.96428 30.57669,3.99995 35.07,0.0934 32.9894,7.41758 -4.2356,14.90968 -7.57112,1.52378 -13.76558,3.68644 -13.76558,4.80588 0,1.11943 6.48963,10.53464 14.42148,20.92267 17.8704,23.40399 25.5433,53.44524 21.8673,85.61452 -1.5193,13.29614 -10.3229,54.80186 -19.5634,92.23497 -9.24046,37.4331 -17.26039,75.53573 -17.82203,84.67252 -0.97854,15.91873 2.53703,18.92775 16.74253,21.47471 8.1536,1.46186 -28.65612,0.70443 -78.20662,1.01108 l -90.09191,0.55757 z m 75.79233,7.26874 c 4.17638,-5.03224 10.90005,-5.84562 31.22647,-3.77756 l 25.90417,2.63554 18.34656,-76.29078 c 31.66682,-131.68059 31.64512,-159.14101 -0.15764,-198.52098 l -17.52797,-21.70425 -16.74649,5.90846 c -30.6207,10.80364 -42.94268,6.71196 -45.9833,-15.26937 -2.18916,-15.82601 -20.88649,-14.87624 -25.20746,1.28046 -2.6722,9.99172 -1.63921,12.45306 6.52984,15.55892 5.33731,2.02924 10.58802,6.21805 11.66825,9.30845 1.08022,3.09041 0.6642,36.11502 -0.92447,73.38802 -2.6665,62.56018 -4.10346,71.51299 -18.69519,116.47812 -8.69368,26.78996 -16.85947,59.66857 -18.1462,73.06355 l -2.33951,24.35451 23.36528,0 c 15.69868,0 25.11164,-2.10425 28.68766,-6.41309 z M 1110.8443,307.11805 c 0,-5.89738 -3.9072,-22.3209 -8.6827,-36.49669 -10.0333,-29.78321 -8.5287,-37.98026 2.097,-11.42425 7.59,18.96934 13.8773,58.64347 9.2935,58.64347 -1.4893,0 -2.7078,-4.82513 -2.7078,-10.72253 z m -73.82,-8.64006 c -1.5578,-6.20728 -2.0157,-12.10282 -1.0173,-13.10121 0.9984,-0.99838 3.0899,3.26344 4.6478,9.47073 1.558,6.20728 2.0157,12.10282 1.0173,13.1012 -0.9983,0.99838 -3.0899,-3.26344 -4.6478,-9.47072 z m 35.6998,0.57828 c 0,-5.67226 -2.0259,-15.67879 -4.502,-22.23674 -2.8238,-7.47868 -2.9143,-10.34461 -0.2429,-7.68797 5.9419,5.90894 13.2194,40.23789 8.5302,40.23789 -2.0819,0 -3.7853,-4.64094 -3.7853,-10.31318 z"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3936"
|
||||||
|
d="m 839.75955,655.64272 275.77185,0"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:10.86231995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.2 KiB |
421
lac18/artwork/outro.svg
Normal file
421
lac18/artwork/outro.svg
Normal file
|
@ -0,0 +1,421 @@
|
||||||
|
<?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.92.3 (2405546, 2018-03-11)"
|
||||||
|
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>
|
||||||
|
<filter
|
||||||
|
id="filter3207"
|
||||||
|
inkscape:label="Invert"
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
width="1"
|
||||||
|
height="1"
|
||||||
|
inkscape:menu="Color"
|
||||||
|
inkscape:menu-tooltip="Invert colors"
|
||||||
|
color-interpolation-filters="sRGB">
|
||||||
|
<feColorMatrix
|
||||||
|
id="feColorMatrix3209"
|
||||||
|
type="saturate"
|
||||||
|
values="1"
|
||||||
|
result="fbSourceGraphic" />
|
||||||
|
<feColorMatrix
|
||||||
|
id="feColorMatrix3211"
|
||||||
|
in="fbSourceGraphic"
|
||||||
|
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 " />
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="880.08199"
|
||||||
|
inkscape:cy="341.27928"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1916"
|
||||||
|
inkscape:window-height="1023"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="36"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
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"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,1080"
|
||||||
|
id="guide3019"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="0,0"
|
||||||
|
id="guide3021"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1920,1337.442"
|
||||||
|
id="guide3023"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,25"
|
||||||
|
id="guide3025"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,1048"
|
||||||
|
id="guide3027"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="32,0"
|
||||||
|
id="guide3029"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1888,0"
|
||||||
|
id="guide3031"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="960,1080"
|
||||||
|
id="guide3819"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,540"
|
||||||
|
id="guide3821"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,27.63782)">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;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-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;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="959.01093"
|
||||||
|
y="916.61218"
|
||||||
|
id="text3893"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3895"
|
||||||
|
x="959.01093"
|
||||||
|
y="916.61218"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'TeX Gyre Adventor';-inkscape-font-specification:'TeX Gyre Adventor';text-align:center;text-anchor:middle;fill:#a5a5a5;fill-opacity:1">More Recordings available on <tspan
|
||||||
|
style="font-weight:bold;-inkscape-font-specification:'TeX Gyre Adventor Bold'"
|
||||||
|
id="tspan3028">media.ccc.de</tspan></tspan></text>
|
||||||
|
<g
|
||||||
|
id="g3974"
|
||||||
|
transform="translate(-17.645475,-114.3211)"
|
||||||
|
style="filter:url(#filter3207)">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="sssssscssssssssssscssscsscsssssssscsssssssssssssssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3140"
|
||||||
|
d="m 844.50095,634.53306 c 8.49609,-16.65371 8.79891,-20.16379 4.29367,-49.76793 -6.95799,-45.72111 -5.60472,-99.15766 3.32735,-131.38636 4.19658,-15.14216 14.75798,-53.26228 23.46975,-84.71137 23.9513,-86.46297 35.62204,-99.52722 95.47876,-106.87917 17.4718,-2.14599 39.86742,-4.89907 49.76802,-6.11797 9.9007,-1.2189 17.9731,-0.59475 17.939,1.38699 -0.034,1.98175 -9.8059,8.36818 -21.715,14.19209 -26.03694,12.73289 -51.94303,44.47211 -41.62519,50.99757 3.42217,2.16431 17.18171,3.96428 30.57669,3.99995 35.07,0.0934 32.9894,7.41758 -4.2356,14.90968 -7.57112,1.52378 -13.76558,3.68644 -13.76558,4.80588 0,1.11943 6.48963,10.53464 14.42148,20.92267 17.8704,23.40399 25.5433,53.44524 21.8673,85.61452 -1.5193,13.29614 -10.3229,54.80186 -19.5634,92.23497 -9.24046,37.4331 -17.26039,75.53573 -17.82203,84.67252 -0.97854,15.91873 2.53703,18.92775 16.74253,21.47471 8.1536,1.46186 -28.65612,0.70443 -78.20662,1.01108 l -90.09191,0.55757 z m 75.79233,7.26874 c 4.17638,-5.03224 10.90005,-5.84562 31.22647,-3.77756 l 25.90417,2.63554 18.34656,-76.29078 c 31.66682,-131.68059 31.64512,-159.14101 -0.15764,-198.52098 l -17.52797,-21.70425 -16.74649,5.90846 c -30.6207,10.80364 -42.94268,6.71196 -45.9833,-15.26937 -2.18916,-15.82601 -20.88649,-14.87624 -25.20746,1.28046 -2.6722,9.99172 -1.63921,12.45306 6.52984,15.55892 5.33731,2.02924 10.58802,6.21805 11.66825,9.30845 1.08022,3.09041 0.6642,36.11502 -0.92447,73.38802 -2.6665,62.56018 -4.10346,71.51299 -18.69519,116.47812 -8.69368,26.78996 -16.85947,59.66857 -18.1462,73.06355 l -2.33951,24.35451 23.36528,0 c 15.69868,0 25.11164,-2.10425 28.68766,-6.41309 z M 1110.8443,307.11805 c 0,-5.89738 -3.9072,-22.3209 -8.6827,-36.49669 -10.0333,-29.78321 -8.5287,-37.98026 2.097,-11.42425 7.59,18.96934 13.8773,58.64347 9.2935,58.64347 -1.4893,0 -2.7078,-4.82513 -2.7078,-10.72253 z m -73.82,-8.64006 c -1.5578,-6.20728 -2.0157,-12.10282 -1.0173,-13.10121 0.9984,-0.99838 3.0899,3.26344 4.6478,9.47073 1.558,6.20728 2.0157,12.10282 1.0173,13.1012 -0.9983,0.99838 -3.0899,-3.26344 -4.6478,-9.47072 z m 35.6998,0.57828 c 0,-5.67226 -2.0259,-15.67879 -4.502,-22.23674 -2.8238,-7.47868 -2.9143,-10.34461 -0.2429,-7.68797 5.9419,5.90894 13.2194,40.23789 8.5302,40.23789 -2.0819,0 -3.7853,-4.64094 -3.7853,-10.31318 z"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3936"
|
||||||
|
d="m 839.75955,655.64272 275.77185,0"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:10.86231995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="layer1-6"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
transform="translate(718.22268,586.44483)">
|
||||||
|
<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-nc.png"
|
||||||
|
id="g325"
|
||||||
|
transform="matrix(4.4686366,0,0,4.4682406,-827.66484,-635.08837)">
|
||||||
|
<path
|
||||||
|
style="fill:#aab2ab"
|
||||||
|
d="m 182.23535,150.26416 114.06396,0.20264 c 1.59375,0 3.01758,-0.23633 3.01758,3.18018 l -0.13965,37.56689 H 179.35693 v -37.70605 c 0,-1.68507 0.16309,-3.24366 2.87842,-3.24366 z"
|
||||||
|
nodetypes="ccccccc"
|
||||||
|
id="path3817_3_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)"
|
||||||
|
id="g5908_3_">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
d="m 187.20946,30.09433 c 0.006,8.68024 -7.02786,15.72153 -15.70808,15.72711 -8.68022,0.005 -15.72206,-7.02786 -15.7271,-15.70807 0,-0.0067 0,-0.01233 0,-0.01904 -0.005,-8.68076 7.02785,-15.72205 15.70808,-15.72708 8.68132,-0.005 15.72206,7.02786 15.7271,15.70807 0,0.0062 0,0.0123 0,0.01901 z"
|
||||||
|
rx="22.939548"
|
||||||
|
type="arc"
|
||||||
|
cy="264.3577"
|
||||||
|
ry="22.939548"
|
||||||
|
cx="296.35416"
|
||||||
|
id="path5906_3_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="translate(-289.6157,99.0653)"
|
||||||
|
id="g5706_3_">
|
||||||
|
<path
|
||||||
|
d="m 473.88458,-81.77313 c 3.48541,3.48538 5.22839,7.75336 5.22839,12.80215 0,5.04941 -1.71283,9.27203 -5.13837,12.66794 -3.63531,3.57602 -7.93176,5.36377 -12.88943,5.36377 -4.8978,0 -9.11987,-1.77264 -12.66513,-5.31958 -3.54581,-3.54526 -5.31842,-7.78299 -5.31842,-12.71213 0,-4.92856 1.77261,-9.19595 5.31842,-12.80215 3.4552,-3.48709 7.67728,-5.22952 12.66513,-5.22952 5.04825,-1e-5 9.314,1.74243 12.79941,5.22952 z m -23.11798,2.3443 c -2.94678,2.97638 -4.41956,6.46344 -4.41956,10.46234 0,3.99835 1.45825,7.45523 4.37421,10.37119 2.91656,2.91595 6.38852,4.37424 10.41705,4.37424 4.02856,0 7.53021,-1.47226 10.50659,-4.41898 2.82587,-2.73587 4.23938,-6.17706 4.23938,-10.32645 0,-4.11804 -1.43646,-7.61295 -4.30768,-10.48416 -2.87061,-2.87067 -6.34985,-4.30655 -10.43829,-4.30655 -4.08837,0 -7.54638,1.44314 -10.3717,4.32837 z m 7.75446,8.7037 c -0.45029,-0.98224 -1.12433,-1.47281 -2.02322,-1.47281 -1.58914,0 -2.38345,1.07007 -2.38345,3.20853 0,2.13956 0.79431,3.20908 2.38345,3.20908 1.04935,0 1.79892,-0.52078 2.24863,-1.56454 l 2.20279,1.17297 c -1.04993,1.86548 -2.62509,2.79849 -4.72549,2.79849 -1.61993,0 -2.91766,-0.4967 -3.89209,-1.48956 -0.97607,-0.99344 -1.46271,-2.36276 -1.46271,-4.108 0,-1.715 0.50229,-3.07706 1.50748,-4.08502 1.00516,-1.00854 2.25705,-1.51251 3.75781,-1.51251 2.22012,0 3.80984,0.87427 4.77081,2.62228 z m 10.36334,0 c -0.45087,-0.98224 -1.11145,-1.47281 -1.98236,-1.47281 -1.62109,0 -2.43213,1.07007 -2.43213,3.20853 0,2.13956 0.81104,3.20908 2.43213,3.20908 1.05103,0 1.78717,-0.52078 2.20721,-1.56454 l 2.25201,1.17297 c -1.04822,1.86548 -2.62115,2.79849 -4.71765,2.79849 -1.61774,0 -2.91266,-0.4967 -3.88647,-1.48956 -0.97217,-0.99344 -1.45941,-2.36276 -1.45941,-4.108 0,-1.715 0.49451,-3.07706 1.48291,-4.08502 0.98779,-1.00854 2.24524,-1.51251 3.77344,-1.51251 2.21619,0 3.80371,0.87427 4.76135,2.62228 z"
|
||||||
|
id="path5708_3_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
id="path332"
|
||||||
|
d="m 297.29639,149.82227 h -116.229 c -1.24658,0 -2.26123,1.01367 -2.26123,2.26025 v 39.49609 c 0,0.28174 0.229,0.51025 0.51074,0.51025 h 119.72949 c 0.28174,0 0.51074,-0.22852 0.51074,-0.51025 v -39.49609 c 0,-1.24658 -1.01416,-2.26025 -2.26074,-2.26025 z m -116.22901,1.0205 h 116.229 c 0.68359,0 1.23926,0.55615 1.23926,1.23975 0,0 0,15.88525 0,27.38135 h -83.07373 c -3.04492,5.50586 -8.91113,9.24365 -15.64355,9.24365 -6.73535,0 -12.6001,-3.73486 -15.64355,-9.24365 h -4.34717 c 0,-11.49609 0,-27.38135 0,-27.38135 0,-0.68359 0.55615,-1.23975 1.23974,-1.23975 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g334"
|
||||||
|
enable-background="new ">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path336"
|
||||||
|
d="m 239.17822,182.77734 c 0.31787,0 0.60742,0.0283 0.86914,0.084 0.26172,0.0557 0.48633,0.14746 0.67383,0.27539 0.18652,0.12695 0.33203,0.29688 0.43457,0.50781 0.10254,0.21191 0.1543,0.47266 0.1543,0.78418 0,0.33594 -0.0762,0.61523 -0.22949,0.83887 -0.15234,0.22461 -0.37891,0.40723 -0.67773,0.55078 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.24512 -0.30762,0.44629 -0.52832,0.60156 -0.22168,0.15625 -0.47461,0.27148 -0.75781,0.3457 -0.28418,0.0752 -0.5752,0.1123 -0.875,0.1123 h -3.23633 v -6.66406 h 3.14159 z m -0.18701,2.69532 c 0.26123,0 0.47656,-0.0625 0.64502,-0.18652 0.16797,-0.12402 0.25195,-0.3252 0.25195,-0.60449 0,-0.15527 -0.0283,-0.2832 -0.084,-0.38184 -0.0566,-0.0996 -0.13086,-0.17676 -0.22461,-0.2334 -0.0933,-0.0557 -0.20068,-0.0947 -0.32227,-0.11621 -0.12159,-0.0215 -0.24756,-0.0322 -0.37842,-0.0322 h -1.37354 v 1.55469 z m 0.0855,2.82812 c 0.14355,0 0.28027,-0.0137 0.41162,-0.042 0.13037,-0.0283 0.24658,-0.0752 0.34619,-0.13965 0.0996,-0.0654 0.17871,-0.1543 0.23828,-0.2666 0.0596,-0.11133 0.0889,-0.25488 0.0889,-0.42871 0,-0.3418 -0.0967,-0.58594 -0.29004,-0.73242 -0.19336,-0.14551 -0.44873,-0.21875 -0.7666,-0.21875 h -1.59961 v 1.82812 h 1.57129 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path338"
|
||||||
|
d="m 241.88916,182.77734 h 1.64355 l 1.56055,2.63184 1.55078,-2.63184 h 1.63379 l -2.47363,4.10645 v 2.55762 h -1.46875 v -2.59473 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g340"
|
||||||
|
enable-background="new ">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path342"
|
||||||
|
d="m 265.78076,182.77734 2.78418,4.4707 h 0.0156 v -4.4707 h 1.375 v 6.66406 h -1.46582 l -2.77344,-4.46191 h -0.0186 v 4.46191 h -1.375 v -6.66406 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path344"
|
||||||
|
d="m 275.51904,184.55273 c -0.0869,-0.14062 -0.19629,-0.26367 -0.32715,-0.36914 -0.13086,-0.10547 -0.27832,-0.18848 -0.44336,-0.24707 -0.16504,-0.0596 -0.33789,-0.0889 -0.51758,-0.0889 -0.33008,0 -0.61035,0.0635 -0.84082,0.19141 -0.23047,0.12695 -0.41699,0.29785 -0.55957,0.5127 -0.14355,0.21484 -0.24805,0.45898 -0.31348,0.73242 -0.0654,0.27344 -0.0977,0.55664 -0.0977,0.84863 0,0.28027 0.0322,0.55273 0.0977,0.81641 0.0654,0.26465 0.16992,0.50293 0.31348,0.71387 0.14258,0.21191 0.3291,0.38086 0.55957,0.50879 0.23047,0.12793 0.51074,0.19141 0.84082,0.19141 0.44727,0 0.79785,-0.13672 1.0498,-0.41113 0.25195,-0.27344 0.40625,-0.63477 0.46191,-1.08301 h 1.41895 c -0.0371,0.41699 -0.13379,0.79395 -0.28906,1.12988 -0.15527,0.33691 -0.36133,0.62305 -0.61621,0.86035 -0.25488,0.2373 -0.55371,0.41797 -0.89648,0.54297 -0.3418,0.125 -0.71875,0.1875 -1.12891,0.1875 -0.51074,0 -0.96973,-0.0889 -1.37793,-0.2666 -0.40723,-0.17676 -0.75195,-0.42188 -1.03223,-0.73242 -0.28125,-0.31152 -0.49609,-0.67773 -0.64551,-1.09766 -0.14941,-0.4209 -0.22461,-0.87305 -0.22461,-1.35938 0,-0.49805 0.0752,-0.95996 0.22461,-1.38672 0.14941,-0.42676 0.36426,-0.79883 0.64551,-1.11621 0.28027,-0.31738 0.625,-0.56641 1.03223,-0.74707 0.4082,-0.18066 0.86719,-0.27051 1.37793,-0.27051 0.36719,0 0.71387,0.0527 1.04102,0.15918 0.32617,0.10547 0.61914,0.25977 0.87695,0.46289 0.25879,0.20215 0.47168,0.45312 0.63965,0.75195 0.16797,0.29883 0.27344,0.6416 0.31738,1.02734 H 275.687 c -0.0244,-0.16796 -0.081,-0.32226 -0.16796,-0.46191 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(1.146822,0,0,1.146822,457.9375,166.153)"
|
||||||
|
id="g6379_1_">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
d="m -154.14499,-1.09436 c 0.003,4.82693 -3.90601,8.74188 -8.73337,8.7457 -4.82652,0.00299 -8.7419,-3.90686 -8.7453,-8.73294 0,-0.0051 0,-0.00894 0,-0.01276 -0.003,-4.82739 3.90601,-8.74234 8.73251,-8.74615 4.82739,-0.00299 8.74277,3.90686 8.74615,8.73294 1e-5,0.00427 1e-5,0.00894 1e-5,0.01321 z"
|
||||||
|
rx="29.209877"
|
||||||
|
type="arc"
|
||||||
|
cy="252.08646"
|
||||||
|
ry="29.209877"
|
||||||
|
cx="475.97119"
|
||||||
|
id="path6381_1_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m -162.89709,-11.26941 c 2.85181,0 5.26337,0.98352 7.23297,2.95016 1.9696,1.96747 2.95483,4.37604 2.95483,7.22488 0,2.84882 -0.9682,5.23141 -2.90375,7.14822 -2.05475,2.01813 -4.48248,3.02637 -7.28406,3.02637 -2.76834,0 -5.1535,-1.00055 -7.15718,-3.00168 -2.00366,-2.00027 -3.00507,-4.39182 -3.00507,-7.17291 0,-2.78156 1.0014,-5.19012 3.00507,-7.22488 1.95258,-1.96664 4.3386,-2.95016 7.15719,-2.95016 z m -7.87333,7.44116 c -0.30315,0.8588 -0.45471,1.76993 -0.45471,2.73389 0,2.25528 0.82259,4.2049 2.46945,5.85046 1.64688,1.64435 3.60797,2.46735 5.88412,2.46735 2.27533,0 4.25259,-0.83069 5.93353,-2.49332 0.56287,-0.54327 1.02695,-1.13678 1.39056,-1.77969 l -3.83618,-1.70776 c -0.25974,1.2905 -1.4093,2.16205 -2.79987,2.26422 v 1.56897 h -1.1683 V 3.5069 c -1.14192,-0.01276 -2.24551,-0.47983 -3.08853,-1.21811 l 1.40077,-1.41312 c 0.67528,0.63522 1.35054,0.9205 2.2719,0.9205 0.59695,0 1.25858,-0.23376 1.25858,-1.01163 0,-0.27548 -0.1073,-0.46707 -0.27502,-0.61099 l -0.96991,-0.43256 -1.20834,-0.53732 c -0.59692,-0.26654 -1.10274,-0.49094 -1.6111,-0.71744 z m 7.89887,-5.60992 c -2.30937,0 -4.26195,0.81366 -5.85773,2.4422 -0.43513,0.43857 -0.81236,0.89667 -1.13425,1.37439 l 3.89067,1.73203 c 0.35085,-1.07932 1.3761,-1.73416 2.62105,-1.80652 v -1.56897 h 1.1683 v 1.56897 c 0.80469,0.03873 1.68689,0.25928 2.5563,0.93286 l -1.33691,1.37436 c -0.49304,-0.34955 -1.11551,-0.59607 -1.73883,-0.59607 -0.5058,0 -1.21941,0.155 -1.21941,0.78979 0,0.0975 0.0315,0.18268 0.0911,0.25845 l 1.30113,0.57904 0.88049,0.39258 c 0.56287,0.25162 1.10104,0.49005 1.63409,0.72763 l 5.21313,2.32086 c 0.17285,-0.6825 0.25885,-1.40887 0.25885,-2.1778 0,-2.32428 -0.81491,-4.2905 -2.44476,-5.90161 -1.61363,-1.62853 -3.57472,-2.44219 -5.88325,-2.44219 z"
|
||||||
|
id="path6383_1_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g349">
|
||||||
|
<circle
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="circle351"
|
||||||
|
r="10.8064"
|
||||||
|
cy="165.13574"
|
||||||
|
cx="242.56226" />
|
||||||
|
<g
|
||||||
|
id="g353">
|
||||||
|
<path
|
||||||
|
id="path355"
|
||||||
|
d="m 245.68994,162.00928 c 0,-0.4165 -0.33789,-0.75391 -0.75391,-0.75391 h -4.77246 c -0.41602,0 -0.75391,0.3374 -0.75391,0.75391 v 4.77295 h 1.33105 v 5.65186 h 3.61719 v -5.65186 h 1.33203 v -4.77295 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<circle
|
||||||
|
id="circle357"
|
||||||
|
r="1.63232"
|
||||||
|
cy="158.99463"
|
||||||
|
cx="242.5498" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
style="clip-rule:evenodd;fill-rule:evenodd"
|
||||||
|
id="path359"
|
||||||
|
d="m 242.53467,153.22949 c -3.23145,0 -5.96826,1.12744 -8.20752,3.38379 -2.29785,2.3335 -3.44629,5.0957 -3.44629,8.28467 0,3.18897 1.14844,5.93164 3.44629,8.22656 2.29785,2.29443 5.03418,3.44189 8.20752,3.44189 3.21289,0 5.99805,-1.15625 8.35352,-3.47119 2.2207,-2.19727 3.33008,-4.92969 3.33008,-8.19727 0,-3.26758 -1.12891,-6.02881 -3.3877,-8.28467 -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.93408 6.74707,2.80078 1.87012,1.84766 2.80469,4.10352 2.80469,6.76807 0,2.68359 -0.91504,4.91064 -2.74609,6.68018 -1.92773,1.90625 -4.19629,2.85889 -6.80566,2.85889 -2.60937,0 -4.8584,-0.94336 -6.74658,-2.82959 -1.88965,-1.88672 -2.8335,-4.12305 -2.8335,-6.70947 0,-2.58691 0.9541,-4.84277 2.8623,-6.76807 1.83057,-1.86671 4.07031,-2.80079 6.71777,-2.80079 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 23 KiB |
324
lac18/artwork/overlay.svg
Normal file
324
lac18/artwork/overlay.svg
Normal file
|
@ -0,0 +1,324 @@
|
||||||
|
<?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.48.4 r9939"
|
||||||
|
sodipodi:docname="overlay.svg"
|
||||||
|
inkscape:export-filename="/home/peter/AAA-VOC/intro-outro-generator/dg/artwork/overlay.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<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>
|
||||||
|
<filter
|
||||||
|
inkscape:menu-tooltip="In and out glow with a possible offset and colorizable flood"
|
||||||
|
inkscape:menu="Shadows and Glows"
|
||||||
|
inkscape:label="Cutout Glow"
|
||||||
|
style="color-interpolation-filters:sRGB;"
|
||||||
|
id="filter4197">
|
||||||
|
<feOffset
|
||||||
|
dy="3"
|
||||||
|
dx="3"
|
||||||
|
id="feOffset4199" />
|
||||||
|
<feGaussianBlur
|
||||||
|
stdDeviation="3"
|
||||||
|
result="blur"
|
||||||
|
id="feGaussianBlur4201" />
|
||||||
|
<feFlood
|
||||||
|
flood-color="rgb(255,255,255)"
|
||||||
|
flood-opacity="1"
|
||||||
|
result="flood"
|
||||||
|
id="feFlood4203" />
|
||||||
|
<feComposite
|
||||||
|
in="flood"
|
||||||
|
in2="SourceGraphic"
|
||||||
|
operator="in"
|
||||||
|
result="composite"
|
||||||
|
id="feComposite4205" />
|
||||||
|
<feBlend
|
||||||
|
in="blur"
|
||||||
|
in2="composite"
|
||||||
|
mode="normal"
|
||||||
|
id="feBlend4207" />
|
||||||
|
</filter>
|
||||||
|
<linearGradient
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
y2="576.9375"
|
||||||
|
x2="989.08734"
|
||||||
|
y1="576.9375"
|
||||||
|
x1="781.76086"
|
||||||
|
id="linearGradient3922"
|
||||||
|
xlink:href="#linearGradient3916"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3916">
|
||||||
|
<stop
|
||||||
|
id="stop3918"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.64313725;"
|
||||||
|
offset="0.5"
|
||||||
|
id="stop3928" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.28682169;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3924" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.7"
|
||||||
|
inkscape:cx="1152.558"
|
||||||
|
inkscape:cy="580.83708"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1855"
|
||||||
|
inkscape:window-height="1056"
|
||||||
|
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="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 />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,27.63782)">
|
||||||
|
<g
|
||||||
|
id="g3149"
|
||||||
|
transform="translate(0,-1.3967456e-6)"
|
||||||
|
style="opacity:0.40416667000000001;fill:#000000">
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="layer1-7"
|
||||||
|
transform="matrix(0.39155044,0,0,0.39155044,1768.4799,-6.380213)"
|
||||||
|
style="fill:#000000">
|
||||||
|
<g
|
||||||
|
id="g3974"
|
||||||
|
transform="translate(-815.71429,-215.71429)"
|
||||||
|
style="fill:#000000">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="sssssscssssssssssscssscsscsssssssscsssssssssssssssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3140"
|
||||||
|
d="m 844.50095,634.53306 c 8.49609,-16.65371 8.79891,-20.16379 4.29367,-49.76793 -6.95799,-45.72111 -5.60472,-99.15766 3.32735,-131.38636 4.19658,-15.14216 14.75798,-53.26228 23.46975,-84.71137 23.9513,-86.46297 35.62204,-99.52722 95.47876,-106.87917 17.4718,-2.14599 39.86742,-4.89907 49.76802,-6.11797 9.9007,-1.2189 17.9731,-0.59475 17.939,1.38699 -0.034,1.98175 -9.8059,8.36818 -21.715,14.19209 -26.03694,12.73289 -51.94303,44.47211 -41.62519,50.99757 3.42217,2.16431 17.18171,3.96428 30.57669,3.99995 35.07,0.0934 32.9894,7.41758 -4.2356,14.90968 -7.57112,1.52378 -13.76558,3.68644 -13.76558,4.80588 0,1.11943 6.48963,10.53464 14.42148,20.92267 17.8704,23.40399 25.5433,53.44524 21.8673,85.61452 -1.5193,13.29614 -10.3229,54.80186 -19.5634,92.23497 -9.24046,37.4331 -17.26039,75.53573 -17.82203,84.67252 -0.97854,15.91873 2.53703,18.92775 16.74253,21.47471 8.1536,1.46186 -28.65612,0.70443 -78.20662,1.01108 l -90.09191,0.55757 z m 75.79233,7.26874 c 4.17638,-5.03224 10.90005,-5.84562 31.22647,-3.77756 l 25.90417,2.63554 18.34656,-76.29078 c 31.66682,-131.68059 31.64512,-159.14101 -0.15764,-198.52098 l -17.52797,-21.70425 -16.74649,5.90846 c -30.6207,10.80364 -42.94268,6.71196 -45.9833,-15.26937 -2.18916,-15.82601 -20.88649,-14.87624 -25.20746,1.28046 -2.6722,9.99172 -1.63921,12.45306 6.52984,15.55892 5.33731,2.02924 10.58802,6.21805 11.66825,9.30845 1.08022,3.09041 0.6642,36.11502 -0.92447,73.38802 -2.6665,62.56018 -4.10346,71.51299 -18.69519,116.47812 -8.69368,26.78996 -16.85947,59.66857 -18.1462,73.06355 l -2.33951,24.35451 23.36528,0 c 15.69868,0 25.11164,-2.10425 28.68766,-6.41309 z M 1110.8443,307.11805 c 0,-5.89738 -3.9072,-22.3209 -8.6827,-36.49669 -10.0333,-29.78321 -8.5287,-37.98026 2.097,-11.42425 7.59,18.96934 13.8773,58.64347 9.2935,58.64347 -1.4893,0 -2.7078,-4.82513 -2.7078,-10.72253 z m -73.82,-8.64006 c -1.5578,-6.20728 -2.0157,-12.10282 -1.0173,-13.10121 0.9984,-0.99838 3.0899,3.26344 4.6478,9.47073 1.558,6.20728 2.0157,12.10282 1.0173,13.1012 -0.9983,0.99838 -3.0899,-3.26344 -4.6478,-9.47072 z m 35.6998,0.57828 c 0,-5.67226 -2.0259,-15.67879 -4.502,-22.23674 -2.8238,-7.47868 -2.9143,-10.34461 -0.2429,-7.68797 5.9419,5.90894 13.2194,40.23789 8.5302,40.23789 -2.0819,0 -3.7853,-4.64094 -3.7853,-10.31318 z"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3936"
|
||||||
|
d="m 839.75955,655.64272 275.77185,0"
|
||||||
|
style="fill:#000000;stroke:#000000;stroke-width:10.86231994999999984;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 11 KiB |
Loading…
Add table
Reference in a new issue