asg2017: Improve/fix animations
This commit is contained in:
parent
7d5bfac3b9
commit
7b19aa5b20
2 changed files with 279 additions and 233 deletions
|
@ -45,43 +45,68 @@ def introFrames(parameters):
|
||||||
yield []
|
yield []
|
||||||
|
|
||||||
def pauseFrames(parameters):
|
def pauseFrames(parameters):
|
||||||
frames = 25*3
|
frames = 1*fps
|
||||||
for i in range(0, frames):
|
for i in range(0, frames):
|
||||||
yield (
|
yield (
|
||||||
('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
|
('pause', 'attr', 'opacity', '%.4f' % easeLinear(i, 0, 1, frames)),
|
||||||
|
('details', 'attr', 'opacity', '%.4f' % easeLinear(i, 1, -1, frames)),
|
||||||
)
|
)
|
||||||
|
frames = 2*fps
|
||||||
frames = 25*1
|
|
||||||
for i in range(0, frames):
|
for i in range(0, frames):
|
||||||
yield (
|
yield (
|
||||||
('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
|
('pause', 'attr', 'opacity', '1'),
|
||||||
|
('details', 'attr', 'opacity', '0'),
|
||||||
|
)
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('pause', 'attr', 'opacity', '%.4f' % easeLinear(i, 1, -1, frames)),
|
||||||
|
('details', 'attr', 'opacity', '%.4f' % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('pause', 'attr', 'opacity', '0'),
|
||||||
|
('details', 'attr', 'opacity', '1'),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def outroFrames(p):
|
def outroFrames(p):
|
||||||
# 2 Sekunden stehen bleiben
|
# 2 Sekunden stehen bleiben
|
||||||
frames = 2*fps
|
frames = 2*fps
|
||||||
for i in range(0, frames):
|
for i in range(0, frames):
|
||||||
yield (
|
yield (
|
||||||
('sponsoredby', 'style', 'opacity', "%.4f" % 1),
|
('sponsoredby', 'style', 'opacity', "1"),
|
||||||
('recordedby', 'style', 'opacity', "%.4f" % 0),
|
('recordedby', 'style', 'opacity', "0"),
|
||||||
|
('cc', 'style', 'opacity', "0"),
|
||||||
)
|
)
|
||||||
frames = 1*fps
|
frames = 1*fps
|
||||||
for i in range(0, frames):
|
for i in range(0, frames):
|
||||||
yield (
|
yield (
|
||||||
('sponsoredby', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
('sponsoredby', 'style', 'opacity', "%.4f" % easeInOutQuad(i, 1, -1, frames)),
|
||||||
('recordedby', 'style', 'opacity', "%.4f" % 0),
|
('recordedby', 'style', 'opacity', "%.4f" % easeInOutQuad(i, 0, 1, frames)),
|
||||||
|
('cc', 'style', 'opacity', "0"),
|
||||||
)
|
)
|
||||||
frames = 1*fps
|
frames = 1*fps
|
||||||
for i in range(0, frames):
|
for i in range(0, frames):
|
||||||
yield (
|
yield (
|
||||||
('sponsoredby', 'style', 'opacity', "%.4f" % 0),
|
('sponsoredby', 'style', 'opacity', "0"),
|
||||||
('recoededby', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
('recordedby', 'style', 'opacity', "1"),
|
||||||
|
('cc', 'style', 'opacity', "0"),
|
||||||
)
|
)
|
||||||
frames = 2*fps
|
frames = 1*fps
|
||||||
for i in range(0, frames):
|
for i in range(0, frames):
|
||||||
yield []
|
yield (
|
||||||
|
('sponsoredby', 'style', 'opacity', "0"),
|
||||||
|
('recordedby', 'style', 'opacity', "%.4f" % easeInOutQuad(i, 1, -1, frames)),
|
||||||
|
('cc', 'style', 'opacity', "%.4f" % easeInOutQuad(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('sponsoredby', 'style', 'opacity', "0"),
|
||||||
|
('recordedby', 'style', 'opacity', "0"),
|
||||||
|
('cc', 'style', 'opacity', "1"),
|
||||||
|
)
|
||||||
|
|
||||||
def backgroundFrames(parameters):
|
def backgroundFrames(parameters):
|
||||||
return
|
return
|
||||||
|
@ -106,24 +131,24 @@ def backgroundFrames(parameters):
|
||||||
)
|
)
|
||||||
|
|
||||||
def debug():
|
def debug():
|
||||||
render(
|
# render(
|
||||||
'intro.svg',
|
# 'intro.svg',
|
||||||
'../intro.ts',
|
# '../intro.ts',
|
||||||
introFrames,
|
# introFrames,
|
||||||
{
|
# {
|
||||||
'$ID': 4711,
|
# '$ID': 4711,
|
||||||
'$TITLE': "Long Long Long title is LONG",
|
# '$TITLE': "Long Long Long title is LONG",
|
||||||
'$COMPANY': 'Long Running Co',
|
# '$COMPANY': 'Long Running Co',
|
||||||
'$SPEAKER': 'Dr. Dr. Prof. Dr. Long Long'
|
# '$SPEAKER': 'Dr. Dr. Prof. Dr. Long Long'
|
||||||
}
|
# }
|
||||||
)
|
# )
|
||||||
|
|
||||||
# render(
|
# render(
|
||||||
# 'pause.svg',
|
# 'pause.svg',
|
||||||
# '../pause.ts',
|
# '../pause.ts',
|
||||||
# pauseFrames
|
# pauseFrames
|
||||||
# )
|
# )
|
||||||
#
|
|
||||||
render(
|
render(
|
||||||
'outro.svg',
|
'outro.svg',
|
||||||
'../outro.ts',
|
'../outro.ts',
|
||||||
|
|
|
@ -74,9 +74,9 @@
|
||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="0.7"
|
inkscape:zoom="3.959798"
|
||||||
inkscape:cx="1014.9289"
|
inkscape:cx="717.30067"
|
||||||
inkscape:cy="184.59441"
|
inkscape:cy="67.703085"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="g5787"
|
inkscape:current-layer="g5787"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
|
@ -85,7 +85,18 @@
|
||||||
inkscape:window-height="1016"
|
inkscape:window-height="1016"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="27"
|
inkscape:window-y="27"
|
||||||
inkscape:window-maximized="1" />
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="940.71429,168.57143"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide7252" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="875,70"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide7254" />
|
||||||
|
</sodipodi:namedview>
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata6424">
|
id="metadata6424">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
|
@ -352,110 +363,6 @@
|
||||||
y="0"
|
y="0"
|
||||||
x="0 24.309 40.367001 56.424999 79.846001 98.235001 108.78 124.061 139.342 161.69 172.97501 184.25999 196.174 214.563 235.616 254.005 270.06299 291.92999 328.26401 346.65302 358.56699 379.47198 402.375 412.92001 424.20499">https://all-systems-go.io</tspan>
|
x="0 24.309 40.367001 56.424999 79.846001 98.235001 108.78 124.061 139.342 161.69 172.97501 184.25999 196.174 214.563 235.616 254.005 270.06299 291.92999 328.26401 346.65302 358.56699 379.47198 402.375 412.92001 424.20499">https://all-systems-go.io</tspan>
|
||||||
</text>
|
</text>
|
||||||
<g
|
|
||||||
id="bleh"
|
|
||||||
style="fill:#000000">
|
|
||||||
<text
|
|
||||||
y="-103.6201"
|
|
||||||
x="383.23898"
|
|
||||||
transform="scale(1,-1)"
|
|
||||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
||||||
id="text5913">
|
|
||||||
<tspan
|
|
||||||
x="383.23898"
|
|
||||||
y="-103.6201"
|
|
||||||
id="tspan5915"
|
|
||||||
style="fill:#000000">R</tspan>
|
|
||||||
</text>
|
|
||||||
<text
|
|
||||||
y="-104.19091"
|
|
||||||
x="417.31079"
|
|
||||||
transform="scale(1,-1)"
|
|
||||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
||||||
id="text5917">
|
|
||||||
<tspan
|
|
||||||
sodipodi:role="line"
|
|
||||||
id="tspan5919"
|
|
||||||
x="417.31079"
|
|
||||||
y="-104.19091">ECORDED</tspan>
|
|
||||||
</text>
|
|
||||||
<text
|
|
||||||
y="-103.6201"
|
|
||||||
x="581.79248"
|
|
||||||
transform="scale(1,-1)"
|
|
||||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
||||||
id="text5921">
|
|
||||||
<tspan
|
|
||||||
x="581.79248 603.11169"
|
|
||||||
y="-103.6201"
|
|
||||||
sodipodi:role="line"
|
|
||||||
id="tspan5923">BY</tspan>
|
|
||||||
</text>
|
|
||||||
<text
|
|
||||||
y="-103.6201"
|
|
||||||
x="621.53558"
|
|
||||||
transform="scale(1,-1)"
|
|
||||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
||||||
id="text5925">
|
|
||||||
<tspan
|
|
||||||
x="621.53558"
|
|
||||||
y="-103.6201"
|
|
||||||
id="tspan5927"
|
|
||||||
style="fill:#000000">:</tspan>
|
|
||||||
</text>
|
|
||||||
<g
|
|
||||||
id="g4983"
|
|
||||||
style="fill:#000000">
|
|
||||||
<g
|
|
||||||
id="g3899"
|
|
||||||
transform="matrix(0.32497885,0,0,-0.32497885,685.14216,191.51986)"
|
|
||||||
style="opacity:1;fill:#000000;fill-opacity:1">
|
|
||||||
<path
|
|
||||||
id="path3901"
|
|
||||||
d="m 294.407,7.95792 c 6.213,1.027 19.117,20.42198 17.554,56.04198 -4.3,2.287 -9.289,0.945 -12.547,0.894 -10.184,-2.682 -0.678,-29.555 -14.953,-39.546 C 263.79,10.8809 119.447,14.4069 45.5808,21.1209 13.592,24.0289 17.478,87.0639 16.8569,120.43 c -0.5169,27.768 0.4448,58.119 11.4189,88.93 9.4468,26.524 44.2989,17.409 75.9712,18.571 56.978,0 160.981,1.883 173.53,-3.125 9.092,-3.629 12.796,-16.972 14.709,-25.575 3.351,-15.069 -0.168,-25.607 11.822,-25.324 6.313,0.149 7.555,5.857 6.592,16.772 -1.001,11.346 -4.393,26.441 -9.128,44.005 -3.421,12.688 -27.012,10.129 -42.628,10.129 C 180.218,242.704 100.45,245.236 24.0554,243.125 1.9155,242.514 1.46946,137.911 0.285625,118.923 -1.10525,96.6069 2.51438,7.01993 21.3615,6.01993 35.3674,5.27692 113.628,0.0309143 159.959,0.0189209 205.016,0.00692749 252.988,1.11093 294.407,7.95792"
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
id="path3903"
|
|
||||||
d="m 223.69,24.0759 c 5.487,15.616 -8.019,40.096 12.24,48.537 73.438,12.662 159.117,-14.772 221.582,23.635 16.882,16.4601 29.544,35.4531 37.563,55.7121 l 0,-9.285 c -9.285,-25.746 -28.278,-47.6931 -46.427,-70.0621 5.065,-6.753 10.974,1.266 16.038,3.376 18.571,23.213 37.563,46.8491 44.739,74.7051 1.265,1.688 3.798,5.065 5.908,2.11 l 2.955,-2.954 c -6.331,-29.966 -25.324,-54.4461 -41.362,-80.1921 7.175,-4.643 14.35,3.377 20.259,8.019 12.24,20.259 25.746,40.5181 30.388,64.1531 3.376,2.532 7.597,-2.11 9.285,-5.065 -2.532,-18.571 -8.864,-35.031 -16.461,-50.6471 1.266,-2.11 1.266,-5.065 4.221,-5.065 18.149,9.707 17.727,30.8111 24.057,47.2711 5.909,-0.422 8.863,-18.993 16.46,-8.019 2.532,6.753 -10.129,17.305 2.955,18.149 -6.331,30.388 -39.674,54.024 -68.796,60.777 -15.194,3.376 -35.453,8.018 -46.849,-3.798 2.11,-5.487 9.707,-6.331 15.194,-7.175 33.765,-1.266 65.842,-13.506 86.101,-40.518 l -0.844,-0.844 c -32.077,21.525 -71.75,42.206 -111.424,26.168 -3.376,-0.844 -5.065,-5.487 -2.954,-8.019 0.844,-2.532 -1.688,-3.798 -2.955,-4.221 -67.108,2.954 -137.596,-6.324 -202.593,4.227 -7.13,1.158 -7.934,7.746 -9.284,13.082 -3.414,13.511 5.21,32.647 -2.824,39.846 0,0 -5.936,1.741 -10.256,-0.177 -1.011,-5.609 -4.227,-37.144 2.948,-54.026 9.077,-21.357 89.954,-14.153 113.334,-14.626 42.722,-0.863 92.638,-2.254 132.734,0.701 -11.396,-11.396 -29.122,-11.818 -46.427,-11.396 -54.868,-0.844 -140.604,-0.559 -175.376,-2.466 -51.431,-2.822 -69.842,48.893 -102.341,82.658 l -15.194,0 c 20.259,-28.277 42.097,-60.522 70.062,-85.256 4.509,-3.988 7.645,-4.615 15.194,-6.752 21.025,-5.953 224.959,0.844 224.959,0.844 9.285,2.11 19.415,3.376 28.278,7.174 -5.065,-13.084 -21.525,-16.46 -34.609,-18.147 -73.017,-2.11 -146.877,-0.422 -218.628,-5.065 -19.415,-5.909 -29.544,-29.9661 -44.739,-44.7391 l -32.499,-41.362 16.46,0.844 c 21.103,24.479 35.575,54.506 62.887,73.8601 6.02,4.266 134.602,3.027 202.584,2.954 10.96,-0.012 33.77,7.175 48.542,15.195 2.532,-3.376 -1.688,-6.331 -4.221,-8.863 -30.811,-29.5441 -94.362,-20.3431 -117.328,-20.2641 -40.285,0.14 -88.233,8.522 -121.559,-12.235 -8.141,-5.071 -6.752,-35.875 -2.953,-52.758 l 10.973,0"
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
id="path3905"
|
|
||||||
d="m 575.267,153.649 c -7.175,30.389 -29.544,57.822 -57.823,73.017 -17.727,3.799 -40.518,15.616 -54.868,-2.11 9.708,-8.863 27.434,-2.954 38.83,-10.13 29.544,-8.441 53.858,-34.474 68.796,-60.777 1.91,-1.321 3.195,-2.823 5.065,0"
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
id="path3907"
|
|
||||||
d="m 584.142,179.84 c -5.065,26.168 -17.727,53.602 -44.739,66.686 -11.818,5.487 -30.388,11.818 -41.362,2.11 l 0,-4.221 c 41.784,1.688 62.887,-42.206 79.77,-71.75 4.643,-0.422 5.065,3.798 6.331,7.175"
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
id="path3909"
|
|
||||||
d="m 611.567,280.265 c 19.879,4.224 39.249,-15.615 43.47,10.131 -16.883,8.863 -39.674,6.331 -57.4,1.266 -3.799,7.597 1.688,16.038 0,25.324 -2.532,24.902 -11.818,48.537 -33.765,63.731 -6.357,3.3 -7.677,5.247 -11.431,5.909 1.138,-5.702 1.527,-10.353 2.5,-13.899 4.346,-2.92 23.503,-15.22 24.125,-31.684 9.707,-34.609 -0.844,-68.796 -24.058,-94.12 l 15.194,-13.928 c 8.863,17.726 18.896,42.495 41.364,47.269"
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
id="path3911"
|
|
||||||
d="m 542.769,257.054 c 24.479,47.271 1.688,102.561 -4.221,151.098 2.532,18.149 5.065,36.719 20.259,49.381 -1.688,4.221 0.844,14.772 -5.909,12.24 -21.525,-11.396 -28.7,-34.187 -28.278,-57.822 -0.844,-41.784 21.525,-75.127 16.038,-117.333 L 536.86,286.6 c -17.305,18.57 -36.719,41.784 -35.453,70.905 l -11.396,2.11 c -12.662,-40.518 31.655,-63.743 37.564,-100.04 0,0 9.707,-3.786 15.194,-2.521"
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
</g>
|
|
||||||
<text
|
|
||||||
xml:space="preserve"
|
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.13311577px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
x="737.67926"
|
|
||||||
y="-78.157478"
|
|
||||||
id="text3926"
|
|
||||||
sodipodi:linespacing="125%"
|
|
||||||
transform="scale(1,-1)"><tspan
|
|
||||||
sodipodi:role="line"
|
|
||||||
id="tspan3928"
|
|
||||||
x="737.67926"
|
|
||||||
y="-78.157478"
|
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1">www.c3voc.de</tspan></text>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g
|
<g
|
||||||
transform="translate(-0.23152501,0.19348027)"
|
transform="translate(-0.23152501,0.19348027)"
|
||||||
id="sponsoredby">
|
id="sponsoredby">
|
||||||
|
@ -876,99 +783,54 @@
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
style="fill:#000000"
|
id="recordedby"
|
||||||
id="g5808"
|
style="opacity:1">
|
||||||
inkscape:label="#recordedby">
|
<g
|
||||||
<text
|
transform="matrix(0.89056662,0,0,0.89056662,86.164111,12.885503)"
|
||||||
id="text5810"
|
id="g7240"
|
||||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
style="">
|
||||||
transform="scale(1,-1)"
|
|
||||||
x="383.23898"
|
|
||||||
y="-103.6201">
|
|
||||||
<tspan
|
|
||||||
style="fill:#000000"
|
|
||||||
id="tspan5812"
|
|
||||||
y="-103.6201"
|
|
||||||
x="383.23898">R</tspan>
|
|
||||||
</text>
|
|
||||||
<text
|
|
||||||
id="text5814"
|
|
||||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
||||||
transform="scale(1,-1)"
|
|
||||||
x="417.31079"
|
|
||||||
y="-104.19091">
|
|
||||||
<tspan
|
|
||||||
y="-104.19091"
|
|
||||||
x="417.31079"
|
|
||||||
id="tspan5816"
|
|
||||||
sodipodi:role="line">ECORDED</tspan>
|
|
||||||
</text>
|
|
||||||
<text
|
|
||||||
id="text5818"
|
|
||||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
||||||
transform="scale(1,-1)"
|
|
||||||
x="581.79248"
|
|
||||||
y="-103.6201">
|
|
||||||
<tspan
|
|
||||||
id="tspan5820"
|
|
||||||
sodipodi:role="line"
|
|
||||||
y="-103.6201"
|
|
||||||
x="581.79248 603.11169">BY</tspan>
|
|
||||||
</text>
|
|
||||||
<text
|
|
||||||
id="text5822"
|
|
||||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
||||||
transform="scale(1,-1)"
|
|
||||||
x="621.53558"
|
|
||||||
y="-103.6201">
|
|
||||||
<tspan
|
|
||||||
style="fill:#000000"
|
|
||||||
id="tspan5824"
|
|
||||||
y="-103.6201"
|
|
||||||
x="621.53558">:</tspan>
|
|
||||||
</text>
|
|
||||||
<g
|
<g
|
||||||
style="fill:#000000"
|
style="fill:#000000"
|
||||||
id="g5826">
|
id="g4983">
|
||||||
<g
|
<g
|
||||||
style="opacity:1;fill:#000000;fill-opacity:1"
|
style="opacity:1;fill:#000000;fill-opacity:1"
|
||||||
transform="matrix(0.32497885,0,0,-0.32497885,685.14216,191.51986)"
|
transform="matrix(0.32497885,0,0,-0.32497885,685.14216,191.51986)"
|
||||||
id="g5828">
|
id="g3899">
|
||||||
<path
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
d="m 294.407,7.95792 c 6.213,1.027 19.117,20.42198 17.554,56.04198 -4.3,2.287 -9.289,0.945 -12.547,0.894 -10.184,-2.682 -0.678,-29.555 -14.953,-39.546 C 263.79,10.8809 119.447,14.4069 45.5808,21.1209 13.592,24.0289 17.478,87.0639 16.8569,120.43 c -0.5169,27.768 0.4448,58.119 11.4189,88.93 9.4468,26.524 44.2989,17.409 75.9712,18.571 56.978,0 160.981,1.883 173.53,-3.125 9.092,-3.629 12.796,-16.972 14.709,-25.575 3.351,-15.069 -0.168,-25.607 11.822,-25.324 6.313,0.149 7.555,5.857 6.592,16.772 -1.001,11.346 -4.393,26.441 -9.128,44.005 -3.421,12.688 -27.012,10.129 -42.628,10.129 C 180.218,242.704 100.45,245.236 24.0554,243.125 1.9155,242.514 1.46946,137.911 0.285625,118.923 -1.10525,96.6069 2.51438,7.01993 21.3615,6.01993 35.3674,5.27692 113.628,0.0309143 159.959,0.0189209 205.016,0.00692749 252.988,1.11093 294.407,7.95792"
|
d="m 294.407,7.95792 c 6.213,1.027 19.117,20.42198 17.554,56.04198 -4.3,2.287 -9.289,0.945 -12.547,0.894 -10.184,-2.682 -0.678,-29.555 -14.953,-39.546 C 263.79,10.8809 119.447,14.4069 45.5808,21.1209 13.592,24.0289 17.478,87.0639 16.8569,120.43 c -0.5169,27.768 0.4448,58.119 11.4189,88.93 9.4468,26.524 44.2989,17.409 75.9712,18.571 56.978,0 160.981,1.883 173.53,-3.125 9.092,-3.629 12.796,-16.972 14.709,-25.575 3.351,-15.069 -0.168,-25.607 11.822,-25.324 6.313,0.149 7.555,5.857 6.592,16.772 -1.001,11.346 -4.393,26.441 -9.128,44.005 -3.421,12.688 -27.012,10.129 -42.628,10.129 C 180.218,242.704 100.45,245.236 24.0554,243.125 1.9155,242.514 1.46946,137.911 0.285625,118.923 -1.10525,96.6069 2.51438,7.01993 21.3615,6.01993 35.3674,5.27692 113.628,0.0309143 159.959,0.0189209 205.016,0.00692749 252.988,1.11093 294.407,7.95792"
|
||||||
id="path5830" />
|
id="path3901" />
|
||||||
<path
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
d="m 223.69,24.0759 c 5.487,15.616 -8.019,40.096 12.24,48.537 73.438,12.662 159.117,-14.772 221.582,23.635 16.882,16.4601 29.544,35.4531 37.563,55.7121 l 0,-9.285 c -9.285,-25.746 -28.278,-47.6931 -46.427,-70.0621 5.065,-6.753 10.974,1.266 16.038,3.376 18.571,23.213 37.563,46.8491 44.739,74.7051 1.265,1.688 3.798,5.065 5.908,2.11 l 2.955,-2.954 c -6.331,-29.966 -25.324,-54.4461 -41.362,-80.1921 7.175,-4.643 14.35,3.377 20.259,8.019 12.24,20.259 25.746,40.5181 30.388,64.1531 3.376,2.532 7.597,-2.11 9.285,-5.065 -2.532,-18.571 -8.864,-35.031 -16.461,-50.6471 1.266,-2.11 1.266,-5.065 4.221,-5.065 18.149,9.707 17.727,30.8111 24.057,47.2711 5.909,-0.422 8.863,-18.993 16.46,-8.019 2.532,6.753 -10.129,17.305 2.955,18.149 -6.331,30.388 -39.674,54.024 -68.796,60.777 -15.194,3.376 -35.453,8.018 -46.849,-3.798 2.11,-5.487 9.707,-6.331 15.194,-7.175 33.765,-1.266 65.842,-13.506 86.101,-40.518 l -0.844,-0.844 c -32.077,21.525 -71.75,42.206 -111.424,26.168 -3.376,-0.844 -5.065,-5.487 -2.954,-8.019 0.844,-2.532 -1.688,-3.798 -2.955,-4.221 -67.108,2.954 -137.596,-6.324 -202.593,4.227 -7.13,1.158 -7.934,7.746 -9.284,13.082 -3.414,13.511 5.21,32.647 -2.824,39.846 0,0 -5.936,1.741 -10.256,-0.177 -1.011,-5.609 -4.227,-37.144 2.948,-54.026 9.077,-21.357 89.954,-14.153 113.334,-14.626 42.722,-0.863 92.638,-2.254 132.734,0.701 -11.396,-11.396 -29.122,-11.818 -46.427,-11.396 -54.868,-0.844 -140.604,-0.559 -175.376,-2.466 -51.431,-2.822 -69.842,48.893 -102.341,82.658 l -15.194,0 c 20.259,-28.277 42.097,-60.522 70.062,-85.256 4.509,-3.988 7.645,-4.615 15.194,-6.752 21.025,-5.953 224.959,0.844 224.959,0.844 9.285,2.11 19.415,3.376 28.278,7.174 -5.065,-13.084 -21.525,-16.46 -34.609,-18.147 -73.017,-2.11 -146.877,-0.422 -218.628,-5.065 -19.415,-5.909 -29.544,-29.9661 -44.739,-44.7391 l -32.499,-41.362 16.46,0.844 c 21.103,24.479 35.575,54.506 62.887,73.8601 6.02,4.266 134.602,3.027 202.584,2.954 10.96,-0.012 33.77,7.175 48.542,15.195 2.532,-3.376 -1.688,-6.331 -4.221,-8.863 -30.811,-29.5441 -94.362,-20.3431 -117.328,-20.2641 -40.285,0.14 -88.233,8.522 -121.559,-12.235 -8.141,-5.071 -6.752,-35.875 -2.953,-52.758 l 10.973,0"
|
d="m 223.69,24.0759 c 5.487,15.616 -8.019,40.096 12.24,48.537 73.438,12.662 159.117,-14.772 221.582,23.635 16.882,16.4601 29.544,35.4531 37.563,55.7121 l 0,-9.285 c -9.285,-25.746 -28.278,-47.6931 -46.427,-70.0621 5.065,-6.753 10.974,1.266 16.038,3.376 18.571,23.213 37.563,46.8491 44.739,74.7051 1.265,1.688 3.798,5.065 5.908,2.11 l 2.955,-2.954 c -6.331,-29.966 -25.324,-54.4461 -41.362,-80.1921 7.175,-4.643 14.35,3.377 20.259,8.019 12.24,20.259 25.746,40.5181 30.388,64.1531 3.376,2.532 7.597,-2.11 9.285,-5.065 -2.532,-18.571 -8.864,-35.031 -16.461,-50.6471 1.266,-2.11 1.266,-5.065 4.221,-5.065 18.149,9.707 17.727,30.8111 24.057,47.2711 5.909,-0.422 8.863,-18.993 16.46,-8.019 2.532,6.753 -10.129,17.305 2.955,18.149 -6.331,30.388 -39.674,54.024 -68.796,60.777 -15.194,3.376 -35.453,8.018 -46.849,-3.798 2.11,-5.487 9.707,-6.331 15.194,-7.175 33.765,-1.266 65.842,-13.506 86.101,-40.518 l -0.844,-0.844 c -32.077,21.525 -71.75,42.206 -111.424,26.168 -3.376,-0.844 -5.065,-5.487 -2.954,-8.019 0.844,-2.532 -1.688,-3.798 -2.955,-4.221 -67.108,2.954 -137.596,-6.324 -202.593,4.227 -7.13,1.158 -7.934,7.746 -9.284,13.082 -3.414,13.511 5.21,32.647 -2.824,39.846 0,0 -5.936,1.741 -10.256,-0.177 -1.011,-5.609 -4.227,-37.144 2.948,-54.026 9.077,-21.357 89.954,-14.153 113.334,-14.626 42.722,-0.863 92.638,-2.254 132.734,0.701 -11.396,-11.396 -29.122,-11.818 -46.427,-11.396 -54.868,-0.844 -140.604,-0.559 -175.376,-2.466 -51.431,-2.822 -69.842,48.893 -102.341,82.658 l -15.194,0 c 20.259,-28.277 42.097,-60.522 70.062,-85.256 4.509,-3.988 7.645,-4.615 15.194,-6.752 21.025,-5.953 224.959,0.844 224.959,0.844 9.285,2.11 19.415,3.376 28.278,7.174 -5.065,-13.084 -21.525,-16.46 -34.609,-18.147 -73.017,-2.11 -146.877,-0.422 -218.628,-5.065 -19.415,-5.909 -29.544,-29.9661 -44.739,-44.7391 l -32.499,-41.362 16.46,0.844 c 21.103,24.479 35.575,54.506 62.887,73.8601 6.02,4.266 134.602,3.027 202.584,2.954 10.96,-0.012 33.77,7.175 48.542,15.195 2.532,-3.376 -1.688,-6.331 -4.221,-8.863 -30.811,-29.5441 -94.362,-20.3431 -117.328,-20.2641 -40.285,0.14 -88.233,8.522 -121.559,-12.235 -8.141,-5.071 -6.752,-35.875 -2.953,-52.758 l 10.973,0"
|
||||||
id="path5832" />
|
id="path3903" />
|
||||||
<path
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
d="m 575.267,153.649 c -7.175,30.389 -29.544,57.822 -57.823,73.017 -17.727,3.799 -40.518,15.616 -54.868,-2.11 9.708,-8.863 27.434,-2.954 38.83,-10.13 29.544,-8.441 53.858,-34.474 68.796,-60.777 1.91,-1.321 3.195,-2.823 5.065,0"
|
d="m 575.267,153.649 c -7.175,30.389 -29.544,57.822 -57.823,73.017 -17.727,3.799 -40.518,15.616 -54.868,-2.11 9.708,-8.863 27.434,-2.954 38.83,-10.13 29.544,-8.441 53.858,-34.474 68.796,-60.777 1.91,-1.321 3.195,-2.823 5.065,0"
|
||||||
id="path5834" />
|
id="path3905" />
|
||||||
<path
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
d="m 584.142,179.84 c -5.065,26.168 -17.727,53.602 -44.739,66.686 -11.818,5.487 -30.388,11.818 -41.362,2.11 l 0,-4.221 c 41.784,1.688 62.887,-42.206 79.77,-71.75 4.643,-0.422 5.065,3.798 6.331,7.175"
|
d="m 584.142,179.84 c -5.065,26.168 -17.727,53.602 -44.739,66.686 -11.818,5.487 -30.388,11.818 -41.362,2.11 l 0,-4.221 c 41.784,1.688 62.887,-42.206 79.77,-71.75 4.643,-0.422 5.065,3.798 6.331,7.175"
|
||||||
id="path5836" />
|
id="path3907" />
|
||||||
<path
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
d="m 611.567,280.265 c 19.879,4.224 39.249,-15.615 43.47,10.131 -16.883,8.863 -39.674,6.331 -57.4,1.266 -3.799,7.597 1.688,16.038 0,25.324 -2.532,24.902 -11.818,48.537 -33.765,63.731 -6.357,3.3 -7.677,5.247 -11.431,5.909 1.138,-5.702 1.527,-10.353 2.5,-13.899 4.346,-2.92 23.503,-15.22 24.125,-31.684 9.707,-34.609 -0.844,-68.796 -24.058,-94.12 l 15.194,-13.928 c 8.863,17.726 18.896,42.495 41.364,47.269"
|
d="m 611.567,280.265 c 19.879,4.224 39.249,-15.615 43.47,10.131 -16.883,8.863 -39.674,6.331 -57.4,1.266 -3.799,7.597 1.688,16.038 0,25.324 -2.532,24.902 -11.818,48.537 -33.765,63.731 -6.357,3.3 -7.677,5.247 -11.431,5.909 1.138,-5.702 1.527,-10.353 2.5,-13.899 4.346,-2.92 23.503,-15.22 24.125,-31.684 9.707,-34.609 -0.844,-68.796 -24.058,-94.12 l 15.194,-13.928 c 8.863,17.726 18.896,42.495 41.364,47.269"
|
||||||
id="path5838" />
|
id="path3909" />
|
||||||
<path
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
d="m 542.769,257.054 c 24.479,47.271 1.688,102.561 -4.221,151.098 2.532,18.149 5.065,36.719 20.259,49.381 -1.688,4.221 0.844,14.772 -5.909,12.24 -21.525,-11.396 -28.7,-34.187 -28.278,-57.822 -0.844,-41.784 21.525,-75.127 16.038,-117.333 L 536.86,286.6 c -17.305,18.57 -36.719,41.784 -35.453,70.905 l -11.396,2.11 c -12.662,-40.518 31.655,-63.743 37.564,-100.04 0,0 9.707,-3.786 15.194,-2.521"
|
d="m 542.769,257.054 c 24.479,47.271 1.688,102.561 -4.221,151.098 2.532,18.149 5.065,36.719 20.259,49.381 -1.688,4.221 0.844,14.772 -5.909,12.24 -21.525,-11.396 -28.7,-34.187 -28.278,-57.822 -0.844,-41.784 21.525,-75.127 16.038,-117.333 L 536.86,286.6 c -17.305,18.57 -36.719,41.784 -35.453,70.905 l -11.396,2.11 c -12.662,-40.518 31.655,-63.743 37.564,-100.04 0,0 9.707,-3.786 15.194,-2.521"
|
||||||
id="path5840" />
|
id="path3911" />
|
||||||
</g>
|
</g>
|
||||||
<text
|
<text
|
||||||
transform="scale(1,-1)"
|
transform="scale(1,-1)"
|
||||||
sodipodi:linespacing="125%"
|
sodipodi:linespacing="125%"
|
||||||
id="text5842"
|
id="text3926"
|
||||||
y="-78.157478"
|
y="-78.157478"
|
||||||
x="737.67926"
|
x="737.67926"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.13311577px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:1;stroke:none"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.13311577px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
@ -976,10 +838,169 @@
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1"
|
||||||
y="-78.157478"
|
y="-78.157478"
|
||||||
x="737.67926"
|
x="737.67926"
|
||||||
id="tspan5844"
|
id="tspan3928"
|
||||||
sodipodi:role="line">www.c3voc.de</tspan></text>
|
sodipodi:role="line">www.c3voc.de</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
|
<g
|
||||||
|
id="g7256"
|
||||||
|
style="">
|
||||||
|
<text
|
||||||
|
id="text5913"
|
||||||
|
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
x="383.23898"
|
||||||
|
y="-103.6201">
|
||||||
|
<tspan
|
||||||
|
style="fill:#000000"
|
||||||
|
id="tspan5915"
|
||||||
|
y="-103.6201"
|
||||||
|
x="383.23898">R</tspan>
|
||||||
|
</text>
|
||||||
|
<text
|
||||||
|
id="text5917"
|
||||||
|
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
x="417.31079"
|
||||||
|
y="-104.19091">
|
||||||
|
<tspan
|
||||||
|
y="-104.19091"
|
||||||
|
x="417.31079"
|
||||||
|
id="tspan5919"
|
||||||
|
sodipodi:role="line">ECORDED</tspan>
|
||||||
|
</text>
|
||||||
|
<text
|
||||||
|
id="text5921"
|
||||||
|
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
x="581.79248"
|
||||||
|
y="-103.6201">
|
||||||
|
<tspan
|
||||||
|
id="tspan5923"
|
||||||
|
sodipodi:role="line"
|
||||||
|
y="-103.6201"
|
||||||
|
x="581.79248 603.11169">BY</tspan>
|
||||||
|
</text>
|
||||||
|
<text
|
||||||
|
id="text5925"
|
||||||
|
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
x="621.53558"
|
||||||
|
y="-103.6201">
|
||||||
|
<tspan
|
||||||
|
style="fill:#000000"
|
||||||
|
id="tspan5927"
|
||||||
|
y="-103.6201"
|
||||||
|
x="621.53558">:</tspan>
|
||||||
|
</text>
|
||||||
|
<text
|
||||||
|
y="-103.6201"
|
||||||
|
x="383.23898"
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="text5810">
|
||||||
|
<tspan
|
||||||
|
x="383.23898"
|
||||||
|
y="-103.6201"
|
||||||
|
id="tspan5812"
|
||||||
|
style="fill:#000000">R</tspan>
|
||||||
|
</text>
|
||||||
|
<text
|
||||||
|
y="-104.19091"
|
||||||
|
x="417.31079"
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="text5814">
|
||||||
|
<tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan5816"
|
||||||
|
x="417.31079"
|
||||||
|
y="-104.19091">ECORDED</tspan>
|
||||||
|
</text>
|
||||||
|
<text
|
||||||
|
y="-103.6201"
|
||||||
|
x="581.79248"
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="text5818">
|
||||||
|
<tspan
|
||||||
|
x="581.79248 603.11169"
|
||||||
|
y="-103.6201"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan5820">BY</tspan>
|
||||||
|
</text>
|
||||||
|
<text
|
||||||
|
y="-103.6201"
|
||||||
|
x="621.53558"
|
||||||
|
transform="scale(1,-1)"
|
||||||
|
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="text5822">
|
||||||
|
<tspan
|
||||||
|
x="621.53558"
|
||||||
|
y="-103.6201"
|
||||||
|
id="tspan5824"
|
||||||
|
style="fill:#000000">:</tspan>
|
||||||
|
</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="cc"
|
||||||
|
transform="matrix(3.1908614,0,0,3.1908614,-1508.4448,1866.9514)">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.99891987,0,0,-0.99891987,667.875,-532.04269)"
|
||||||
|
id="surface1">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#a8b0ab;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2.300781,0.375 83.128907,0.148438 c 1.160156,0 2.199218,-0.171875 2.199218,2.332031 l -0.101562,27.554687 -87.324219,0 0,-27.65625 C 0.203125,1.519531 0.324219,0.375 2.300781,0.375 Z"
|
||||||
|
id="path7763" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 86.351563,0 1.648438,0 C 0.738281,0 0,0.742188 0,1.65625 L 0,30.625 C 0,30.832031 0.167969,31 0.371094,31 l 87.257812,0 C 87.832031,31 88,30.832031 88,30.625 L 88,1.65625 C 88,0.742188 87.261719,0 86.351563,0 Z m -84.703125,0.75 84.703125,0 c 0.5,0 0.902343,0.40625 0.902343,0.90625 0,0 0,11.699219 0,20.132813 l -60.738281,0 c -2.21875,4.039062 -6.492187,6.78125 -11.398437,6.78125 -4.910157,0 -9.183594,-2.738282 -11.402344,-6.78125 l -2.96875,0 c 0,-8.433594 0,-20.132813 0,-20.132813 0,-0.5 0.402344,-0.90625 0.902344,-0.90625 z"
|
||||||
|
id="path7765" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 54.125,24.171875 c 0.234375,0 0.445313,0.01953 0.636719,0.05859 0.191406,0.04297 0.351562,0.109375 0.488281,0.203125 0.136719,0.09375 0.242188,0.21875 0.316406,0.375 0.07422,0.152344 0.113282,0.34375 0.113282,0.574219 0,0.246093 -0.05469,0.449218 -0.167969,0.613281 -0.109375,0.164062 -0.273438,0.300781 -0.492188,0.40625 0.300782,0.08594 0.523438,0.238281 0.671875,0.453125 0.148438,0.21875 0.222657,0.480469 0.222657,0.785156 0,0.246094 -0.04687,0.460938 -0.144532,0.640625 -0.09375,0.179688 -0.222656,0.328125 -0.382812,0.441406 -0.164063,0.113282 -0.347656,0.199219 -0.554688,0.253907 -0.207031,0.05469 -0.417968,0.08203 -0.636718,0.08203 l -2.359375,0 0,-4.886719 z m -0.136719,1.976563 c 0.191407,0 0.347657,-0.04687 0.472657,-0.136719 0.121093,-0.09375 0.183593,-0.238281 0.183593,-0.445313 0,-0.113281 -0.01953,-0.207031 -0.0625,-0.277343 -0.03906,-0.07422 -0.09375,-0.132813 -0.164062,-0.171875 -0.06641,-0.04297 -0.144531,-0.07031 -0.234375,-0.08594 -0.08594,-0.01563 -0.179688,-0.02344 -0.273438,-0.02344 l -1.003906,0 0,1.140625 z m 0.0625,2.074218 c 0.105469,0 0.207032,-0.01172 0.300782,-0.03125 0.09766,-0.01953 0.179687,-0.05469 0.253906,-0.101562 0.07031,-0.05078 0.128906,-0.113281 0.171875,-0.195313 0.04297,-0.08203 0.06641,-0.1875 0.06641,-0.316406 0,-0.25 -0.07031,-0.429687 -0.210937,-0.535156 -0.140625,-0.109375 -0.328125,-0.160156 -0.558594,-0.160156 l -1.167969,0 0,1.339843 z"
|
||||||
|
id="path7767" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 56.101563,24.171875 1.199218,0 1.136719,1.929688 1.128906,-1.929688 1.191407,0 -1.800782,3.011719 0,1.875 -1.070312,0 0,-1.902344 z"
|
||||||
|
id="path7769" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 25.121094,14.472656 c 0.0039,5.554688 -4.472656,10.0625 -9.996094,10.066407 -5.519531,0.0039 -10,-4.5 -10.003906,-10.054688 0,-0.0039 0,-0.0078 0,-0.01172 C 5.117188,8.914063 9.59375,4.40625 15.113281,4.402344 c 5.523438,-0.00391 10.003907,4.5 10.007813,10.058594 0,0 0,0.0078 0,0.01172 z"
|
||||||
|
id="path7771" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 23.25,6.273438 c 2.214844,2.234375 3.324219,4.964843 3.324219,8.199218 0,3.230469 -1.089844,5.933594 -3.269531,8.109375 -2.3125,2.289063 -5.042969,3.433594 -8.199219,3.433594 -3.113281,0 -5.800781,-1.136719 -8.054688,-3.40625 C 4.792969,20.339844 3.667969,17.625 3.667969,14.472656 c 0,-3.15625 1.125,-5.890625 3.382812,-8.199218 2.195313,-2.230469 4.882813,-3.347657 8.054688,-3.347657 3.210937,0 5.925781,1.117188 8.144531,3.347657 z M 8.542969,7.777344 c -1.875,1.902344 -2.8125,4.136719 -2.8125,6.695312 0,2.5625 0.929687,4.773438 2.78125,6.640625 1.855469,1.867188 4.066406,2.800782 6.628906,2.800782 2.5625,0 4.789063,-0.941407 6.683594,-2.828125 1.796875,-1.753907 2.695312,-3.957032 2.695312,-6.613282 0,-2.636718 -0.914062,-4.871093 -2.738281,-6.710937 -1.828125,-1.839844 -4.039062,-2.757813 -6.640625,-2.757813 -2.601562,0 -4.800781,0.925782 -6.597656,2.773438 z m 4.933594,5.570312 C 13.1875,12.71875 12.761719,12.40625 12.1875,12.40625 c -1.011719,0 -1.515625,0.683594 -1.515625,2.054688 0,1.367187 0.503906,2.050781 1.515625,2.050781 0.667969,0 1.144531,-0.332031 1.429688,-1 l 1.402343,0.75 c -0.667968,1.195312 -1.667968,1.792969 -3.003906,1.792969 -1.03125,0 -1.859375,-0.316407 -2.476562,-0.953125 -0.621094,-0.636719 -0.933594,-1.511719 -0.933594,-2.628907 0,-1.101562 0.320312,-1.972656 0.960937,-2.617187 0.640625,-0.644531 1.4375,-0.96875 2.390625,-0.96875 1.414063,0 2.421875,0.5625 3.035157,1.679687 z m 6.589843,0 C 19.78125,12.71875 19.359375,12.40625 18.808594,12.40625 c -1.03125,0 -1.550781,0.683594 -1.550781,2.054688 0,1.367187 0.519531,2.050781 1.550781,2.050781 0.667969,0 1.136719,-0.332031 1.402344,-1 l 1.433593,0.75 c -0.667968,1.195312 -1.667968,1.792969 -3.003906,1.792969 -1.027344,0 -1.851562,-0.316407 -2.46875,-0.953125 -0.621094,-0.636719 -0.929687,-1.511719 -0.929687,-2.628907 0,-1.101562 0.3125,-1.972656 0.941406,-2.617187 0.628906,-0.644531 1.429687,-0.96875 2.402344,-0.96875 1.410156,0 2.417968,0.5625 3.027343,1.679687 z"
|
||||||
|
id="path7773" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 63.804688,11.230469 c 0,4.378906 -3.527344,7.925781 -7.875,7.925781 -4.351563,0 -7.875,-3.546875 -7.875,-7.925781 0,-4.375 3.523437,-7.925781 7.875,-7.925781 4.347656,0 7.875,3.550781 7.875,7.925781 z"
|
||||||
|
id="path7775" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 58.207031,8.9375 c 0,-0.304687 -0.246093,-0.550781 -0.546875,-0.550781 l -3.480468,0 c -0.300782,0 -0.546875,0.246094 -0.546875,0.550781 l 0,3.5 0.96875,0 0,4.148438 2.636718,0 0,-4.148438 0.96875,0 z"
|
||||||
|
id="path7777" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 57.109375,6.726563 c 0,0.660156 -0.53125,1.199218 -1.1875,1.199218 -0.660156,0 -1.191406,-0.539062 -1.191406,-1.199218 0,-0.660157 0.53125,-1.195313 1.191406,-1.195313 0.65625,0 1.1875,0.535156 1.1875,1.195313 z"
|
||||||
|
id="path7779" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
d="m 55.910156,2.5 c -2.355468,0 -4.351562,0.828125 -5.984375,2.480469 -1.671875,1.710937 -2.507812,3.738281 -2.507812,6.078125 0,2.335937 0.835937,4.347656 2.507812,6.03125 1.675782,1.683594 3.671875,2.523437 5.984375,2.523437 2.339844,0 4.371094,-0.847656 6.085938,-2.542968 1.617187,-1.613282 2.429687,-3.617188 2.429687,-6.011719 0,-2.398438 -0.824218,-4.421875 -2.46875,-6.078125 C 60.308594,3.328125 58.292969,2.5 55.910156,2.5 Z m 0.01953,1.539063 c 1.929687,0 3.570312,0.683593 4.917968,2.054687 1.363282,1.355469 2.042969,3.007813 2.042969,4.964844 0,1.964844 -0.667969,3.601562 -2,4.898437 -1.40625,1.398438 -3.058594,2.097657 -4.960937,2.097657 -1.902344,0 -3.539063,-0.691407 -4.917969,-2.078125 -1.375,-1.382813 -2.0625,-3.023438 -2.0625,-4.917969 0,-1.898438 0.695312,-3.554688 2.085937,-4.964844 C 52.367188,4.722656 54,4.039063 55.929688,4.039063 Z"
|
||||||
|
id="path7781" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 61 KiB |
Loading…
Add table
Reference in a new issue