Merge branch 'master' of https://github.com/voc/intro-outro-generator into github/master
371
archconf2020/__init__.py
Normal file
|
@ -0,0 +1,371 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import easing
|
||||
import renderlib
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = "https://conf.archlinux.org/schedule2020.xml"
|
||||
|
||||
|
||||
def introFrames(args):
|
||||
# fade in logo
|
||||
frames = 1 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"logo",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0, 1, frames),
|
||||
),
|
||||
("conf_title", "style", "opacity", 0),
|
||||
("title", "style", "opacity", 0),
|
||||
("subtitle", "style", "opacity", 0),
|
||||
("persons", "style", "opacity", 0),
|
||||
("id", "style", "opacity", 0),
|
||||
)
|
||||
# fade in conf_title
|
||||
frames = 1 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"conf_title",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0, 1, frames),
|
||||
),
|
||||
("title", "style", "opacity", 0),
|
||||
("subtitle", "style", "opacity", 0),
|
||||
("persons", "style", "opacity", 0),
|
||||
("id", "style", "opacity", 0),
|
||||
)
|
||||
|
||||
# show conf_title and logo for 1 second
|
||||
frames = 1 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
("logo", "style", "opacity", 1),
|
||||
("conf_title", "style", "opacity", 1),
|
||||
("title", "style", "opacity", 0),
|
||||
("subtitle", "style", "opacity", 0),
|
||||
("persons", "style", "opacity", 0),
|
||||
("id", "style", "opacity", 0),
|
||||
)
|
||||
|
||||
# move logo and conf_title to right
|
||||
frames = 2 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
xshift = (i + 1) * 135 / frames
|
||||
yield (
|
||||
("logo", "style", "opacity", 1),
|
||||
("conf_title", "style", "opacity", 1),
|
||||
("title", "style", "opacity", 0),
|
||||
("subtitle", "style", "opacity", 0),
|
||||
("persons", "style", "opacity", 0),
|
||||
("id", "style", "opacity", 0),
|
||||
("logo", "attr", "transform", f"translate({xshift}, 0)"),
|
||||
("conf_title", "attr", "transform", f"translate({xshift}, 0)"),
|
||||
)
|
||||
|
||||
# fade in title, subtitle, persons and id
|
||||
frames = 2 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
("title", "style", "opacity", easing.easeInQuad(i, 0, 1, frames)),
|
||||
(
|
||||
"subtitle",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0, 1, frames),
|
||||
),
|
||||
(
|
||||
"persons",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0, 1, frames),
|
||||
),
|
||||
("id", "style", "opacity", easing.easeInQuad(i, 0, 1, frames)),
|
||||
(
|
||||
"logo",
|
||||
"attr",
|
||||
"transform",
|
||||
f"translate({xshift}, 0)",
|
||||
),
|
||||
(
|
||||
"conf_title",
|
||||
"attr",
|
||||
"transform",
|
||||
f"translate({xshift}, 0)",
|
||||
),
|
||||
)
|
||||
# show whole image for 2 seconds
|
||||
frames = 2 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
("title", "style", "opacity", 1),
|
||||
("subtitle", "style", "opacity", 1),
|
||||
("persons", "style", "opacity", 1),
|
||||
("id", "style", "opacity", 1),
|
||||
(
|
||||
"logo",
|
||||
"attr",
|
||||
"transform",
|
||||
f"translate({xshift}, 0)",
|
||||
),
|
||||
(
|
||||
"conf_title",
|
||||
"attr",
|
||||
"transform",
|
||||
f"translate({xshift}, 0)",
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
def backgroundFrames(parameters):
|
||||
frames = 20 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
xshift = (i + 1) * 300 / frames
|
||||
yshift = (i + 1) * (150 / frames)
|
||||
yield (
|
||||
(
|
||||
"logo_pattern",
|
||||
"attr",
|
||||
"transform",
|
||||
"translate(%.4f, %.4f)" % (xshift, yshift),
|
||||
),
|
||||
)
|
||||
|
||||
frames = 20 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
xshift = 300 - ((i + 1) * (300 / frames))
|
||||
yshift = 150 - ((i + 1) * (150 / frames))
|
||||
yield (
|
||||
(
|
||||
"logo_pattern",
|
||||
"attr",
|
||||
"transform",
|
||||
"translate(%.4f, %.4f)" % (xshift, yshift),
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(args):
|
||||
# fadein outro graphics
|
||||
frames = 3 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"logo",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.01, 1, frames),
|
||||
),
|
||||
(
|
||||
"conf_title",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.01, 1, frames),
|
||||
),
|
||||
(
|
||||
"c3voclogo",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.01, 1, frames),
|
||||
),
|
||||
(
|
||||
"c3voctext",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.01, 1, frames),
|
||||
),
|
||||
(
|
||||
"bysalogo",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.01, 1, frames),
|
||||
),
|
||||
(
|
||||
"bysatext",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.01, 1, frames),
|
||||
),
|
||||
)
|
||||
frames = 3 * renderlib.fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
("logo", "style", "opacity", 1),
|
||||
("conf_title", "style", "opacity", 1),
|
||||
("c3voclogo", "style", "opacity", 1),
|
||||
("c3voctext", "style", "opacity", 1),
|
||||
("bysalogo", "style", "opacity", 1),
|
||||
("bysatext", "style", "opacity", 1),
|
||||
)
|
||||
|
||||
|
||||
def pauseFrames(args):
|
||||
# fade heartgroups
|
||||
frames = int(0.5 * renderlib.fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.25, 0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 1, -0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.25, 0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 1, -0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.25, 0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 1, -0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.25, 0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 1, -0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 0.25, 0.75, frames),
|
||||
),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
(
|
||||
"group",
|
||||
"style",
|
||||
"opacity",
|
||||
easing.easeInQuad(i, 1, -0.75, frames),
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
def debug():
|
||||
render( # noqa
|
||||
"intro.svg",
|
||||
"../intro.ts",
|
||||
introFrames,
|
||||
{
|
||||
"$id": 7776,
|
||||
"$title": "StageWar live!",
|
||||
"$subtitle": "Metal Konzert",
|
||||
"$persons": "www.stagewar.de",
|
||||
},
|
||||
)
|
||||
|
||||
render("outro.svg", "../outro.ts", outroFrames) # noqa
|
||||
|
||||
render("background.svg", "../background.ts", backgroundFrames) # noqa
|
||||
|
||||
render("pause.svg", "../pause.ts", pauseFrames) # noqa
|
||||
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in renderlib.events(scheduleUrl):
|
||||
if not (idlist == []):
|
||||
if 000000 in idlist:
|
||||
print("skipping id (%s [%s])" % (event["title"], event["id"]))
|
||||
continue
|
||||
if int(event["id"]) not in idlist:
|
||||
print("skipping id (%s [%s])" % (event["title"], event["id"]))
|
||||
continue
|
||||
|
||||
# generate a task description and put them into the queue
|
||||
queue.put(
|
||||
renderlib.Rendertask(
|
||||
infile="intro.svg",
|
||||
outfile=str(event["id"]) + ".ts",
|
||||
sequence=introFrames,
|
||||
parameters={
|
||||
"$id": event["id"],
|
||||
"$title": event["title"],
|
||||
"$subtitle": event["subtitle"],
|
||||
"$persons": event["personnames"],
|
||||
},
|
||||
)
|
||||
)
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if "out" not in skiplist:
|
||||
queue.put(
|
||||
renderlib.Rendertask(
|
||||
infile="outro.svg", outfile="outro.ts", sequence=outroFrames
|
||||
)
|
||||
)
|
||||
|
||||
# place the pause-sequence into the queue
|
||||
if "pause" not in skiplist:
|
||||
queue.put(
|
||||
renderlib.Rendertask(
|
||||
infile="pause.svg", outfile="pause.ts", sequence=pauseFrames
|
||||
)
|
||||
)
|
||||
|
||||
# place the background-sequence into the queue
|
||||
if "bg" not in skiplist:
|
||||
queue.put(
|
||||
renderlib.Rendertask(
|
||||
infile="background.svg",
|
||||
outfile="background.ts",
|
||||
sequence=backgroundFrames,
|
||||
)
|
||||
)
|
156
archconf2020/artwork/archlinux-logo-with-text.svg
Normal file
|
@ -0,0 +1,156 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.0"
|
||||
width="600"
|
||||
height="199.41692"
|
||||
id="svg2424">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
x1="112.49854"
|
||||
y1="6.1372099"
|
||||
x2="112.49853"
|
||||
y2="129.3468"
|
||||
id="path1082_2_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982"
|
||||
offset="1" />
|
||||
<midPointStop
|
||||
offset="0"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="midPointStop197" />
|
||||
<midPointStop
|
||||
offset="0.5"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="midPointStop199" />
|
||||
<midPointStop
|
||||
offset="1"
|
||||
style="stop-color:#000000"
|
||||
id="midPointStop201" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029"
|
||||
id="linearGradient2544"
|
||||
xlink:href="#path1082_2_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,357.51969,122.00151)" />
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
id="stop3390"
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3392"
|
||||
style="stop-color:#000000;stop-opacity:0.37113401"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="490.72305"
|
||||
y1="237.72447"
|
||||
x2="490.72305"
|
||||
y2="183.9644"
|
||||
id="linearGradient4416"
|
||||
xlink:href="#linearGradient3388"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.749107,0,0,0.749107,-35.459862,91.44108)" />
|
||||
</defs>
|
||||
<g
|
||||
transform="translate(-34.777313,-129.80241)"
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(0.8746356,0,0,0.8746356,14.730518,23.408954)"
|
||||
id="g2424">
|
||||
<g
|
||||
transform="matrix(0.6378586,0,0,0.6378586,36.486487,2.17139)"
|
||||
id="g2809"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="m 339.96875,309.09375 c -14.47141,-0.0239 -26.4812,2.94367 -31.125,4.5625 l -4.78125,25.8125 c -0.0116,0.0951 23.79543,-6.34855 34.28125,-5.96875 17.36158,0.62381 18.95948,6.63541 18.65625,14.75 0.29595,0.47462 -4.47933,-7.33192 -19.5,-7.59375 -18.94961,-0.32687 -45.69284,6.70947 -45.65625,35.3125 -0.51086,32.17412 24.03361,41.63882 40.75,41.8125 15.02821,-0.27364 22.0777,-5.69136 25.9375,-8.59375 5.07124,-5.30236 10.87308,-10.63447 16.40625,-17.03125 -5.23567,9.51278 -9.77472,16.0898 -14.5,21.125 l 0,4.25 22.84375,-3.84375 0.15625,-62.09375 c -0.23141,-8.78839 5.04123,-42.41827 -43.46875,-42.5 z m -3.28125,54.0625 c 9.46889,0.12995 20.32788,4.79708 20.34375,16.03125 0.049,10.21821 -12.80005,15.71183 -21.15625,15.625 -8.35976,-0.0868 -19.45093,-6.56982 -19.5,-16.53125 0.16016,-8.90444 10.45953,-15.35418 20.3125,-15.125 z"
|
||||
id="path2284"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
d="m 398.50106,314.83145 -0.15505,102.82693 26.61213,-5.12724 0.0449,-58.30157 c 0.006,-8.68089 12.40554,-18.82451 27.9627,-18.66287 3.30202,-5.97408 9.5087,-21.24219 11.02088,-24.71514 -34.75649,-0.0833 -35.19897,9.98993 -41.24398,14.94517 -0.0631,-9.45285 -0.0213,-15.12741 -0.0213,-15.12741 l -24.2202,4.16213 z"
|
||||
id="path2286"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
d="m 548.2688,328.33058 c -0.25696,-0.12068 -13.87938,-15.93419 -41.26638,-16.0589 -25.65249,-0.42638 -54.42578,9.51895 -54.88631,52.5328 0.22457,37.81852 27.6402,52.59809 55.0314,52.88627 29.31292,0.30451 40.97654,-18.32947 41.67615,-18.79124 -3.49762,-3.0321 -16.59792,-16.0131 -16.59792,-16.0131 0,0 -8.18236,11.65102 -24.05802,11.79913 -15.87942,0.1512 -29.68245,-12.27325 -29.87805,-29.60905 -0.20349,-17.33595 12.68881,-26.72821 29.99725,-27.48687 14.98466,-0.003 23.6297,9.67334 23.6297,9.67334 l 16.35218,-18.93238 z"
|
||||
id="path2288"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
d="m 581.8125,278.84375 -25.125,5.90625 0.1875,133.9375 24.75,-4.46875 0.28125,-63.03125 c 0.0529,-6.60927 9.56127,-16.75916 25.4375,-16.4375 15.17973,0.15775 18.57236,10.11767 18.53125,11.375 l 0.4375,72.96875 24.40625,-4.3125 0.0937,-77.375 c 0.1607,-7.44539 -16.30833,-23.16954 -42.78125,-23.28125 -12.58087,0.0202 -19.54815,2.86825 -23.09375,4.96875 -6.06656,4.68565 -12.9998,9.17543 -19.8125,14.90625 6.29809,-8.09099 11.58551,-13.68516 16.75,-17.84375 l -0.0625,-37.3125 z"
|
||||
id="path2290"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.9443373,0,0.01336345,0.9443373,78.345657,-412.48879)"
|
||||
id="g5326"
|
||||
style="fill:#1793d1;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
d="m 400.67581,629.79609 7.68167,-1.91575 -0.92851,91.20792 -7.79574,1.32426 1.04258,-90.61643 z"
|
||||
id="path2292"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
d="m 421.10266,657.01757 6.75064,-2.9867 -0.86808,65.39931 -6.49779,1.33915 0.61523,-63.75176 z m -1.26059,-23.58316 5.47167,-4.41533 4.42261,4.99952 -5.47558,4.53221 -4.4187,-5.1164 z"
|
||||
id="path2294"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
d="m 440.44273,655.82614 7.67755,-1.56201 -0.1573,13.6722 c -0.007,0.58717 4.4194,-15.27364 24.68502,-14.92094 19.67986,0.10952 22.68401,15.34634 22.5291,18.76237 l -0.43759,48.0783 -6.73044,1.45631 0.63316,-47.489 c 0.0974,-1.38684 -2.88144,-13.11441 -16.78906,-13.15754 -13.90509,-0.0404 -23.68364,10.10048 -23.75821,16.57937 l -0.48127,41.83477 -7.80388,2.0313 0.63292,-65.28513 z"
|
||||
id="path2296"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
d="m 561.53301,720.20203 -7.6776,1.56186 0.15737,-13.67198 c 0.007,-0.58742 -4.42201,15.27361 -24.68504,14.92086 -19.67983,-0.10944 -22.68399,-15.34626 -22.52908,-18.76229 l 0.43757,-48.07861 8.15674,-1.64226 -0.54644,47.48988 c -0.0149,1.29682 1.36845,13.29979 15.27604,13.3426 13.90511,0.0405 23.76622,-8.37359 24.01453,-21.04416 l 0.43105,-37.46902 7.5978,-1.93195 -0.63294,65.28507 z"
|
||||
id="path2298"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
d="m 577.45461,655.28678 -5.42715,4.20017 20.19894,26.93328 -22.39092,31.11622 5.63499,4.226 21.04365,-28.8967 20.8779,29.58159 5.32727,-4.20103 -22.37578,-31.62866 18.56963,-25.5775 -5.53193,-4.73429 -16.92109,23.66778 -19.00551,-24.68686 z"
|
||||
id="path2300"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</g>
|
||||
<path
|
||||
d="m 105.8125,16.625 c -7.39687,18.135158 -11.858304,29.997682 -20.09375,47.59375 5.04936,5.35232 11.247211,11.585364 21.3125,18.625 C 96.210077,78.390904 88.828713,73.920352 83.3125,69.28125 72.7727,91.274163 56.259864,122.60209 22.75,182.8125 49.087628,167.60733 69.504089,158.23318 88.53125,154.65625 87.714216,151.1422 87.2497,147.34107 87.28125,143.375 l 0.03125,-0.84375 c 0.417917,-16.87382 9.195665,-29.84979 19.59375,-28.96875 10.39809,0.88104 18.48041,15.28242 18.0625,32.15625 -0.0786,3.17512 -0.43674,6.22955 -1.0625,9.0625 18.82058,3.68164 39.01873,13.03179 65,28.03125 -5.123,-9.4318 -9.69572,-17.93388 -14.0625,-26.03125 -6.87839,-5.33121 -14.05289,-12.2698 -28.6875,-19.78125 10.05899,2.61375 17.2611,5.62932 22.875,9 C 124.63297,63.338161 121.03766,52.354109 105.8125,16.625 z"
|
||||
transform="matrix(1.1433333,0,0,1.1433333,22.920168,121.64318)"
|
||||
id="path2518"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<g
|
||||
id="text2634"
|
||||
style="font-size:8.44138241px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans Mono">
|
||||
<path
|
||||
d="m 685.46692,263.83624 0,-5.32944 -1.99082,0 0,-0.71307 4.7895,0 0,0.71307 -1.99906,0 0,5.32944 -0.79962,0"
|
||||
id="path3660"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
d="m 689.0982,263.83624 0,-6.04251 1.20355,0 1.43026,4.2784 c 0.13189,0.39843 0.22806,0.69658 0.28852,0.89442 0.0687,-0.21983 0.17586,-0.5427 0.3215,-0.96862 l 1.44674,-4.2042 1.07578,0 0,6.04251 -0.77077,0 0,-5.05741 -1.75587,5.05741 -0.72131,0 -1.74763,-5.14396 0,5.14396 -0.77077,0"
|
||||
id="path3662"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="text2638"
|
||||
style="font-size:8.25130367px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans Mono">
|
||||
<path
|
||||
d="m 239.84053,313.69965 0,-5.20945 -1.94598,0 0,-0.697 4.68164,0 0,0.697 -1.95404,0 0,5.20945 -0.78162,0"
|
||||
id="path2883"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
d="m 243.39004,313.69965 0,-5.90645 1.17646,0 1.39805,4.18205 c 0.12892,0.38947 0.22293,0.6809 0.28202,0.87429 0.0671,-0.21488 0.1719,-0.53048 0.31426,-0.94681 l 1.41417,-4.10953 1.05155,0 0,5.90645 -0.75341,0 0,-4.94353 -1.71634,4.94353 -0.70506,0 -1.70828,-5.02814 0,5.02814 -0.75342,0"
|
||||
id="path2885"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.5 KiB |
131
archconf2020/artwork/archlinux-logo.svg
Normal file
|
@ -0,0 +1,131 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
version="1.0"
|
||||
width="200"
|
||||
height="200"
|
||||
id="svg2424"
|
||||
sodipodi:docname="archlinux-logo.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<metadata
|
||||
id="metadata150184">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2396"
|
||||
inkscape:window-height="1292"
|
||||
id="namedview150182"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="2.1966667"
|
||||
inkscape:cx="300"
|
||||
inkscape:cy="99.708458"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2424" />
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
x1="112.49854"
|
||||
y1="6.1372099"
|
||||
x2="112.49853"
|
||||
y2="129.3468"
|
||||
id="path1082_2_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982"
|
||||
offset="1" />
|
||||
<midPointStop
|
||||
offset="0"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="midPointStop197" />
|
||||
<midPointStop
|
||||
offset="0.5"
|
||||
style="stop-color:#FFFFFF"
|
||||
id="midPointStop199" />
|
||||
<midPointStop
|
||||
offset="1"
|
||||
style="stop-color:#000000"
|
||||
id="midPointStop201" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029"
|
||||
id="linearGradient2544"
|
||||
xlink:href="#path1082_2_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,357.51969,122.00151)" />
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
id="stop3390"
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3392"
|
||||
style="stop-color:#000000;stop-opacity:0.37113401"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="490.72305"
|
||||
y1="237.72447"
|
||||
x2="490.72305"
|
||||
y2="183.9644"
|
||||
id="linearGradient4416"
|
||||
xlink:href="#linearGradient3388"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.749107,0,0,0.749107,-35.459862,91.44108)" />
|
||||
</defs>
|
||||
<g
|
||||
id="g156224">
|
||||
<path
|
||||
d="m 97.8125,16.625 c -7.39687,18.135158 -11.858304,29.997682 -20.09375,47.59375 5.04936,5.35232 11.247211,11.585364 21.3125,18.625 C 88.210077,78.390904 80.828713,73.920352 75.3125,69.28125 64.7727,91.274163 48.259864,122.60209 14.75,182.8125 41.087628,167.60733 61.504089,158.23318 80.53125,154.65625 79.714216,151.1422 79.2497,147.34107 79.28125,143.375 l 0.03125,-0.84375 c 0.417917,-16.87382 9.195665,-29.84979 19.59375,-28.96875 10.39809,0.88104 18.48041,15.28242 18.0625,32.15625 -0.0786,3.17512 -0.43674,6.22955 -1.0625,9.0625 18.82058,3.68164 39.01873,13.03179 65,28.03125 -5.123,-9.4318 -9.69572,-17.93388 -14.0625,-26.03125 -6.87839,-5.33121 -14.05289,-12.2698 -28.6875,-19.78125 10.05899,2.61375 17.2611,5.62932 22.875,9 C 116.63297,63.338161 113.03766,52.354109 97.8125,16.625 Z"
|
||||
id="path2518"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<g
|
||||
id="text2638"
|
||||
style="font-style:normal;font-weight:normal;font-size:8.2513px;font-family:'DejaVu Sans Mono';fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
transform="matrix(0.8746356,0,0,0.8746356,-28.046795,-106.39346)">
|
||||
<path
|
||||
d="m 239.84053,313.69965 v -5.20945 h -1.94598 v -0.697 h 4.68164 v 0.697 h -1.95404 v 5.20945 h -0.78162"
|
||||
id="path2883"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
d="m 243.39004,313.69965 v -5.90645 h 1.17646 l 1.39805,4.18205 c 0.12892,0.38947 0.22293,0.6809 0.28202,0.87429 0.0671,-0.21488 0.1719,-0.53048 0.31426,-0.94681 l 1.41417,-4.10953 h 1.05155 v 5.90645 h -0.75341 v -4.94353 l -1.71634,4.94353 h -0.70506 l -1.70828,-5.02814 v 5.02814 h -0.75342"
|
||||
id="path2885"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
2679
archconf2020/artwork/background.svg
Normal file
After Width: | Height: | Size: 139 KiB |
74
archconf2020/artwork/by-sa.svg
Normal file
|
@ -0,0 +1,74 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="120" height="42" id="svg2759" sodipodi:version="0.32" inkscape:version="0.45+devel" version="1.0" sodipodi:docname="by-sa.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs id="defs2761"/>
|
||||
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#8b8b8b" borderopacity="1" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="179" inkscape:cy="89.569904" inkscape:document-units="px" inkscape:current-layer="layer1" width="120px" height="42px" inkscape:showpageshadow="false" inkscape:window-width="1198" inkscape:window-height="624" inkscape:window-x="488" inkscape:window-y="401"/>
|
||||
<metadata id="metadata2764">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1">
|
||||
<g transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)" id="g287" inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png" inkscape:export-xdpi="300.23013" inkscape:export-ydpi="300.23013">
|
||||
<path id="path3817_2_" nodetypes="ccccccc" d="M 182.23532,75.39014 L 296.29928,75.59326 C 297.89303,75.59326 299.31686,75.35644 299.31686,78.77344 L 299.17721,116.34033 L 179.3569,116.34033 L 179.3569,78.63379 C 179.3569,76.94922 179.51999,75.39014 182.23532,75.39014 z" style="fill:#aab2ab"/>
|
||||
|
||||
<g id="g5908_2_" transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||
|
||||
<path id="path5906_2_" cx="296.35416" ry="22.939548" cy="264.3577" type="arc" rx="22.939548" d="M 187.20944,-55.6792 C 187.21502,-46.99896 180.18158,-39.95825 171.50134,-39.95212 C 162.82113,-39.94708 155.77929,-46.97998 155.77426,-55.66016 C 155.77426,-55.66687 155.77426,-55.67249 155.77426,-55.6792 C 155.76922,-64.36054 162.80209,-71.40125 171.48233,-71.40631 C 180.16367,-71.41193 187.20441,-64.37842 187.20944,-55.69824 C 187.20944,-55.69263 187.20944,-55.68591 187.20944,-55.6792 z" style="fill:#ffffff"/>
|
||||
|
||||
<g id="g5706_2_" transform="translate(-289.6157,99.0653)">
|
||||
<path id="path5708_2_" d="M 473.88455,-167.54724 C 477.36996,-164.06128 479.11294,-159.79333 479.11294,-154.74451 C 479.11294,-149.69513 477.40014,-145.47303 473.9746,-142.07715 C 470.33929,-138.50055 466.04281,-136.71283 461.08513,-136.71283 C 456.18736,-136.71283 451.96526,-138.48544 448.42003,-142.03238 C 444.87419,-145.57819 443.10158,-149.81537 443.10158,-154.74451 C 443.10158,-159.6731 444.87419,-163.94049 448.42003,-167.54724 C 451.87523,-171.03375 456.09728,-172.77618 461.08513,-172.77618 C 466.13342,-172.77618 470.39914,-171.03375 473.88455,-167.54724 z M 450.76657,-165.20239 C 447.81982,-162.22601 446.34701,-158.7395 446.34701,-154.74005 C 446.34701,-150.7417 447.80529,-147.28485 450.72125,-144.36938 C 453.63778,-141.45288 457.10974,-139.99462 461.1383,-139.99462 C 465.16683,-139.99462 468.66848,-141.46743 471.64486,-144.41363 C 474.47076,-147.14947 475.88427,-150.59069 475.88427,-154.74005 C 475.88427,-158.85809 474.44781,-162.35297 471.57659,-165.22479 C 468.70595,-168.09546 465.22671,-169.53131 461.1383,-169.53131 C 457.04993,-169.53131 453.59192,-168.08813 450.76657,-165.20239 z M 458.52106,-156.49927 C 458.07074,-157.4809 457.39673,-157.9715 456.49781,-157.9715 C 454.90867,-157.9715 454.11439,-156.90198 454.11439,-154.763 C 454.11439,-152.62341 454.90867,-151.55389 456.49781,-151.55389 C 457.54719,-151.55389 458.29676,-152.07519 458.74647,-153.11901 L 460.94923,-151.94598 C 459.8993,-150.0805 458.32417,-149.14697 456.22374,-149.14697 C 454.60384,-149.14697 453.30611,-149.64367 452.33168,-150.63653 C 451.35561,-151.62994 450.86894,-152.99926 450.86894,-154.7445 C 450.86894,-156.46008 451.37123,-157.82159 452.37642,-158.83013 C 453.38161,-159.83806 454.63347,-160.34264 456.13423,-160.34264 C 458.35435,-160.34264 459.94407,-159.46776 460.90504,-157.71978 L 458.52106,-156.49927 z M 468.8844,-156.49927 C 468.43353,-157.4809 467.77292,-157.9715 466.90201,-157.9715 C 465.28095,-157.9715 464.46988,-156.90198 464.46988,-154.763 C 464.46988,-152.62341 465.28095,-151.55389 466.90201,-151.55389 C 467.95304,-151.55389 468.68918,-152.07519 469.10925,-153.11901 L 471.36126,-151.94598 C 470.31301,-150.0805 468.74007,-149.14697 466.64358,-149.14697 C 465.02587,-149.14697 463.73095,-149.64367 462.75711,-150.63653 C 461.78494,-151.62994 461.29773,-152.99926 461.29773,-154.7445 C 461.29773,-156.46008 461.79221,-157.82159 462.78061,-158.83013 C 463.76843,-159.83806 465.02588,-160.34264 466.55408,-160.34264 C 468.77027,-160.34264 470.35776,-159.46776 471.3154,-157.71978 L 468.8844,-156.49927 z"/>
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<path d="M 297.29639,74.91064 L 181.06688,74.91064 C 179.8203,74.91064 178.80614,75.92529 178.80614,77.17187 L 178.80614,116.66748 C 178.80614,116.94922 179.03466,117.17822 179.31639,117.17822 L 299.04639,117.17822 C 299.32813,117.17822 299.55713,116.94922 299.55713,116.66748 L 299.55713,77.17188 C 299.55713,75.92529 298.54297,74.91064 297.29639,74.91064 z M 181.06688,75.93213 L 297.29639,75.93213 C 297.97998,75.93213 298.53565,76.48828 298.53565,77.17188 C 298.53565,77.17188 298.53565,93.09131 298.53565,104.59034 L 215.4619,104.59034 C 212.41698,110.09571 206.55077,113.83399 199.81835,113.83399 C 193.083,113.83399 187.21825,110.09913 184.1748,104.59034 L 179.82666,104.59034 C 179.82666,93.09132 179.82666,77.17188 179.82666,77.17188 C 179.82664,76.48828 180.38329,75.93213 181.06688,75.93213 z" id="path294"/>
|
||||
|
||||
<g enable-background="new " id="g296">
|
||||
<path d="M 265.60986,112.8833 C 265.68994,113.03906 265.79736,113.16504 265.93115,113.26172 C 266.06494,113.35791 266.22119,113.42969 266.40088,113.47608 C 266.58154,113.52296 266.76807,113.54639 266.96045,113.54639 C 267.09033,113.54639 267.22998,113.53565 267.3794,113.51368 C 267.52784,113.4922 267.66749,113.44972 267.79835,113.3877 C 267.92823,113.32569 268.03761,113.23975 268.12355,113.13086 C 268.21144,113.02197 268.25441,112.88379 268.25441,112.71533 C 268.25441,112.53515 268.19679,112.38916 268.08156,112.27685 C 267.9673,112.16455 267.81594,112.07177 267.62941,111.99658 C 267.44386,111.92236 267.23195,111.85693 266.9966,111.80078 C 266.76027,111.74463 266.52101,111.68262 266.27883,111.61377 C 266.02981,111.55176 265.78762,111.47559 265.55129,111.38525 C 265.31594,111.29541 265.10402,111.17822 264.9175,111.03515 C 264.73098,110.89208 264.58059,110.71337 264.46535,110.49853 C 264.35109,110.28369 264.29347,110.02392 264.29347,109.71923 C 264.29347,109.37646 264.36671,109.07958 264.51222,108.82763 C 264.6587,108.57568 264.85011,108.36572 265.08644,108.19726 C 265.32179,108.02929 265.58937,107.90478 265.8882,107.82372 C 266.18605,107.74315 266.48488,107.70263 266.78273,107.70263 C 267.13136,107.70263 267.46535,107.74169 267.78566,107.81982 C 268.105,107.89746 268.39015,108.02392 268.6382,108.19824 C 268.88722,108.37256 269.08449,108.59521 269.23097,108.86621 C 269.37648,109.13721 269.44972,109.46582 269.44972,109.85156 L 268.02784,109.85156 C 268.01514,109.65234 267.97315,109.4873 267.90284,109.35693 C 267.83155,109.22607 267.73682,109.12353 267.61964,109.04834 C 267.50148,108.97412 267.36671,108.9209 267.21534,108.89014 C 267.063,108.85889 266.89796,108.84326 266.71827,108.84326 C 266.60108,108.84326 266.48292,108.85596 266.36573,108.88037 C 266.24757,108.90576 266.14112,108.94922 266.04542,109.01123 C 265.94874,109.07373 265.86964,109.15137 265.80812,109.24463 C 265.7466,109.33838 265.71535,109.45654 265.71535,109.59961 C 265.71535,109.73047 265.73976,109.83643 265.78957,109.91699 C 265.83937,109.99804 265.93801,110.07275 266.08352,110.14111 C 266.22903,110.20947 266.43118,110.27832 266.68899,110.34668 C 266.9468,110.41504 267.28372,110.50244 267.70071,110.60791 C 267.82473,110.63281 267.99661,110.67822 268.21731,110.74365 C 268.43801,110.80908 268.65676,110.91308 268.87454,111.05615 C 269.09231,111.1997 269.27981,111.39111 269.43899,111.63037 C 269.59719,111.87012 269.67629,112.17676 269.67629,112.55029 C 269.67629,112.85547 269.61672,113.13867 269.49856,113.3999 C 269.3804,113.66162 269.20461,113.8872 268.97122,114.07666 C 268.73782,114.26709 268.44876,114.41455 268.10403,114.52051 C 267.75833,114.62647 267.35794,114.6792 266.90481,114.6792 C 266.53762,114.6792 266.18118,114.63379 265.83547,114.54346 C 265.49074,114.45313 265.18508,114.31104 264.92043,114.11768 C 264.65676,113.92432 264.4468,113.67774 264.29055,113.37891 C 264.13528,113.07959 264.06106,112.7251 264.06692,112.31397 L 265.4888,112.31397 C 265.48877,112.53809 265.52881,112.72803 265.60986,112.8833 z" id="path298" style="fill:#ffffff"/>
|
||||
|
||||
<path d="M 273.8667,107.8667 L 276.35986,114.53076 L 274.8374,114.53076 L 274.33349,113.04638 L 271.84033,113.04638 L 271.31787,114.53076 L 269.84326,114.53076 L 272.36377,107.8667 L 273.8667,107.8667 z M 273.95068,111.95264 L 273.11084,109.50928 L 273.09229,109.50928 L 272.22315,111.95264 L 273.95068,111.95264 z" id="path300" style="fill:#ffffff"/>
|
||||
|
||||
</g>
|
||||
|
||||
<g enable-background="new " id="g302">
|
||||
<path d="M 239.17821,107.8667 C 239.49559,107.8667 239.78563,107.89502 240.04735,107.95068 C 240.30907,108.00683 240.53368,108.09863 240.72118,108.22607 C 240.9077,108.35351 241.05321,108.52295 241.15575,108.73437 C 241.25829,108.94579 241.31005,109.20703 241.31005,109.51806 C 241.31005,109.854 241.23388,110.13329 241.08056,110.35742 C 240.92822,110.58154 240.70165,110.76465 240.40283,110.90771 C 240.81494,111.02587 241.12256,111.23291 241.32568,111.5288 C 241.5288,111.82469 241.63037,112.18114 241.63037,112.59814 C 241.63037,112.93408 241.56494,113.22509 241.43408,113.47119 C 241.30322,113.7168 241.12646,113.91748 240.90576,114.07324 C 240.68408,114.229 240.43115,114.34424 240.14795,114.41845 C 239.86377,114.49365 239.57275,114.53075 239.27295,114.53075 L 236.03662,114.53075 L 236.03662,107.86669 L 239.17821,107.86669 L 239.17821,107.8667 z M 238.99071,110.56201 C 239.25243,110.56201 239.46727,110.5 239.63622,110.37597 C 239.80419,110.25146 239.88817,110.05029 239.88817,109.77099 C 239.88817,109.61572 239.85985,109.48828 239.80419,109.38915 C 239.74755,109.28954 239.67333,109.21239 239.57958,109.15624 C 239.48583,109.10058 239.37841,109.06151 239.25731,109.04003 C 239.13524,109.01806 239.00926,109.00732 238.8784,109.00732 L 237.50535,109.00732 L 237.50535,110.56201 L 238.99071,110.56201 z M 239.07664,113.39014 C 239.22019,113.39014 239.35691,113.37647 239.48777,113.34815 C 239.61863,113.32032 239.73484,113.27344 239.83445,113.2085 C 239.93406,113.14307 240.01316,113.0542 240.07273,112.94239 C 240.1323,112.83058 240.1616,112.68751 240.1616,112.51319 C 240.1616,112.17139 240.06492,111.92725 239.87156,111.78126 C 239.6782,111.63527 239.42234,111.56202 239.10496,111.56202 L 237.50535,111.56202 L 237.50535,113.39014 L 239.07664,113.39014 z" id="path304" style="fill:#ffffff"/>
|
||||
|
||||
<path d="M 241.88914,107.8667 L 243.53269,107.8667 L 245.09324,110.49854 L 246.64402,107.8667 L 248.27781,107.8667 L 245.80418,111.97315 L 245.80418,114.53077 L 244.33543,114.53077 L 244.33543,111.93604 L 241.88914,107.8667 z" id="path306" style="fill:#ffffff"/>
|
||||
|
||||
</g>
|
||||
|
||||
<g id="g6316_1_" transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)">
|
||||
|
||||
<path id="path6318_1_" cx="475.97119" ry="29.209877" cy="252.08646" type="arc" rx="29.209877" d="M -175.0083,-139.1153 C -175.00204,-129.7035 -182.62555,-122.06751 -192.03812,-122.06049 C -201.44913,-122.05341 -209.08512,-129.67774 -209.09293,-139.09028 C -209.09293,-139.09809 -209.09293,-139.10749 -209.09293,-139.1153 C -209.09919,-148.52784 -201.47413,-156.1623 -192.06311,-156.17011 C -182.65054,-156.17713 -175.01456,-148.55207 -175.0083,-139.14026 C -175.0083,-139.13092 -175.0083,-139.1239 -175.0083,-139.1153 z" style="fill:#ffffff"/>
|
||||
|
||||
<g id="g6320_1_" transform="translate(-23.9521,-89.72962)">
|
||||
<path id="path6322_1_" d="M -168.2204,-68.05536 C -173.39234,-68.05536 -177.76892,-66.25067 -181.35175,-62.64203 C -185.02836,-58.90759 -186.86588,-54.48883 -186.86588,-49.38568 C -186.86588,-44.28253 -185.02836,-39.89416 -181.35175,-36.22308 C -177.67673,-32.55114 -173.29859,-30.71521 -168.2204,-30.71521 C -163.07974,-30.71521 -158.62503,-32.56677 -154.85312,-36.26996 C -151.30307,-39.78558 -149.52652,-44.15827 -149.52652,-49.38568 C -149.52652,-54.6123 -151.33432,-59.03265 -154.94843,-62.64203 C -158.5625,-66.25067 -162.98599,-68.05536 -168.2204,-68.05536 z M -168.17352,-64.69519 C -163.936,-64.69519 -160.33752,-63.20221 -157.37655,-60.21466 C -154.38748,-57.25836 -152.89214,-53.64899 -152.89214,-49.38568 C -152.89214,-45.09186 -154.35466,-41.52856 -157.28438,-38.69653 C -160.36876,-35.64727 -163.99849,-34.12304 -168.17351,-34.12304 C -172.34856,-34.12304 -175.94701,-35.63244 -178.96892,-38.64965 C -181.9908,-41.66918 -183.50176,-45.24657 -183.50176,-49.38567 C -183.50176,-53.52398 -181.97518,-57.13414 -178.92205,-60.21465 C -175.9939,-63.20221 -172.41107,-64.69519 -168.17352,-64.69519 z"/>
|
||||
|
||||
<path id="path6324_1_" d="M -176.49548,-52.02087 C -175.75171,-56.71856 -172.44387,-59.22949 -168.30008,-59.22949 C -162.33911,-59.22949 -158.70783,-54.90448 -158.70783,-49.1372 C -158.70783,-43.50982 -162.57194,-39.13793 -168.39383,-39.13793 C -172.39856,-39.13793 -175.98297,-41.60277 -176.63611,-46.43877 L -171.93292,-46.43877 C -171.7923,-43.92778 -170.1626,-43.04418 -167.83447,-43.04418 C -165.1813,-43.04418 -163.4563,-45.50908 -163.4563,-49.27709 C -163.4563,-53.22942 -164.94693,-55.32244 -167.74228,-55.32244 C -169.79074,-55.32244 -171.55948,-54.57787 -171.93292,-52.02087 L -170.56418,-52.02789 L -174.26734,-48.32629 L -177.96894,-52.02789 L -176.49548,-52.02087 z"/>
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<g id="g313">
|
||||
<circle cx="242.56226" cy="90.224609" r="10.8064" id="circle315" sodipodi:cx="242.56226" sodipodi:cy="90.224609" sodipodi:rx="10.8064" sodipodi:ry="10.8064" style="fill:#ffffff"/>
|
||||
|
||||
<g id="g317">
|
||||
<path d="M 245.68994,87.09766 C 245.68994,86.68116 245.35205,86.34424 244.93603,86.34424 L 240.16357,86.34424 C 239.74755,86.34424 239.40966,86.68115 239.40966,87.09766 L 239.40966,91.87061 L 240.74071,91.87061 L 240.74071,97.52295 L 244.3579,97.52295 L 244.3579,91.87061 L 245.68993,91.87061 L 245.68993,87.09766 L 245.68994,87.09766 z" id="path319"/>
|
||||
|
||||
<circle cx="242.5498" cy="84.083008" r="1.63232" id="circle321" sodipodi:cx="242.5498" sodipodi:cy="84.083008" sodipodi:rx="1.63232" sodipodi:ry="1.63232"/>
|
||||
|
||||
</g>
|
||||
|
||||
<path clip-rule="evenodd" d="M 242.53467,78.31836 C 239.30322,78.31836 236.56641,79.4458 234.32715,81.70215 C 232.0293,84.03516 230.88086,86.79736 230.88086,89.98633 C 230.88086,93.1753 232.0293,95.91846 234.32715,98.21338 C 236.625,100.50781 239.36133,101.65527 242.53467,101.65527 C 245.74756,101.65527 248.53272,100.49853 250.88819,98.18359 C 253.10889,95.98681 254.21827,93.2539 254.21827,89.98632 C 254.21827,86.71874 253.08936,83.95751 250.83057,81.70214 C 248.57178,79.4458 245.80615,78.31836 242.53467,78.31836 z M 242.56396,80.41797 C 245.2124,80.41797 247.46142,81.35156 249.31103,83.21875 C 251.18115,85.06592 252.11572,87.32227 252.11572,89.98633 C 252.11572,92.66992 251.20068,94.89746 249.36963,96.66699 C 247.4419,98.57275 245.17334,99.52539 242.56397,99.52539 C 239.9546,99.52539 237.70557,98.58252 235.81739,96.6958 C 233.92774,94.80957 232.98389,92.57324 232.98389,89.98633 C 232.98389,87.3999 233.93799,85.14404 235.84619,83.21875 C 237.67676,81.35156 239.9165,80.41797 242.56396,80.41797 z" id="path323" style="fill-rule:evenodd"/>
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
306
archconf2020/artwork/intro.svg
Normal file
|
@ -0,0 +1,306 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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 507.99999 285.75001"
|
||||
version="1.1"
|
||||
id="svg186910"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
sodipodi:docname="intro.svg">
|
||||
<defs
|
||||
id="defs186904">
|
||||
<rect
|
||||
x="201.08333"
|
||||
y="243.41667"
|
||||
width="52.916665"
|
||||
height="31.75"
|
||||
id="rect188251" />
|
||||
<rect
|
||||
x="195.79167"
|
||||
y="243.41667"
|
||||
width="58.208332"
|
||||
height="31.75"
|
||||
id="rect188245" />
|
||||
<rect
|
||||
x="10.583333"
|
||||
y="190.5"
|
||||
width="243.41667"
|
||||
height="84.666667"
|
||||
id="rect188239" />
|
||||
<rect
|
||||
x="10.583333"
|
||||
y="95.250001"
|
||||
width="243.41667"
|
||||
height="95.250001"
|
||||
id="rect188233" />
|
||||
<rect
|
||||
x="10.583333"
|
||||
y="10.583333"
|
||||
width="243.41667"
|
||||
height="84.666659"
|
||||
id="rect187105" />
|
||||
</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="694.08671"
|
||||
inkscape:cy="468.61437"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer7"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="true"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:lockguides="false"
|
||||
inkscape:window-width="830"
|
||||
inkscape:window-height="1315"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1">
|
||||
<sodipodi:guide
|
||||
position="254,314.85417"
|
||||
orientation="1,0"
|
||||
id="guide186943"
|
||||
inkscape:locked="false" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid186947" />
|
||||
<sodipodi:guide
|
||||
position="89.958332,190.50001"
|
||||
orientation="0,-1"
|
||||
id="guide186967" />
|
||||
<sodipodi:guide
|
||||
position="158.75,95.250003"
|
||||
orientation="0,-1"
|
||||
id="guide186969" />
|
||||
<sodipodi:guide
|
||||
position="10.583333,301.625"
|
||||
orientation="1,0"
|
||||
id="guide187095" />
|
||||
<sodipodi:guide
|
||||
position="497.41666,306.91668"
|
||||
orientation="1,0"
|
||||
id="guide187097" />
|
||||
<sodipodi:guide
|
||||
position="52.916666,275.16668"
|
||||
orientation="0,-1"
|
||||
id="guide187099" />
|
||||
<sodipodi:guide
|
||||
position="116.41666,10.583334"
|
||||
orientation="0,-1"
|
||||
id="guide187101" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata186907">
|
||||
<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:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Background"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<rect
|
||||
style="fill:#000000;stroke-width:0.264583"
|
||||
id="rect186912"
|
||||
width="508"
|
||||
height="285.75"
|
||||
x="0"
|
||||
y="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer7"
|
||||
inkscape:label="logo"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="logo"
|
||||
inkscape:label="#logo">
|
||||
<path
|
||||
d="m 214.38126,49.850221 c -3.089,-0.0051 -5.65255,0.628342 -6.6438,0.97389 l -1.02058,5.509816 c -0.002,0.0203 5.07926,-1.355132 7.31752,-1.274061 3.70592,0.133155 4.047,1.416363 3.98227,3.148466 0.0632,0.10131 -0.95613,-1.565038 -4.16238,-1.620927 -4.04489,-0.06977 -9.75338,1.432172 -9.74557,7.537642 -0.10904,6.867737 5.13011,8.888028 8.69831,8.925101 3.20785,-0.05841 4.7126,-1.214852 5.5365,-1.834382 1.08248,-1.131817 2.32091,-2.269984 3.502,-3.635411 -1.11758,2.030553 -2.08647,3.434453 -3.0951,4.509244 v 0.907185 l 4.87612,-0.820469 0.0333,-13.254242 c -0.0494,-1.875929 1.07608,-9.054406 -9.27864,-9.071852 z m -0.7004,11.539929 c 2.02119,0.02774 4.3391,1.023962 4.34248,3.421956 0.0105,2.181131 -2.73224,3.353774 -4.51591,3.335239 -1.78444,-0.01853 -4.15191,-1.402363 -4.16238,-3.528683 0.0342,-1.9007 2.23264,-3.277432 4.33581,-3.228512 z"
|
||||
id="path2284"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.213455" />
|
||||
<path
|
||||
d="m 226.8753,51.074964 -0.0331,21.948956 5.6805,-1.094436 0.01,-12.444781 c 0.001,-1.852982 2.64803,-4.018192 5.96879,-3.983689 0.70484,-1.2752 2.02968,-4.534259 2.35247,-5.275579 -7.41896,-0.01778 -7.51341,2.132404 -8.80375,3.190127 -0.0135,-2.017762 -0.005,-3.229027 -0.005,-3.229027 l -5.16993,0.888429 z"
|
||||
id="path2286-6"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.213455" />
|
||||
<path
|
||||
d="m 258.84402,53.956425 c -0.0548,-0.02576 -2.96263,-3.401237 -8.80853,-3.427857 -5.47566,-0.09101 -11.61747,2.03187 -11.71578,11.213406 0.0479,8.072564 5.89995,11.227342 11.74675,11.288856 6.257,0.065 8.74666,-3.912523 8.896,-4.01109 -0.74659,-0.647218 -3.54292,-3.418082 -3.54292,-3.418082 0,0 -1.74657,2.486972 -5.13531,2.518587 -3.38955,0.03227 -6.33588,-2.61979 -6.37763,-6.320209 -0.0434,-3.700451 2.70849,-5.705279 6.40307,-5.867219 3.19856,-6.41e-4 5.04389,2.064826 5.04389,2.064826 z"
|
||||
id="path2288"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.213455" />
|
||||
<path
|
||||
d="m 266.0041,43.393198 -5.36307,1.26072 0.04,28.589673 5.28302,-0.953878 0.06,-13.454356 c 0.0113,-1.410784 2.0409,-3.577332 5.42977,-3.508672 3.24019,0.03367 3.96437,2.15967 3.95559,2.428054 l 0.0934,15.575569 5.20965,-0.920526 0.02,-16.516107 c 0.0343,-1.589258 -3.4811,-4.945661 -9.13189,-4.969506 -2.68545,0.0043 -4.17266,0.612243 -4.92948,1.060606 -1.29494,1.000177 -2.77488,1.958544 -4.22909,3.181818 1.34436,-1.727065 2.47299,-2.92117 3.57538,-3.808843 l -0.0133,-7.964552 z"
|
||||
id="path2290-7"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.213455" />
|
||||
<path
|
||||
d="m 285.25764,44.135066 2.41897,-0.605409 0.11445,28.823208 -2.45766,0.418488 z"
|
||||
id="path2292"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.316016" />
|
||||
<path
|
||||
d="m 291.83459,52.737503 2.11996,-0.943847 0.0181,20.667261 -2.04742,0.423194 z m -0.50383,-7.452668 1.7094,-1.395317 1.41997,1.579931 -1.7101,1.432253 z"
|
||||
id="path2294-5"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.316016" />
|
||||
<path
|
||||
d="m 297.94105,52.360991 2.41925,-0.493621 0.0114,4.320641 c 4.1e-4,0.185556 1.3283,-4.826722 7.73414,-4.715263 6.21966,0.03461 7.23716,4.849697 7.20348,5.929218 l 0.0767,15.193537 -2.12042,0.460218 -0.0123,-15.007308 c 0.0246,-0.438264 -0.96923,-4.14437 -5.36446,-4.158 -4.39442,-0.01277 -7.43925,3.191919 -7.43385,5.239355 l 0.035,13.220477 -2.45707,0.641925 z"
|
||||
id="path2296-3"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.316016" />
|
||||
<path
|
||||
d="m 336.49546,72.704835 -2.41926,0.493573 -0.0114,-4.320571 c -4.2e-4,-0.185634 -1.32913,4.826713 -7.73415,4.715238 -6.21964,-0.03458 -7.23715,-4.849671 -7.20347,-5.929193 l -0.0767,-15.193634 2.57032,-0.518982 0.0397,15.007586 c 10e-4,0.409817 0.49193,4.202953 4.88715,4.216482 4.39443,0.0128 7.47307,-2.646193 7.49488,-6.650302 l -0.0313,-11.840828 2.39239,-0.610529 z"
|
||||
id="path2298-5"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.316016" />
|
||||
<path
|
||||
d="m 341.23665,52.190545 -1.69629,1.327323 6.50365,8.511361 -6.93675,9.833239 1.79965,1.335485 6.52091,-9.131834 6.73005,9.348271 1.66472,-1.327595 -7.21256,-9.995178 5.75393,-8.082912 -1.76935,-1.496114 -5.24151,7.479409 z"
|
||||
id="path2300-6"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.316016" />
|
||||
<path
|
||||
d="m 177.75808,30.213871 c -2.83011,6.93868 -4.5371,11.477391 -7.68806,18.20981 1.93193,2.047846 4.30329,4.432667 8.15436,7.126098 -4.14028,-1.7037 -6.96446,-3.414176 -9.07501,-5.189138 -4.03263,8.414691 -10.35059,20.401047 -23.17177,43.438107 10.07702,-5.817639 17.88854,-9.404276 25.16851,-10.772843 -0.3126,-1.344508 -0.49033,-2.798854 -0.47826,-4.31631 l 0.012,-0.322827 c 0.1599,-6.456078 3.51835,-11.420805 7.49675,-11.083711 3.97841,0.337094 7.07078,5.847195 6.91088,12.303279 -0.0301,1.214831 -0.1671,2.383482 -0.40652,3.467396 7.20093,1.408629 14.92893,4.986083 24.8696,10.725016 -1.96011,-3.608694 -3.70967,-6.861668 -5.38044,-9.959797 -2.63174,-2.03977 -5.37677,-4.694539 -10.9761,-7.568489 3.84866,1.000043 6.60425,2.15383 8.75218,3.443483 C 184.95896,48.08676 183.58336,43.88416 177.75808,30.213871 Z"
|
||||
id="path2518-2"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.382609" />
|
||||
<path
|
||||
d="m 358.99032,71.436999 v -1.783464 h -0.66622 v -0.238624 h 1.60278 v 0.238624 h -0.66898 v 1.783464 h -0.26758"
|
||||
id="path3660"
|
||||
style="font-style:normal;font-weight:normal;font-size:8.44138px;font-family:'DejaVu Sans Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.334644" />
|
||||
<path
|
||||
d="m 360.2055,71.436999 v -2.022088 h 0.40276 l 0.47863,1.431739 c 0.0441,0.133332 0.0763,0.233106 0.0966,0.299312 0.023,-0.07356 0.0589,-0.181611 0.10759,-0.324142 l 0.48414,-1.406909 h 0.36 v 2.022088 h -0.25793 v -1.692431 l -0.58759,1.692431 h -0.24138 l -0.58484,-1.721394 v 1.721394 h -0.25793"
|
||||
id="path3662"
|
||||
style="font-style:normal;font-weight:normal;font-size:8.44138px;font-family:'DejaVu Sans Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.334644" />
|
||||
<path
|
||||
d="m 209.86427,88.123473 v -1.743309 h -0.65121 v -0.233247 h 1.56668 v 0.233247 h -0.65391 v 1.743309 h -0.26156"
|
||||
id="path2883"
|
||||
style="font-style:normal;font-weight:normal;font-size:8.2513px;font-family:'DejaVu Sans Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.334644" />
|
||||
<path
|
||||
d="m 211.05209,88.123473 v -1.976556 h 0.39369 l 0.46785,1.399497 c 0.0431,0.130333 0.0746,0.227858 0.0944,0.292575 0.0224,-0.07191 0.0575,-0.177522 0.10516,-0.316844 l 0.47324,-1.375228 h 0.3519 v 1.976556 h -0.25213 v -1.654321 l -0.57436,1.654321 h -0.23594 l -0.57167,-1.682635 v 1.682635 h -0.25212"
|
||||
id="path2885"
|
||||
style="font-style:normal;font-weight:normal;font-size:8.2513px;font-family:'DejaVu Sans Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.334644" />
|
||||
</g>
|
||||
<g
|
||||
id="conf_title"
|
||||
inkscape:label="#conf_title"
|
||||
transform="translate(0, 0)">
|
||||
<path
|
||||
d="m 201.98873,183.17572 -0.99218,-3.12125 h -3.38309 l -1.00596,3.12125 h -1.30914 l 3.32796,-10.11479 h 1.34359 l 3.34174,10.11479 z m -1.35736,-4.25813 -0.9164,-2.92144 q -0.26872,-0.85439 -0.42719,-1.55719 -0.1378,0.68213 -0.31695,1.26091 l -0.99218,3.21772 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186879" />
|
||||
<path
|
||||
d="m 210.83573,175.78255 -0.33761,1.14377 q -0.8475,-0.31006 -1.54341,-0.31006 -1.1231,0 -1.73633,0.64079 -0.60633,0.6339 -0.60633,1.83968 v 4.07899 h -1.25402 v -7.56542 h 1.01975 l 0.15158,1.38492 h 0.0551 q 0.52365,-0.81993 1.1231,-1.17133 0.59944,-0.3514 1.4745,-0.3514 0.81304,0 1.65364,0.31006 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186881" />
|
||||
<path
|
||||
d="m 219.31755,175.87902 -0.42719,1.08864 q -1.03353,-0.39274 -1.84657,-0.39274 -2.55626,0 -2.55626,2.84565 0,2.79742 2.48736,2.79742 1.08176,0 2.21175,-0.4272 v 1.10244 q -0.92328,0.4203 -2.26687,0.4203 -1.77078,0 -2.74919,-0.99908 -0.9784,-1.00597 -0.9784,-2.8801 0,-1.93614 0.99907,-2.949 0.99908,-1.01286 2.8112,-1.01286 1.22645,0 2.3151,0.40653 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186883" />
|
||||
<path
|
||||
d="m 226.5867,183.17572 v -4.87136 q 0,-1.79145 -1.63986,-1.79145 -2.11529,0 -2.11529,2.7423 v 3.92051 h -1.25402 v -10.72113 h 1.25402 v 3.18327 l -0.0551,0.99219 h 0.0689 q 0.70969,-1.15756 2.3151,-1.15756 2.68028,0 2.68028,2.76297 v 4.94026 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186885" />
|
||||
<path
|
||||
d="m 245.15575,181.79079 v 1.11621 q -1.00597,0.40653 -2.46668,0.40653 -2.12907,0 -3.25906,-1.35048 -1.12999,-1.35048 -1.12999,-3.83784 0,-2.384 1.23334,-3.77582 1.23334,-1.39181 3.3693,-1.39181 1.51584,0 2.63894,0.59255 l -0.53743,1.07487 q -1.06109,-0.53743 -2.10151,-0.53743 -1.48139,0 -2.36333,1.09554 -0.88195,1.08864 -0.88195,2.95589 0,1.97748 0.82683,3.0179 0.82682,1.03353 2.41845,1.03353 0.89573,0 2.25309,-0.39964 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186887" />
|
||||
<path
|
||||
d="m 250.08224,183.31353 q -1.48828,0 -2.45291,-1.06798 -0.95774,-1.07487 -0.95774,-2.86632 0,-1.81212 0.93018,-2.85943 0.93707,-1.04731 2.5218,-1.04731 1.50206,0 2.4598,1.06798 0.95774,1.06798 0.95774,2.83876 0,1.8259 -0.94395,2.8801 -0.94396,1.0542 -2.51492,1.0542 z m 0.0276,-1.04042 q 2.13596,0 2.13596,-2.89388 0,-2.86632 -2.14974,-2.86632 -2.12908,0 -2.12908,2.86632 0,2.89388 2.14286,2.89388 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186889" />
|
||||
<path
|
||||
d="m 260.45886,183.17572 v -4.87136 q 0,-1.79145 -1.63987,-1.79145 -2.11529,0 -2.11529,2.7423 v 3.92051 h -1.25402 v -7.56542 h 1.01288 l 0.18603,1.01975 h 0.0689 q 0.70969,-1.15756 2.3151,-1.15756 2.68028,0 2.68028,2.76297 v 4.94026 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186891" />
|
||||
<path
|
||||
d="m 270.00865,176.55425 h -2.68029 v 6.62147 h -1.25399 v -6.62147 h -2.18419 v -0.75792 l 2.18419,-0.22737 v -0.66146 q 0,-1.32981 0.62011,-1.92925 0.62013,-0.59945 2.06017,-0.59945 0.88882,0 1.73633,0.24116 l -0.28252,0.98529 q -0.71657,-0.19292 -1.42626,-0.19292 -0.84749,0 -1.15065,0.34451 -0.30319,0.34451 -0.30319,1.13688 v 0.71658 h 2.68029 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186893" />
|
||||
<path
|
||||
d="m 287.117,183.17572 h -6.27697 v -1.07487 l 2.41157,-2.62516 q 1.34358,-1.46761 1.77078,-2.18419 0.42719,-0.72347 0.42719,-1.59163 0,-0.77859 -0.44098,-1.22645 -0.43407,-0.45476 -1.17822,-0.45476 -1.10243,0 -2.19109,0.94396 l -0.70279,-0.81993 q 1.32292,-1.18511 2.90767,-1.18511 1.3367,0 2.10838,0.73035 0.77172,0.73037 0.77172,1.96371 0,0.81993 -0.40654,1.6812 -0.4065,0.86128 -2.00504,2.58382 l -1.93614,2.06017 v 0.0551 h 4.74046 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186895" />
|
||||
<path
|
||||
d="m 292.43621,183.31353 q -1.57784,0 -2.39088,-1.32981 -0.81306,-1.3367 -0.81306,-3.85851 0,-5.18142 3.20394,-5.18142 1.59854,0 2.41157,1.3367 0.81992,1.32981 0.81992,3.84472 0,5.18832 -3.23149,5.18832 z m 0,-1.06798 q 1.01285,0 1.48828,-0.96463 0.47543,-0.97152 0.47543,-3.15571 0,-2.1704 -0.47543,-3.13503 -0.47543,-0.97152 -1.48828,-0.97152 -0.99906,0 -1.46761,0.96463 -0.46165,0.95774 -0.46165,3.14192 0,2.19108 0.46165,3.15571 0.46855,0.96463 1.46761,0.96463 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186897" />
|
||||
<path
|
||||
d="m 304.05306,183.17572 h -6.27695 v -1.07487 l 2.41157,-2.62516 q 1.34358,-1.46761 1.77078,-2.18419 0.4272,-0.72347 0.4272,-1.59163 0,-0.77859 -0.44098,-1.22645 -0.43408,-0.45476 -1.17822,-0.45476 -1.10244,0 -2.19109,0.94396 l -0.70279,-0.81993 q 1.32292,-1.18511 2.90764,-1.18511 1.3367,0 2.10841,0.73035 0.77171,0.73037 0.77171,1.96371 0,0.81993 -0.40653,1.6812 -0.40653,0.86128 -2.00504,2.58382 l -1.93614,2.06017 v 0.0551 h 4.74043 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186899" />
|
||||
<path
|
||||
d="m 309.3723,183.31353 q -1.57787,0 -2.39091,-1.32981 -0.81304,-1.3367 -0.81304,-3.85851 0,-5.18142 3.20395,-5.18142 1.5985,0 2.41157,1.3367 0.81992,1.32981 0.81992,3.84472 0,5.18832 -3.23149,5.18832 z m 0,-1.06798 q 1.01285,0 1.48828,-0.96463 0.47543,-0.97152 0.47543,-3.15571 0,-2.1704 -0.47543,-3.13503 -0.47543,-0.97152 -1.48828,-0.97152 -0.9991,0 -1.46762,0.96463 -0.46164,0.95774 -0.46164,3.14192 0,2.19108 0.46164,3.15571 0.46852,0.96463 1.46762,0.96463 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;line-height:1.25;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path186901" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer8"
|
||||
inkscape:label="text">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="title"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect187105);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
inkscape:label="#title"><tspan
|
||||
x="10.583984"
|
||||
y="26.212916"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:17.6389px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1793d1;fill-opacity:1">$title</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="subtitle"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect188233);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
inkscape:label="#subtitle"><tspan
|
||||
x="10.583984"
|
||||
y="104.62732"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff;fill-opacity:1">$subtitle</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="persons"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect188239);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
inkscape:label="#persons"><tspan
|
||||
x="10.583984"
|
||||
y="199.87732"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff;fill-opacity:1">$persons</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="id"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect188251);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
inkscape:label="#id"><tspan
|
||||
x="201.08398"
|
||||
y="252.79334"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff;fill-opacity:1">$id</tspan></tspan></text>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
9986
archconf2020/artwork/outro.svg
Normal file
After Width: | Height: | Size: 620 KiB |
344
archconf2020/artwork/pause.svg
Normal file
|
@ -0,0 +1,344 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
sodipodi:docname="pause.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<rect
|
||||
x="756.82522"
|
||||
y="693.95901"
|
||||
width="525.38191"
|
||||
height="97.029891"
|
||||
id="rect186709" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="495.76257"
|
||||
inkscape:cy="546.51667"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1196"
|
||||
inkscape:window-height="1315"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0">
|
||||
<sodipodi:guide
|
||||
position="21.429,540"
|
||||
orientation="0,1"
|
||||
id="guide6027"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="960,1056.6196"
|
||||
orientation="1,0"
|
||||
id="guide6055"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</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:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:23.3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="background"
|
||||
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:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="eat"
|
||||
inkscape:label="#g5170">
|
||||
<g
|
||||
transform="matrix(1,0,0,-1,960.005,512.34716)"
|
||||
id="eat-inner">
|
||||
<g
|
||||
id="g12"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="m -257.918,69.037 c 0,19.059 14.072,38.346 40.969,38.346 l 258.72,-0.004 c 5.373,19.998 23.656,34.338 45.991,34.338 l 157.858,-0.002 c 6.787,0 12.288,-5.502 12.288,-12.287 0,-6.785 -5.501,-12.289 -12.288,-12.289 l -157.864,0.004 c -15.114,0 -23.023,-11.09 -23.023,-22.05 l -0.002,-12.29 -281.674,0.005 c -12.099,0 -16.391,-7.419 -16.391,-13.771 -0.001,-6.352 4.292,-13.775 16.391,-13.775 l 281.68,-0.005 0,-12.285 c 0,-11.681 11.353,-21.087 20.754,-21.087 l 160.128,-0.002 c 6.787,0 12.289,-5.502 12.289,-12.289 0,-6.784 -5.502,-12.287 -12.289,-12.287 L 85.49,-2.69 c -17.998,0 -37.725,13.216 -43.592,33.372 l -258.842,0.004 c -26.903,0.007 -40.974,19.294 -40.974,38.351 z"
|
||||
id="path14"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="m -256.946,-103.484 c 0,18.684 14.065,38.551 40.129,38.551 l 153.709,-0.003 0,27.818 264.646,-0.003 c 36.996,-0.002 56.352,-26.321 56.352,-52.316 -0.002,-25.992 -19.358,-52.311 -56.354,-52.31 l -418.354,0.006 c -26.345,0 -40.13,19.243 -40.128,38.257 z m 218.413,41.793 -10e-4,-27.822 -178.28,0.004 c -11.479,0 -15.55,-7.526 -15.55,-13.975 0,-6.621 4.08,-13.682 15.55,-13.682 l 418.35,-0.006 c 21.953,-0.001 31.783,13.932 31.783,27.734 0,13.808 -9.83,27.742 -31.781,27.742 l -240.071,0.005 z"
|
||||
id="path18"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
d="m 78.087,90.25 c 0,6.787 5.502,12.285 12.285,12.285 l 155.248,-0.002 c 6.787,0 12.288,-5.499 12.287,-12.285 0,-6.787 -5.5,-12.289 -12.289,-12.289 L 90.371,77.962 c -6.782,0 -12.284,5.501 -12.284,12.288 z"
|
||||
id="path20"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 78.087,48.113 c 0,6.783 5.502,12.287 12.284,12.287 l 155.247,-0.004 c 6.789,0 12.289,-5.502 12.289,-12.286 0,-6.787 -5.502,-12.288 -12.289,-12.288 L 90.371,35.824 c -6.782,0 -12.286,5.502 -12.284,12.289 z"
|
||||
id="path22-2"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="code"
|
||||
inkscape:label="#g5164">
|
||||
<g
|
||||
style="font-size:medium;font-family:ProstoSans-Bold;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
transform="translate(717.25155,401.37325)"
|
||||
id="code-inner">
|
||||
<path
|
||||
id="path4138"
|
||||
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
d="m 316.67032,64.180481 0,-23.896593 168.32655,61.054482 0,21.79579 -168.32655,61.05448 0,-23.89659 135.23896,-47.92448 -135.23896,-48.187089 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4136"
|
||||
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
d="m 265.59465,0.50000127 22.32099,0 -68.27598,220.97782873 -22.32099,0 68.27598,-220.97782873 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4134"
|
||||
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
d="m 168.82658,64.180481 -135.501558,48.187089 135.501558,47.92448 0,23.89659 -168.32654699,-61.05448 0,-21.79579 168.32654699,-61.054482 0,23.896593 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="sleep"
|
||||
inkscape:label="#g5158">
|
||||
<g
|
||||
transform="translate(392.14286,238.57143)"
|
||||
id="sleep-inner">
|
||||
<path
|
||||
d="m 363.61614,205.17623 c 0,-10.968 8.891,-19.858 19.858,-19.858 10.967,0 19.858,8.891 19.858,19.858 0,10.967 -8.891,19.858 -19.858,19.858 -10.967,0 -19.858,-8.89 -19.858,-19.858 z"
|
||||
id="path12"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:37.36399841;stroke-linecap:round;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<line
|
||||
x1="452.92215"
|
||||
y1="241.75023"
|
||||
x2="770.66412"
|
||||
y2="241.75023"
|
||||
id="line10"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:50;stroke-linecap:round;stroke-opacity:1" />
|
||||
<polyline
|
||||
points=" 264.811,-132.373 264.811,-42.348 -264.759,-42.348 -264.759,-132.373 -264.759,132.41 "
|
||||
id="polyline8"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:37.36399841;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
transform="matrix(1,0,0,-1,567.83114,273.80923)" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="repeat"
|
||||
inkscape:label="#g5149">
|
||||
<g
|
||||
id="repeat-inner">
|
||||
<path
|
||||
d="m 1087.366,384.80213 -353.43398,0 c -31.336,0 -56.692,25.357 -56.692,56.693 l 0,141.73303 c 0,31.336 25.357,56.693 56.693,56.693"
|
||||
id="path12-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-opacity:1" />
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
transform="matrix(1,0,0,-1,960.01198,512.19516)">
|
||||
<polygon
|
||||
points="112.765,176.973 199.117,127.119 112.765,77.256 "
|
||||
id="polygon16"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
d="m 832.63502,639.92216 353.43398,0 c 31.336,0 56.691,-25.357 56.691,-56.693 l 0,-141.73203 c 0,-31.336 -25.357,-56.693 -56.693,-56.693"
|
||||
id="path22"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-opacity:1"
|
||||
sodipodi:nodetypes="csccc" />
|
||||
<g
|
||||
id="g24"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
transform="matrix(1,0,0,-1,960.01198,512.19516)">
|
||||
<polygon
|
||||
points="-112.787,-177.307 -199.14,-127.453 -112.787,-77.59 "
|
||||
id="polygon26"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Text"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="group"
|
||||
inkscape:label="#group">
|
||||
<g
|
||||
id="arch_logo"
|
||||
transform="matrix(2.6485235,0,0,2.6485235,697.71341,59.09801)"
|
||||
inkscape:label="#arch_logo"
|
||||
style="display:inline">
|
||||
<path
|
||||
d="m 97.8125,16.625 c -7.39687,18.135158 -11.858304,29.997682 -20.09375,47.59375 5.04936,5.35232 11.247211,11.585364 21.3125,18.625 C 88.210077,78.390904 80.828713,73.920352 75.3125,69.28125 64.7727,91.274163 48.259864,122.60209 14.75,182.8125 41.087628,167.60733 61.504089,158.23318 80.53125,154.65625 79.714216,151.1422 79.2497,147.34107 79.28125,143.375 l 0.03125,-0.84375 c 0.417917,-16.87382 9.195665,-29.84979 19.59375,-28.96875 10.39809,0.88104 18.48041,15.28242 18.0625,32.15625 -0.0786,3.17512 -0.43674,6.22955 -1.0625,9.0625 18.82058,3.68164 39.01873,13.03179 65,28.03125 -5.123,-9.4318 -9.69572,-17.93388 -14.0625,-26.03125 -6.87839,-5.33121 -14.05289,-12.2698 -28.6875,-19.78125 10.05899,2.61375 17.2611,5.62932 22.875,9 C 116.63297,63.338161 113.03766,52.354109 97.8125,16.625 Z"
|
||||
id="path2518"
|
||||
style="fill:#1793d1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<g
|
||||
id="text2638"
|
||||
style="font-style:normal;font-weight:normal;font-size:8.2513px;font-family:'DejaVu Sans Mono';fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
transform="matrix(0.8746356,0,0,0.8746356,-28.046795,-106.39346)">
|
||||
<path
|
||||
d="m 239.84053,313.69965 v -5.20945 h -1.94598 v -0.697 h 4.68164 v 0.697 h -1.95404 v 5.20945 h -0.78162"
|
||||
id="path2883"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
d="m 243.39004,313.69965 v -5.90645 h 1.17646 l 1.39805,4.18205 c 0.12892,0.38947 0.22293,0.6809 0.28202,0.87429 0.0671,-0.21488 0.1719,-0.53048 0.31426,-0.94681 l 1.41417,-4.10953 h 1.05155 v 5.90645 h -0.75341 v -4.94353 l -1.71634,4.94353 h -0.70506 l -1.70828,-5.02814 v 5.02814 h -0.75342"
|
||||
id="path2885"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
aria-label="break"
|
||||
transform="translate(-137.54208,846.31922)"
|
||||
id="breaktext"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:Museo;-inkscape-font-specification:Museo;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1">
|
||||
<path
|
||||
d="m 986.76855,156.47705 q 0,-12.39014 -5.12695,-19.40918 -5.06592,-7.08008 -13.97705,-7.08008 -8.91113,0 -14.03809,7.08008 -5.06591,7.01904 -5.06591,19.40918 0,12.39014 5.06591,19.47022 5.12696,7.01904 14.03809,7.01904 8.91113,0 13.97705,-7.01904 5.12695,-7.08008 5.12695,-19.47022 z m -38.208,-23.86475 q 3.54004,-6.10351 8.91113,-9.0332 5.43213,-2.99072 12.93945,-2.99072 12.45117,0 20.20264,9.88769 7.8125,9.8877 7.8125,26.00098 0,16.11328 -7.8125,26.00098 -7.75147,9.88769 -20.20264,9.88769 -7.50732,0 -12.93945,-2.92968 -5.37109,-2.99073 -8.91113,-9.09424 v 10.2539 H 937.26904 V 95.625 h 11.29151 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:125px;line-height:1.25;font-family:Museo;-inkscape-font-specification:Museo;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||
id="path186842" />
|
||||
<path
|
||||
d="m 1056.6538,132.73437 q -1.8921,-1.09863 -4.1504,-1.58691 -2.1972,-0.54932 -4.8828,-0.54932 -9.5215,0 -14.6484,6.22559 -5.0659,6.16455 -5.0659,17.76123 v 36.01074 h -11.2916 v -68.35937 h 11.2916 v 10.62012 q 3.54,-6.22559 9.2163,-9.21631 5.6762,-3.05176 13.7939,-3.05176 1.1597,0 2.5635,0.1831 1.4038,0.12207 3.1128,0.42725 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:125px;line-height:1.25;font-family:Museo;-inkscape-font-specification:Museo;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||
id="path186844" />
|
||||
<path
|
||||
d="m 1124.1587,153.6084 v 5.49316 h -51.6358 q 0.7325,11.59668 6.9581,17.7002 6.2866,6.04248 17.456,6.04248 6.4697,0 12.5122,-1.58692 6.1035,-1.58691 12.085,-4.76074 v 10.62012 q -6.0425,2.56348 -12.3902,3.90625 -6.3476,1.34277 -12.8784,1.34277 -16.3574,0 -25.9399,-9.52148 -9.5215,-9.52149 -9.5215,-25.75684 0,-16.78467 9.0332,-26.61133 9.0942,-9.88769 24.4751,-9.88769 13.7939,0 21.7896,8.91113 8.0566,8.8501 8.0566,24.10889 z m -11.2305,-3.2959 q -0.122,-9.21631 -5.188,-14.70947 -5.0048,-5.49317 -13.3056,-5.49317 -9.3994,0 -15.0757,5.31006 -5.6152,5.31006 -6.4697,14.95362 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:125px;line-height:1.25;font-family:Museo;-inkscape-font-specification:Museo;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||
id="path186846" />
|
||||
<path
|
||||
d="m 1173.6582,156.23291 q -13.6108,0 -18.8599,3.11279 -5.249,3.1128 -5.249,10.62012 0,5.98145 3.9063,9.52148 3.9673,3.47901 10.7422,3.47901 9.3383,0 14.9536,-6.5918 5.6762,-6.65283 5.6762,-17.63916 v -2.50244 z m 22.3999,-4.63867 v 39.00146 h -11.2305 v -10.37597 q -3.8452,6.22558 -9.5825,9.21631 -5.7373,2.92968 -14.0381,2.92968 -10.498,0 -16.7236,-5.85937 -6.1646,-5.92041 -6.1646,-15.80811 0,-11.53564 7.6905,-17.39502 7.7514,-5.85937 23.0713,-5.85937 h 15.747 v -1.09864 q 0,-7.75146 -5.1269,-11.96289 -5.0659,-4.27246 -14.2822,-4.27246 -5.8594,0 -11.4136,1.40381 -5.5542,1.40381 -10.6812,4.21143 v -10.37598 q 6.1646,-2.38037 11.9629,-3.54004 5.7984,-1.2207 11.2915,-1.2207 14.8316,0 22.1558,7.69043 7.3242,7.69043 7.3242,23.31543 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:125px;line-height:1.25;font-family:Museo;-inkscape-font-specification:Museo;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||
id="path186848" />
|
||||
<path
|
||||
d="m 1218.7632,95.625 h 11.2915 v 56.09131 l 33.5083,-29.47998 h 14.3433 l -36.2549,31.98242 37.7807,36.37695 h -14.6484 l -34.729,-33.38623 v 33.38623 h -11.2915 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:125px;line-height:1.25;font-family:Museo;-inkscape-font-specification:Museo;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||
id="path186850" />
|
||||
</g>
|
||||
<g
|
||||
aria-label="Arch Conf 2020"
|
||||
id="text186707"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect186709);fill:#000000;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
d="m 782.97004,741.21491 -3.75,-11.79687 h -12.78645 l -3.80208,11.79687 h -4.94792 l 12.57812,-38.22915 h 5.07812 l 12.6302,38.22915 z m -5.13021,-16.09374 -3.46354,-11.04166 q -1.01562,-3.22917 -1.61458,-5.88542 -0.52083,2.57813 -1.19792,4.76562 l -3.74999,12.16146 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186713" />
|
||||
<path
|
||||
d="m 816.40752,713.27221 -1.27605,4.32292 q -3.20312,-1.17188 -5.83333,-1.17188 -4.24478,0 -6.56249,2.42188 -2.29167,2.39583 -2.29167,6.95312 v 15.41666 h -4.73958 v -28.59374 h 3.85417 l 0.57291,5.23437 h 0.20834 q 1.97916,-3.09895 4.24479,-4.42708 2.26562,-1.32812 5.57291,-1.32812 3.07291,0 6.25,1.17187 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186715" />
|
||||
<path
|
||||
d="m 848.46479,713.6368 -1.61459,4.11458 q -3.90624,-1.48438 -6.97916,-1.48438 -9.66145,0 -9.66145,10.75521 0,10.57291 9.40104,10.57291 4.08853,0 8.35937,-1.61459 v 4.16667 q -3.48959,1.58854 -8.56771,1.58854 -6.6927,0 -10.39062,-3.77604 -3.69791,-3.80208 -3.69791,-10.88541 0,-7.3177 3.77604,-11.14583 3.77604,-3.82812 10.62499,-3.82812 4.63542,0 8.75,1.53646 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186717" />
|
||||
<path
|
||||
d="m 875.93873,741.21491 v -18.41145 q 0,-6.77083 -6.19792,-6.77083 -7.99478,0 -7.99478,10.36458 v 14.8177 h -4.73958 V 700.6941 h 4.73958 v 12.03124 l -0.20834,3.75 h 0.26042 q 2.68229,-4.375 8.75,-4.375 10.1302,0 10.1302,10.4427 v 18.67187 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186719" />
|
||||
<path
|
||||
d="m 946.12097,735.98053 v 4.21875 q -3.80208,1.53646 -9.32291,1.53646 -8.04687,0 -12.3177,-5.10416 -4.27083,-5.10417 -4.27083,-14.5052 0,-9.01042 4.66146,-14.27083 4.66145,-5.26041 12.73436,-5.26041 5.72917,0 9.97396,2.23958 l -2.03125,4.0625 q -4.01042,-2.03125 -7.94271,-2.03125 -5.59895,0 -8.93228,4.14062 -3.33333,4.11458 -3.33333,11.17187 0,7.47395 3.125,11.40624 3.12499,3.90625 9.14061,3.90625 3.38542,0 8.51562,-1.51042 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186721" />
|
||||
<path
|
||||
d="m 964.74075,741.73574 q -5.62499,0 -9.27082,-4.03646 -3.61979,-4.06249 -3.61979,-10.83332 0,-6.84896 3.51562,-10.80729 3.54166,-3.95833 9.53124,-3.95833 5.67708,0 9.29687,4.03646 3.61979,4.03645 3.61979,10.72916 0,6.90103 -3.5677,10.88541 -3.56771,3.98437 -9.50521,3.98437 z m 0.10417,-3.93229 q 8.07291,0 8.07291,-10.93749 0,-10.83333 -8.12499,-10.83333 -8.04687,0 -8.04687,10.83333 0,10.93749 8.09895,10.93749 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186723" />
|
||||
<path
|
||||
d="m 1003.9595,741.21491 v -18.41145 q 0,-6.77083 -6.19793,-6.77083 -7.99479,0 -7.99479,10.36458 v 14.8177 h -4.73958 v -28.59374 h 3.82812 l 0.70313,3.85417 h 0.26041 q 2.68229,-4.375 8.75,-4.375 10.13024,0 10.13024,10.4427 v 18.67187 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186725" />
|
||||
<path
|
||||
d="m 1040.0532,716.18888 h -10.1302 v 25.02603 h -4.7396 v -25.02603 h -8.2552 v -2.86458 l 8.2552,-0.85938 v -2.5 q 0,-5.02603 2.3438,-7.29166 2.3437,-2.26562 7.7864,-2.26562 3.3594,0 6.5625,0.91146 l -1.0677,3.72395 q -2.7083,-0.72916 -5.3906,-0.72916 -3.2031,0 -4.349,1.30208 -1.1458,1.30208 -1.1458,4.29687 v 2.70833 h 10.1302 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186727" />
|
||||
<path
|
||||
d="m 1104.7146,741.21491 h -23.7239 v -4.0625 l 9.1146,-9.92187 q 5.0781,-5.54687 6.6927,-8.2552 1.6145,-2.73438 1.6145,-6.01563 0,-2.9427 -1.6666,-4.63541 -1.6406,-1.71875 -4.4531,-1.71875 -4.1667,0 -8.2813,3.56771 l -2.6562,-3.09896 q 5,-4.47916 10.9895,-4.47916 5.0521,0 7.9688,2.76041 2.9166,2.76042 2.9166,7.42187 0,3.09896 -1.5364,6.35417 -1.5365,3.2552 -7.5781,9.76561 l -7.3177,7.78646 v 0.20833 h 17.9166 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186729" />
|
||||
<path
|
||||
d="m 1124.8188,741.73574 q -5.9636,0 -9.0365,-5.02604 -3.0729,-5.05208 -3.0729,-14.58332 0,-19.58333 12.1094,-19.58333 6.0416,0 9.1146,5.05208 3.0989,5.02604 3.0989,14.53125 0,19.60936 -12.2135,19.60936 z m 0,-4.03646 q 3.8281,0 5.625,-3.64583 1.7968,-3.67187 1.7968,-11.92707 0,-8.20312 -1.7968,-11.84896 -1.7969,-3.67187 -5.625,-3.67187 -3.7761,0 -5.5469,3.64583 -1.7448,3.61979 -1.7448,11.875 0,8.28124 1.7448,11.92707 1.7708,3.64583 5.5469,3.64583 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186731" />
|
||||
<path
|
||||
d="m 1168.725,741.21491 h -23.7239 v -4.0625 l 9.1145,-9.92187 q 5.0782,-5.54687 6.6927,-8.2552 1.6146,-2.73438 1.6146,-6.01563 0,-2.9427 -1.6666,-4.63541 -1.6407,-1.71875 -4.4532,-1.71875 -4.1666,0 -8.2812,3.56771 l -2.6563,-3.09896 q 5,-4.47916 10.9896,-4.47916 5.0521,0 7.9688,2.76041 2.9166,2.76042 2.9166,7.42187 0,3.09896 -1.5364,6.35417 -1.5365,3.2552 -7.5782,9.76561 l -7.3177,7.78646 v 0.20833 h 17.9167 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186733" />
|
||||
<path
|
||||
d="m 1188.8292,741.73574 q -5.9636,0 -9.0365,-5.02604 -3.0729,-5.05208 -3.0729,-14.58332 0,-19.58333 12.1094,-19.58333 6.0416,0 9.1145,5.05208 3.099,5.02604 3.099,14.53125 0,19.60936 -12.2135,19.60936 z m 0,-4.03646 q 3.8281,0 5.6249,-3.64583 1.7969,-3.67187 1.7969,-11.92707 0,-8.20312 -1.7969,-11.84896 -1.7968,-3.67187 -5.6249,-3.67187 -3.7761,0 -5.5469,3.64583 -1.7448,3.61979 -1.7448,11.875 0,8.28124 1.7448,11.92707 1.7708,3.64583 5.5469,3.64583 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.3333px;font-family:'Droid Sans Mono';-inkscape-font-specification:'Droid Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff"
|
||||
id="path186735" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 25 KiB |
131
divoc-hs/__init__.py
Normal file
|
@ -0,0 +1,131 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://git.chaotikum.org/divoc/fahrplan/raw/master/fahrplan.xml'
|
||||
|
||||
|
||||
def clamp(n, i, a):
|
||||
return max(min(n, a), i)
|
||||
|
||||
|
||||
def introFrames(args):
|
||||
frames = int(.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('subtitle', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
frames = int(.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('title', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('subtitle', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
frames = int(1*fps)
|
||||
for i in range(0, frames):
|
||||
scale = easeInOutQuad(i, 1.0, -0.8, frames-1)
|
||||
dx = easeInOutQuad(i, 0, 1550, frames-1)
|
||||
dy = easeInOutQuad(i, 0, 875, frames-1)
|
||||
yield (
|
||||
('logo', 'attr', 'transform', f'translate({dx}, {dy}) scale({scale},{scale})'),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('subtitle', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
step = 0.33
|
||||
steps = step * fps
|
||||
frames = int(4 * steps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'attr', 'transform', f'translate(1550, 875) scale(.2,.2)'),
|
||||
('title', 'style', 'opacity', easeInQuad(clamp(i, 0, fps), 0, 1, fps)),
|
||||
('subtitle', 'style', 'opacity', easeInQuad(clamp(i - 1*steps, 0, fps), 0, 1, fps)),
|
||||
('personnames', 'style', 'opacity', easeInQuad(clamp(i - 2*steps, 0, fps), 0, 1, fps)),
|
||||
('id', 'style', 'opacity', easeInQuad(clamp(i - 3*steps, 0, fps), 0, 1, fps)),
|
||||
)
|
||||
frames = int(5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'attr', 'transform', f'translate(1550, 875) scale(.2,.2)'),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(args):
|
||||
#fadein outro graphics
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(())
|
||||
|
||||
|
||||
def debug():
|
||||
render('divoc-hs-intro.svg',
|
||||
'../divoc-hs-intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 7776,
|
||||
'$title': 'StageWar live! mit vielen Wörtern extra lang das wird jetzt echt zu viel',
|
||||
'$subtitle': 'Metal Konzert mit vielen Wörtern extra lang das wird jetzt echt zu viel',
|
||||
'$personnames': 'www.stagewar.de mit vielen Wörtern extra lang das wird jetzt echt zu viel'
|
||||
}
|
||||
)
|
||||
|
||||
render('divoc-hs-outro.svg',
|
||||
'../divoc-hs-outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'background.svg',
|
||||
# '../background.ts',
|
||||
# backgroundFrames
|
||||
# )
|
||||
#
|
||||
# render('pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
# if event['room'] not in ('Chirurgie (Saal 1.04)', 'Kreißsaal (Saal 1.11)'):
|
||||
# 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 them into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'divoc-hs-intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$id': event['id'],
|
||||
'$title': event['title'],
|
||||
'$subtitle': event['subtitle'],
|
||||
'$personnames': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'divoc-hs-outro.svg',
|
||||
outfile = 'divoc-hs-outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
BIN
divoc-hs/artwork/ArchivoBlack-Regular.ttf
Normal file
93
divoc-hs/artwork/OFL.txt
Normal file
|
@ -0,0 +1,93 @@
|
|||
Copyright 2017 The Archivo Black Project Authors (https://github.com/Omnibus-Type/ArchivoBlack)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
577
divoc-hs/artwork/divoc-hs-intro.svg
Normal file
|
@ -0,0 +1,577 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
id="wave"
|
||||
viewBox="0 0 1920 1080"
|
||||
version="1.1"
|
||||
sodipodi:docname="divoc-hs-intro.svg"
|
||||
inkscape:version="1.0.1 (c497b03c, 2020-09-10)">
|
||||
<metadata
|
||||
id="metadata11764">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs11762">
|
||||
<rect
|
||||
x="69.551954"
|
||||
y="42.097235"
|
||||
width="1725.9867"
|
||||
height="168.38894"
|
||||
id="rect11768" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31649"
|
||||
id="rect11768-7" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect69" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59008"
|
||||
id="rect11768-7-8" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect101" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect11768-7-8-5" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect131" />
|
||||
<rect
|
||||
x="69.551954"
|
||||
y="42.097235"
|
||||
width="1725.9867"
|
||||
height="168.38894"
|
||||
id="rect11768-8" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31649"
|
||||
id="rect11768-7-1" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect69-7" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59008"
|
||||
id="rect11768-7-8-2" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect101-6" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect11768-7-8-5-0" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect131-6" />
|
||||
<style
|
||||
id="style1165">.a{fill:#f79520;}.b{fill:#ad621b;}.c{fill:#6d6e71;}.d{fill:#434345;}.e{fill:#58595b;}.f{fill:#4b9042;}.g{fill:#5ab547;}.h{fill:#417e3c;}</style>
|
||||
<style
|
||||
id="style1413">.a{fill:#434345;}.b{fill:#6d6e71;}</style>
|
||||
<style
|
||||
id="style1007">.a{fill:#f79520;}.b{fill:#ad621b;}.c{fill:#6d6e71;}.d{fill:#434345;}.e{fill:#58595b;}.f{fill:#4b9042;}.g{fill:#5ab547;}.h{fill:#417e3c;}</style>
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect11768-7-3" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect1256" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1731.718"
|
||||
height="181.28447"
|
||||
id="rect11768-83" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1725.9867"
|
||||
height="168.38895"
|
||||
id="rect2903" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect11768-7-2" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect2906" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect11768-7-8-5-9" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect2909" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect11768-7-2-3" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect2969" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1959"
|
||||
inkscape:window-height="1235"
|
||||
id="namedview11760"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.69791667"
|
||||
inkscape:cx="960"
|
||||
inkscape:cy="540"
|
||||
inkscape:window-x="276"
|
||||
inkscape:window-y="90"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="wave"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-text-baseline="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<sodipodi:guide
|
||||
position="100.6673,869.51382"
|
||||
orientation="1,0"
|
||||
id="guide90" />
|
||||
</sodipodi:namedview>
|
||||
<linearGradient
|
||||
id="gradient"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6.1731"
|
||||
y1="-9.6922"
|
||||
x2="1898.9858"
|
||||
y2="1083.1237">
|
||||
<stop
|
||||
offset="0"
|
||||
stop-color="#4D99B2"
|
||||
id="stop11682" />
|
||||
<stop
|
||||
offset="0.3765"
|
||||
stop-color="#56A5BA"
|
||||
id="stop11684" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#6DC4CE"
|
||||
id="stop11686" />
|
||||
</linearGradient>
|
||||
<rect
|
||||
fill="url(#gradient)"
|
||||
width="1920"
|
||||
height="1080"
|
||||
id="rect11689"
|
||||
sodipodi:insensitive="true"
|
||||
x="0"
|
||||
y="0"
|
||||
style="fill:#e5d7c8;fill-opacity:1" />
|
||||
<g
|
||||
id="logo"
|
||||
transform="translate(-8.1293612,23.806559)">
|
||||
<g
|
||||
id="g1087"
|
||||
transform="matrix(2.6814338,0,0,2.6814338,215.61849,222.15064)">
|
||||
<path
|
||||
class="a"
|
||||
d="m 272.86,85.19 v 0 a 5.78,5.78 0 0 1 -1.72,-0.68 4.31,4.31 0 0 1 -0.73,-0.54 c -1.88,-1.54 -3.89,-3 -6,-4.45 a 78.87,78.87 0 0 0 -8.21,-4.82 73,73 0 0 0 -6.8,-3 101.14,101.14 0 0 0 -10.89,-3.11 c -1.19,-0.26 -2.41,-0.52 -3.76,-0.77 l -2.46,-0.43 -1.25,-0.19 a 101.72,101.72 0 0 0 -15,-1.12 c -1.56,0 -3.12,0.15 -4.63,0.28 -1.91,0.16 -3.88,0.39 -5.85,0.68 l -0.57,0.08 4.2,14.58 a 0.68,0.68 0 0 1 -0.06,0.54 0.7,0.7 0 0 1 -0.43,0.34 0.72,0.72 0 0 1 -0.88,-0.49 L 206.34,77 206.29,76.88 a 0.67,0.67 0 0 1 -0.08,-0.18 l -2.5,-8.85 -0.12,-0.45 -0.45,0.07 c -1.32,0.23 -2.59,0.47 -3.82,0.72 -3,0.6 -5.76,1.26 -8,1.8 a 164.33,164.33 0 0 0 -16,4.45 l -0.45,0.15 1.73,6.11 a 0.65,0.65 0 0 1 0,0.31 v 0.11 l 1.54,5.84 a 0.72,0.72 0 0 1 -0.5,0.88 0.7,0.7 0 0 1 -0.88,-0.48 L 173.49,75 l -0.52,0.19 a 99.27,99.27 0 0 0 -16.8,8 c -1.16,0.7 -2.23,1.36 -3.26,2 l -0.31,0.2 5.33,18.85 v 0.15 a 0.73,0.73 0 0 1 -0.52,0.74 0.75,0.75 0 0 1 -0.42,0 0.68,0.68 0 0 1 -0.37,-0.3 0.7,0.7 0 0 1 -0.1,-0.19 l -5.2,-18.4 -1.1,0.76 c -0.83,0.58 -1.66,1.17 -2.48,1.79 A 99.45,99.45 0 0 0 136.09,99 l -0.34,0.35 0.33,0.35 a 12,12 0 0 1 0.84,1 8.74,8.74 0 0 1 1.58,2.86 v 0.09 a 6,6 0 0 1 0.22,1.72 c 0,0.18 0,0.37 -0.05,0.56 a 4.69,4.69 0 0 1 -0.23,0.93 4.47,4.47 0 0 1 -0.55,1.06 9.54,9.54 0 0 1 -0.71,0.89 l -0.3,0.35 -0.17,0.22 a 8.14,8.14 0 0 0 -0.94,1.52 9.6,9.6 0 0 0 -0.93,3 l -0.06,0.34 a 5.34,5.34 0 0 1 -1.34,2.81 l -0.22,0.21 a 6.07,6.07 0 0 1 -0.75,0.61 l -0.25,0.16 -0.58,0.36 0.51,0.44 c 0.14,0.13 0.28,0.26 0.41,0.4 a 7.36,7.36 0 0 1 1.12,1.49 5.47,5.47 0 0 1 0.51,1.22 6.06,6.06 0 0 1 0.21,1.63 5.55,5.55 0 0 0 0.16,1.37 l 0.06,0.26 0.13,0.41 a 6.72,6.72 0 0 0 0.88,1.78 l 0.43,0.59 a 8.17,8.17 0 0 1 0.54,0.73 7,7 0 0 1 0.49,0.88 c 0,0.11 0.09,0.23 0.14,0.35 l 0.12,0.37 a 7.1,7.1 0 0 1 0.18,1 3.39,3.39 0 0 1 0,0.55 c 0,0.12 0,0.23 0,0.35 v 0.71 l 0.67,-0.23 a 6,6 0 0 1 3.32,-0.22 4.31,4.31 0 0 1 2.21,1.25 l 0.36,0.38 a 13.83,13.83 0 0 0 1.19,1.14 l 0.48,0.39 0.38,0.28 a 12.81,12.81 0 0 0 2.63,1.52 l 0.73,0.34 a 8.43,8.43 0 0 1 1.71,1.14 10.86,10.86 0 0 1 3.28,5.43 l 0.19,0.71 h 0.36 l 2.55,0.13 c 2.37,0.1 4.79,0.14 7.2,0.14 2,0 4,0 5.93,-0.09 1.26,0 2.52,-0.11 3.77,-0.18 l 1.3,-0.07 c 1.35,-0.08 2.82,-0.17 4.39,-0.29 l 1.72,-0.13 0.61,-0.05 -2.28,-8.05 a 0.59,0.59 0 0 1 0,-0.14 0.7,0.7 0 0 1 0.52,-0.74 0.72,0.72 0 0 1 0.88,0.49 l 2.35,8.32 h 0.41 a 139.38,139.38 0 0 0 17,-2.57 c 2.11,-0.46 4.22,-1 6.25,-1.52 l 0.49,-0.14 -2.76,-9.75 a 0.71,0.71 0 0 1 0.49,-0.88 0.68,0.68 0 0 1 0.4,0 0.71,0.71 0 0 1 0.49,0.49 l 2.76,9.76 0.48,-0.14 c 3.54,-1 7.08,-2.27 10.51,-3.64 1.48,-0.59 2.86,-1.17 4.21,-1.77 l 1.61,-0.72 c 0.84,-0.38 1.73,-0.79 2.68,-1.24 1.47,-0.7 2.8,-1.36 4.06,-2 l 0.36,-0.19 -4,-14.29 a 0.72,0.72 0 0 1 0.14,-0.65 0.77,0.77 0 0 1 0.36,-0.23 0.72,0.72 0 0 1 0.88,0.49 l 3.95,14 0.55,-0.31 a 74,74 0 0 0 13.7,-10 c 0.71,-0.64 1.42,-1.31 2.14,-2 1,-1 2.21,-2.19 3.46,-3.54 l 1.1,-1.22 c 0.37,-0.43 0.75,-0.87 1.13,-1.33 0.38,-0.46 0.77,-1 1.17,-1.46 0.6,-0.78 1.21,-1.6 1.8,-2.44 1.77,-2.53 3.34,-4.78 4.66,-6.75 0.94,-1.4 1.69,-2.57 2.37,-3.69 a 77.46,77.46 0 0 0 4.17,-7.96 7,7 0 0 1 2.32,-2.55 l 0.92,-0.67 -1.12,-0.22 z m -32.08,15.3 a 0.74,0.74 0 0 1 -1,0.18 0.71,0.71 0 0 1 -0.27,-0.39 0.7,0.7 0 0 1 0.1,-0.61 l 4.46,-6.36 -7.13,-3.09 a 0.7,0.7 0 0 1 -0.41,-0.46 0.71,0.71 0 0 1 0.69,-0.91 0.67,0.67 0 0 1 0.28,0.06 l 7.71,3.33 14.7,-4.15 a 0.71,0.71 0 0 1 0.88,0.49 0.71,0.71 0 0 1 -0.49,0.88 l -14.7,4.16 z m -9.33,5.64 a 21.65,21.65 0 0 1 -23.93,6.31 c -3.62,-1.5 -6.1,-4.07 -7,-7.24 v -0.17 c -0.86,-3.24 0,-6.77 2.48,-9.91 a 20.49,20.49 0 0 1 11,-6.91 22.61,22.61 0 0 1 5.78,-0.76 v 0 a 18.76,18.76 0 0 1 7.17,1.36 12.93,12.93 0 0 1 5,3.52 9.88,9.88 0 0 1 2,3.76 v 0.13 c 0.84,3.24 -0.04,6.78 -2.5,9.91 z m -33.91,6.5 -11,-2.38 -22.1,6.49 a 0.72,0.72 0 0 1 -0.4,-1.38 l 22,-6.45 h 0.12 l 8,-7.95 a 0.7,0.7 0 0 1 0.5,-0.2 0.74,0.74 0 0 1 0.51,0.2 0.72,0.72 0 0 1 0,1 l -7.17,7.13 9.88,2.14 a 0.72,0.72 0 0 1 0.55,0.85 0.74,0.74 0 0 1 -0.89,0.55 z"
|
||||
id="path1011" />
|
||||
<path
|
||||
class="b"
|
||||
d="M 271.7,82.53 A 79.78,79.78 0 0 0 257.09,73 a 73.18,73.18 0 0 0 -8.42,-3.61 100.14,100.14 0 0 0 -31.14,-5.26 155.83,155.83 0 0 0 -26.66,4 C 180.06,70.7 163.51,74.67 146.61,87.3 A 100.81,100.81 0 0 0 133,99.5 c 2.36,1.93 3.35,3.47 3.69,4.67 a 3.54,3.54 0 0 1 0.11,1.48 c -0.21,1.57 -1.38,1.71 -2.71,4.38 -1.56,3.13 -0.69,4.39 -2.15,5.78 -1.87,1.77 -4.68,1 -4.81,1.87 a 0.22,0.22 0 0 0 0,0.14 c 0.22,0.8 3.44,1.19 4.9,3.8 a 3.23,3.23 0 0 1 0.34,0.8 c 0.27,0.93 0,1.6 0.43,3.25 0.05,0.16 0.1,0.33 0.16,0.51 0.91,2.68 2.13,3.06 2.57,4.61 a 3.77,3.77 0 0 1 0.12,0.65 c 0.29,2.42 -1.3,4.1 -1.11,4.78 a 0.39,0.39 0 0 0 0.1,0.16 c 0.78,0.7 3.54,-2.81 6.52,-2.12 1.4,0.32 1.29,1.2 3.92,3.12 2.63,1.92 3.48,1.64 5,2.91 a 8.73,8.73 0 0 1 2.68,4.49 16.07,16.07 0 0 1 0.42,2 173.79,173.79 0 0 0 22.55,0.07 c 11.77,-0.72 29.69,-2 49.86,-11 6.88,-3.06 17.14,-7.74 26.92,-17.42 a 70.08,70.08 0 0 0 8.9,-10.27 c 6.17,-8.82 8.26,-11.93 11.43,-18.67 1,-2.07 5.72,-4.28 13.33,-7.29 -5.51,0.68 -12.28,2.43 -14.47,0.33 z m -1.12,6 c -3.11,6.61 -5.18,9.66 -11.22,18.3 a 68.88,68.88 0 0 1 -8.62,9.95 74.44,74.44 0 0 1 -15.68,11.75 l -3.78,-13.36 a 1.22,1.22 0 1 0 -2.34,0.66 l 3.93,13.89 c -3.18,1.69 -6,3 -8.33,4 a 116.21,116.21 0 0 1 -14.65,5.39 l -2.62,-9.27 a 1.22,1.22 0 0 0 -2.34,0.66 l 2.62,9.27 a 135.56,135.56 0 0 1 -23.15,4.07 l -2.24,-7.91 a 1.22,1.22 0 0 0 -2.34,0.66 l 2.11,7.46 c -2.34,0.19 -4.49,0.32 -6.41,0.44 a 173.22,173.22 0 0 1 -20.38,0 c 0,-0.12 -0.07,-0.24 -0.1,-0.37 a 11.3,11.3 0 0 0 -3.44,-5.67 9.54,9.54 0 0 0 -2.56,-1.56 13.63,13.63 0 0 1 -4.52,-3.22 5.16,5.16 0 0 0 -2.82,-1.77 6.43,6.43 0 0 0 -3.59,0.24 8.09,8.09 0 0 0 -0.05,-1 6.71,6.71 0 0 0 -0.2,-1 7,7 0 0 0 -1.37,-2.51 6.66,6.66 0 0 1 -1.23,-2.22 l -0.13,-0.39 a 5.27,5.27 0 0 1 -0.2,-1.51 6.51,6.51 0 0 0 -0.23,-1.75 5.94,5.94 0 0 0 -0.56,-1.32 7.6,7.6 0 0 0 -1.63,-2 6.77,6.77 0 0 0 1.08,-0.83 6.05,6.05 0 0 0 1.79,-3.71 9,9 0 0 1 0.86,-2.75 8.52,8.52 0 0 1 1.39,-2 5.62,5.62 0 0 0 1.56,-3.09 5.82,5.82 0 0 0 -0.18,-2.48 10.13,10.13 0 0 0 -2.56,-4.13 98.36,98.36 0 0 1 11.61,-10.19 c 1,-0.75 2,-1.46 3,-2.15 l 5,17.74 a 1.22,1.22 0 0 0 1.5,0.84 1.21,1.21 0 0 0 0.84,-1.5 l -5.23,-18.5 a 98.41,98.41 0 0 1 20,-9.94 l 3.09,11.77 a 1.22,1.22 0 1 0 2.34,-0.67 l -3.13,-11.91 c 6.05,-2.07 11.5,-3.37 16,-4.44 3.47,-0.82 7.41,-1.75 11.79,-2.5 l 4.13,14.3 a 1.2,1.2 0 0 0 1.5,0.84 1.22,1.22 0 0 0 0.84,-1.5 l -4.05,-14 a 86.65,86.65 0 0 1 9.94,-1 101.83,101.83 0 0 1 34.81,6 50.71,50.71 0 0 1 5.6,2.57 77.23,77.23 0 0 1 14.11,9.21 6,6 0 0 0 3,1.39 7.47,7.47 0 0 0 -2.56,2.68 z"
|
||||
id="path1013" />
|
||||
<path
|
||||
class="c"
|
||||
d="m 241.38,55.75 -0.17,0.47 v 0 l 0.09,-0.51 a 2.5,2.5 0 0 1 -0.26,-2.66 3.16,3.16 0 0 1 1.28,-1.68 l 0.5,-0.3 -0.11,-0.58 a 21,21 0 0 0 -5.83,-11 20.49,20.49 0 0 0 -11.45,-5.53 c -0.35,-0.64 -0.64,-1.18 -0.86,-1.6 l -0.21,-0.4 c -0.27,-0.5 -0.44,-0.84 -0.71,-1.3 0,0 -0.67,-1.2 -1.31,-2.21 -3,-4.71 -13.19,-9 -14.33,-9.47 a 59.84,59.84 0 0 0 -6.31,-2.27 35.4,35.4 0 0 0 -9.53,-1.61 c -3.15,0 -5.22,0.82 -6,2.36 -1,2.08 0.48,4.81 4.29,7.9 l 0.17,0.14 c -0.93,0.15 -2.07,0.35 -3.14,0.59 -0.13,0 -12.62,3 -12.39,7.34 0.14,2.81 4.51,4.75 11.66,5.18 a 56.14,56.14 0 0 0 8.81,-0.23 59.21,59.21 0 0 0 7.86,-1.38 c 0.61,0.26 1.24,0.52 1.86,0.76 l 1.39,0.52 a 4,4 0 0 0 -0.61,1.3 c -0.65,0.75 -8.18,1.92 -18.33,2.46 -6.59,0.36 -16.53,0.89 -22.25,7.52 a 16.91,16.91 0 0 0 -1.49,2.07 9.25,9.25 0 0 0 -3.16,-2.5 9.53,9.53 0 0 0 -4.13,-0.94 8.84,8.84 0 0 0 -5.89,2.17 c -3,2.63 -2.88,6.3 -2.85,8.06 0,1.54 0.09,5.13 3,7.79 a 9,9 0 0 0 3,1.77 l 0.34,0.13 0.32,-0.16 a 15.58,15.58 0 0 0 5.49,-4.5 l -0.4,-0.31 0.51,0.29 a 0.08,0.08 0 0 1 0,0.11 16,16 0 0 1 -2.63,2.69 15.38,15.38 0 0 1 -2.95,1.87 l -0.28,0.14 -0.12,0.3 c -0.93,2.26 -2.32,5.49 -3.67,8 -0.85,1.61 -1.51,2.82 -2,3.68 -0.32,0.55 -0.6,1 -0.88,1.46 -0.28,0.46 -0.53,0.86 -0.75,1.26 l -0.82,1.47 1.67,-0.24 a 14.24,14.24 0 0 1 1.72,-0.14 14,14 0 0 1 3.06,0.32 l 0.11,-0.48 v 0 0.58 l 0.48,0.11 v 0 h -0.58 a 13.18,13.18 0 0 0 -3,-0.32 12.67,12.67 0 0 0 -3,0.4 l -0.41,0.16 -0.19,0.57 c -1.58,5 -1.81,13.25 2.7,15.26 a 4.87,4.87 0 0 0 1.62,0.39 h 0.31 c 3.45,0 6.91,-3.38 7.56,-4.06 3.69,-3.82 4.34,-9 4.44,-11.11 a 18.75,18.75 0 0 0 -0.09,-3 5.39,5.39 0 0 1 0.21,-2.72 18.81,18.81 0 0 1 1.31,-2.85 30.65,30.65 0 0 0 8,1.28 32.11,32.11 0 0 0 15.75,-3.79 34.66,34.66 0 0 0 8.98,-6.77 l 0.56,-0.58 -0.56,-0.58 a 8.65,8.65 0 0 0 -5.93,-2.66 0.23,0.23 0 0 1 -0.21,-0.24 c 0,-0.14 0.12,-0.22 0.29,-0.22 h 0.07 0.18 0.36 a 5.72,5.72 0 0 1 2.28,0.66 12.32,12.32 0 0 1 4.43,3.26 l 0.09,0.1 c 0.13,0.17 0.4,0.5 0.87,1.16 0.36,0.48 0.73,1 1.24,1.6 a 26.68,26.68 0 0 0 4.44,4.13 l 0.83,0.61 0.43,-0.93 a 9.59,9.59 0 0 1 2,-2.85 h 0.11 a 0.08,0.08 0 0 1 0,0.11 10,10 0 0 0 -1.19,1.43 10.25,10.25 0 0 0 -0.82,1.49 l -0.47,0.71 0.72,0.45 c 5,3.21 9.85,4 12.61,2.13 2.37,-1.62 3.64,-5.28 2.46,-7.11 a 2.89,2.89 0 0 0 -1.43,-1 14.58,14.58 0 0 1 -1.72,-0.89 16.3,16.3 0 0 1 -2.5,-1.87 21.48,21.48 0 0 1 -3.87,-4.46 0.24,0.24 0 0 1 0.07,-0.33 0.26,0.26 0 0 1 0.32,0.07 20.91,20.91 0 0 0 3.79,4.37 l 0.07,0.06 a 16.78,16.78 0 0 0 2.19,1.65 10.66,10.66 0 0 0 5.68,1.42 21.75,21.75 0 0 0 6.46,-1.09 c 5.11,-1.65 8.73,-4.5 10.77,-8.48 a 14.92,14.92 0 0 0 1.21,-3.3 l 0.29,-1.24 -1.26,0.23 a 0.51,0.51 0 0 1 -0.26,-0.06 z m -37.82,-31 c 4.81,0.28 6.71,0.92 7.95,1.51 a 16.19,16.19 0 0 1 2.19,1.28 l 0.17,0.11 a 32.92,32.92 0 0 1 5.75,4.87 h -0.1 a 20.89,20.89 0 0 0 -5.26,-4.32 l -0.92,-0.58 a 17.37,17.37 0 0 0 -2.26,-1.32 c -1.29,-0.61 -3.26,-1.28 -8.17,-1.57 -0.87,-0.05 -1.75,-0.08 -2.65,-0.09 1.12,0.05 2.23,0.08 3.3,0.15 z"
|
||||
id="path1015" />
|
||||
<path
|
||||
class="d"
|
||||
d="m 243.77,50.72 a 22,22 0 0 0 -6.19,-12 21.21,21.21 0 0 0 -11.51,-5.71 l -0.62,-1.18 -0.2,-0.37 -0.74,-1.37 v 0 c -0.21,-0.42 -0.6,-1.08 -1.33,-2.23 -3.15,-5 -13.56,-9.36 -14.8,-9.86 a 57.24,57.24 0 0 0 -6.4,-2.3 36.26,36.26 0 0 0 -9.81,-1.66 c -3.61,0 -5.92,1 -6.86,2.93 -0.77,1.6 -0.77,4.2 3.12,7.85 l -1.13,0.23 a 44.26,44.26 0 0 0 -7.3,2.48 c -2.61,1.16 -6.06,3 -5.91,5.93 0.18,3.42 4.78,5.65 12.6,6.12 1,0.06 2,0.08 3,0.08 a 59.33,59.33 0 0 0 6,-0.31 59.94,59.94 0 0 0 7.64,-1.29 l 1.59,0.65 0.34,0.13 v 0 c -0.62,0.26 -2.74,0.9 -9.27,1.55 -4.25,0.42 -8.25,0.64 -8.29,0.64 -6.75,0.36 -17,0.91 -22.95,7.86 -0.31,0.35 -0.6,0.72 -0.88,1.1 a 10.41,10.41 0 0 0 -7.17,-2.84 9.79,9.79 0 0 0 -6.55,2.43 c -3.29,2.93 -3.22,7.06 -3.19,8.82 0,1.52 0.1,5.55 3.33,8.5 a 9.91,9.91 0 0 0 2.78,1.78 c -1,2.36 -2.21,5.15 -3.4,7.4 -0.84,1.59 -1.49,2.78 -2,3.63 -0.33,0.56 -0.6,1 -0.85,1.4 v 0 a 15.08,15.08 0 0 0 -1.87,3.86 c -1.73,5.47 -1.87,14.19 3.24,16.46 a 5.53,5.53 0 0 0 2,0.48 h 0.37 c 3.85,0 7.57,-3.64 8.28,-4.37 3.92,-4.06 4.6,-9.57 4.72,-11.75 a 21.42,21.42 0 0 0 -0.1,-3.12 4.48,4.48 0 0 1 0.16,-2.32 16.13,16.13 0 0 1 0.87,-2 32.11,32.11 0 0 0 7.47,1.1 h 0.84 a 33.34,33.34 0 0 0 15.4,-3.92 35.64,35.64 0 0 0 9.34,-7 l 0.23,-0.23 c 0.14,0.19 0.37,0.48 0.73,1 0.36,0.52 0.75,1 1.28,1.66 4.25,5 10.86,8.71 15.72,8.71 a 7.33,7.33 0 0 0 4.22,-1.2 8,8 0 0 0 2.91,-3.89 5.56,5.56 0 0 0 0.06,-4.15 15.11,15.11 0 0 0 1.53,0.07 23.12,23.12 0 0 0 6.77,-1.13 c 5.36,-1.74 9.18,-4.76 11.35,-9 a 16.18,16.18 0 0 0 1.66,-5.74 4.68,4.68 0 0 0 0.19,-0.45 3.4,3.4 0 0 0 -0.42,-3.46 z m -13.4,17 a 21.23,21.23 0 0 1 -6.2,1 10,10 0 0 1 -5.24,-1.29 12.61,12.61 0 0 1 -2.16,-1.63 20.27,20.27 0 0 1 -3.63,-4.19 1.05,1.05 0 0 0 -0.89,-0.49 1.15,1.15 0 0 0 -0.59,0.17 1.08,1.08 0 0 0 -0.31,1.48 22.08,22.08 0 0 0 4,4.64 16.76,16.76 0 0 0 2.62,2 c 1.82,1.11 2.46,1 2.88,1.68 0.88,1.37 -0.16,4.56 -2.23,6 a 5.5,5.5 0 0 1 -3.19,0.88 c -2.54,0 -5.63,-1.19 -8.5,-3 a 0.83,0.83 0 0 0 0.07,-0.13 9.37,9.37 0 0 1 0.74,-1.36 9.49,9.49 0 0 1 1.1,-1.36 0.91,0.91 0 0 0 0,-1.29 0.93,0.93 0 0 0 -1.3,0 10.75,10.75 0 0 0 -1.31,1.63 9.88,9.88 0 0 0 -0.81,1.46 25.27,25.27 0 0 1 -4.3,-4 c -0.49,-0.59 -0.85,-1.08 -1.2,-1.56 -0.61,-0.84 -0.89,-1.16 -1,-1.28 a 13.61,13.61 0 0 0 -4.72,-3.49 6.26,6.26 0 0 0 -2.64,-0.74 c -0.32,0 -0.52,0 -0.65,0 h -0.06 a 1.07,1.07 0 0 0 -0.06,2.13 v 0 a 7.64,7.64 0 0 1 2.6,0.54 8,8 0 0 1 2.75,1.86 34,34 0 0 1 -8.83,6.62 31.39,31.39 0 0 1 -14.56,3.72 H 172 a 30.3,30.3 0 0 1 -8.42,-1.45 22.5,22.5 0 0 0 -1.7,3.58 6.32,6.32 0 0 0 -0.25,3.07 18.47,18.47 0 0 1 0.09,2.85 c -0.1,2 -0.71,7 -4.21,10.58 -0.43,0.44 -3.79,3.81 -7,3.81 h -0.26 a 3.6,3.6 0 0 1 -1.34,-0.32 c -3.86,-1.72 -3.78,-9.37 -2.24,-14.23 a 1.18,1.18 0 0 1 0.07,-0.2 11.94,11.94 0 0 1 2.73,-0.35 12.26,12.26 0 0 1 2.83,0.3 0.92,0.92 0 0 0 0.4,-1.79 14.24,14.24 0 0 0 -3.25,-0.34 16.1,16.1 0 0 0 -1.83,0.14 c 0.22,-0.38 0.45,-0.77 0.73,-1.22 0.28,-0.45 0.55,-0.89 0.89,-1.48 0.52,-0.87 1.18,-2.09 2,-3.71 1.33,-2.52 2.71,-5.7 3.7,-8.12 a 16.63,16.63 0 0 0 5.87,-4.8 0.91304436,0.91304436 0 1 0 -1.45,-1.11 15.1,15.1 0 0 1 -2.47,2.52 14.69,14.69 0 0 1 -2.73,1.74 8.18,8.18 0 0 1 -2.68,-1.61 c -2.66,-2.42 -2.71,-5.75 -2.74,-7.18 0,-1.64 -0.09,-5.06 2.57,-7.42 a 8,8 0 0 1 5.34,-2 8.69,8.69 0 0 1 3.77,0.86 8.49,8.49 0 0 1 3.59,3.3 16.21,16.21 0 0 1 2.07,-3.06 c 5.38,-6.23 14.64,-6.85 21.67,-7.22 0,0 18.45,-1 19.05,-3 a 3.29,3.29 0 0 1 1.21,-1.82 l 0.21,-0.12 c -0.9,-0.3 -1.8,-0.62 -2.67,-1 -0.64,-0.25 -1.29,-0.52 -1.93,-0.79 l -0.16,-0.07 h -0.18 a 55,55 0 0 1 -7.81,1.35 c -2,0.2 -3.94,0.31 -5.82,0.31 q -1.45,0 -2.85,-0.09 c -6.49,-0.38 -10.76,-2.11 -10.88,-4.38 -0.16,-3 9.12,-5.91 11.73,-6.49 2.41,-0.53 5.11,-0.87 5.11,-0.87 l 1.39,-0.16 a 55.86,55.86 0 0 1 5.82,-0.31 c 1,0 1.92,0 2.85,0.08 4.77,0.28 6.65,0.91 7.86,1.49 a 16.23,16.23 0 0 1 2.16,1.27 23.32,23.32 0 0 1 6.16,4.95 1,1 0 0 0 0.6,0.22 0.87,0.87 0 0 0 0.65,-0.28 0.88,0.88 0 0 0 0,-1 30.84,30.84 0 0 0 -6.09,-5.23 16.31,16.31 0 0 0 -2.3,-1.35 c -1.31,-0.62 -3.31,-1.29 -8.26,-1.59 -1,-0.05 -1.92,-0.08 -2.91,-0.08 a 57.94,57.94 0 0 0 -5.93,0.31 c -1.27,0.13 -2.52,0.3 -3.76,0.51 -3.25,-2.64 -4.88,-5.17 -4,-6.88 0.61,-1.28 2.51,-1.9 5.21,-1.9 a 34.38,34.38 0 0 1 9.29,1.58 58.84,58.84 0 0 1 6.22,2.24 c 0,0 11,4.5 14,9.15 0.64,1 1.28,2.15 1.28,2.15 0.33,0.59 0.52,1 0.91,1.7 0.26,0.5 0.62,1.17 1.06,2 a 19.87,19.87 0 0 1 11.41,5.36 20.2,20.2 0 0 1 5.59,10.58 4.08,4.08 0 0 0 -1.64,2.12 c -0.59,1.64 -0.17,3.14 0.59,3.64 a 1.15,1.15 0 0 0 0.25,0.12 1.26,1.26 0 0 0 0.7,0 13.41,13.41 0 0 1 -1.13,3.11 c -2.97,5.62 -8.53,7.46 -10.37,8.06 z"
|
||||
id="path1017" />
|
||||
<path
|
||||
class="d"
|
||||
d="m 231.27,49.46 a 0.86,0.86 0 0 1 -0.28,0 c -0.9,0 -2.09,-1 -2.49,-2.71 -0.45,-1.87 0.3,-3.42 1.25,-3.65 h 0.28 c 0.91,0 2.09,1 2.5,2.71 0.47,1.87 -0.3,3.42 -1.26,3.65 z"
|
||||
id="path1019" />
|
||||
<path
|
||||
class="d"
|
||||
d="m 224.66,55.51 -0.81,-0.35 -0.45,-0.2 a 3.68,3.68 0 0 0 -1.51,-0.35 3,3 0 0 0 -2.11,0.87 h -0.17 a 3.17,3.17 0 0 1 -1.32,-0.4 c -2,-1 -4.1,-1.83 -6.15,-2.74 -1.13,-0.5 -1.35,-0.94 -1.09,-2.14 a 1,1 0 0 0 -0.68,-1.33 1.47,1.47 0 0 0 -0.34,-0.05 1.06,1.06 0 0 0 -1,0.8 3.56,3.56 0 0 0 1.8,4.41 l 0.16,0.07 3.56,1.58 c 1.21,0.53 2.42,1.09 3.65,1.6 a 1.13,1.13 0 0 1 0.53,0.41 3.14,3.14 0 0 0 2,3.12 l 0.22,0.1 a 5.33,5.33 0 0 0 1,0.44 h 0.06 a 3.7,3.7 0 0 0 1.42,0.3 3.06,3.06 0 0 0 2.87,-2 3.1,3.1 0 0 0 -1.64,-4.14 z M 220.77,58 a 1.28,1.28 0 0 1 0.12,-0.69 1.62,1.62 0 0 1 0.27,-0.41 c 0.15,-0.08 0.3,-0.18 0.45,-0.28 a 0.86,0.86 0 0 1 0.28,0 1.74,1.74 0 0 1 0.69,0.17 l 1.24,0.55 a 1.12,1.12 0 0 1 0.69,1.57 1.07,1.07 0 0 1 -1,0.77 1.65,1.65 0 0 1 -0.65,-0.15 c -0.21,-0.08 -0.41,-0.18 -0.62,-0.27 L 221.6,59 A 1.84,1.84 0 0 1 221.04,58.62 1.35,1.35 0 0 1 220.77,58 Z"
|
||||
id="path1021" />
|
||||
<path
|
||||
class="d"
|
||||
d="m 210.82,48.37 a 4.53,4.53 0 0 0 1.22,0.52 4.83,4.83 0 0 0 1.32,0.18 6.44,6.44 0 0 0 2.57,-0.57 9.82,9.82 0 0 0 4.31,-3.93 c 2.38,-3.9 2,-8.34 -0.93,-10.11 a 4.85,4.85 0 0 0 -2.56,-0.71 7,7 0 0 0 -3.86,1.3 7,7 0 0 0 -4.46,7.27 8.21,8.21 0 0 0 -0.06,1.56 5.4,5.4 0 0 0 2.45,4.49 z m 5.61,-12.1 h 0.33 a 2.48,2.48 0 0 1 0.68,0.09 2.24,2.24 0 0 1 0.57,0.25 c 1.66,1 1.7,4.07 0.1,6.68 a 7.3,7.3 0 0 1 -3.18,2.94 3.91,3.91 0 0 1 -1.57,0.36 2.29,2.29 0 0 1 -1.24,-0.33 2.48,2.48 0 0 1 -1,-1.31 h 0.22 a 5.79,5.79 0 0 0 4.56,-3.06 5.69,5.69 0 0 0 0.53,-5.62 z M 211,38.89 a 4.68,4.68 0 0 1 2.44,-2.09 l 0.27,-0.08 0.23,-0.16 0.41,-0.26 0.52,0.89 a 4,4 0 0 1 -0.53,3.74 4.07,4.07 0 0 1 -3,2.18 h -0.1 l -1,-0.07 c 0,-0.16 0,-0.32 0,-0.49 V 42.27 L 210.19,42 A 4.72,4.72 0 0 1 211,38.89 Z"
|
||||
id="path1023" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 160.46,49.88 a 8.69,8.69 0 0 0 -3.77,-0.86 8,8 0 0 0 -5.34,2 c -2.66,2.36 -2.6,5.78 -2.57,7.42 0,1.43 0.08,4.76 2.74,7.18 a 8.18,8.18 0 0 0 2.68,1.61 14.69,14.69 0 0 0 2.73,-1.74 15.1,15.1 0 0 0 2.47,-2.52 0.91,0.91 0 0 1 1.26,-0.18 19.22,19.22 0 0 0 2.23,-4.53 21.27,21.27 0 0 0 1.16,-5 8.49,8.49 0 0 0 -3.59,-3.38 z"
|
||||
id="path1025" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 146.74,85.42 a 1.18,1.18 0 0 0 -0.07,0.2 c -1.54,4.86 -1.62,12.51 2.24,14.23 a 3.6,3.6 0 0 0 1.34,0.32 h 0.26 c 3.17,0 6.53,-3.37 7,-3.81 a 14.79,14.79 0 0 0 3.4,-6 13.48,13.48 0 0 0 -6.18,-5.21 10.82,10.82 0 0 0 -1.31,-0.46 0.92,0.92 0 0 1 -1.08,0.66 12.26,12.26 0 0 0 -2.83,-0.3 11.94,11.94 0 0 0 -2.77,0.37 z"
|
||||
id="path1027" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 218.64,77.08 c 2.07,-1.41 3.11,-4.6 2.23,-6 -0.42,-0.64 -1.06,-0.57 -2.88,-1.68 a 16.63,16.63 0 0 1 -1.89,-1.33 12.18,12.18 0 0 0 -7.23,2.72 0.93,0.93 0 0 1 0,1.27 9.49,9.49 0 0 0 -1.1,1.36 9.37,9.37 0 0 0 -0.74,1.36 0.83,0.83 0 0 1 -0.07,0.13 c 2.87,1.83 6,3 8.5,3 a 5.5,5.5 0 0 0 3.18,-0.83 z"
|
||||
id="path1029" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 224.89,34.71 c -0.44,-0.81 -0.8,-1.48 -1.06,-2 -0.39,-0.73 -0.58,-1.11 -0.91,-1.7 0,0 -0.64,-1.14 -1.28,-2.15 -2.95,-4.65 -14,-9.15 -14,-9.15 a 58.84,58.84 0 0 0 -6.22,-2.24 34.38,34.38 0 0 0 -9.29,-1.58 c -2.7,0 -4.6,0.62 -5.21,1.9 -0.83,1.71 0.8,4.24 4,6.88 1.24,-0.21 2.49,-0.38 3.76,-0.51 a 57.94,57.94 0 0 1 5.93,-0.31 c 1,0 2,0 2.91,0.08 4.95,0.3 6.95,1 8.26,1.59 a 16.31,16.31 0 0 1 2.3,1.35 30.84,30.84 0 0 1 6.09,5.23 0.88,0.88 0 0 1 0,1 0.87,0.87 0 0 1 -0.65,0.28 0.63,0.63 0 0 1 -0.19,0 v 0 a 6.24,6.24 0 0 0 2.37,0.7 c 1.33,0.27 2.18,0.42 3.14,0.61 a 28.41,28.41 0 0 1 3.58,0.79 14.06,14.06 0 0 0 1.58,0.52 22.89,22.89 0 0 0 -5.11,-1.29 z"
|
||||
id="path1031" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 211,38.89 a 4.68,4.68 0 0 1 2.44,-2.09 l 0.27,-0.08 0.23,-0.16 0.41,-0.26 0.52,0.89 a 4,4 0 0 1 -0.53,3.74 4.07,4.07 0 0 1 -3,2.18 h -0.1 l -1,-0.07 c 0,-0.16 0,-0.32 0,-0.49 V 42.27 L 210.19,42 A 4.72,4.72 0 0 1 211,38.89 Z"
|
||||
id="path1033" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 216.43,36.27 h 0.33 a 2.48,2.48 0 0 1 0.68,0.09 2.24,2.24 0 0 1 0.57,0.25 c 1.66,1 1.7,4.07 0.1,6.68 a 7.3,7.3 0 0 1 -3.18,2.94 3.91,3.91 0 0 1 -1.57,0.36 2.29,2.29 0 0 1 -1.24,-0.33 2.48,2.48 0 0 1 -1,-1.31 h 0.22 a 5.79,5.79 0 0 0 4.56,-3.06 5.69,5.69 0 0 0 0.53,-5.62 z"
|
||||
id="path1035" />
|
||||
<path
|
||||
class="b"
|
||||
d="m 241.19,100.78 4.72,-6.73 14.52,-4.11 a 1.22,1.22 0 0 0 -0.66,-2.34 l -14.52,4.11 -7.55,-3.26 a 1.22,1.22 0 0 0 -1.6,0.63 1.29,1.29 0 0 0 0,0.82 1.21,1.21 0 0 0 0.69,0.78 l 6.57,2.84 -4.11,5.86 a 1.24,1.24 0 0 0 -0.18,1 1.27,1.27 0 0 0 0.48,0.67 1.22,1.22 0 0 0 1.64,-0.27 z"
|
||||
id="path1037" />
|
||||
<path
|
||||
class="b"
|
||||
d="m 198.88,112.19 a 1.22,1.22 0 0 0 -0.93,-1.45 l -9,-1.95 6.5,-6.49 a 1.21,1.21 0 0 0 0,-1.72 1.23,1.23 0 0 0 -1.72,0 l -7.86,7.85 -22,6.45 a 1.22,1.22 0 0 0 0.68,2.34 l 22,-6.46 10.86,2.36 a 1.22,1.22 0 0 0 1.47,-0.93 z"
|
||||
id="path1039" />
|
||||
<path
|
||||
class="b"
|
||||
d="m 213.81,87.73 a 20.94,20.94 0 0 0 -11.25,7.08 c -2.55,3.27 -3.46,7 -2.57,10.35 a 1.54,1.54 0 0 1 0,0.17 c 0.94,3.32 3.52,6 7.29,7.57 a 22.18,22.18 0 0 0 24.52,-6.46 c 2.55,-3.28 3.46,-7 2.57,-10.35 a 1.21,1.21 0 0 1 0,-0.18 10.42,10.42 0 0 0 -2.11,-3.91 13.49,13.49 0 0 0 -5.18,-3.65 20.94,20.94 0 0 0 -13.27,-0.62 z m 12.68,2.76 a 11.22,11.22 0 0 1 4.32,3 8,8 0 0 1 1.61,3 v 0.14 c 0.7,2.64 -0.07,5.57 -2.17,8.26 a 20.4,20.4 0 0 1 -22.36,5.89 c -3.09,-1.28 -5.2,-3.41 -5.93,-6 v -0.13 c -0.7,-2.64 0.07,-5.57 2.17,-8.26 a 20.4,20.4 0 0 1 22.36,-5.89 z"
|
||||
id="path1041" />
|
||||
<path
|
||||
class="b"
|
||||
d="m 207.6,100.7 a 1.13,1.13 0 0 1 -0.47,-0.12 1.07,1.07 0 0 1 -0.46,-1.44 14,14 0 0 1 17.33,-6.72 1.07,1.07 0 0 1 -0.73,2 11.89,11.89 0 0 0 -14.65,5.69 1.1,1.1 0 0 1 -1.02,0.59 z"
|
||||
id="path1043" />
|
||||
<path
|
||||
class="f"
|
||||
d="m 127.28,112.66 a 5.31,5.31 0 0 0 1.48,0.3 h 0.1 0.38 l 0.15,-0.7 a 14.91,14.91 0 0 1 0.86,-2.77 12.09,12.09 0 0 1 1.58,-2.74 c 0.42,-0.58 0.5,-0.71 0.55,-1.07 a 2.71,2.71 0 0 0 -0.11,-1.18 6,6 0 0 0 -0.8,-1.6 l -0.41,0.28 v 0 l 0.35,-0.38 c -1.07,-1.81 -2.17,-3.62 -3.28,-5.36 -3.77,-5.93 -5.35,-7.61 -6.11,-8.42 a 24.11,24.11 0 0 0 -7,-5.14 59.16,59.16 0 0 0 -7.41,-2.71 c -1.49,-0.43 -3,-0.81 -4.54,-1.12 l -0.75,-0.15 0.15,0.74 c 0.13,0.6 0.38,1.78 0.7,2.92 l 0.11,0.38 a 37.58,37.58 0 0 0 2.12,5.38 10.19,10.19 0 0 1 0.59,1.39 2,2 0 0 1 -0.85,2.38 c -0.35,0.23 -1.63,0.81 -2.88,-0.79 -0.22,-0.29 -0.49,-0.66 -0.83,-1.14 A 51.28,51.28 0 0 0 96.59,85.1 L 96.18,84.67 95,83.38 l 0.4,1.73 c 1.09,4.7 0.65,5.68 -0.81,6.21 -1.46,0.53 -2.37,-0.6 -2.94,-1.5 A 8,8 0 0 0 89.8,87.64 c -0.92,-0.71 -2.28,-1.38 -7.78,-1.15 a 70.62,70.62 0 0 0 -8.72,1 l -0.64,0.12 0.27,0.59 a 23.71,23.71 0 0 0 3.81,5.79 45.11,45.11 0 0 0 4,3.77 c 1.69,1.46 2.54,2.2 2.82,3.17 a 2.12,2.12 0 0 1 -0.21,1.74 2,2 0 0 1 -0.77,0.75 l -0.85,0.46 0.86,0.43 c 13,6.6 23.94,6.88 32.72,7.11 4.57,0.07 8.57,0.18 11.97,1.24 z"
|
||||
id="path1045" />
|
||||
<path
|
||||
class="f"
|
||||
d="m 147.68,142.63 a 3.21,3.21 0 0 0 -1,-0.39 13.48,13.48 0 0 1 -3.53,-1.44 15,15 0 0 1 -3.17,-2.44 c -0.17,-0.16 -0.37,-0.35 -0.49,-0.45 l -0.2,-0.16 -0.24,0.06 a 3.89,3.89 0 0 0 -1.64,1.19 34.23,34.23 0 0 0 -3,3.77 l -0.6,0.83 a 73.34,73.34 0 0 1 -5.36,6.35 71.73,71.73 0 0 0 -5.08,6 c -4.46,6.17 -10.44,13.51 -17.79,21.83 l -0.76,0.86 h 1.14 a 10.2,10.2 0 0 0 1.24,-0.1 3.82,3.82 0 0 1 2.8,0.46 3.49,3.49 0 0 1 1.39,2 c 0.41,1.42 0.13,3.16 -0.23,5.41 -0.16,1.07 -0.34,2.17 -0.44,3.32 a 28.73,28.73 0 0 0 0.07,5.93 l 0.11,1 0.72,-0.66 c 1.52,-1.37 3,-2.78 4.46,-4.18 2,-1.9 3,-2.95 3.68,-3.7 0.49,-0.57 1,-1.15 1.4,-1.66 1.79,-2.19 2.89,-3.39 4.49,-2.48 a 2,2 0 0 1 1,1.23 2.67,2.67 0 0 1 0.06,1.07 5.68,5.68 0 0 0 0,0.76 3.19,3.19 0 0 0 0,0.45 l 0.12,1 0.73,-0.73 c 0.28,-0.29 0.56,-0.58 0.82,-0.88 a 24.89,24.89 0 0 0 2.74,-3.93 c 1,-1.67 1.88,-2.91 3.51,-2.41 a 2.22,2.22 0 0 1 1.48,1.56 6.79,6.79 0 0 1 0.14,1.78 17.92,17.92 0 0 0 0.22,3.33 l 0.15,0.91 0.68,-0.63 a 33.68,33.68 0 0 0 3.18,-3.36 35.3,35.3 0 0 0 4.38,-7 c 1.65,-3.49 1.82,-5.5 2.55,-14 0.2,-2.24 0.44,-5 0.76,-8.4 l 0.08,-0.9 c 0.43,-4.5 0.77,-8.06 0.23,-10 v 0 a 1.86,1.86 0 0 0 -0.8,-1.2 z"
|
||||
id="path1047" />
|
||||
<path
|
||||
class="g"
|
||||
d="m 82.68,177.86 a 1.72,1.72 0 0 1 0.25,0.53 c 0.27,1 -0.15,1.72 -1.43,3.66 -0.47,0.71 -1.06,1.6 -1.71,2.7 -0.38,0.63 -0.74,1.27 -1.09,1.91 l -1.65,3.07 3.17,-1.45 A 51.68,51.68 0 0 0 96.65,176.4 c 11.65,-12.17 33.12,-38.6 34,-39.7 l 0.13,-0.15 a 4.36,4.36 0 0 0 1.59,-2.81 2.35,2.35 0 0 0 -0.07,-0.71 v 0 a 5.43,5.43 0 0 0 -1,-1.63 11.77,11.77 0 0 1 -2.18,-4 v -0.14 a 12.35,12.35 0 0 1 -0.41,-3.9 7.63,7.63 0 0 0 0,-1.27 l -0.08,-0.46 -0.38,-0.27 a 3.82,3.82 0 0 0 -2.55,-0.38 l -8.58,0.33 c -3.9,0.15 -8.45,-0.17 -18,-2.2 a 144.48,144.48 0 0 1 -15,-4.06 c -5.73,-1.83 -9.2,-2.93 -15,-2.4 -0.71,0.06 -1.42,0.15 -2.12,0.25 l -2.58,0.39 2,1.67 c 1,0.84 1.2,1.28 1.3,1.62 a 1.49,1.49 0 0 1 -0.08,1 c -0.44,0.91 -1.3,1 -3,0.7 l -0.45,-0.07 a 42.57,42.57 0 0 0 -4.45,-0.38 h -1.23 v 1.23 a 5.33,5.33 0 0 0 0.19,1.32 7.82,7.82 0 0 0 0.9,1.9 5.24,5.24 0 0 1 0.56,1.15 1.71,1.71 0 0 1 -0.25,1.5 c -0.56,0.75 -1.33,0.74 -2.59,0.46 -0.34,-0.07 -0.72,-0.16 -1.14,-0.21 l -3.55,-0.48 2.58,2.48 0.46,0.42 a 2.89,2.89 0 0 1 1,1.31 1.64,1.64 0 0 1 0,0.88 c -0.28,1 -1.07,1.2 -2.45,1.35 -0.36,0 -0.76,0.08 -1.18,0.16 l -4.89,1 4.92,1.35 c 1,0.27 1.58,0.57 1.8,1.32 a 1.55,1.55 0 0 1 0,0.21 c 0.14,1 -0.52,1.53 -1.71,2.15 a 10.29,10.29 0 0 0 -2,1.26 c -0.14,0.12 -0.27,0.25 -0.4,0.38 l -1.25,1.26 1.65,0.65 a 13.19,13.19 0 0 0 1.42,0.48 18.73,18.73 0 0 0 3.43,0.56 c 1.45,0.12 2.19,0.33 2.43,1.21 v 0.17 c 0.19,1.08 -0.53,1.59 -2.65,2.48 -1.13,0.48 -2.67,1.13 -4.61,2.16 -0.83,0.44 -1.44,0.8 -2.37,1.33 l -1.24,0.74 -2.62,1.57 3,0.58 c 0.24,0 0.45,0.07 0.65,0.1 a 2.36,2.36 0 0 1 1.8,0.86 2.29,2.29 0 0 1 0.3,0.63 c 0.3,1.08 0,3 -5,8.38 -0.86,0.94 -1.78,1.85 -2.71,2.71 l -1.61,1.48 2.12,0.51 a 29.66,29.66 0 0 0 3.61,0.64 c 1.6,0.17 3.15,0.21 4.52,0.24 3.28,0.07 4.46,0.21 4.82,1.47 v 0.12 c 0.17,0.84 -0.31,1.4 -1.09,2 a 5.87,5.87 0 0 0 -1,0.91 l -1.7,2 2.62,-0.07 c 0.7,0 1.42,-0.07 2.12,-0.14 a 36.53,36.53 0 0 0 5.94,-1.24 c 2.55,-0.71 3.5,-0.76 4.08,0.28 a 1.22,1.22 0 0 1 0.14,0.33 c 0.25,0.89 -0.34,1.57 -1,2.3 a 15.6,15.6 0 0 0 -1.7,2.27 c -0.12,0.2 -0.24,0.4 -0.34,0.6 l -1,1.81 2.05,-0.09 c 0.84,0 1.68,-0.1 2.49,-0.19 a 46.87,46.87 0 0 0 9.13,-2.1 c 3.3,-1.07 4.64,-1.34 5.49,-0.11 z"
|
||||
id="path1049" />
|
||||
<path
|
||||
class="h"
|
||||
d="m 131.18,133.34 a 0.87,0.87 0 0 1 0,0.33 3.3,3.3 0 0 1 -1.22,2 l -0.12,0.12 -0.1,0.12 c -0.22,0.27 -22.14,27.3 -34,39.65 a 51.75,51.75 0 0 1 -8.74,7.61 50,50 0 0 1 -7.22,4.05 c 0.34,-0.63 0.7,-1.25 1.06,-1.87 0.64,-1.07 1.22,-1.95 1.69,-2.66 1.21,-1.84 2,-3.06 1.58,-4.62 v 0 a 3,3 0 0 0 -0.42,-0.88 c -1.42,-2.06 -3.82,-1.3 -6.61,-0.43 a 44.93,44.93 0 0 1 -8.91,2.05 c -0.8,0.09 -1.6,0.16 -2.41,0.19 0.1,-0.18 0.2,-0.37 0.31,-0.55 a 14.33,14.33 0 0 1 1.59,-2.11 c 0.69,-0.79 1.63,-1.88 1.2,-3.38 a 2.09,2.09 0 0 0 -0.24,-0.58 c -1.13,-2 -3.3,-1.42 -5.41,-0.84 a 35.11,35.11 0 0 1 -5.75,1.2 c -0.67,0.08 -1.35,0.12 -2,0.14 a 4.72,4.72 0 0 1 0.83,-0.73 3.13,3.13 0 0 0 1.45,-3.15 v -0.1 -0.09 c -0.63,-2.22 -2.85,-2.27 -5.92,-2.33 -1.35,0 -2.87,-0.07 -4.42,-0.24 a 27.21,27.21 0 0 1 -3.46,-0.6 c 1,-0.89 1.89,-1.81 2.78,-2.77 5.35,-5.74 5.69,-8 5.25,-9.5 a 3.22,3.22 0 0 0 -0.47,-1 3.5,3.5 0 0 0 -2.6,-1.34 l -0.58,-0.09 1.23,-0.73 c 0.91,-0.53 1.52,-0.88 2.33,-1.31 1.88,-1 3.41,-1.64 4.52,-2.11 1.74,-0.74 3.71,-1.57 3.35,-3.75 v -0.15 -0.13 c -0.52,-1.83 -2.3,-2 -3.47,-2.08 a 16.59,16.59 0 0 1 -3.22,-0.52 12.43,12.43 0 0 1 -1.3,-0.44 c 0.1,-0.11 0.22,-0.21 0.33,-0.31 a 8.94,8.94 0 0 1 1.76,-1.11 c 0.84,-0.45 2.6,-1.37 2.32,-3.35 a 2.09,2.09 0 0 0 -0.08,-0.36 3.26,3.26 0 0 0 -2.61,-2.14 h -0.13 c 0.39,-0.07 0.76,-0.11 1.1,-0.15 1,-0.1 2.89,-0.3 3.44,-2.19 a 2.8,2.8 0 0 0 0,-1.52 3.89,3.89 0 0 0 -1.36,-1.87 l -0.42,-0.38 c 0.4,0 0.76,0.13 1.08,0.2 0.92,0.2 2.62,0.58 3.75,-0.91 a 2.85,2.85 0 0 0 0.44,-2.51 6.23,6.23 0 0 0 -0.69,-1.45 6.31,6.31 0 0 1 -0.77,-1.61 3.5,3.5 0 0 1 -0.15,-1 37.74,37.74 0 0 1 4.31,0.37 l 0.44,0.07 c 1.32,0.2 3.31,0.5 4.2,-1.36 a 2.7,2.7 0 0 0 0.15,-1.86 4.35,4.35 0 0 0 -1.69,-2.2 c 0.69,-0.1 1.37,-0.18 2.06,-0.25 5.61,-0.5 9,0.57 14.58,2.35 a 144.82,144.82 0 0 0 15.07,4.09 c 9.69,2.06 14.32,2.38 18.3,2.23 l 8.43,-0.32 h 0.21 a 2.8,2.8 0 0 1 1.76,0.15 c 0,0.2 0,0.66 0,1 a 13.6,13.6 0 0 0 0.45,4.24 v 0.15 a 12.91,12.91 0 0 0 2.38,4.4 4.94,4.94 0 0 1 0.8,1.24 v 0 m 2.34,-0.66 c -0.49,-1.72 -2.3,-2.69 -3.18,-5.67 a 0.65,0.65 0 0 1 0,-0.13 c -0.69,-2.43 -0.13,-4.07 -0.48,-5.32 a 2.31,2.31 0 0 0 -0.63,-1 4.64,4.64 0 0 0 -3.76,-0.83 L 117,120 c -4,0.15 -8.53,-0.23 -17.7,-2.18 -16.63,-3.53 -20.29,-7.39 -30.38,-6.48 a 38,38 0 0 0 -7.8,1.55 c 2.5,1.54 5.11,3.29 5.3,4 a 0.22,0.22 0 0 1 0,0.16 c -0.13,0.26 -1,0.09 -2.09,-0.07 a 41.11,41.11 0 0 0 -6.74,-0.42 7.37,7.37 0 0 0 -0.11,4.13 v 0 a 22.43,22.43 0 0 0 1.46,3 0.47,0.47 0 0 1 0,0.39 c -0.32,0.42 -1.38,-0.18 -3.18,-0.31 a 9.91,9.91 0 0 0 -3.54,0.41 c 0,0.13 0.07,0.28 0.11,0.43 a 7.78,7.78 0 0 0 1.16,2.4 c 0.91,1.23 1.88,1.72 2,2.15 a 0.31,0.31 0 0 1 0,0.19 c -0.16,0.57 -1.73,0.27 -3.75,0.88 a 9.47,9.47 0 0 0 -3.3,1.78 7.69,7.69 0 0 0 2.54,2.08 c 1.45,0.72 2.59,0.68 2.71,1.1 0,0 0,0 0,0 0.08,0.56 -1.62,0.88 -3.25,2.27 a 8.78,8.78 0 0 0 -2.27,3.1 15.88,15.88 0 0 0 4.17,1.84 c 2.85,0.8 4.87,0.47 5,0.93 v 0 c 0.09,0.54 -2.42,1.09 -6.61,3.31 -0.86,0.46 -1.5,0.83 -2.42,1.37 -1.84,1.07 -3.57,2.15 -5.17,3.21 q 0.59,0.38 1.32,0.75 c 0,0 0.81,0.41 1.62,0.73 2.22,0.87 3.06,0.46 3.43,1 a 0.7,0.7 0 0 1 0.11,0.23 c 0.47,1.65 -3.81,6.24 -4.69,7.18 a 49.19,49.19 0 0 1 -5.9,5.39 30,30 0 0 0 8.1,2.06 c 4.13,0.45 8,0 8.26,0.82 v 0 c 0.11,0.5 -1.27,0.83 -2.28,2.43 a 6.18,6.18 0 0 0 -0.91,3.28 27.32,27.32 0 0 0 5.5,0 c 5,-0.54 8.38,-2.31 8.78,-1.59 a 0.08,0.08 0 0 1 0,0.05 c 0.14,0.48 -1.2,1.38 -2.53,3.58 a 14.68,14.68 0 0 0 -1.73,4.22 37.71,37.71 0 0 0 6.19,-0.19 c 7.77,-0.88 12.42,-3.85 13.24,-2.66 a 0.6,0.6 0 0 1 0.08,0.16 c 0.21,0.75 -1.11,2.17 -3,5.38 a 50,50 0 0 0 -3.7,7.56 53.38,53.38 0 0 0 13.31,-6.48 55.08,55.08 0 0 0 9.26,-7.91 c 11.78,-12.32 33.2,-38.7 34.09,-39.81 a 5.71,5.71 0 0 0 2,-3.65 3.42,3.42 0 0 0 -0.12,-1.14 z"
|
||||
id="path1051" />
|
||||
<path
|
||||
class="h"
|
||||
d="m 131.73,105 a 2.32,2.32 0 0 1 0.08,1 c 0,0.24 -0.06,0.29 -0.47,0.85 a 12.87,12.87 0 0 0 -1.68,2.81 15.24,15.24 0 0 0 -0.91,2.86 c 0,0.1 -0.05,0.22 -0.08,0.32 a 4.06,4.06 0 0 1 -1.39,-0.29 h -0.07 c -3.39,-1.1 -7.42,-1.26 -12.09,-1.44 -8.74,-0.33 -19.59,-0.75 -32.42,-7.45 a 2.58,2.58 0 0 0 1,-0.92 2.69,2.69 0 0 0 0.29,-2.15 c -0.32,-1.1 -1.19,-1.88 -2.93,-3.43 a 43.61,43.61 0 0 1 -3.88,-3.77 23.26,23.26 0 0 1 -3.66,-5.72 67.45,67.45 0 0 1 8.67,-0.84 c 5.33,-0.16 6.6,0.47 7.44,1.13 a 7.47,7.47 0 0 1 1.71,2.08 c 0.37,0.6 1.51,2.44 3.5,1.74 1.99,-0.7 2.22,-2.18 1.16,-6.88 l 0.4,0.43 a 50.29,50.29 0 0 1 4.72,6.06 c 0.34,0.49 0.61,0.88 0.83,1.17 a 2.6,2.6 0 0 0 3.53,1 2.51,2.51 0 0 0 1.1,-2.94 11.4,11.4 0 0 0 -0.6,-1.49 37.35,37.35 0 0 1 -2,-5.32 l -0.1,-0.37 c -0.3,-1.13 -0.54,-2.32 -0.65,-2.9 1.51,0.33 3,0.72 4.48,1.17 a 57.83,57.83 0 0 1 7.33,2.78 23.55,23.55 0 0 1 3.48,2.17 23.84,23.84 0 0 1 3.25,2.94 c 0.74,0.8 2.27,2.48 6,8.42 1.08,1.75 2.16,3.56 3.2,5.38 v 0.06 0.07 a 5.36,5.36 0 0 1 0.72,1.47 m 2.34,-0.66 a 7.8,7.8 0 0 0 -1,-2.15 c -1.28,-2.24 -2.4,-4.1 -3.24,-5.45 -3.7,-6 -5.3,-7.77 -6.23,-8.79 a 27,27 0 0 0 -3.56,-3.28 26.76,26.76 0 0 0 -3.88,-2.41 60.42,60.42 0 0 0 -7.68,-2.92 58,58 0 0 0 -8.08,-1.85 c 0.09,1 0.23,2 0.43,3.08 0,0 0.31,1.76 0.76,3.46 0,0.13 0.07,0.27 0.11,0.4 a 60.4,60.4 0 0 0 2.63,6.81 q 0,0.15 0,0.18 c -0.27,0.16 -2.38,-3.79 -6.06,-7.75 a 39,39 0 0 0 -6.41,-5.53 c 2.36,8.72 2.61,11.11 2.21,11.25 -0.4,0.14 -1,-1.9 -2.91,-3.44 -1.56,-1.23 -3.59,-1.82 -9,-1.65 a 70.49,70.49 0 0 0 -11.92,1.4 26,26 0 0 0 5.15,9.19 c 2.66,3 6,5.41 6.3,6.27 a 0.24,0.24 0 0 1 0,0.19 c -0.21,0.34 -1.33,-0.3 -3.37,-0.18 a 9.73,9.73 0 0 0 -3.09,0.73 c 2.59,1.73 4.76,2.93 6.09,3.64 20.33,10.77 36.16,6.27 45.22,9.23 0.62,0.2 2.52,0.86 3.77,0 1,-0.73 0.62,-1.78 1.66,-4.17 1.04,-2.39 2.07,-2.63 2.32,-4.27 a 4.73,4.73 0 0 0 -0.14,-2 z"
|
||||
id="path1053" />
|
||||
<path
|
||||
class="h"
|
||||
d="m 147.94,144 v 0 c 0.52,1.82 0.18,5.34 -0.24,9.8 l -0.09,0.9 c -0.32,3.35 -0.56,6.15 -0.75,8.4 -0.73,8.42 -0.9,10.42 -2.51,13.83 a 34.67,34.67 0 0 1 -4.32,6.89 31.58,31.58 0 0 1 -3.13,3.31 17.56,17.56 0 0 1 -0.21,-3.24 7,7 0 0 0 -0.16,-1.91 2.72,2.72 0 0 0 -1.82,-1.91 c -2.13,-0.65 -3.26,1.25 -4.08,2.64 a 24.38,24.38 0 0 1 -2.69,3.85 c -0.25,0.29 -0.52,0.58 -0.79,0.85 a 2.5,2.5 0 0 1 0,-0.4 5.12,5.12 0 0 1 0,-0.72 3.25,3.25 0 0 0 -0.08,-1.24 2.57,2.57 0 0 0 -1.19,-1.53 c -2,-1.15 -3.48,0.59 -5.13,2.6 -0.42,0.51 -0.9,1.09 -1.39,1.65 -0.63,0.73 -1.64,1.71 -3.65,3.67 -1.45,1.41 -2.93,2.81 -4.44,4.17 a 28.48,28.48 0 0 1 -0.08,-5.83 c 0.11,-1.15 0.29,-2.25 0.46,-3.33 0.35,-2.26 0.64,-4 0.2,-5.58 a 3.87,3.87 0 0 0 -1.6,-2.26 4.21,4.21 0 0 0 -3.08,-0.53 11.88,11.88 0 0 1 -1.19,0.09 c 7.37,-8.33 13.35,-15.68 17.83,-21.86 a 67.61,67.61 0 0 1 5.07,-6 74.49,74.49 0 0 0 5.36,-6.37 l 0.61,-0.83 a 35.36,35.36 0 0 1 2.9,-3.71 3.82,3.82 0 0 1 1.41,-1.06 l 0.46,0.43 a 15.56,15.56 0 0 0 3.27,2.51 14.76,14.76 0 0 0 3.64,1.5 3,3 0 0 1 0.88,0.31 c 0.11,0.07 0.35,0.23 0.54,0.92 m 2.34,-0.66 a 3.8,3.8 0 0 0 -1.51,-2.27 c -1.15,-0.78 -2.21,-0.49 -4.67,-1.91 -2.89,-1.66 -3.1,-3 -4.53,-3.24 -2.52,-0.39 -4.93,3.31 -7.3,6.59 -3.17,4.36 -7.28,8 -10.45,12.37 a 304.1,304.1 0 0 1 -20.61,25 14.33,14.33 0 0 0 3.86,0.73 c 2.38,0.12 3.09,-0.44 3.83,0 a 1.53,1.53 0 0 1 0.6,0.9 c 0.45,1.59 -0.42,4.62 -0.74,8 a 32,32 0 0 0 0.88,10.73 c 2.52,-2.17 5.11,-4.53 7.76,-7.11 2.06,-2 3.09,-3 3.79,-3.81 1.72,-2 3.1,-3.94 3.48,-3.73 a 0.18,0.18 0 0 1 0,0.07 c 0,0.17 -0.06,0.57 0,1.38 a 8.66,8.66 0 0 0 0.25,1.78 l 0.18,0.71 a 12.85,12.85 0 0 0 0.77,2 20.89,20.89 0 0 0 3.88,-3.43 c 2.67,-3 3.6,-6 4.23,-5.77 0.09,0 0.15,0.1 0.19,0.24 0.19,0.68 -0.16,2.73 0.45,5.63 0.09,0.39 0.18,0.76 0.28,1.1 a 15,15 0 0 0 0.69,2 35,35 0 0 0 6.3,-6 36.43,36.43 0 0 0 4.64,-7.4 c 2.27,-4.81 2,-7.12 3.48,-23 0.51,-5.37 0.93,-9.2 0.25,-11.59 z"
|
||||
id="path1055" />
|
||||
</g>
|
||||
<g
|
||||
id="g1017"
|
||||
transform="matrix(2.6814338,0,0,2.6814338,1392.7076,-1345.721)">
|
||||
<path
|
||||
class="a"
|
||||
d="m -138.48791,663.5353 c 0,3.67044 -1.97639,5.37861 -5.64683,5.37861 h -4.67276 v -10.77134 h 4.65864 c 3.68456,0 5.66095,1.70817 5.66095,5.39273 z m -6.84679,2.82342 h 1.14349 c 1.51053,0 2.17403,-0.86114 2.17403,-2.32932 v -0.93173 c 0,-1.41171 -0.6635,-2.32932 -2.17403,-2.32932 h -1.14349 z"
|
||||
id="path1417"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -136.73739,659.68133 v -2.11756 h 3.10577 v 2.11756 z m 0,9.21847 v -8.18792 h 3.10577 v 8.18792 z"
|
||||
id="path1419"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -124.27199,661.33303 a 2.2446184,2.2446184 0 0 1 0.95996,1.77876 c 0,1.84934 -1.62346,2.65401 -3.45868,2.65401 h -1.18584 c -0.71997,0 -0.9882,0.19764 -0.9882,0.45175 0,0.25411 0.18352,0.4941 0.9882,0.4941 h 2.82342 a 2.470492,2.470492 0 0 1 2.82342,2.63989 c 0,1.83523 -1.62347,2.82342 -3.47281,2.82342 h -4.67276 a 2.032862,2.032862 0 0 1 -2.07521,-2.01874 2.1034475,2.1034475 0 0 1 1.29877,-1.83522 1.7787542,1.7787542 0 0 1 -0.80467,-1.41171 1.9481594,1.9481594 0 0 1 1.58111,-1.80699 2.5269604,2.5269604 0 0 1 -1.327,-1.9764 c 0,-2.04698 1.93404,-2.66813 4.23512,-2.66813 a 6.6350356,6.6350356 0 0 1 1.41171,0.0988 c 1.22819,-0.77644 1.21407,-1.41171 1.21407,-1.41171 h 2.56932 a 2.1175646,2.1175646 0 0 1 -1.91993,2.18815 z m -5.27979,8.31497 a 0.76232324,0.76232324 0 0 0 0.80467,0.79056 h 2.44226 a 0.77644034,0.77644034 0 0 0 0.83291,-0.77644 0.76232324,0.76232324 0 0 0 -0.83291,-0.76232 h -2.44226 a 0.71997195,0.71997195 0 0 0 -0.80467,0.7482 z m 0.83291,-6.53621 c 0,0.70585 0.43763,1.03054 1.17171,1.03054 0.73409,0 1.21408,-0.32469 1.21408,-1.03054 0,-0.70586 -0.47999,-1.03055 -1.21408,-1.03055 -0.73408,0 -1.17171,0.32469 -1.17171,1.03055 z"
|
||||
id="path1421"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -121.12388,659.68133 v -2.11756 h 3.10577 v 2.11756 z m 0,9.21847 v -8.18792 h 3.10577 v 8.18792 z"
|
||||
id="path1423"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -110.53605,660.71188 v 2.11756 h -1.73641 v 3.134 c 0,0.70585 0.16941,1.08702 0.87526,1.08702 h 0.86115 v 1.8211 a 7.7926375,7.7926375 0 0 1 -1.99051,0.28234 c -1.69406,0 -2.82342,-0.52233 -2.82342,-2.20226 v -4.19278 h -1.15761 v -2.04698 h 1.28466 l 0.67762,-2.49873 h 2.31521 v 2.49873 z"
|
||||
id="path1425"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -100.80937,663.14002 v 3.2187 c 0,0.35293 0.15528,0.62115 0.50821,0.62115 h 0.550569 v 1.79287 a 3.6139768,3.6139768 0 0 1 -1.623469,0.31058 c -1.2423,0 -2.00463,-0.4094 -2.28697,-1.03055 a 4.6162907,4.6162907 0 0 1 -3.04929,1.03055 c -1.72229,0 -2.90812,-0.59292 -2.90812,-2.31521 0,-2.47049 2.08933,-2.93635 5.64684,-2.93635 v -0.4094 c 0,-0.6635 -0.53645,-0.97408 -1.19996,-0.97408 -0.6635,0 -1.18583,0.16941 -1.18583,0.71997 v 0 h -2.92224 a 1.2140703,1.2140703 0 0 1 0,-0.22587 c 0,-1.51053 1.48229,-2.54108 4.30571,-2.54108 2.2305,0.0565 4.16455,0.71998 4.16455,2.73872 z m -5.64684,3.2187 c 0,0.64939 0.53645,0.79056 1.0729,0.79056 0.79055,0 1.52464,-0.46587 1.52464,-1.14349 v -0.70585 c -1.84934,0 -2.59754,0.45174 -2.59754,1.05878 z"
|
||||
id="path1427"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -98.564755,668.8998 v -11.29368 h 3.105761 v 11.29368 z"
|
||||
id="path1429"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -86.085241,668.8998 -3.119879,-8.18792 h 3.345752 l 1.51053,5.13862 h 0.112936 l 1.51053,-5.13862 h 3.091644 l -3.148113,8.2585 z"
|
||||
id="path1431"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -70.203507,664.7776 v 0.52234 h -6.197406 c 0,1.14348 0.479982,1.79287 1.665818,1.79287 1.185836,0 1.510529,-0.52233 1.510529,-1.19996 h 3.021059 c 0,1.9764 -1.51053,3.19047 -4.47512,3.19047 -2.96459,0 -4.828047,-1.41171 -4.828047,-4.23513 0,-2.82342 1.835222,-4.31983 4.644525,-4.31983 2.809302,0 4.658642,1.27054 4.658642,4.24924 z m -6.183289,-0.94584 h 3.035176 a 1.2705387,1.2705387 0 0 0 -1.41171,-1.41171 1.4117097,1.4117097 0 0 0 -1.623466,1.41171 z"
|
||||
id="path1433"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -62.777914,660.62718 v 2.61166 h -1.002314 c -1.341124,0 -1.821106,0.73409 -1.821106,1.99051 v 3.67045 h -3.105761 v -8.18792 h 2.541078 l 0.211756,1.25642 a 2.2869697,2.2869697 0 0 1 2.258736,-1.41171 2.0752133,2.0752133 0 0 1 0.917611,0.0706 z"
|
||||
id="path1435"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -55.493492,660.71188 v 2.11756 h -1.75052 v 3.134 c 0,0.70585 0.169405,1.08702 0.87526,1.08702 h 0.87526 v 1.8211 a 7.9902769,7.9902769 0 0 1 -2.004628,0.28234 c -1.679934,0 -2.823419,-0.52233 -2.823419,-2.20226 v -4.19278 h -1.157602 v -2.04698 h 1.284656 l 0.663503,-2.49873 h 2.315204 v 2.49873 z"
|
||||
id="path1437"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -45.131543,664.7776 v 0.52234 h -6.197406 c 0,1.14348 0.479982,1.79287 1.665818,1.79287 1.185836,0 1.510529,-0.52233 1.510529,-1.19996 h 3.021059 c 0,1.9764 -1.510529,3.19047 -4.47512,3.19047 -2.96459,0 -4.828047,-1.41171 -4.828047,-4.23513 0,-2.82342 1.835223,-4.31983 4.644525,-4.31983 2.809302,0 4.658642,1.27054 4.658642,4.24924 z m -6.183288,-0.94584 h 3.035175 a 1.2705387,1.2705387 0 0 0 -1.411709,-1.41171 1.4117097,1.4117097 0 0 0 -1.623466,1.41171 z"
|
||||
id="path1439"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -43.522194,659.68133 v -2.11756 h 3.105761 v 2.11756 z m 0,9.21847 v -8.18792 h 3.105761 v 8.18792 z"
|
||||
id="path1441"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -38.327102,668.8998 v -11.29368 h 3.105761 v 11.29368 z"
|
||||
id="path1443"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -27.739279,660.71188 v 2.11756 h -1.75052 v 3.134 c 0,0.70585 0.183522,1.08702 0.87526,1.08702 h 0.87526 v 1.8211 a 7.8773401,7.8773401 0 0 1 -1.990511,0.28234 c -1.694052,0 -2.82342,-0.52233 -2.82342,-2.20226 v -4.19278 h -1.157601 v -2.04698 h 1.284655 l 0.677621,-2.49873 h 2.301087 v 2.49873 z"
|
||||
id="path1445"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -17.37733,664.7776 v 0.52234 h -6.183289 c 0,1.14348 0.465864,1.79287 1.651701,1.79287 1.185836,0 1.510529,-0.52233 1.510529,-1.19996 h 3.021059 c 0,1.9764 -1.496413,3.19047 -4.47512,3.19047 -2.978707,0 -4.81393,-1.41171 -4.81393,-4.23513 0,-2.82342 1.821105,-4.31983 4.630408,-4.31983 2.809302,0 4.658642,1.27054 4.658642,4.24924 z m -6.169172,-0.94584 h 3.035176 a 1.2846558,1.2846558 0 0 0 -1.411709,-1.41171 1.4117097,1.4117097 0 0 0 -1.623467,1.41171 z"
|
||||
id="path1447"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -8.0035778,663.11179 h -2.8940052 a 0.66350356,0.66350356 0 0 0 -0.409396,-0.63527 1.4117097,1.4117097 0 0 0 -0.691737,-0.15529 c -0.268225,0 -1.129368,0 -1.129368,0.52233 0,1.19995 5.3221455,0 5.3221455,3.31752 0,2.25873 -1.9905106,2.92224 -4.2351295,2.92224 -2.244618,0 -4.235129,-0.81879 -4.235129,-2.82342 h 2.894005 v 0 c 0,0.79056 0.903494,0.94584 1.41171,0.94584 0.508215,0 1.298773,0 1.298773,-0.60703 0,-1.22819 -5.322146,-0.11294 -5.322146,-3.35987 0,-2.17403 1.962277,-2.82342 4.13631,-2.82342 1.849339,0.0423 3.8539672,0.74821 3.8539672,2.69637 z"
|
||||
id="path1449"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 10.235712,663.5353 c 0,3.67044 -2.1316821,5.56214 -5.8021274,5.56214 -3.67044518,0 -5.8021268,-1.8917 -5.8021268,-5.56214 0,-3.67045 2.13168161,-5.56214 5.8021268,-5.56214 3.6704453,0 5.8021274,1.87758 5.8021274,5.56214 z m -8.07498,-0.4941 v 0.9882 a 2.2869697,2.2869697 0 1 0 4.5457053,0 v -0.9882 a 2.2869697,2.2869697 0 1 0 -4.5457053,0 z"
|
||||
id="path1451"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 20.442373,663.5353 v 5.3645 h -3.105762 v -4.96922 a 1.0305481,1.0305481 0 0 0 -1.044665,-1.17172 1.2564216,1.2564216 0 0 0 -1.298773,1.29877 v 4.84217 h -3.105761 v -8.18792 h 2.541077 l 0.19764,1.25642 a 3.6986794,3.6986794 0 0 1 2.936356,-1.41171 c 1.962276,-0.0988 2.879888,1.04467 2.879888,2.97871 z"
|
||||
id="path1453"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 22.404649,668.8998 v -11.29368 h 3.119879 v 11.29368 z"
|
||||
id="path1455"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 27.656209,659.68133 v -2.11756 h 3.105762 v 2.11756 z m 0,9.21847 v -8.18792 h 3.105762 v 8.18792 z"
|
||||
id="path1457"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 41.265091,663.5353 v 5.3645 h -3.105762 v -4.96922 a 1.0305481,1.0305481 0 0 0 -1.044665,-1.17172 1.2564216,1.2564216 0 0 0 -1.298773,1.29877 v 4.84217 H 32.71013 v -8.18792 h 2.541077 l 0.19764,1.25642 a 3.6986794,3.6986794 0 0 1 2.936356,-1.41171 c 1.976394,-0.0988 2.879888,1.04467 2.879888,2.97871 z"
|
||||
id="path1459"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 52.050553,664.7776 v 0.52234 h -6.197406 c 0,1.14348 0.479982,1.79287 1.665818,1.79287 1.185836,0 1.510529,-0.52233 1.510529,-1.19996 h 3.021059 c 0,1.9764 -1.51053,3.19047 -4.47512,3.19047 -2.96459,0 -4.828047,-1.41171 -4.828047,-4.23513 0,-2.82342 1.835223,-4.31983 4.644525,-4.31983 2.809302,0 4.658642,1.27054 4.658642,4.24924 z m -6.183289,-0.94584 h 3.035176 a 1.2705387,1.2705387 0 0 0 -1.41171,-1.41171 1.4117097,1.4117097 0 0 0 -1.623466,1.41171 z"
|
||||
id="path1461"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 53.222272,665.83639 v -2.4705 h 3.981021 v 2.4705 z"
|
||||
id="path1463"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 69.259294,662.56122 h -3.303401 a 1.7787542,1.7787542 0 0 0 -1.877574,-2.01875 c -1.411709,0 -2.032862,1.01644 -2.032862,2.48461 v 0.9882 c 0,1.41171 0.592919,2.48461 1.990511,2.48461 a 1.7928713,1.7928713 0 0 0 2.032862,-1.96228 h 3.190464 c 0,2.95048 -1.891691,4.54571 -5.166857,4.54571 -3.670446,0 -5.576254,-1.89169 -5.576254,-5.56214 0,-3.67044 1.905808,-5.56213 5.576254,-5.56213 3.091644,0 5.166857,1.60934 5.166857,4.60217 z"
|
||||
id="path1465"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 76.586067,660.45777 c 1.94816,0 2.82342,1.14349 2.82342,3.09165 v 5.35038 h -3.119879 v -4.96922 c 0,-0.69174 -0.352927,-1.17172 -1.044665,-1.17172 a 1.2705387,1.2705387 0 0 0 -1.298773,1.29877 v 4.84217 h -3.105761 v -11.29368 h 3.105761 v 3.93867 a 3.7127965,3.7127965 0 0 1 2.639897,-1.08702 z"
|
||||
id="path1467"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 89.658499,663.14002 v 3.2187 c 0,0.35293 0.155288,0.62115 0.508216,0.62115 h 0.550566 v 1.79287 a 3.6845623,3.6845623 0 0 1 -1.623466,0.31058 c -1.242304,0 -2.004627,-0.4094 -2.286969,-1.03055 a 4.6162907,4.6162907 0 0 1 -3.049293,1.03055 c -1.722286,0 -2.908122,-0.59292 -2.908122,-2.31521 0,-2.47049 2.08933,-2.93635 5.646838,-2.93635 v -0.4094 c 0,-0.6635 -0.536449,-0.97408 -1.199953,-0.97408 -0.663503,0 -1.185836,0.16941 -1.185836,0.71997 v 0 h -3.06341 a 1.2140703,1.2140703 0 0 1 0,-0.22587 c 0,-1.51053 1.41171,-2.54108 4.235129,-2.54108 2.38579,0.0565 4.3763,0.71998 4.3763,2.73872 z m -5.646839,3.2187 c 0,0.64939 0.53645,0.79056 1.0729,0.79056 0.790557,0 1.524646,-0.46587 1.524646,-1.14349 v -0.70585 c -1.905808,0 -2.654014,0.45174 -2.654014,1.05878 z"
|
||||
id="path1469"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 100.65572,664.7776 c 0,2.82342 -1.835225,4.23513 -4.658644,4.23513 -2.82342,0 -4.630408,-1.41171 -4.630408,-4.23513 0,-2.82342 1.821105,-4.31983 4.630408,-4.31983 2.809302,0 4.658644,1.42583 4.658644,4.31983 z m -6.183291,-0.43763 v 0.88938 c 0,1.08702 0.43763,1.75052 1.524647,1.75052 1.087016,0 1.55288,-0.6635 1.55288,-1.75052 v -0.88938 c 0,-1.10113 -0.451747,-1.77875 -1.55288,-1.77875 -1.101134,0 -1.524647,0.67762 -1.524647,1.77875 z"
|
||||
id="path1471"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 110.02947,663.11179 h -2.894 a 0.66350356,0.66350356 0 0 0 -0.39528,-0.63527 1.4117097,1.4117097 0 0 0 -0.70586,-0.15529 c -0.26822,0 -1.12937,0 -1.12937,0.52233 0,1.19995 5.33627,0 5.33627,3.31752 0,2.25873 -2.00463,2.92224 -4.23513,2.92224 -2.2305,0 -4.23513,-0.81879 -4.23513,-2.82342 h 2.894 v 0 c 0,0.79056 0.9035,0.94584 1.41171,0.94584 0.50822,0 1.29878,0 1.29878,-0.60703 0,-1.22819 -5.32215,-0.11294 -5.32215,-3.35987 0,-2.17403 1.96228,-2.82342 4.13631,-2.82342 1.84934,0.0423 3.83985,0.74821 3.83985,2.69637 z"
|
||||
id="path1473"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="b"
|
||||
d="m -99.905879,776.47208 v -99.58201 h 14.526493 v 99.58201 z"
|
||||
id="path1475"
|
||||
style="fill:#888888;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -122.53559,691.50127 c 9.11965,0 13.42536,5.33626 13.42536,14.45591 v 24.97314 h -14.52649 v -23.20851 c 0,-3.2187 -1.67993,-5.47743 -4.89863,-5.47743 a 5.9009465,5.9009465 0 0 0 -6.05624,6.05623 v 22.58736 h -14.52649 v -52.89676 h 14.52649 v 18.35222 a 17.152273,17.152273 0 0 1 12.056,-4.84216 z"
|
||||
id="path1477"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -48.053782,730.93032 -1.242305,-5.46332 a 13.905341,13.905341 0 0 1 -12.267757,6.33858 c -10.220778,0 -16.29113,-6.63504 -16.29113,-20.21568 0,-13.58065 6.070352,-20.08863 16.29113,-20.08863 a 14.2018,14.2018 0 0 1 10.799579,4.50335 v -18.01341 h 14.54061 v 52.93911 z m -15.260582,-21.17565 v 3.88221 c 0,4.51747 1.75052,7.43971 6.282108,7.43971 4.531588,0 6.423279,-3.64221 6.423279,-8.1738 v -2.41403 c 0,-4.53158 -1.905808,-8.24438 -6.423279,-8.24438 -4.517471,0 -6.282108,2.99282 -6.282108,7.51029 z"
|
||||
id="path1479"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="M 1.3842917,730.93032 0.14198715,725.467 A 13.905341,13.905341 0 0 1 -12.12577,731.80558 c -10.220778,0 -16.29113,-6.63504 -16.29113,-20.21568 0,-13.58065 6.070352,-20.08863 16.29113,-20.08863 a 14.2018,14.2018 0 0 1 10.7995791,4.50335 V 677.99121 H 13.214419 v 52.93911 z M -13.87629,709.75467 v 3.88221 c 0,4.51747 1.75052,7.43971 6.2679909,7.43971 4.517471,0 6.4373962,-3.64221 6.4373962,-8.1738 v -2.41403 c 0,-4.53158 -1.9058081,-8.24438 -6.4373962,-8.24438 -4.5315879,0 -6.2679909,2.99282 -6.2679909,7.51029 z"
|
||||
id="path1481"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 63.739509,711.66048 v 2.48461 H 34.827694 c 0,5.32215 2.188151,8.47026 7.73617,8.47026 5.180974,0 7.058548,-2.48461 7.058548,-5.64684 h 14.117097 c 0,9.20435 -7.058548,14.89354 -20.879186,14.89354 -13.820638,0 -22.587356,-6.26799 -22.587356,-20.1451 0,-13.51006 8.554961,-20.15921 21.697979,-20.15921 13.919457,-0.0565 21.768563,6.22564 21.768563,20.10274 z M 34.89828,707.2983 h 14.117097 a 5.9856491,5.9856491 0 0 0 -6.493865,-6.50798 c -4.856281,-0.0141 -7.115017,2.47049 -7.623232,6.50798 z"
|
||||
id="path1483"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 110.76356,705.95718 v 24.97314 H 96.237066 v -23.20851 c 0,-3.2187 -1.679934,-5.47743 -4.898632,-5.47743 a 5.9009465,5.9009465 0 0 0 -6.056235,6.05623 v 22.58736 H 70.755706 v -38.51144 h 11.957182 l 0.945845,5.84448 a 17.208741,17.208741 0 0 1 13.721818,-6.71974 c 9.077289,0 13.383009,5.33626 13.383009,14.45591 z"
|
||||
id="path1485"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -238.43695,749.52254 h -13.51006 a 3.1198784,3.1198784 0 0 0 -1.89169,-3.00694 6.7479724,6.7479724 0 0 0 -3.28929,-0.71998 c -1.2423,0 -5.25156,0 -5.25156,2.48461 0,5.54802 24.90256,-0.22587 24.90256,15.52881 0,10.58782 -9.34552,13.65123 -19.93334,13.65123 -9.64198,-0.0565 -19.86276,-3.81161 -19.86276,-13.48183 h 13.51007 v 0.28235 c 0.0706,3.72691 4.23512,4.461 6.35269,4.461 2.11756,0 6.05623,-0.14117 6.05623,-2.82342 0,-5.75978 -24.90256,-0.50822 -24.90256,-15.69821 0,-10.1502 9.20435,-13.07243 19.35454,-13.07243 9.11965,-0.0282 18.46517,3.26105 18.46517,12.39481 z"
|
||||
id="path1487"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -188.92829,757.25871 v 2.48461 h -28.91182 c 0,5.32214 2.18815,8.39967 7.73617,8.39967 5.19509,0 7.05855,-2.48461 7.05855,-5.64684 h 14.1171 c 0,9.20435 -7.05855,14.89354 -20.87919,14.89354 -13.82064,0 -22.58735,-6.26799 -22.58735,-20.1451 0,-13.51006 8.47025,-20.15922 21.68386,-20.15922 13.90534,0.0141 21.78268,6.29623 21.78268,20.17334 z m -28.84123,-4.39042 h 14.11709 a 5.9856491,5.9856491 0 0 0 -6.50798,-6.49387 c -4.82804,0 -7.08678,2.48461 -7.60911,6.49387 z"
|
||||
id="path1489"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -154.15788,737.90417 v 12.19717 h -4.67276 c -6.28211,0 -8.55496,3.43045 -8.55496,9.27493 v 17.09581 h -14.5265 v -38.49733 h 11.92895 l 0.94585,5.84448 a 10.84193,10.84193 0 0 1 10.58782,-6.79032 9.7266798,9.7266798 0 0 1 4.2916,0.87526 z"
|
||||
id="path1491"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -136.37034,776.47208 -13.27007,-38.5538 h 14.2018 l 6.43739,23.99907 h 0.46587 l 6.42328,-23.99907 h 13.00184 l -13.39712,38.5538 z"
|
||||
id="path1493"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -36.223655,753.53179 h -13.66535 c 0,-4.53159 -2.555194,-6.56445 -6.931494,-6.56445 -4.955101,0 -6.945612,3.134 -6.945612,8.24439 v 4.23513 c 0,5.11039 2.061096,8.1738 7.227954,8.1738 4.602173,0 7.213836,-1.96228 7.213836,-6.71974 h 13.100666 c 0,11.75954 -9.204347,16.57347 -20.596844,16.57347 -12.705388,0 -21.034475,-6.63504 -21.034475,-20.1451 0,-13.51006 8.286736,-20.15921 21.034475,-20.15921 11.392497,-0.0706 20.596844,4.60217 20.596844,16.36171 z"
|
||||
id="path1495"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 13.214419,757.25871 v 2.48461 h -27.711861 c 0,5.32214 2.103447,8.39967 7.4114755,8.39967 4.9692181,0 6.79032364,-2.48461 6.79032364,-5.64684 H 13.214419 c 0,9.20435 -6.7197382,14.89354 -20.0180436,14.89354 -13.2983054,0 -21.6132754,-6.26799 -21.6132754,-20.1451 0,-13.51006 8.187916,-20.15922 20.7803667,-20.15922 13.2841883,0.0141 20.8509523,6.29623 20.8509523,20.17334 z m -27.641276,-4.39042 h 13.58064736 c 0,-4.00926 -2.31520396,-6.49387 -6.23975686,-6.49387 -4.6727595,0 -6.8467925,2.48461 -7.3408905,6.49387 z"
|
||||
id="path1497"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="title"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-83);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114563,21.963791)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.6667px;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$title</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="subtitle"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7-2);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114563,197.67452)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan>$subtitle</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="id"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.66669999999999874px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7-8-5-9);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114563,926.83834)"><tspan
|
||||
x="69.552734"
|
||||
y="81.862392"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.6667px;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$id</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="personnames"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7-2-3);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114563,375.34616)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan>$personnames</tspan></tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 61 KiB |
144
divoc-hs/artwork/divoc-hs-outro.svg
Normal file
After Width: | Height: | Size: 74 KiB |
127
divoc-ptt/__init__.py
Normal file
|
@ -0,0 +1,127 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://talks.mrmcd.net/ptt/schedule/export/schedule.xml'
|
||||
|
||||
|
||||
def clamp(n, i, a):
|
||||
return max(min(n, a), i)
|
||||
|
||||
|
||||
def introFrames(args):
|
||||
frames = int(.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pttlogo', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
frames = int(.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('title', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
frames = int(1*fps)
|
||||
for i in range(0, frames):
|
||||
scale = easeInOutQuad(i, 1.0, -0.8, frames-1)
|
||||
dx = easeInOutQuad(i, 0, 1550, frames-1)
|
||||
dy = easeInOutQuad(i, 0, 875, frames-1)
|
||||
yield (
|
||||
('pttlogo', 'attr', 'transform', f'translate({dx}, {dy}) scale({scale},{scale})'),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
step = 0.5
|
||||
steps = step * fps
|
||||
frames = int(4 * steps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pttlogo', 'attr', 'transform', f'translate(1550, 875) scale(.2,.2)'),
|
||||
('title', 'style', 'opacity', easeInQuad(clamp(i, 0, fps), 0, 1, fps)),
|
||||
('personnames', 'style', 'opacity', easeInQuad(clamp(i - 1*steps, 0, fps), 0, 1, fps)),
|
||||
('id', 'style', 'opacity', easeInQuad(clamp(i - 2*steps, 0, fps), 0, 1, fps)),
|
||||
)
|
||||
frames = int(5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pttlogo', 'attr', 'transform', f'translate(1550, 875) scale(.2,.2)'),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(args):
|
||||
#fadein outro graphics
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(())
|
||||
|
||||
|
||||
def debug():
|
||||
render('divoc-ptt-intro.svg',
|
||||
'../divoc-ptt-intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 7776,
|
||||
'$title': 'StageWar live! mit vielen Wörtern extra lang das wird jetzt echt zu viel',
|
||||
'$subtitle': 'Metal Konzert mit vielen Wörtern extra lang das wird jetzt echt zu viel',
|
||||
'$personnames': 'www.stagewar.de mit vielen Wörtern extra lang das wird jetzt echt zu viel'
|
||||
}
|
||||
)
|
||||
|
||||
render('divoc-ptt-outro.svg',
|
||||
'../divoc-ptt-outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'background.svg',
|
||||
# '../background.ts',
|
||||
# backgroundFrames
|
||||
# )
|
||||
#
|
||||
# render('pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
# if event['room'] not in ('Chirurgie (Saal 1.04)', 'Kreißsaal (Saal 1.11)'):
|
||||
# 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 them into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'divoc-ptt-intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$id': event['id'],
|
||||
'$title': event['title'],
|
||||
'$subtitle': event['subtitle'],
|
||||
'$personnames': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'divoc-ptt-outro.svg',
|
||||
outfile = 'divoc-ptt-outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
BIN
divoc-ptt/artwork/ArchivoBlack-Regular.ttf
Normal file
93
divoc-ptt/artwork/OFL.txt
Normal file
|
@ -0,0 +1,93 @@
|
|||
Copyright 2017 The Archivo Black Project Authors (https://github.com/Omnibus-Type/ArchivoBlack)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
419
divoc-ptt/artwork/divoc-ptt-intro.svg
Normal file
|
@ -0,0 +1,419 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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"
|
||||
id="wave"
|
||||
viewBox="0 0 1920 1080"
|
||||
version="1.1"
|
||||
sodipodi:docname="divoc-ptt-intro.svg"
|
||||
inkscape:version="1.0.1 (c497b03c, 2020-09-10)">
|
||||
<metadata
|
||||
id="metadata11764">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs11762">
|
||||
<rect
|
||||
x="69.551954"
|
||||
y="42.097235"
|
||||
width="1760.7627"
|
||||
height="183.03146"
|
||||
id="rect11768" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31649"
|
||||
id="rect11768-7" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect69" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59008"
|
||||
id="rect11768-7-8" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect101" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect11768-7-8-5" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect131" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1959"
|
||||
inkscape:window-height="1235"
|
||||
id="namedview11760"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.54635417"
|
||||
inkscape:cx="945.35748"
|
||||
inkscape:cy="712.04957"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="wave"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-text-baseline="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<sodipodi:guide
|
||||
position="100.6673,869.51382"
|
||||
orientation="1,0"
|
||||
id="guide90" />
|
||||
</sodipodi:namedview>
|
||||
<linearGradient
|
||||
id="gradient"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6.1731"
|
||||
y1="-9.6922"
|
||||
x2="1898.9858"
|
||||
y2="1083.1237">
|
||||
<stop
|
||||
offset="0"
|
||||
stop-color="#4D99B2"
|
||||
id="stop11682" />
|
||||
<stop
|
||||
offset="0.3765"
|
||||
stop-color="#56A5BA"
|
||||
id="stop11684" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#6DC4CE"
|
||||
id="stop11686" />
|
||||
</linearGradient>
|
||||
<rect
|
||||
fill="url(#gradient)"
|
||||
width="1920"
|
||||
height="1080"
|
||||
id="rect11689"
|
||||
sodipodi:insensitive="true"
|
||||
x="0"
|
||||
y="0" />
|
||||
<g
|
||||
id="pttlogo">
|
||||
<rect
|
||||
x="360"
|
||||
y="340"
|
||||
fill="none"
|
||||
stroke="#f0f0f0"
|
||||
stroke-width="23.3876"
|
||||
width="1200"
|
||||
height="400"
|
||||
id="frame" />
|
||||
<g
|
||||
id="button">
|
||||
<path
|
||||
fill="#1a1a1a"
|
||||
d="m 706.5,581.4 c 0,-0.3 -0.1,-1.8 -1.2,-3.1 -1.2,-1.3 -2.8,-1.4 -3.1,-1.5 -22.3,0.1 -44.6,0.1 -66.9,0.2 -1.3,-2 -3.8,-5.6 -7.9,-8.9 -15.8,-12.9 -42.5,-12.8 -58.3,0 -4.1,3.3 -6.7,6.9 -8,8.8 0,0 0,0 0,0 0,0 0,0 0,0 -23,0 -46.1,0.1 -69.1,0.1 -0.4,0.1 -1.6,0.3 -2.6,1.3 -1.4,1.5 -1.3,3.3 -1.3,3.6 0,17.9 0,35.8 0,53.7 0,0.2 -0.4,4.2 2.8,6.7 2.7,2 5.7,1.4 6.1,1.3 67.5,-0.4 135,-0.8 202.5,-1.1 0.7,-0.1 3.2,-0.6 5.1,-2.8 1.7,-2 1.9,-4.2 2,-5 -0.1,-17.7 -0.1,-35.5 -0.1,-53.3 z"
|
||||
id="path11693" />
|
||||
<path
|
||||
fill="#979694"
|
||||
d="m 705.8,531.6 c -0.6,-3.4 -2.2,-4.5 -5.3,-4.3 -1.7,0 -4.6,-0.1 -7.6,-1.8 0,0 -1.1,-0.6 -2,-1.4 -3,-2.4 -6,-13.1 -7.3,-27.7 -30.4,0.4 -82.1,0.3 -87.9,0.3 0,0 -50.5,1.3 -84,0.5 -0.2,2.8 -0.5,4.9 -0.8,6.5 -2.8,17.1 -3,19 -5.2,20.6 -1,0.8 -3.6,2.2 -6.8,2.9 -4.1,0.8 -5.3,1 -5.3,1 -3.1,0.1 -3.8,1.8 -3.8,4.5 -0.2,12.5 -0.9,25 -0.9,37.5 0,0.4 0,1.9 0.2,3.8 0.2,1.6 0.4,3 0.6,3.9 0.9,-0.7 1.8,-0.8 2.2,-0.9 23,0 46.1,-0.1 69.1,-0.1 0,0 0,0 0,0 0,0 0,0 0,0 1.3,-1.9 3.9,-5.5 8,-8.8 15.9,-12.8 42.6,-12.9 58.3,0 4.1,3.3 6.6,6.9 7.9,8.9 22.3,-0.1 44.6,-0.1 66.9,-0.2 0.3,0 1.9,0.1 3.1,1.5 0.1,0.2 0.3,0.3 0.4,0.5 0.2,-0.9 0.4,-1.9 0.5,-2.9 0.2,-1.5 0.3,-2.9 0.2,-4.2 0,0 0.2,-10.8 -0.1,-24.8 0,-5 0.5,-10.1 -0.4,-15.3 z"
|
||||
id="path11695" />
|
||||
<path
|
||||
id="head"
|
||||
fill="#1a8097"
|
||||
d="m 709,493.8 c 1.7,-2 1.2,-5 1,-6 -5.8,-34.4 -34.8,-57.6 -34.8,-57.6 -31.8,-25.5 -68.4,-26.9 -80.5,-26.8 -11.3,0.1 -48.1,0.8 -78.5,26.8 0,0 -31,26.4 -31.8,60 -0.1,2.5 1.1,3.9 1.1,3.9 1.3,1.5 3.3,1.8 4,1.9 24.2,3 106.2,0.8 106.2,0.8 7.8,0 100.5,0.2 109.2,-1 0.7,-0.1 2.8,-0.4 4.1,-2 z" />
|
||||
</g>
|
||||
<rect
|
||||
width="12"
|
||||
height="32.458065"
|
||||
x="755"
|
||||
y="523.771"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11699" />
|
||||
<rect
|
||||
width="12"
|
||||
height="30.238365"
|
||||
x="780"
|
||||
y="524.8808"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11701" />
|
||||
<rect
|
||||
width="12"
|
||||
height="33.855469"
|
||||
x="805"
|
||||
y="523.07227"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11703" />
|
||||
<rect
|
||||
width="12"
|
||||
height="165.72078"
|
||||
x="830"
|
||||
y="457.13962"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11705" />
|
||||
<rect
|
||||
width="12"
|
||||
height="200"
|
||||
x="855"
|
||||
y="440"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11707" />
|
||||
<rect
|
||||
width="12"
|
||||
height="196.0903"
|
||||
x="880"
|
||||
y="441.95486"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11709" />
|
||||
<rect
|
||||
width="12"
|
||||
height="140.71889"
|
||||
x="905"
|
||||
y="469.64056"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11711" />
|
||||
<rect
|
||||
width="12"
|
||||
height="77.467522"
|
||||
x="930"
|
||||
y="501.26624"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11713" />
|
||||
<rect
|
||||
width="12"
|
||||
height="35.051079"
|
||||
x="955"
|
||||
y="522.47449"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11715" />
|
||||
<rect
|
||||
width="12"
|
||||
height="12.072141"
|
||||
x="980"
|
||||
y="533.96393"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11717" />
|
||||
<rect
|
||||
width="12"
|
||||
height="6.6893682"
|
||||
x="1005"
|
||||
y="536.65533"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11719" />
|
||||
<rect
|
||||
width="12"
|
||||
height="28.553411"
|
||||
x="1030"
|
||||
y="525.72327"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11721" />
|
||||
<rect
|
||||
width="12"
|
||||
height="26.222727"
|
||||
x="1055"
|
||||
y="526.88861"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11723" />
|
||||
<rect
|
||||
width="12"
|
||||
height="173.71169"
|
||||
x="1080"
|
||||
y="453.14417"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11725" />
|
||||
<rect
|
||||
width="12"
|
||||
height="149.7238"
|
||||
x="1105"
|
||||
y="465.13809"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11727" />
|
||||
<rect
|
||||
width="12"
|
||||
height="92.04187"
|
||||
x="1130"
|
||||
y="493.97906"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11729" />
|
||||
<rect
|
||||
width="12"
|
||||
height="43.591877"
|
||||
x="1155"
|
||||
y="518.20404"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11731" />
|
||||
<rect
|
||||
width="12"
|
||||
height="34.264095"
|
||||
x="1180"
|
||||
y="522.86798"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11733" />
|
||||
<rect
|
||||
width="12"
|
||||
height="31.206963"
|
||||
x="1205"
|
||||
y="524.39655"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11735" />
|
||||
<rect
|
||||
width="12"
|
||||
height="35.575733"
|
||||
x="1230"
|
||||
y="522.21216"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11737" />
|
||||
<rect
|
||||
width="12"
|
||||
height="176.81422"
|
||||
x="1255"
|
||||
y="451.5929"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11739" />
|
||||
<rect
|
||||
width="12"
|
||||
height="175.78004"
|
||||
x="1280"
|
||||
y="452.10999"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11741" />
|
||||
<rect
|
||||
width="12"
|
||||
height="174.74586"
|
||||
x="1305"
|
||||
y="452.62708"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11743" />
|
||||
<rect
|
||||
width="12"
|
||||
height="116.45857"
|
||||
x="1330"
|
||||
y="481.77072"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11745" />
|
||||
<rect
|
||||
width="12"
|
||||
height="65.798965"
|
||||
x="1355"
|
||||
y="507.10052"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11747" />
|
||||
<rect
|
||||
width="12"
|
||||
height="36.054989"
|
||||
x="1380"
|
||||
y="521.97253"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11749" />
|
||||
<rect
|
||||
width="12"
|
||||
height="34.763527"
|
||||
x="1405"
|
||||
y="522.61823"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11751" />
|
||||
<rect
|
||||
width="12"
|
||||
height="23.347206"
|
||||
x="1430"
|
||||
y="528.32642"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11753" />
|
||||
<rect
|
||||
width="12"
|
||||
height="15.457183"
|
||||
x="1455"
|
||||
y="532.27142"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11755" />
|
||||
<rect
|
||||
width="12"
|
||||
height="31.47938"
|
||||
x="1480"
|
||||
y="524.26031"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11757" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="title"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114566,21.963775)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.6667px;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$title</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="personnames"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114566,197.6745)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan>$personnames</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="id"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.66669999999999874px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7-8-5);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114566,926.83832)"><tspan
|
||||
x="69.552734"
|
||||
y="81.862392"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.6667px;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$id</tspan></tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
112
divoc-ptt/artwork/divoc-ptt-outro.svg
Normal file
After Width: | Height: | Size: 30 KiB |
200
sotm2020/__init__.py
Normal file
|
@ -0,0 +1,200 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import subprocess
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://pretalx.com/fossgis2020/schedule/export/schedule.xml'
|
||||
|
||||
# For (really) too long titles
|
||||
titlemap = {
|
||||
#708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
|
||||
}
|
||||
|
||||
|
||||
def outroFrames(params):
|
||||
# 8 Sekunden
|
||||
|
||||
# 2 Sekunden Fadein Text
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('banderole', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames) ),
|
||||
('license', 'style', 'opacity', 0)
|
||||
)
|
||||
|
||||
# 2 Sekunde Fadein Lizenz-Logo
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('banderole', 'style', 'opacity', 1),
|
||||
('license', 'style', 'opacity', "%.4f" % (float(i)/frames))
|
||||
)
|
||||
|
||||
# 4 Sekunde stehen bleiben
|
||||
frames = 4*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('banderole', 'style', 'opacity', 1),
|
||||
('license', 'style', 'opacity', 1)
|
||||
)
|
||||
|
||||
def introFrames(params):
|
||||
# 7 Sekunden
|
||||
|
||||
# 2 Sekunden Text 1
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('box-und-text1', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
||||
('url', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
||||
('text1', 'style', 'opacity', "%.4f" % 1),
|
||||
('text2', 'style', 'opacity', 0)
|
||||
)
|
||||
|
||||
# 1 Sekunde Fadeout Text 1
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('box-und-text1', 'style', 'opacity', 1),
|
||||
('url', 'style', 'opacity', 1),
|
||||
('text1', 'style', 'opacity', "%.4f" % (1-(float(i)/frames))),
|
||||
('text2', 'style', 'opacity', 0)
|
||||
)
|
||||
|
||||
# 2 Sekunden Text 2
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('box-und-text1', 'style', 'opacity', 1),
|
||||
('url', 'style', 'opacity', 1),
|
||||
('text1', 'style', 'opacity', 0),
|
||||
('text2', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames))
|
||||
)
|
||||
|
||||
# 2 Sekunden stehen bleiben
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('box-und-text1', 'style', 'opacity', 1),
|
||||
('url', 'style', 'opacity', 1),
|
||||
('text1', 'style', 'opacity', 0),
|
||||
('text2', 'style', 'opacity', 1)
|
||||
)
|
||||
|
||||
def pauseFrames(params):
|
||||
# 12 Sekunden
|
||||
|
||||
# 2 Sekunden Text1 stehen
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', 1),
|
||||
('text2', 'style', 'opacity', 0)
|
||||
)
|
||||
|
||||
# 2 Sekunden Fadeout Text1
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', "%.4f" % (1-easeOutCubic(i, 0, 1, frames))),
|
||||
('text2', 'style', 'opacity', 0)
|
||||
)
|
||||
|
||||
# 2 Sekunden Fadein Text2
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', 0),
|
||||
('text2', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames))
|
||||
)
|
||||
|
||||
# 2 Sekunden Text2 stehen
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', 0),
|
||||
('text2', 'style', 'opacity', 1)
|
||||
)
|
||||
|
||||
# 2 Sekunden Fadeout Text2
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', 0),
|
||||
('text2', 'style', 'opacity', "%.4f" % (1-easeOutCubic(i, 0, 1, frames)))
|
||||
)
|
||||
|
||||
# 2 Sekunden Fadein Text1
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('text1', 'style', 'opacity', "%.4f" % (easeOutCubic(i, 0, 1, frames))),
|
||||
('text2', 'style', 'opacity', 0)
|
||||
)
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 904,
|
||||
'$title': 'Was ist Open Source, wie funktioniert das?',
|
||||
'$subtitle': 'Die Organisation der Open Geo- und GIS-Welt. Worauf man achten sollte.',
|
||||
'$personnames': 'Arnulf Christl, Astrid Emde, Dominik Helle, Till Adams'
|
||||
}
|
||||
)
|
||||
|
||||
render(
|
||||
'outro.svg',
|
||||
'../outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
render('pause.svg',
|
||||
'../pause.ts',
|
||||
pauseFrames
|
||||
)
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
if event['room'] not in ('HS Anatomie', 'HS Rundbau', 'HS Weismannhaus'):
|
||||
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||
continue
|
||||
|
||||
|
||||
if (event['id'] in idlist or not idlist) and not 'intro' in skiplist:
|
||||
# generate a task description and put them into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$id': event['id'],
|
||||
'$title': event['title'],
|
||||
'$url': event['url'],
|
||||
#'$subtitle': event['subtitle'],
|
||||
'$personnames': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
if not 'outro' in skiplist:
|
||||
# place a task for the outro into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
||||
|
||||
if not 'pause' in skiplist:
|
||||
# place the pause-sequence into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'pause.svg',
|
||||
outfile = 'pause.ts',
|
||||
sequence = pauseFrames
|
||||
))
|
||||
|
||||
|
199
sotm2020/artwork/by-sa.svg
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="120"
|
||||
height="42"
|
||||
id="svg2759"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
version="1.0"
|
||||
sodipodi:docname="by-sa.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs2761" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#8b8b8b"
|
||||
borderopacity="1"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="179"
|
||||
inkscape:cy="89.569904"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="120px"
|
||||
height="42px"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-width="1198"
|
||||
inkscape:window-height="624"
|
||||
inkscape:window-x="488"
|
||||
inkscape:window-y="401" />
|
||||
<metadata
|
||||
id="metadata2764">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)"
|
||||
id="g287"
|
||||
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
|
||||
inkscape:export-xdpi="300.23013"
|
||||
inkscape:export-ydpi="300.23013">
|
||||
<path
|
||||
id="path3817_2_"
|
||||
nodetypes="ccccccc"
|
||||
d="M 182.23532,75.39014 L 296.29928,75.59326 C 297.89303,75.59326 299.31686,75.35644 299.31686,78.77344 L 299.17721,116.34033 L 179.3569,116.34033 L 179.3569,78.63379 C 179.3569,76.94922 179.51999,75.39014 182.23532,75.39014 z"
|
||||
style="fill:#aab2ab" />
|
||||
|
||||
<g
|
||||
id="g5908_2_"
|
||||
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||
|
||||
<path
|
||||
id="path5906_2_"
|
||||
cx="296.35416"
|
||||
ry="22.939548"
|
||||
cy="264.3577"
|
||||
type="arc"
|
||||
rx="22.939548"
|
||||
d="M 187.20944,-55.6792 C 187.21502,-46.99896 180.18158,-39.95825 171.50134,-39.95212 C 162.82113,-39.94708 155.77929,-46.97998 155.77426,-55.66016 C 155.77426,-55.66687 155.77426,-55.67249 155.77426,-55.6792 C 155.76922,-64.36054 162.80209,-71.40125 171.48233,-71.40631 C 180.16367,-71.41193 187.20441,-64.37842 187.20944,-55.69824 C 187.20944,-55.69263 187.20944,-55.68591 187.20944,-55.6792 z"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<g
|
||||
id="g5706_2_"
|
||||
transform="translate(-289.6157,99.0653)">
|
||||
<path
|
||||
id="path5708_2_"
|
||||
d="M 473.88455,-167.54724 C 477.36996,-164.06128 479.11294,-159.79333 479.11294,-154.74451 C 479.11294,-149.69513 477.40014,-145.47303 473.9746,-142.07715 C 470.33929,-138.50055 466.04281,-136.71283 461.08513,-136.71283 C 456.18736,-136.71283 451.96526,-138.48544 448.42003,-142.03238 C 444.87419,-145.57819 443.10158,-149.81537 443.10158,-154.74451 C 443.10158,-159.6731 444.87419,-163.94049 448.42003,-167.54724 C 451.87523,-171.03375 456.09728,-172.77618 461.08513,-172.77618 C 466.13342,-172.77618 470.39914,-171.03375 473.88455,-167.54724 z M 450.76657,-165.20239 C 447.81982,-162.22601 446.34701,-158.7395 446.34701,-154.74005 C 446.34701,-150.7417 447.80529,-147.28485 450.72125,-144.36938 C 453.63778,-141.45288 457.10974,-139.99462 461.1383,-139.99462 C 465.16683,-139.99462 468.66848,-141.46743 471.64486,-144.41363 C 474.47076,-147.14947 475.88427,-150.59069 475.88427,-154.74005 C 475.88427,-158.85809 474.44781,-162.35297 471.57659,-165.22479 C 468.70595,-168.09546 465.22671,-169.53131 461.1383,-169.53131 C 457.04993,-169.53131 453.59192,-168.08813 450.76657,-165.20239 z M 458.52106,-156.49927 C 458.07074,-157.4809 457.39673,-157.9715 456.49781,-157.9715 C 454.90867,-157.9715 454.11439,-156.90198 454.11439,-154.763 C 454.11439,-152.62341 454.90867,-151.55389 456.49781,-151.55389 C 457.54719,-151.55389 458.29676,-152.07519 458.74647,-153.11901 L 460.94923,-151.94598 C 459.8993,-150.0805 458.32417,-149.14697 456.22374,-149.14697 C 454.60384,-149.14697 453.30611,-149.64367 452.33168,-150.63653 C 451.35561,-151.62994 450.86894,-152.99926 450.86894,-154.7445 C 450.86894,-156.46008 451.37123,-157.82159 452.37642,-158.83013 C 453.38161,-159.83806 454.63347,-160.34264 456.13423,-160.34264 C 458.35435,-160.34264 459.94407,-159.46776 460.90504,-157.71978 L 458.52106,-156.49927 z M 468.8844,-156.49927 C 468.43353,-157.4809 467.77292,-157.9715 466.90201,-157.9715 C 465.28095,-157.9715 464.46988,-156.90198 464.46988,-154.763 C 464.46988,-152.62341 465.28095,-151.55389 466.90201,-151.55389 C 467.95304,-151.55389 468.68918,-152.07519 469.10925,-153.11901 L 471.36126,-151.94598 C 470.31301,-150.0805 468.74007,-149.14697 466.64358,-149.14697 C 465.02587,-149.14697 463.73095,-149.64367 462.75711,-150.63653 C 461.78494,-151.62994 461.29773,-152.99926 461.29773,-154.7445 C 461.29773,-156.46008 461.79221,-157.82159 462.78061,-158.83013 C 463.76843,-159.83806 465.02588,-160.34264 466.55408,-160.34264 C 468.77027,-160.34264 470.35776,-159.46776 471.3154,-157.71978 L 468.8844,-156.49927 z" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
d="M 297.29639,74.91064 L 181.06688,74.91064 C 179.8203,74.91064 178.80614,75.92529 178.80614,77.17187 L 178.80614,116.66748 C 178.80614,116.94922 179.03466,117.17822 179.31639,117.17822 L 299.04639,117.17822 C 299.32813,117.17822 299.55713,116.94922 299.55713,116.66748 L 299.55713,77.17188 C 299.55713,75.92529 298.54297,74.91064 297.29639,74.91064 z M 181.06688,75.93213 L 297.29639,75.93213 C 297.97998,75.93213 298.53565,76.48828 298.53565,77.17188 C 298.53565,77.17188 298.53565,93.09131 298.53565,104.59034 L 215.4619,104.59034 C 212.41698,110.09571 206.55077,113.83399 199.81835,113.83399 C 193.083,113.83399 187.21825,110.09913 184.1748,104.59034 L 179.82666,104.59034 C 179.82666,93.09132 179.82666,77.17188 179.82666,77.17188 C 179.82664,76.48828 180.38329,75.93213 181.06688,75.93213 z"
|
||||
id="path294" />
|
||||
|
||||
<g
|
||||
enable-background="new "
|
||||
id="g296">
|
||||
<path
|
||||
d="M 265.60986,112.8833 C 265.68994,113.03906 265.79736,113.16504 265.93115,113.26172 C 266.06494,113.35791 266.22119,113.42969 266.40088,113.47608 C 266.58154,113.52296 266.76807,113.54639 266.96045,113.54639 C 267.09033,113.54639 267.22998,113.53565 267.3794,113.51368 C 267.52784,113.4922 267.66749,113.44972 267.79835,113.3877 C 267.92823,113.32569 268.03761,113.23975 268.12355,113.13086 C 268.21144,113.02197 268.25441,112.88379 268.25441,112.71533 C 268.25441,112.53515 268.19679,112.38916 268.08156,112.27685 C 267.9673,112.16455 267.81594,112.07177 267.62941,111.99658 C 267.44386,111.92236 267.23195,111.85693 266.9966,111.80078 C 266.76027,111.74463 266.52101,111.68262 266.27883,111.61377 C 266.02981,111.55176 265.78762,111.47559 265.55129,111.38525 C 265.31594,111.29541 265.10402,111.17822 264.9175,111.03515 C 264.73098,110.89208 264.58059,110.71337 264.46535,110.49853 C 264.35109,110.28369 264.29347,110.02392 264.29347,109.71923 C 264.29347,109.37646 264.36671,109.07958 264.51222,108.82763 C 264.6587,108.57568 264.85011,108.36572 265.08644,108.19726 C 265.32179,108.02929 265.58937,107.90478 265.8882,107.82372 C 266.18605,107.74315 266.48488,107.70263 266.78273,107.70263 C 267.13136,107.70263 267.46535,107.74169 267.78566,107.81982 C 268.105,107.89746 268.39015,108.02392 268.6382,108.19824 C 268.88722,108.37256 269.08449,108.59521 269.23097,108.86621 C 269.37648,109.13721 269.44972,109.46582 269.44972,109.85156 L 268.02784,109.85156 C 268.01514,109.65234 267.97315,109.4873 267.90284,109.35693 C 267.83155,109.22607 267.73682,109.12353 267.61964,109.04834 C 267.50148,108.97412 267.36671,108.9209 267.21534,108.89014 C 267.063,108.85889 266.89796,108.84326 266.71827,108.84326 C 266.60108,108.84326 266.48292,108.85596 266.36573,108.88037 C 266.24757,108.90576 266.14112,108.94922 266.04542,109.01123 C 265.94874,109.07373 265.86964,109.15137 265.80812,109.24463 C 265.7466,109.33838 265.71535,109.45654 265.71535,109.59961 C 265.71535,109.73047 265.73976,109.83643 265.78957,109.91699 C 265.83937,109.99804 265.93801,110.07275 266.08352,110.14111 C 266.22903,110.20947 266.43118,110.27832 266.68899,110.34668 C 266.9468,110.41504 267.28372,110.50244 267.70071,110.60791 C 267.82473,110.63281 267.99661,110.67822 268.21731,110.74365 C 268.43801,110.80908 268.65676,110.91308 268.87454,111.05615 C 269.09231,111.1997 269.27981,111.39111 269.43899,111.63037 C 269.59719,111.87012 269.67629,112.17676 269.67629,112.55029 C 269.67629,112.85547 269.61672,113.13867 269.49856,113.3999 C 269.3804,113.66162 269.20461,113.8872 268.97122,114.07666 C 268.73782,114.26709 268.44876,114.41455 268.10403,114.52051 C 267.75833,114.62647 267.35794,114.6792 266.90481,114.6792 C 266.53762,114.6792 266.18118,114.63379 265.83547,114.54346 C 265.49074,114.45313 265.18508,114.31104 264.92043,114.11768 C 264.65676,113.92432 264.4468,113.67774 264.29055,113.37891 C 264.13528,113.07959 264.06106,112.7251 264.06692,112.31397 L 265.4888,112.31397 C 265.48877,112.53809 265.52881,112.72803 265.60986,112.8833 z"
|
||||
id="path298"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<path
|
||||
d="M 273.8667,107.8667 L 276.35986,114.53076 L 274.8374,114.53076 L 274.33349,113.04638 L 271.84033,113.04638 L 271.31787,114.53076 L 269.84326,114.53076 L 272.36377,107.8667 L 273.8667,107.8667 z M 273.95068,111.95264 L 273.11084,109.50928 L 273.09229,109.50928 L 272.22315,111.95264 L 273.95068,111.95264 z"
|
||||
id="path300"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
enable-background="new "
|
||||
id="g302">
|
||||
<path
|
||||
d="M 239.17821,107.8667 C 239.49559,107.8667 239.78563,107.89502 240.04735,107.95068 C 240.30907,108.00683 240.53368,108.09863 240.72118,108.22607 C 240.9077,108.35351 241.05321,108.52295 241.15575,108.73437 C 241.25829,108.94579 241.31005,109.20703 241.31005,109.51806 C 241.31005,109.854 241.23388,110.13329 241.08056,110.35742 C 240.92822,110.58154 240.70165,110.76465 240.40283,110.90771 C 240.81494,111.02587 241.12256,111.23291 241.32568,111.5288 C 241.5288,111.82469 241.63037,112.18114 241.63037,112.59814 C 241.63037,112.93408 241.56494,113.22509 241.43408,113.47119 C 241.30322,113.7168 241.12646,113.91748 240.90576,114.07324 C 240.68408,114.229 240.43115,114.34424 240.14795,114.41845 C 239.86377,114.49365 239.57275,114.53075 239.27295,114.53075 L 236.03662,114.53075 L 236.03662,107.86669 L 239.17821,107.86669 L 239.17821,107.8667 z M 238.99071,110.56201 C 239.25243,110.56201 239.46727,110.5 239.63622,110.37597 C 239.80419,110.25146 239.88817,110.05029 239.88817,109.77099 C 239.88817,109.61572 239.85985,109.48828 239.80419,109.38915 C 239.74755,109.28954 239.67333,109.21239 239.57958,109.15624 C 239.48583,109.10058 239.37841,109.06151 239.25731,109.04003 C 239.13524,109.01806 239.00926,109.00732 238.8784,109.00732 L 237.50535,109.00732 L 237.50535,110.56201 L 238.99071,110.56201 z M 239.07664,113.39014 C 239.22019,113.39014 239.35691,113.37647 239.48777,113.34815 C 239.61863,113.32032 239.73484,113.27344 239.83445,113.2085 C 239.93406,113.14307 240.01316,113.0542 240.07273,112.94239 C 240.1323,112.83058 240.1616,112.68751 240.1616,112.51319 C 240.1616,112.17139 240.06492,111.92725 239.87156,111.78126 C 239.6782,111.63527 239.42234,111.56202 239.10496,111.56202 L 237.50535,111.56202 L 237.50535,113.39014 L 239.07664,113.39014 z"
|
||||
id="path304"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<path
|
||||
d="M 241.88914,107.8667 L 243.53269,107.8667 L 245.09324,110.49854 L 246.64402,107.8667 L 248.27781,107.8667 L 245.80418,111.97315 L 245.80418,114.53077 L 244.33543,114.53077 L 244.33543,111.93604 L 241.88914,107.8667 z"
|
||||
id="path306"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g6316_1_"
|
||||
transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)">
|
||||
|
||||
<path
|
||||
id="path6318_1_"
|
||||
cx="475.97119"
|
||||
ry="29.209877"
|
||||
cy="252.08646"
|
||||
type="arc"
|
||||
rx="29.209877"
|
||||
d="M -175.0083,-139.1153 C -175.00204,-129.7035 -182.62555,-122.06751 -192.03812,-122.06049 C -201.44913,-122.05341 -209.08512,-129.67774 -209.09293,-139.09028 C -209.09293,-139.09809 -209.09293,-139.10749 -209.09293,-139.1153 C -209.09919,-148.52784 -201.47413,-156.1623 -192.06311,-156.17011 C -182.65054,-156.17713 -175.01456,-148.55207 -175.0083,-139.14026 C -175.0083,-139.13092 -175.0083,-139.1239 -175.0083,-139.1153 z"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<g
|
||||
id="g6320_1_"
|
||||
transform="translate(-23.9521,-89.72962)">
|
||||
<path
|
||||
id="path6322_1_"
|
||||
d="M -168.2204,-68.05536 C -173.39234,-68.05536 -177.76892,-66.25067 -181.35175,-62.64203 C -185.02836,-58.90759 -186.86588,-54.48883 -186.86588,-49.38568 C -186.86588,-44.28253 -185.02836,-39.89416 -181.35175,-36.22308 C -177.67673,-32.55114 -173.29859,-30.71521 -168.2204,-30.71521 C -163.07974,-30.71521 -158.62503,-32.56677 -154.85312,-36.26996 C -151.30307,-39.78558 -149.52652,-44.15827 -149.52652,-49.38568 C -149.52652,-54.6123 -151.33432,-59.03265 -154.94843,-62.64203 C -158.5625,-66.25067 -162.98599,-68.05536 -168.2204,-68.05536 z M -168.17352,-64.69519 C -163.936,-64.69519 -160.33752,-63.20221 -157.37655,-60.21466 C -154.38748,-57.25836 -152.89214,-53.64899 -152.89214,-49.38568 C -152.89214,-45.09186 -154.35466,-41.52856 -157.28438,-38.69653 C -160.36876,-35.64727 -163.99849,-34.12304 -168.17351,-34.12304 C -172.34856,-34.12304 -175.94701,-35.63244 -178.96892,-38.64965 C -181.9908,-41.66918 -183.50176,-45.24657 -183.50176,-49.38567 C -183.50176,-53.52398 -181.97518,-57.13414 -178.92205,-60.21465 C -175.9939,-63.20221 -172.41107,-64.69519 -168.17352,-64.69519 z" />
|
||||
|
||||
<path
|
||||
id="path6324_1_"
|
||||
d="M -176.49548,-52.02087 C -175.75171,-56.71856 -172.44387,-59.22949 -168.30008,-59.22949 C -162.33911,-59.22949 -158.70783,-54.90448 -158.70783,-49.1372 C -158.70783,-43.50982 -162.57194,-39.13793 -168.39383,-39.13793 C -172.39856,-39.13793 -175.98297,-41.60277 -176.63611,-46.43877 L -171.93292,-46.43877 C -171.7923,-43.92778 -170.1626,-43.04418 -167.83447,-43.04418 C -165.1813,-43.04418 -163.4563,-45.50908 -163.4563,-49.27709 C -163.4563,-53.22942 -164.94693,-55.32244 -167.74228,-55.32244 C -169.79074,-55.32244 -171.55948,-54.57787 -171.93292,-52.02087 L -170.56418,-52.02789 L -174.26734,-48.32629 L -177.96894,-52.02789 L -176.49548,-52.02087 z" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g313">
|
||||
<circle
|
||||
cx="242.56226"
|
||||
cy="90.224609"
|
||||
r="10.8064"
|
||||
id="circle315"
|
||||
sodipodi:cx="242.56226"
|
||||
sodipodi:cy="90.224609"
|
||||
sodipodi:rx="10.8064"
|
||||
sodipodi:ry="10.8064"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<g
|
||||
id="g317">
|
||||
<path
|
||||
d="M 245.68994,87.09766 C 245.68994,86.68116 245.35205,86.34424 244.93603,86.34424 L 240.16357,86.34424 C 239.74755,86.34424 239.40966,86.68115 239.40966,87.09766 L 239.40966,91.87061 L 240.74071,91.87061 L 240.74071,97.52295 L 244.3579,97.52295 L 244.3579,91.87061 L 245.68993,91.87061 L 245.68993,87.09766 L 245.68994,87.09766 z"
|
||||
id="path319" />
|
||||
|
||||
<circle
|
||||
cx="242.5498"
|
||||
cy="84.083008"
|
||||
r="1.63232"
|
||||
id="circle321"
|
||||
sodipodi:cx="242.5498"
|
||||
sodipodi:cy="84.083008"
|
||||
sodipodi:rx="1.63232"
|
||||
sodipodi:ry="1.63232" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
clip-rule="evenodd"
|
||||
d="M 242.53467,78.31836 C 239.30322,78.31836 236.56641,79.4458 234.32715,81.70215 C 232.0293,84.03516 230.88086,86.79736 230.88086,89.98633 C 230.88086,93.1753 232.0293,95.91846 234.32715,98.21338 C 236.625,100.50781 239.36133,101.65527 242.53467,101.65527 C 245.74756,101.65527 248.53272,100.49853 250.88819,98.18359 C 253.10889,95.98681 254.21827,93.2539 254.21827,89.98632 C 254.21827,86.71874 253.08936,83.95751 250.83057,81.70214 C 248.57178,79.4458 245.80615,78.31836 242.53467,78.31836 z M 242.56396,80.41797 C 245.2124,80.41797 247.46142,81.35156 249.31103,83.21875 C 251.18115,85.06592 252.11572,87.32227 252.11572,89.98633 C 252.11572,92.66992 251.20068,94.89746 249.36963,96.66699 C 247.4419,98.57275 245.17334,99.52539 242.56397,99.52539 C 239.9546,99.52539 237.70557,98.58252 235.81739,96.6958 C 233.92774,94.80957 232.98389,92.57324 232.98389,89.98633 C 232.98389,87.3999 233.93799,85.14404 235.84619,83.21875 C 237.67676,81.35156 239.9165,80.41797 242.56396,80.41797 z"
|
||||
id="path323"
|
||||
style="fill-rule:evenodd" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
262
sotm2020/artwork/intro.svg
Normal file
|
@ -0,0 +1,262 @@
|
|||
<?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="defs20">
|
||||
<filter
|
||||
id="filter3772"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow">
|
||||
<feFlood
|
||||
id="feFlood3774"
|
||||
flood-opacity="0.5"
|
||||
flood-color="rgb(255,255,255)"
|
||||
result="flood" />
|
||||
<feComposite
|
||||
id="feComposite3776"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3778"
|
||||
in="composite"
|
||||
stdDeviation="3"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset3780"
|
||||
dx="1"
|
||||
dy="1"
|
||||
result="offset" />
|
||||
<feComposite
|
||||
id="feComposite3782"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="over"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
</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="845.27383"
|
||||
inkscape:cy="292.95334"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer_background"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="766"
|
||||
inkscape:window-height="401"
|
||||
inkscape:window-x="460"
|
||||
inkscape:window-y="154"
|
||||
inkscape:window-maximized="0"
|
||||
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"
|
||||
id="guide2996"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,0"
|
||||
id="guide2998"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="0,0"
|
||||
id="guide3000"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="1920,2297.1429"
|
||||
id="guide3002"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="32,0"
|
||||
id="guide3029"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1048"
|
||||
id="guide3031"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="1888,0"
|
||||
orientation="1,0"
|
||||
id="guide4176"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="1865.6255,13.404053"
|
||||
orientation="0,1"
|
||||
id="guide4183"
|
||||
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="Background"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer_background"
|
||||
transform="translate(0,28)">
|
||||
<g
|
||||
id="g_background"
|
||||
transform="translate(-162.78572,747.32147)">
|
||||
<image
|
||||
sodipodi:absref="/home/fred/iog/intro-outro-generator/sotm2020/artwork/uct.jpg"
|
||||
xlink:href="uct.jpg"
|
||||
width="1920"
|
||||
height="1080"
|
||||
id="image_background"
|
||||
x="162.78572"
|
||||
y="-775.32147" />
|
||||
<image
|
||||
sodipodi:absref="/home/fred/iog/intro-outro-generator/sotm2020/artwork/sotm2020logo.png"
|
||||
xlink:href="sotm2020logo.png"
|
||||
width="249"
|
||||
height="249"
|
||||
id="image_logo"
|
||||
x="1761.7858"
|
||||
y="-707.60718" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:16px;line-height:0%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;fill-opacity:0.50458717;stroke:none;"
|
||||
x="1886.0262"
|
||||
y="1035.1428"
|
||||
id="text2992-5-5-3"><tspan
|
||||
sodipodi:role="line"
|
||||
x="1886.0262"
|
||||
y="1035.1428"
|
||||
id="url"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:16px;line-height:80.00000119%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;fill-opacity:0.50458717;stroke:none;">$url</tspan></text>
|
||||
<g
|
||||
id="box-und-text1"
|
||||
inkscape:label="#g4270"
|
||||
style="opacity:1"
|
||||
transform="translate(0,10)">
|
||||
<rect
|
||||
style="fill:#333333;fill-opacity:0.70196078"
|
||||
ry="0.0084510781"
|
||||
y="697"
|
||||
x="0"
|
||||
height="310"
|
||||
width="1920"
|
||||
id="rect_banderole_1" />
|
||||
<g
|
||||
transform="matrix(1.3478261,0,0,1.3478261,0,-350.26087)"
|
||||
style="opacity:0.25"
|
||||
id="text1">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="75.964493"
|
||||
y="916.93469"
|
||||
id="text2992"><tspan
|
||||
sodipodi:role="line"
|
||||
x="75.964493"
|
||||
y="920.05188"
|
||||
id="tspan3002"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:89.99999762%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;fill-opacity:1;stroke:none" /><tspan
|
||||
sodipodi:role="line"
|
||||
x="75.964493"
|
||||
y="950.63708"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:47.48387146px;line-height:89.99999762%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#c2ced2;fill-opacity:1;stroke:none"
|
||||
id="tspan857">July 3-5, 2020</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="77.218193"
|
||||
y="837.2262"
|
||||
id="text2992-5"><tspan
|
||||
sodipodi:role="line"
|
||||
x="77.218193"
|
||||
y="837.2262"
|
||||
id="tspan2998-1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:47.48387146px;line-height:100%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none">State of the Ma<tspan
|
||||
style="line-height:120.00000477%"
|
||||
id="tspan861">p 2020</tspan></tspan><tspan
|
||||
sodipodi:role="line"
|
||||
x="77.218193"
|
||||
y="894.20685"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:47.48387146px;line-height:100%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none"
|
||||
id="tspan859"><tspan
|
||||
style="line-height:120.00000477%"
|
||||
id="tspan863">Cape Town (onli</tspan>ne)</tspan><tspan
|
||||
sodipodi:role="line"
|
||||
x="77.218193"
|
||||
y="919.47968"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:47.48387146px;line-height:100%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none"
|
||||
id="tspan853" /></text>
|
||||
</g>
|
||||
</g>
|
||||
<flowRoot
|
||||
xml:space="preserve"
|
||||
id="text2"
|
||||
style="font-style:normal;font-weight:normal;line-height:120.00000477%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:label="#text2"
|
||||
transform="translate(0,10)"><flowRegion
|
||||
id="flowRegion3041"
|
||||
style="line-height:120.00000477%;font-family:sans-serif"><rect
|
||||
id="rect3043"
|
||||
width="1782.4845"
|
||||
height="248.00835"
|
||||
x="105.51553"
|
||||
y="738.59009"
|
||||
style="line-height:120.00000477%;font-family:sans-serif" /></flowRegion><flowPara
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:64.69599915px;line-height:120.00000477%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#c2ced2;fill-opacity:1;stroke:none"
|
||||
id="flowPara3025">$personnames</flowPara><flowPara
|
||||
id="flowPara3048"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:64.69599915px;line-height:120.00000477%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none">$title</flowPara></flowRoot> <text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:16px;line-height:0%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;fill-opacity:0.5;stroke:none;"
|
||||
x="308.53125"
|
||||
y="1038.3694"
|
||||
id="text2992-5-5-3-3"><tspan
|
||||
sodipodi:role="line"
|
||||
x="308.53125"
|
||||
y="1038.3694"
|
||||
id="url-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:16px;line-height:80.00000119%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;fill-opacity:0.5;stroke:none;">Photo: Adrian Frith (CC-BY-SA 3.0)</tspan></text>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
354
sotm2020/artwork/outro.svg
Normal file
|
@ -0,0 +1,354 @@
|
|||
<?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="defs20">
|
||||
<filter
|
||||
id="filter3772"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow">
|
||||
<feFlood
|
||||
id="feFlood3774"
|
||||
flood-opacity="0.5"
|
||||
flood-color="rgb(255,255,255)"
|
||||
result="flood" />
|
||||
<feComposite
|
||||
id="feComposite3776"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3778"
|
||||
in="composite"
|
||||
stdDeviation="3"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset3780"
|
||||
dx="1"
|
||||
dy="1"
|
||||
result="offset" />
|
||||
<feComposite
|
||||
id="feComposite3782"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="over"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
<filter
|
||||
color-interpolation-filters="sRGB"
|
||||
id="filter3772-5"
|
||||
inkscape:label="Drop Shadow">
|
||||
<feFlood
|
||||
id="feFlood3774-9"
|
||||
flood-opacity="0.5"
|
||||
flood-color="rgb(255,255,255)"
|
||||
result="flood" />
|
||||
<feComposite
|
||||
id="feComposite3776-9"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3778-3"
|
||||
stdDeviation="3"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset3780-4"
|
||||
dx="1"
|
||||
dy="1"
|
||||
result="offset" />
|
||||
<feComposite
|
||||
id="feComposite3782-9"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="over"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.9899495"
|
||||
inkscape:cx="1395.8436"
|
||||
inkscape:cy="302.01585"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer_background"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1118"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1080"
|
||||
id="guide2996"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,0"
|
||||
id="guide2998"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="0,0"
|
||||
id="guide3000"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="1920,0"
|
||||
id="guide3002"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="32,0"
|
||||
id="guide3029"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1048"
|
||||
id="guide3031"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="1888,281.42857"
|
||||
orientation="1,0"
|
||||
id="guide4165"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
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="Background"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer_background"
|
||||
transform="translate(0,-476)">
|
||||
<g
|
||||
id="g_background"
|
||||
transform="translate(437.21428,1251.3215)">
|
||||
<image
|
||||
sodipodi:absref="/home/fred/github.com/woodpeck/intro-outro-generator/sotm2020/artwork/sotm2020logo.png"
|
||||
xlink:href="sotm2020logo.png"
|
||||
width="249"
|
||||
height="249"
|
||||
id="image_logo"
|
||||
x="1801.7858"
|
||||
y="-743.32147" />
|
||||
<g
|
||||
id="g_background-5"
|
||||
transform="translate(1.4433594e-5,-2.7832031e-5)">
|
||||
<image
|
||||
sodipodi:absref="/home/fred/github.com/woodpeck/intro-outro-generator/sotm2020/artwork/uct.jpg"
|
||||
xlink:href="uct.jpg"
|
||||
width="1920"
|
||||
height="1080"
|
||||
id="image_background"
|
||||
x="-437.21429"
|
||||
y="-775.32147" />
|
||||
<image
|
||||
sodipodi:absref="/home/fred/github.com/woodpeck/intro-outro-generator/sotm2020/artwork/sotm2020logo.png"
|
||||
xlink:href="sotm2020logo.png"
|
||||
width="249"
|
||||
height="249"
|
||||
id="image_logo-3"
|
||||
x="1163.3287"
|
||||
y="-709.32147" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
id="rect_banderole_1"
|
||||
width="1920"
|
||||
height="310"
|
||||
x="0"
|
||||
y="1213.1692"
|
||||
ry="0.0084510781"
|
||||
style="fill:#333333;fill-opacity:0.70196078" />
|
||||
<g
|
||||
id="text1"
|
||||
style="opacity:0.778"
|
||||
transform="matrix(1.3478261,0,0,1.3478261,0,165.90833)">
|
||||
<text
|
||||
id="text2992"
|
||||
y="916.93469"
|
||||
x="75.964493"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:89.99999762%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;fill-opacity:1;stroke:none"
|
||||
id="tspan3002"
|
||||
y="920.05188"
|
||||
x="75.964493"
|
||||
sodipodi:role="line" /><tspan
|
||||
id="tspan857"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:47.48387146px;line-height:89.99999762%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#c2ced2;fill-opacity:1;stroke:none"
|
||||
y="950.63708"
|
||||
x="75.964493"
|
||||
sodipodi:role="line">July 3-5, 2020</tspan></text>
|
||||
<text
|
||||
id="text2992-5"
|
||||
y="837.2262"
|
||||
x="77.218193"
|
||||
style="font-style:normal;font-weight:normal;line-height:100%;font-family:sans-serif;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:bold;font-stretch:semi-condensed;font-size:47.48387146px;line-height:100%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none"
|
||||
id="tspan2998-1"
|
||||
y="837.2262"
|
||||
x="77.218193"
|
||||
sodipodi:role="line">State of the Ma<tspan
|
||||
id="tspan861"
|
||||
style="line-height:120.00000477%">p 2020</tspan></tspan><tspan
|
||||
id="tspan859"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:47.48387146px;line-height:100%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none"
|
||||
y="894.20685"
|
||||
x="77.218193"
|
||||
sodipodi:role="line"><tspan
|
||||
id="tspan863"
|
||||
style="line-height:120.00000477%">Cape Town (onli</tspan>ne)</tspan><tspan
|
||||
id="tspan853"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:47.48387146px;line-height:100%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none"
|
||||
y="919.47968"
|
||||
x="77.218193"
|
||||
sodipodi:role="line" /></text>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.9786883,0,0,1.9784667,1282.4604,1267.9383)"
|
||||
id="license"
|
||||
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
|
||||
inkscape:export-xdpi="300.23013"
|
||||
inkscape:export-ydpi="300.23013"
|
||||
inkscape:label="#g287">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3817_2_"
|
||||
nodetypes="ccccccc"
|
||||
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 H 179.3569 V 78.63379 c 0,-1.68457 0.16309,-3.24365 2.87842,-3.24365 z"
|
||||
style="fill:#aab2ab" />
|
||||
<g
|
||||
id="g5908_2_"
|
||||
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5906_2_"
|
||||
cx="296.35416"
|
||||
ry="22.939548"
|
||||
cy="264.3577"
|
||||
type="arc"
|
||||
rx="22.939548"
|
||||
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"
|
||||
style="fill:#ffffff" />
|
||||
<g
|
||||
id="g5706_2_"
|
||||
transform="translate(-289.6157,99.0653)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5708_2_"
|
||||
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 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 z" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 297.29639,74.91064 H 181.06688 c -1.24658,0 -2.26074,1.01465 -2.26074,2.26123 v 39.49561 c 0,0.28174 0.22852,0.51074 0.51025,0.51074 h 119.73 c 0.28174,0 0.51074,-0.229 0.51074,-0.51074 v -39.4956 c 0,-1.24659 -1.01416,-2.26124 -2.26074,-2.26124 z m -116.22951,1.02149 h 116.22951 c 0.68359,0 1.23926,0.55615 1.23926,1.23975 0,0 0,15.91943 0,27.41846 H 215.4619 c -3.04492,5.50537 -8.91113,9.24365 -15.64355,9.24365 -6.73535,0 -12.6001,-3.73486 -15.64355,-9.24365 h -4.34814 c 0,-11.49902 0,-27.41846 0,-27.41846 -2e-5,-0.6836 0.55663,-1.23975 1.24022,-1.23975 z"
|
||||
id="path294" />
|
||||
<g
|
||||
id="g313"
|
||||
transform="translate(16.172332)">
|
||||
<circle
|
||||
cx="242.56226"
|
||||
cy="90.224609"
|
||||
r="10.8064"
|
||||
id="circle315"
|
||||
style="fill:#ffffff" />
|
||||
<g
|
||||
id="g317">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 245.68994,87.09766 c 0,-0.4165 -0.33789,-0.75342 -0.75391,-0.75342 h -4.77246 c -0.41602,0 -0.75391,0.33691 -0.75391,0.75342 v 4.77295 h 1.33105 v 5.65234 h 3.61719 v -5.65234 h 1.33203 v -4.77295 z"
|
||||
id="path319" />
|
||||
<circle
|
||||
cx="242.5498"
|
||||
cy="84.083008"
|
||||
r="1.63232"
|
||||
id="circle321" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
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"
|
||||
id="path323"
|
||||
style="clip-rule:evenodd;fill-rule:evenodd" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="241.48044"
|
||||
y="113.75954"
|
||||
id="text3393"
|
||||
transform="scale(0.999944,1.000056)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3395"
|
||||
x="241.48044"
|
||||
y="113.75954"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.84473801px;line-height:1.25;font-family:Helvetica;-inkscape-font-specification:'Helvetica Bold'"> BY 3.0+</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="298.34009"
|
||||
y="139.13193"
|
||||
id="text2992-5-5-3"><tspan
|
||||
sodipodi:role="line"
|
||||
x="298.34009"
|
||||
y="139.13193"
|
||||
id="url"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:9.43438721px;line-height:80.00000119%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;fill-opacity:0.63761465;stroke:none">https://creativecommons.org/licenses/by/3.0/</tspan></text>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:0.63921571;stroke:none;"
|
||||
x="30.53124"
|
||||
y="1542.5386"
|
||||
id="text2992-5-5-3-3"><tspan
|
||||
sodipodi:role="line"
|
||||
x="30.53124"
|
||||
y="1542.5386"
|
||||
id="url-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:16px;line-height:80.00000119%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ffffff;fill-opacity:0.63921571;stroke:none;">Photo: Adrian Frith (CC BY-SA 3.0)</tspan></text>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
199
sotm2020/artwork/pause.svg
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://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="pause.svg">
|
||||
<defs
|
||||
id="defs20">
|
||||
<filter
|
||||
id="filter3772"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow">
|
||||
<feFlood
|
||||
id="feFlood3774"
|
||||
flood-opacity="0.5"
|
||||
flood-color="rgb(255,255,255)"
|
||||
result="flood" />
|
||||
<feComposite
|
||||
id="feComposite3776"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3778"
|
||||
in="composite"
|
||||
stdDeviation="3"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset3780"
|
||||
dx="1"
|
||||
dy="1"
|
||||
result="offset" />
|
||||
<feComposite
|
||||
id="feComposite3782"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="over"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
</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="902.91685"
|
||||
inkscape:cy="77.580926"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer_background"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="1795"
|
||||
inkscape:window-height="802"
|
||||
inkscape:window-x="575"
|
||||
inkscape:window-y="359"
|
||||
inkscape:window-maximized="0">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1080"
|
||||
id="guide2996"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,0"
|
||||
id="guide2998"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="0,0"
|
||||
id="guide3000"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="1920,0"
|
||||
id="guide3002"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="32,0"
|
||||
id="guide3029"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,1048"
|
||||
id="guide3031"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="1888,0"
|
||||
orientation="1,0"
|
||||
id="guide4168"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Background"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer_background"
|
||||
transform="translate(0,-476)">
|
||||
<image
|
||||
sodipodi:absref="/home/fred/iog/intro-outro-generator/sotm2020/artwork/uct.jpg"
|
||||
xlink:href="uct.jpg"
|
||||
width="1920"
|
||||
height="1080"
|
||||
id="image_background"
|
||||
y="476.00003"
|
||||
x="8.2519534e-07" />
|
||||
<image
|
||||
sodipodi:absref="/home/fred/iog/intro-outro-generator/sotm2020/artwork/sotm2020logo.png"
|
||||
xlink:href="sotm2020logo.png"
|
||||
width="249"
|
||||
height="249"
|
||||
id="image_logo"
|
||||
x="1604.4315"
|
||||
y="542.50763" />
|
||||
<rect
|
||||
id="rect_banderole_1"
|
||||
width="1920"
|
||||
height="310"
|
||||
x="-8.2519534e-07"
|
||||
y="1211"
|
||||
ry="0.0084510781"
|
||||
style="fill:#333333;fill-opacity:0.70196078;stroke-width:1.8455869" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:16px;line-height:0%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
x="312.51779"
|
||||
y="1544.2526"
|
||||
id="text2992-5-5-3-3"><tspan
|
||||
sodipodi:role="line"
|
||||
x="312.51779"
|
||||
y="1544.2526"
|
||||
id="url-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:16px;line-height:80.00000119%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Bold Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;writing-mode:lr-tb;text-anchor:end;fill:#f2f4f5;fill-opacity:1;stroke:none;stroke-width:0.99999994">Photo: Adrian Frith (CC-BY-SA 3.0)</tspan></text>
|
||||
<g
|
||||
style="opacity:1"
|
||||
id="text2"
|
||||
transform="matrix(1.3478261,0,0,1.3478261,-8.2519532e-7,163.73916)">
|
||||
<text
|
||||
id="text39"
|
||||
y="837.2262"
|
||||
x="77.218193"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:89.99999762%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none"
|
||||
id="tspan41"
|
||||
y="837.2262"
|
||||
x="77.218193"
|
||||
sodipodi:role="line">more SotM coming soon...</tspan></text>
|
||||
</g>
|
||||
<flowRoot
|
||||
xml:space="preserve"
|
||||
id="flowRoot5735"
|
||||
style="fill:#ffffff;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.50458717;font-family:sans-serif;font-style:normal;font-weight:normal;font-size:40px;line-height:125%;letter-spacing:0px;word-spacing:0px;"><flowRegion
|
||||
id="flowRegion5737"
|
||||
style="fill:#ffffff;fill-opacity:0.50458717;"><rect
|
||||
id="rect5739"
|
||||
width="585.88849"
|
||||
height="232.33508"
|
||||
x="-117.1777"
|
||||
y="978.98474"
|
||||
style="fill:#ffffff;fill-opacity:0.50458717;" /></flowRegion><flowPara
|
||||
id="flowPara5741"></flowPara></flowRoot> </g>
|
||||
</svg>
|
After Width: | Height: | Size: 7 KiB |
BIN
sotm2020/artwork/sotm2020logo.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
sotm2020/artwork/uct.jpg
Normal file
After Width: | Height: | Size: 1.9 MiB |