Merge lp:~dobey/ubuntuone-client-data/update-4-0 into lp:ubuntuone-client-data/stable-4-0

Proposed by dobey
Status: Merged
Approved by: dobey
Approved revision: 7
Merged at revision: 7
Proposed branch: lp:~dobey/ubuntuone-client-data/update-4-0
Merge into: lp:ubuntuone-client-data/stable-4-0
Diff against target: 5957 lines (+5271/-473)
2 files modified
setup.py (+9/-11)
ubuntuone-icons.svg (+5262/-462)
To merge this branch: bzr merge lp:~dobey/ubuntuone-client-data/update-4-0
Reviewer Review Type Date Requested Status
Diego Sarmentero (community) Approve
Review via email: mp+125810@code.launchpad.net

Commit message

[Rodney Dawes]

    Merge in the updated main Ubuntu One icon from design.
    Move the icons under a data/ directory for distutils-extra.

To post a comment you must log in.
Revision history for this message
Diego Sarmentero (diegosarmentero) wrote :

+1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'data'
2=== renamed directory 'icons' => 'data/icons'
3=== modified file 'data/icons/128x128/apps/ubuntuone.png'
4Binary files icons/128x128/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/128x128/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
5=== modified file 'data/icons/128x128@2x/apps/ubuntuone.png'
6Binary files icons/128x128@2x/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/128x128@2x/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
7=== modified file 'data/icons/16x16/apps/ubuntuone.png'
8Binary files icons/16x16/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/16x16/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
9=== modified file 'data/icons/16x16@2x/apps/ubuntuone.png'
10Binary files icons/16x16@2x/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/16x16@2x/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
11=== modified file 'data/icons/24x24/apps/ubuntuone.png'
12Binary files icons/24x24/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/24x24/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
13=== modified file 'data/icons/256x256/apps/ubuntuone.png'
14Binary files icons/256x256/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/256x256/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
15=== modified file 'data/icons/256x256@2x/apps/ubuntuone.png'
16Binary files icons/256x256@2x/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/256x256@2x/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
17=== modified file 'data/icons/32x32/apps/ubuntuone.png'
18Binary files icons/32x32/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/32x32/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
19=== modified file 'data/icons/32x32@2x/apps/ubuntuone.png'
20Binary files icons/32x32@2x/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/32x32@2x/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
21=== modified file 'data/icons/48x48/apps/ubuntuone.png'
22Binary files icons/48x48/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/48x48/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
23=== modified file 'data/icons/512x512/apps/ubuntuone.png'
24Binary files icons/512x512/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/512x512/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
25=== modified file 'data/icons/512x512@2x/apps/ubuntuone.png'
26Binary files icons/512x512@2x/apps/ubuntuone.png 2012-09-05 15:25:53 +0000 and data/icons/512x512@2x/apps/ubuntuone.png 2012-09-21 20:02:18 +0000 differ
27=== modified file 'setup.py'
28--- setup.py 2012-09-12 14:55:03 +0000
29+++ setup.py 2012-09-21 20:02:18 +0000
30@@ -74,6 +74,7 @@
31 '128x128',
32 '256x256',
33 ]
34+ICONSDIR = os.path.join(os.getcwd(), 'data', 'icons')
35
36
37 def touch(filename, timestamp=None):
38@@ -92,15 +93,14 @@
39
40 def run(self):
41 """Generate the icons."""
42- iconsdir = os.path.join(os.getcwd(), 'icons')
43- if os.path.exists(iconsdir):
44- dirtime = os.stat(iconsdir).st_mtime
45+ if os.path.exists(ICONSDIR):
46+ dirtime = os.stat(ICONSDIR).st_mtime
47 filetime = os.stat(ICON_SVG_FILE).st_mtime
48 if (dirtime >= filetime):
49- touch(iconsdir)
50+ touch(ICONSDIR)
51 return
52 else:
53- os.makedirs(iconsdir)
54+ os.makedirs(ICONSDIR)
55
56 icontool_render = find_executable('icontool-render')
57 if icontool_render is None:
58@@ -108,10 +108,10 @@
59 return
60
61 for size in ICON_RENDER_SIZES:
62- args = [icontool_render, '-s', size, '-o', iconsdir, ICON_SVG_FILE]
63+ args = [icontool_render, '-s', size, '-o', ICONSDIR, ICON_SVG_FILE]
64 subprocess.call(args)
65
66- touch(iconsdir)
67+ touch(ICONSDIR)
68
69
70 class BuildICNS(BuildPNG):
71@@ -137,8 +137,7 @@
72
73 missing = []
74 for size in ICNS_EMBED_SIZES:
75- orig_file = os.path.join(os.getcwd(), 'icons',
76- size, 'apps', 'ubuntuone.png')
77+ orig_file = os.path.join(ICONSDIR, size, 'apps', 'ubuntuone.png')
78 link_file = os.path.join(icns_dir, 'icon_' + size + '.png')
79 if os.path.exists(orig_file):
80 if os.path.exists(link_file):
81@@ -172,8 +171,7 @@
82
83 convert_args = [convert]
84 for size in ICO_EMBED_SIZES:
85- orig_file = os.path.join(os.getcwd(), 'icons',
86- size, 'apps', 'ubuntuone.png')
87+ orig_file = os.path.join(ICONSDIR, size, 'apps', 'ubuntuone.png')
88 if os.path.exists(orig_file):
89 convert_args.append(orig_file)
90 else:
91
92=== modified file 'ubuntuone-icons.svg'
93--- ubuntuone-icons.svg 2012-09-05 18:41:57 +0000
94+++ ubuntuone-icons.svg 2012-09-21 20:02:18 +0000
95@@ -14824,16 +14824,6 @@
96 id="stop3773" />
97 </linearGradient>
98 <linearGradient
99- y2="111.23772"
100- x2="7.2937803"
101- y1="60"
102- x1="7.5"
103- gradientTransform="matrix(2.5029125,0,0,2.4999999,1081.4767,202.00003)"
104- gradientUnits="userSpaceOnUse"
105- id="linearGradient6574"
106- xlink:href="#linearGradient3769"
107- inkscape:collect="always" />
108- <linearGradient
109 inkscape:collect="always"
110 xlink:href="#linearGradient3769-9"
111 id="linearGradient3775-5"
112@@ -14894,16 +14884,6 @@
113 id="stop3773-7" />
114 </linearGradient>
115 <linearGradient
116- y2="111.23772"
117- x2="7.2937803"
118- y1="60"
119- x1="7.5"
120- gradientTransform="matrix(5.0175899,0,0,5.0098039,1080.3593,473.41176)"
121- gradientUnits="userSpaceOnUse"
122- id="linearGradient6967"
123- xlink:href="#linearGradient3769-5"
124- inkscape:collect="always" />
125- <linearGradient
126 inkscape:collect="always"
127 xlink:href="#linearGradient3769-56"
128 id="linearGradient3775-6"
129@@ -14929,26 +14909,6 @@
130 id="stop3773-70" />
131 </linearGradient>
132 <linearGradient
133- y2="111.23772"
134- x2="7.2937803"
135- y1="60"
136- x1="7.5"
137- gradientTransform="matrix(5.0058254,0,0,5.0000001,1633.5989,474.02774)"
138- gradientUnits="userSpaceOnUse"
139- id="linearGradient7086-5"
140- xlink:href="#linearGradient3769-56"
141- inkscape:collect="always" />
142- <linearGradient
143- inkscape:collect="always"
144- xlink:href="#linearGradient3769-2"
145- id="linearGradient3775-9"
146- x1="7.5"
147- y1="60"
148- x2="7.2937803"
149- y2="111.23772"
150- gradientUnits="userSpaceOnUse"
151- gradientTransform="matrix(2.491148,0,0,2.4901962,-11.429185,-132.91175)" />
152- <linearGradient
153 id="linearGradient3769-2">
154 <stop
155 style="stop-color:#dd4814;stop-opacity:1;"
156@@ -14989,16 +14949,6 @@
157 id="stop3773-95" />
158 </linearGradient>
159 <linearGradient
160- y2="111.23772"
161- x2="7.2937803"
162- y1="60"
163- x1="7.5"
164- gradientTransform="matrix(1.245574,0,0,1.2450981,1680.5354,341.29414)"
165- gradientUnits="userSpaceOnUse"
166- id="linearGradient7328"
167- xlink:href="#linearGradient3769-0"
168- inkscape:collect="always" />
169- <linearGradient
170 inkscape:collect="always"
171 xlink:href="#linearGradient3769-7"
172 id="linearGradient3775-95"
173@@ -15024,16 +14974,6 @@
174 id="stop3773-1" />
175 </linearGradient>
176 <linearGradient
177- y2="111.23772"
178- x2="7.2937803"
179- y1="60"
180- x1="7.5"
181- gradientTransform="matrix(0.62278699,0,0,0.62254905,1835.2678,410.64706)"
182- gradientUnits="userSpaceOnUse"
183- id="linearGradient7447"
184- xlink:href="#linearGradient3769-7"
185- inkscape:collect="always" />
186- <linearGradient
187 inkscape:collect="always"
188 xlink:href="#linearGradient3769-90"
189 id="linearGradient3775-05"
190@@ -15059,16 +14999,6 @@
191 id="stop3773-10" />
192 </linearGradient>
193 <linearGradient
194- y2="111.23772"
195- x2="7.2937803"
196- y1="60"
197- x1="7.5"
198- gradientTransform="matrix(0.46709025,0,0,0.46691179,1926.4507,427.98529)"
199- gradientUnits="userSpaceOnUse"
200- id="linearGradient7566"
201- xlink:href="#linearGradient3769-90"
202- inkscape:collect="always" />
203- <linearGradient
204 inkscape:collect="always"
205 xlink:href="#linearGradient3769-1"
206 id="linearGradient3775-64"
207@@ -15094,16 +15024,6 @@
208 id="stop3773-72" />
209 </linearGradient>
210 <linearGradient
211- y2="111.23772"
212- x2="7.2937803"
213- y1="60"
214- x1="7.5"
215- gradientTransform="matrix(0.3113935,0,0,0.31127453,1994.9154,445.3235)"
216- gradientUnits="userSpaceOnUse"
217- id="linearGradient7685"
218- xlink:href="#linearGradient3769-1"
219- inkscape:collect="always" />
220- <linearGradient
221 inkscape:collect="always"
222 xlink:href="#linearGradient3769-20"
223 id="linearGradient3775-8"
224@@ -15129,16 +15049,6 @@
225 id="stop3773-3" />
226 </linearGradient>
227 <linearGradient
228- y2="111.23772"
229- x2="7.2937803"
230- y1="60"
231- x1="7.5"
232- gradientTransform="matrix(0.31384544,0,0,0.31372552,2050.4892,445.17648)"
233- gradientUnits="userSpaceOnUse"
234- id="linearGradient7804"
235- xlink:href="#linearGradient3769-20"
236- inkscape:collect="always" />
237- <linearGradient
238 inkscape:collect="always"
239 xlink:href="#linearGradient3769-8"
240 id="linearGradient3775-7"
241@@ -15164,16 +15074,6 @@
242 id="stop3773-5" />
243 </linearGradient>
244 <linearGradient
245- y2="111.23772"
246- x2="7.2937803"
247- y1="60"
248- x1="7.5"
249- gradientTransform="matrix(0.23538407,0,0,0.23529414,2095.1095,453.88239)"
250- gradientUnits="userSpaceOnUse"
251- id="linearGradient7923-8"
252- xlink:href="#linearGradient3769-8"
253- inkscape:collect="always" />
254- <linearGradient
255 inkscape:collect="always"
256 xlink:href="#linearGradient3769-97"
257 id="linearGradient3775-92"
258@@ -15198,16 +15098,4017 @@
259 offset="1"
260 id="stop3773-6" />
261 </linearGradient>
262- <linearGradient
263- y2="111.23772"
264- x2="7.2937803"
265- y1="60"
266- x1="7.5"
267- gradientTransform="matrix(0.15692271,0,0,0.15686275,2125.1709,462.59713)"
268- gradientUnits="userSpaceOnUse"
269- id="linearGradient8025"
270- xlink:href="#linearGradient3769-97"
271- inkscape:collect="always" />
272+ <radialGradient
273+ cx="7.4956832"
274+ cy="8.4497671"
275+ r="19.99999"
276+ fx="7.4956832"
277+ fy="8.4497671"
278+ id="radialGradient4052-6"
279+ xlink:href="#linearGradient4644-104-3-3-6-7"
280+ gradientUnits="userSpaceOnUse"
281+ gradientTransform="matrix(0,0.89884231,-0.95086797,-1.6560106e-8,16.034655,-6.0133846)" />
282+ <linearGradient
283+ id="linearGradient4644-104-3-3-6-7">
284+ <stop
285+ id="stop5237-6-5-1-76"
286+ style="stop-color:#ff7a35;stop-opacity:1"
287+ offset="0" />
288+ <stop
289+ id="stop5239-4-6-4-9"
290+ style="stop-color:#f0431a;stop-opacity:1"
291+ offset="1" />
292+ </linearGradient>
293+ <linearGradient
294+ x1="15.000002"
295+ y1="3.2000093"
296+ x2="15.000002"
297+ y2="44.82975"
298+ id="linearGradient4054-0"
299+ xlink:href="#linearGradient3895-2"
300+ gradientUnits="userSpaceOnUse"
301+ gradientTransform="matrix(0.38461539,0,0,0.38461538,-1.2307686,-1.2307687)" />
302+ <linearGradient
303+ id="linearGradient3895-2">
304+ <stop
305+ id="stop3897-6"
306+ style="stop-color:#dc6838;stop-opacity:1"
307+ offset="0" />
308+ <stop
309+ id="stop3899-2"
310+ style="stop-color:#ba3d12;stop-opacity:1"
311+ offset="1" />
312+ </linearGradient>
313+ <linearGradient
314+ x1="23.99999"
315+ y1="4.999989"
316+ x2="23.99999"
317+ y2="43"
318+ id="linearGradient3079-9-7"
319+ xlink:href="#linearGradient3924-4-8-2"
320+ gradientUnits="userSpaceOnUse"
321+ gradientTransform="matrix(0.35135135,0,0,0.35135135,-0.43243048,-0.43242932)" />
322+ <linearGradient
323+ id="linearGradient3924-4-8-2">
324+ <stop
325+ id="stop3926-0-4-9"
326+ style="stop-color:#ffffff;stop-opacity:1"
327+ offset="0" />
328+ <stop
329+ id="stop3928-6-8-5"
330+ style="stop-color:#ffffff;stop-opacity:0.23529412"
331+ offset="0.06316455" />
332+ <stop
333+ id="stop3930-2-1-7"
334+ style="stop-color:#ffffff;stop-opacity:0.15686275"
335+ offset="0.95056331" />
336+ <stop
337+ id="stop3932-9-0-7"
338+ style="stop-color:#ffffff;stop-opacity:0.39215687"
339+ offset="1" />
340+ </linearGradient>
341+ <linearGradient
342+ x1="7.8000002"
343+ y1="0.036976371"
344+ x2="7.8000002"
345+ y2="12.957804"
346+ id="linearGradient4010-0"
347+ xlink:href="#linearGradient3895-2"
348+ gradientUnits="userSpaceOnUse" />
349+ <linearGradient
350+ id="linearGradient7519">
351+ <stop
352+ id="stop7521"
353+ style="stop-color:#dc6838;stop-opacity:1"
354+ offset="0" />
355+ <stop
356+ id="stop7523"
357+ style="stop-color:#ba3d12;stop-opacity:1"
358+ offset="1" />
359+ </linearGradient>
360+ <linearGradient
361+ y2="24.627615"
362+ x2="20.054544"
363+ y1="15.298182"
364+ x1="16.626165"
365+ gradientTransform="matrix(0.30394046,0,0,0.48796259,0.69121902,-1.7873442)"
366+ gradientUnits="userSpaceOnUse"
367+ id="linearGradient7085"
368+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-5"
369+ inkscape:collect="always" />
370+ <linearGradient
371+ id="linearGradient8265-821-176-38-919-66-249-7-7-5">
372+ <stop
373+ id="stop2687-1-9-5"
374+ style="stop-color:#ffffff;stop-opacity:1"
375+ offset="0" />
376+ <stop
377+ id="stop2689-5-4-3"
378+ style="stop-color:#ffffff;stop-opacity:0"
379+ offset="1" />
380+ </linearGradient>
381+ <linearGradient
382+ id="linearGradient4644-104-3-3-6-8-0">
383+ <stop
384+ id="stop5237-6-5-1-8-1"
385+ style="stop-color:#ff7a35;stop-opacity:1;"
386+ offset="0" />
387+ <stop
388+ id="stop5239-4-6-4-4-5"
389+ style="stop-color:#f0431a;stop-opacity:1;"
390+ offset="1" />
391+ </linearGradient>
392+ <linearGradient
393+ id="linearGradient3895-3-8">
394+ <stop
395+ id="stop3897-1-9"
396+ style="stop-color:#dc6838;stop-opacity:1"
397+ offset="0" />
398+ <stop
399+ id="stop3899-4-5"
400+ style="stop-color:#ba3d12;stop-opacity:1"
401+ offset="1" />
402+ </linearGradient>
403+ <linearGradient
404+ id="linearGradient7618">
405+ <stop
406+ id="stop7620"
407+ style="stop-color:#dc6838;stop-opacity:1"
408+ offset="0" />
409+ <stop
410+ id="stop7622"
411+ style="stop-color:#ba3d12;stop-opacity:1"
412+ offset="1" />
413+ </linearGradient>
414+ <linearGradient
415+ id="linearGradient7625">
416+ <stop
417+ id="stop7627"
418+ style="stop-color:#dc6838;stop-opacity:1"
419+ offset="0" />
420+ <stop
421+ id="stop7629"
422+ style="stop-color:#ba3d12;stop-opacity:1"
423+ offset="1" />
424+ </linearGradient>
425+ <linearGradient
426+ id="linearGradient7632">
427+ <stop
428+ id="stop7634"
429+ style="stop-color:#dc6838;stop-opacity:1"
430+ offset="0" />
431+ <stop
432+ id="stop7636"
433+ style="stop-color:#ba3d12;stop-opacity:1"
434+ offset="1" />
435+ </linearGradient>
436+ <linearGradient
437+ id="linearGradient8265-821-176-38-919-66-249-7-7-8-0">
438+ <stop
439+ id="stop2687-1-9-6-8"
440+ style="stop-color:#ffffff;stop-opacity:1"
441+ offset="0" />
442+ <stop
443+ id="stop2689-5-4-8-3"
444+ style="stop-color:#ffffff;stop-opacity:0"
445+ offset="1" />
446+ </linearGradient>
447+ <linearGradient
448+ id="linearGradient3924-9">
449+ <stop
450+ id="stop3926-3"
451+ style="stop-color:#ffffff;stop-opacity:1"
452+ offset="0" />
453+ <stop
454+ id="stop3928-9"
455+ style="stop-color:#ffffff;stop-opacity:0.23529412"
456+ offset="0.06316455" />
457+ <stop
458+ id="stop3930-62"
459+ style="stop-color:#ffffff;stop-opacity:0.15686275"
460+ offset="0.95056331" />
461+ <stop
462+ id="stop3932-8"
463+ style="stop-color:#ffffff;stop-opacity:0.39215687"
464+ offset="1" />
465+ </linearGradient>
466+ <linearGradient
467+ id="linearGradient4644-104-3-3-6-8-04">
468+ <stop
469+ id="stop5237-6-5-1-8-6"
470+ style="stop-color:#ff7a35;stop-opacity:1;"
471+ offset="0" />
472+ <stop
473+ id="stop5239-4-6-4-4-0"
474+ style="stop-color:#f0431a;stop-opacity:1;"
475+ offset="1" />
476+ </linearGradient>
477+ <linearGradient
478+ id="linearGradient3895-3-7">
479+ <stop
480+ id="stop3897-1-55"
481+ style="stop-color:#dc6838;stop-opacity:1"
482+ offset="0" />
483+ <stop
484+ id="stop3899-4-4"
485+ style="stop-color:#ba3d12;stop-opacity:1"
486+ offset="1" />
487+ </linearGradient>
488+ <linearGradient
489+ id="linearGradient7618-2">
490+ <stop
491+ id="stop7620-0"
492+ style="stop-color:#dc6838;stop-opacity:1"
493+ offset="0" />
494+ <stop
495+ id="stop7622-3"
496+ style="stop-color:#ba3d12;stop-opacity:1"
497+ offset="1" />
498+ </linearGradient>
499+ <linearGradient
500+ id="linearGradient7625-0">
501+ <stop
502+ id="stop7627-4"
503+ style="stop-color:#dc6838;stop-opacity:1"
504+ offset="0" />
505+ <stop
506+ id="stop7629-6"
507+ style="stop-color:#ba3d12;stop-opacity:1"
508+ offset="1" />
509+ </linearGradient>
510+ <linearGradient
511+ id="linearGradient7632-5">
512+ <stop
513+ id="stop7634-4"
514+ style="stop-color:#dc6838;stop-opacity:1"
515+ offset="0" />
516+ <stop
517+ id="stop7636-0"
518+ style="stop-color:#ba3d12;stop-opacity:1"
519+ offset="1" />
520+ </linearGradient>
521+ <linearGradient
522+ id="linearGradient8265-821-176-38-919-66-249-7-7-8-9">
523+ <stop
524+ id="stop2687-1-9-6-9"
525+ style="stop-color:#ffffff;stop-opacity:1"
526+ offset="0" />
527+ <stop
528+ id="stop2689-5-4-8-9"
529+ style="stop-color:#ffffff;stop-opacity:0"
530+ offset="1" />
531+ </linearGradient>
532+ <linearGradient
533+ id="linearGradient3924-73">
534+ <stop
535+ id="stop3926-83"
536+ style="stop-color:#ffffff;stop-opacity:1"
537+ offset="0" />
538+ <stop
539+ id="stop3928-8"
540+ style="stop-color:#ffffff;stop-opacity:0.23529412"
541+ offset="0.06316455" />
542+ <stop
543+ id="stop3930-9"
544+ style="stop-color:#ffffff;stop-opacity:0.15686275"
545+ offset="0.95056331" />
546+ <stop
547+ id="stop3932-9"
548+ style="stop-color:#ffffff;stop-opacity:0.39215687"
549+ offset="1" />
550+ </linearGradient>
551+ <radialGradient
552+ inkscape:collect="always"
553+ xlink:href="#linearGradient4644-104-3-3-6-8-04"
554+ id="radialGradient7823"
555+ gradientUnits="userSpaceOnUse"
556+ gradientTransform="matrix(0,1.2583792,-1.3312151,-2.3184147e-8,22.248517,33.381263)"
557+ cx="7.4956832"
558+ cy="8.4497671"
559+ fx="7.4956832"
560+ fy="8.4497671"
561+ r="19.99999" />
562+ <linearGradient
563+ inkscape:collect="always"
564+ xlink:href="#linearGradient3895-3-7"
565+ id="linearGradient7825"
566+ gradientUnits="userSpaceOnUse"
567+ gradientTransform="matrix(0.53846153,0,0,0.5384615,-1.9230772,40.076923)"
568+ x1="9.7980843"
569+ y1="3.2524467"
570+ x2="9.7980843"
571+ y2="44.407005" />
572+ <linearGradient
573+ inkscape:collect="always"
574+ xlink:href="#linearGradient3895-3-7"
575+ id="linearGradient7827"
576+ gradientUnits="userSpaceOnUse"
577+ gradientTransform="translate(-1,32.989798)"
578+ x1="12"
579+ y1="26"
580+ x2="12"
581+ y2="8" />
582+ <linearGradient
583+ inkscape:collect="always"
584+ xlink:href="#linearGradient3895-3-7"
585+ id="linearGradient7830"
586+ gradientUnits="userSpaceOnUse"
587+ gradientTransform="translate(-1,32.989798)"
588+ x1="12"
589+ y1="26"
590+ x2="12"
591+ y2="8" />
592+ <linearGradient
593+ inkscape:collect="always"
594+ xlink:href="#linearGradient3895-3-7"
595+ id="linearGradient7832"
596+ gradientUnits="userSpaceOnUse"
597+ gradientTransform="translate(-1,32.989798)"
598+ x1="12"
599+ y1="26"
600+ x2="12"
601+ y2="8" />
602+ <linearGradient
603+ inkscape:collect="always"
604+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-8-9"
605+ id="linearGradient7834"
606+ gradientUnits="userSpaceOnUse"
607+ gradientTransform="matrix(0.4341992,0,0,0.70483491,0.55888612,38.973832)"
608+ x1="16.626165"
609+ y1="15.298182"
610+ x2="20.054544"
611+ y2="24.627615" />
612+ <linearGradient
613+ inkscape:collect="always"
614+ xlink:href="#linearGradient3924-73"
615+ id="linearGradient7836"
616+ gradientUnits="userSpaceOnUse"
617+ gradientTransform="matrix(0.51351354,0,0,0.51351353,-1.3243223,40.675678)"
618+ x1="23.99999"
619+ y1="4.999989"
620+ x2="23.99999"
621+ y2="43" />
622+ <radialGradient
623+ inkscape:collect="always"
624+ xlink:href="#linearGradient3688-166-749-17"
625+ id="radialGradient2976"
626+ gradientUnits="userSpaceOnUse"
627+ gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
628+ cx="4.9929786"
629+ cy="43.5"
630+ fx="4.9929786"
631+ fy="43.5"
632+ r="2.5" />
633+ <linearGradient
634+ id="linearGradient3688-166-749-17">
635+ <stop
636+ id="stop2883-4"
637+ style="stop-color:#181818;stop-opacity:1"
638+ offset="0" />
639+ <stop
640+ id="stop2885-64"
641+ style="stop-color:#181818;stop-opacity:0"
642+ offset="1" />
643+ </linearGradient>
644+ <radialGradient
645+ inkscape:collect="always"
646+ xlink:href="#linearGradient3688-464-309-8"
647+ id="radialGradient2978"
648+ gradientUnits="userSpaceOnUse"
649+ gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
650+ cx="4.9929786"
651+ cy="43.5"
652+ fx="4.9929786"
653+ fy="43.5"
654+ r="2.5" />
655+ <linearGradient
656+ id="linearGradient3688-464-309-8">
657+ <stop
658+ id="stop2889-6"
659+ style="stop-color:#181818;stop-opacity:1"
660+ offset="0" />
661+ <stop
662+ id="stop2891-7"
663+ style="stop-color:#181818;stop-opacity:0"
664+ offset="1" />
665+ </linearGradient>
666+ <linearGradient
667+ inkscape:collect="always"
668+ xlink:href="#linearGradient3702-501-757-0"
669+ id="linearGradient2980"
670+ gradientUnits="userSpaceOnUse"
671+ x1="25.058096"
672+ y1="47.027729"
673+ x2="25.058096"
674+ y2="39.999443" />
675+ <linearGradient
676+ id="linearGradient3702-501-757-0">
677+ <stop
678+ id="stop2895-98"
679+ style="stop-color:#181818;stop-opacity:0"
680+ offset="0" />
681+ <stop
682+ id="stop2897-06"
683+ style="stop-color:#181818;stop-opacity:1"
684+ offset="0.5" />
685+ <stop
686+ id="stop2899-7"
687+ style="stop-color:#181818;stop-opacity:0"
688+ offset="1" />
689+ </linearGradient>
690+ <radialGradient
691+ inkscape:collect="always"
692+ xlink:href="#linearGradient4644-104-3-3-6-9-0"
693+ id="radialGradient3166-9"
694+ gradientUnits="userSpaceOnUse"
695+ gradientTransform="matrix(1.3450477e-8,1.6179161,-1.7115623,-2.9808191e-8,30.46238,-8.2240921)"
696+ cx="7.4956832"
697+ cy="8.4497671"
698+ fx="7.4956832"
699+ fy="8.4497671"
700+ r="19.99999" />
701+ <linearGradient
702+ id="linearGradient4644-104-3-3-6-9-0">
703+ <stop
704+ id="stop5237-6-5-1-2-1"
705+ style="stop-color:#ff7a35;stop-opacity:1;"
706+ offset="0" />
707+ <stop
708+ id="stop5239-4-6-4-6-1"
709+ style="stop-color:#f0431a;stop-opacity:1;"
710+ offset="1" />
711+ </linearGradient>
712+ <linearGradient
713+ inkscape:collect="always"
714+ xlink:href="#linearGradient3895-6-2"
715+ id="linearGradient3168-3"
716+ gradientUnits="userSpaceOnUse"
717+ gradientTransform="matrix(0.6923077,0,0,0.69230769,-0.6153838,0.38461483)"
718+ x1="7.255012"
719+ y1="3.6501276"
720+ x2="7.255012"
721+ y2="44.05125" />
722+ <linearGradient
723+ id="linearGradient3895-6-2">
724+ <stop
725+ id="stop3897-4-9"
726+ style="stop-color:#dc6838;stop-opacity:1"
727+ offset="0" />
728+ <stop
729+ id="stop3899-9-0"
730+ style="stop-color:#ba3d12;stop-opacity:1"
731+ offset="1" />
732+ </linearGradient>
733+ <linearGradient
734+ inkscape:collect="always"
735+ xlink:href="#linearGradient3895-0-1"
736+ id="linearGradient4184"
737+ gradientUnits="userSpaceOnUse"
738+ x1="16"
739+ y1="0"
740+ x2="16"
741+ y2="26" />
742+ <linearGradient
743+ id="linearGradient3895-0-1">
744+ <stop
745+ id="stop3897-1-5-8"
746+ style="stop-color:#dc6838;stop-opacity:1"
747+ offset="0" />
748+ <stop
749+ id="stop3899-8-0"
750+ style="stop-color:#ba3d12;stop-opacity:1"
751+ offset="1" />
752+ </linearGradient>
753+ <linearGradient
754+ inkscape:collect="always"
755+ xlink:href="#linearGradient3895-3-0-9"
756+ id="linearGradient4164"
757+ gradientUnits="userSpaceOnUse"
758+ x1="16"
759+ y1="0"
760+ x2="16"
761+ y2="26" />
762+ <linearGradient
763+ id="linearGradient3895-3-0-9">
764+ <stop
765+ id="stop3897-7-4"
766+ style="stop-color:#dc6838;stop-opacity:1"
767+ offset="0" />
768+ <stop
769+ id="stop3899-1-1"
770+ style="stop-color:#ba3d12;stop-opacity:1"
771+ offset="1" />
772+ </linearGradient>
773+ <linearGradient
774+ inkscape:collect="always"
775+ xlink:href="#linearGradient3895-6-2"
776+ id="linearGradient4144"
777+ gradientUnits="userSpaceOnUse"
778+ x1="16"
779+ y1="0"
780+ x2="16"
781+ y2="26" />
782+ <linearGradient
783+ id="linearGradient7878">
784+ <stop
785+ id="stop7880"
786+ style="stop-color:#dc6838;stop-opacity:1"
787+ offset="0" />
788+ <stop
789+ id="stop7882"
790+ style="stop-color:#ba3d12;stop-opacity:1"
791+ offset="1" />
792+ </linearGradient>
793+ <linearGradient
794+ y2="43"
795+ x2="23.99999"
796+ y1="4.999989"
797+ x1="23.99999"
798+ gradientTransform="matrix(0.67567574,0,0,0.67567574,-0.21621329,0.78379066)"
799+ gradientUnits="userSpaceOnUse"
800+ id="linearGradient3141"
801+ xlink:href="#linearGradient3924-4-4"
802+ inkscape:collect="always" />
803+ <linearGradient
804+ id="linearGradient3924-4-4">
805+ <stop
806+ id="stop3926-8-4"
807+ style="stop-color:#ffffff;stop-opacity:1;"
808+ offset="0" />
809+ <stop
810+ offset="0.06316455"
811+ style="stop-color:#ffffff;stop-opacity:0.23529412;"
812+ id="stop3928-7-0" />
813+ <stop
814+ id="stop3930-1-4"
815+ style="stop-color:#ffffff;stop-opacity:0.15686275;"
816+ offset="0.95056331" />
817+ <stop
818+ id="stop3932-7-0"
819+ style="stop-color:#ffffff;stop-opacity:0.39215687;"
820+ offset="1" />
821+ </linearGradient>
822+ <linearGradient
823+ y2="24.627615"
824+ x2="20.054544"
825+ y1="15.298182"
826+ x1="16.626165"
827+ gradientTransform="matrix(0.56446029,0,0,0.92170722,2.4265488,-1.2649861)"
828+ gradientUnits="userSpaceOnUse"
829+ id="linearGradient7309"
830+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-2-3"
831+ inkscape:collect="always" />
832+ <linearGradient
833+ id="linearGradient8265-821-176-38-919-66-249-7-7-2-3">
834+ <stop
835+ id="stop2687-1-9-7-1"
836+ style="stop-color:#ffffff;stop-opacity:1"
837+ offset="0" />
838+ <stop
839+ id="stop2689-5-4-2-4"
840+ style="stop-color:#ffffff;stop-opacity:0"
841+ offset="1" />
842+ </linearGradient>
843+ <radialGradient
844+ inkscape:collect="always"
845+ xlink:href="#linearGradient3688-166-749-17-6"
846+ id="radialGradient2976-5"
847+ gradientUnits="userSpaceOnUse"
848+ gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
849+ cx="4.9929786"
850+ cy="43.5"
851+ fx="4.9929786"
852+ fy="43.5"
853+ r="2.5" />
854+ <linearGradient
855+ id="linearGradient3688-166-749-17-6">
856+ <stop
857+ id="stop2883-4-7"
858+ style="stop-color:#181818;stop-opacity:1"
859+ offset="0" />
860+ <stop
861+ id="stop2885-64-2"
862+ style="stop-color:#181818;stop-opacity:0"
863+ offset="1" />
864+ </linearGradient>
865+ <radialGradient
866+ inkscape:collect="always"
867+ xlink:href="#linearGradient3688-464-309-8-9"
868+ id="radialGradient2978-8"
869+ gradientUnits="userSpaceOnUse"
870+ gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
871+ cx="4.9929786"
872+ cy="43.5"
873+ fx="4.9929786"
874+ fy="43.5"
875+ r="2.5" />
876+ <linearGradient
877+ id="linearGradient3688-464-309-8-9">
878+ <stop
879+ id="stop2889-6-5"
880+ style="stop-color:#181818;stop-opacity:1"
881+ offset="0" />
882+ <stop
883+ id="stop2891-7-1"
884+ style="stop-color:#181818;stop-opacity:0"
885+ offset="1" />
886+ </linearGradient>
887+ <linearGradient
888+ inkscape:collect="always"
889+ xlink:href="#linearGradient3702-501-757-0-7"
890+ id="linearGradient2980-8"
891+ gradientUnits="userSpaceOnUse"
892+ x1="25.058096"
893+ y1="47.027729"
894+ x2="25.058096"
895+ y2="39.999443" />
896+ <linearGradient
897+ id="linearGradient3702-501-757-0-7">
898+ <stop
899+ id="stop2895-98-4"
900+ style="stop-color:#181818;stop-opacity:0"
901+ offset="0" />
902+ <stop
903+ id="stop2897-06-9"
904+ style="stop-color:#181818;stop-opacity:1"
905+ offset="0.5" />
906+ <stop
907+ id="stop2899-7-0"
908+ style="stop-color:#181818;stop-opacity:0"
909+ offset="1" />
910+ </linearGradient>
911+ <radialGradient
912+ inkscape:collect="always"
913+ xlink:href="#linearGradient4644-104-3-3-6-9-0-5"
914+ id="radialGradient3166-9-3"
915+ gradientUnits="userSpaceOnUse"
916+ gradientTransform="matrix(1.3450477e-8,1.6179161,-1.7115623,-2.9808191e-8,30.46238,-8.2240921)"
917+ cx="7.4956832"
918+ cy="8.4497671"
919+ fx="7.4956832"
920+ fy="8.4497671"
921+ r="19.99999" />
922+ <linearGradient
923+ id="linearGradient4644-104-3-3-6-9-0-5">
924+ <stop
925+ id="stop5237-6-5-1-2-1-1"
926+ style="stop-color:#ff7a35;stop-opacity:1;"
927+ offset="0" />
928+ <stop
929+ id="stop5239-4-6-4-6-1-8"
930+ style="stop-color:#f0431a;stop-opacity:1;"
931+ offset="1" />
932+ </linearGradient>
933+ <linearGradient
934+ inkscape:collect="always"
935+ xlink:href="#linearGradient3895-6-2-3"
936+ id="linearGradient3168-3-1"
937+ gradientUnits="userSpaceOnUse"
938+ gradientTransform="matrix(0.6923077,0,0,0.69230769,-0.6153838,0.38461483)"
939+ x1="7.255012"
940+ y1="3.6501276"
941+ x2="7.255012"
942+ y2="44.05125" />
943+ <linearGradient
944+ id="linearGradient3895-6-2-3">
945+ <stop
946+ id="stop3897-4-9-4"
947+ style="stop-color:#dc6838;stop-opacity:1"
948+ offset="0" />
949+ <stop
950+ id="stop3899-9-0-1"
951+ style="stop-color:#ba3d12;stop-opacity:1"
952+ offset="1" />
953+ </linearGradient>
954+ <linearGradient
955+ inkscape:collect="always"
956+ xlink:href="#linearGradient3895-0-1-7"
957+ id="linearGradient4184-6"
958+ gradientUnits="userSpaceOnUse"
959+ x1="16"
960+ y1="0"
961+ x2="16"
962+ y2="26" />
963+ <linearGradient
964+ id="linearGradient3895-0-1-7">
965+ <stop
966+ id="stop3897-1-5-8-6"
967+ style="stop-color:#dc6838;stop-opacity:1"
968+ offset="0" />
969+ <stop
970+ id="stop3899-8-0-7"
971+ style="stop-color:#ba3d12;stop-opacity:1"
972+ offset="1" />
973+ </linearGradient>
974+ <linearGradient
975+ inkscape:collect="always"
976+ xlink:href="#linearGradient3895-3-0-9-1"
977+ id="linearGradient4164-3"
978+ gradientUnits="userSpaceOnUse"
979+ x1="16"
980+ y1="0"
981+ x2="16"
982+ y2="26" />
983+ <linearGradient
984+ id="linearGradient3895-3-0-9-1">
985+ <stop
986+ id="stop3897-7-4-5"
987+ style="stop-color:#dc6838;stop-opacity:1"
988+ offset="0" />
989+ <stop
990+ id="stop3899-1-1-0"
991+ style="stop-color:#ba3d12;stop-opacity:1"
992+ offset="1" />
993+ </linearGradient>
994+ <linearGradient
995+ inkscape:collect="always"
996+ xlink:href="#linearGradient3895-6-2-3"
997+ id="linearGradient4144-6"
998+ gradientUnits="userSpaceOnUse"
999+ x1="16"
1000+ y1="0"
1001+ x2="16"
1002+ y2="26" />
1003+ <linearGradient
1004+ id="linearGradient15081">
1005+ <stop
1006+ id="stop15083"
1007+ style="stop-color:#dc6838;stop-opacity:1"
1008+ offset="0" />
1009+ <stop
1010+ id="stop15085"
1011+ style="stop-color:#ba3d12;stop-opacity:1"
1012+ offset="1" />
1013+ </linearGradient>
1014+ <linearGradient
1015+ y2="43"
1016+ x2="23.99999"
1017+ y1="4.999989"
1018+ x1="23.99999"
1019+ gradientTransform="matrix(0.67567574,0,0,0.67567574,-0.21621329,0.78379066)"
1020+ gradientUnits="userSpaceOnUse"
1021+ id="linearGradient3141-7"
1022+ xlink:href="#linearGradient3924-4-4-6"
1023+ inkscape:collect="always" />
1024+ <linearGradient
1025+ id="linearGradient3924-4-4-6">
1026+ <stop
1027+ id="stop3926-8-4-4"
1028+ style="stop-color:#ffffff;stop-opacity:1;"
1029+ offset="0" />
1030+ <stop
1031+ offset="0.06316455"
1032+ style="stop-color:#ffffff;stop-opacity:0.23529412;"
1033+ id="stop3928-7-0-4" />
1034+ <stop
1035+ id="stop3930-1-4-0"
1036+ style="stop-color:#ffffff;stop-opacity:0.15686275;"
1037+ offset="0.95056331" />
1038+ <stop
1039+ id="stop3932-7-0-3"
1040+ style="stop-color:#ffffff;stop-opacity:0.39215687;"
1041+ offset="1" />
1042+ </linearGradient>
1043+ <linearGradient
1044+ y2="24.627615"
1045+ x2="20.054544"
1046+ y1="15.298182"
1047+ x1="16.626165"
1048+ gradientTransform="matrix(0.56446029,0,0,0.92170722,2.4265488,-1.2649861)"
1049+ gradientUnits="userSpaceOnUse"
1050+ id="linearGradient7309-5"
1051+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-2-3-6"
1052+ inkscape:collect="always" />
1053+ <linearGradient
1054+ id="linearGradient8265-821-176-38-919-66-249-7-7-2-3-6">
1055+ <stop
1056+ id="stop2687-1-9-7-1-6"
1057+ style="stop-color:#ffffff;stop-opacity:1"
1058+ offset="0" />
1059+ <stop
1060+ id="stop2689-5-4-2-4-6"
1061+ style="stop-color:#ffffff;stop-opacity:0"
1062+ offset="1" />
1063+ </linearGradient>
1064+ <radialGradient
1065+ inkscape:collect="always"
1066+ xlink:href="#linearGradient3688-166-749-1-5"
1067+ id="radialGradient3013"
1068+ gradientUnits="userSpaceOnUse"
1069+ gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
1070+ cx="4.9929786"
1071+ cy="43.5"
1072+ fx="4.9929786"
1073+ fy="43.5"
1074+ r="2.5" />
1075+ <linearGradient
1076+ id="linearGradient3688-166-749-1-5">
1077+ <stop
1078+ offset="0"
1079+ style="stop-color:#181818;stop-opacity:1"
1080+ id="stop2883-0-3" />
1081+ <stop
1082+ offset="1"
1083+ style="stop-color:#181818;stop-opacity:0"
1084+ id="stop2885-6-5" />
1085+ </linearGradient>
1086+ <radialGradient
1087+ inkscape:collect="always"
1088+ xlink:href="#linearGradient3688-464-309-1-2"
1089+ id="radialGradient3015"
1090+ gradientUnits="userSpaceOnUse"
1091+ gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
1092+ cx="4.9929786"
1093+ cy="43.5"
1094+ fx="4.9929786"
1095+ fy="43.5"
1096+ r="2.5" />
1097+ <linearGradient
1098+ id="linearGradient3688-464-309-1-2">
1099+ <stop
1100+ offset="0"
1101+ style="stop-color:#181818;stop-opacity:1"
1102+ id="stop2889-5-5" />
1103+ <stop
1104+ offset="1"
1105+ style="stop-color:#181818;stop-opacity:0"
1106+ id="stop2891-9-2" />
1107+ </linearGradient>
1108+ <linearGradient
1109+ y2="39.999443"
1110+ x2="25.058096"
1111+ y1="47.027729"
1112+ x1="25.058096"
1113+ gradientUnits="userSpaceOnUse"
1114+ id="linearGradient3968"
1115+ xlink:href="#linearGradient3702-501-757-4-9"
1116+ inkscape:collect="always" />
1117+ <linearGradient
1118+ id="linearGradient3702-501-757-4-9">
1119+ <stop
1120+ offset="0"
1121+ style="stop-color:#181818;stop-opacity:0"
1122+ id="stop2895-9-1" />
1123+ <stop
1124+ offset="0.5"
1125+ style="stop-color:#181818;stop-opacity:1"
1126+ id="stop2897-0-6" />
1127+ <stop
1128+ offset="1"
1129+ style="stop-color:#181818;stop-opacity:0"
1130+ id="stop2899-9-6" />
1131+ </linearGradient>
1132+ <radialGradient
1133+ r="19.99999"
1134+ fy="8.4497671"
1135+ fx="7.4956832"
1136+ cy="8.4497671"
1137+ cx="7.4956832"
1138+ gradientTransform="matrix(2.1421132e-8,2.5766815,-2.7258216,-4.7472306e-8,47.032682,-15.171703)"
1139+ gradientUnits="userSpaceOnUse"
1140+ id="radialGradient2874"
1141+ xlink:href="#linearGradient4644-104-3-3-6-1-4"
1142+ inkscape:collect="always" />
1143+ <linearGradient
1144+ id="linearGradient4644-104-3-3-6-1-4">
1145+ <stop
1146+ offset="0"
1147+ style="stop-color:#ff7a35;stop-opacity:1;"
1148+ id="stop5237-6-5-1-7-1" />
1149+ <stop
1150+ offset="1"
1151+ style="stop-color:#f0431a;stop-opacity:1;"
1152+ id="stop5239-4-6-4-7-1" />
1153+ </linearGradient>
1154+ <linearGradient
1155+ y2="43.283508"
1156+ x2="10.46735"
1157+ y1="3.9247253"
1158+ x1="10.46735"
1159+ gradientTransform="matrix(1.1025642,0,0,1.1025642,-2.4615371,-1.4615389)"
1160+ gradientUnits="userSpaceOnUse"
1161+ id="linearGradient2876"
1162+ xlink:href="#linearGradient3895-1-2"
1163+ inkscape:collect="always" />
1164+ <linearGradient
1165+ id="linearGradient3895-1-2">
1166+ <stop
1167+ offset="0"
1168+ style="stop-color:#dc6838;stop-opacity:1"
1169+ id="stop3897-15-9" />
1170+ <stop
1171+ offset="1"
1172+ style="stop-color:#ba3d12;stop-opacity:1"
1173+ id="stop3899-97-7" />
1174+ </linearGradient>
1175+ <linearGradient
1176+ inkscape:collect="always"
1177+ xlink:href="#linearGradient3924-7-7"
1178+ id="linearGradient2959"
1179+ gradientUnits="userSpaceOnUse"
1180+ gradientTransform="matrix(1.1081082,0,0,1.1081082,-2.5945911,-1.5945839)"
1181+ x1="23.99999"
1182+ y1="4.999989"
1183+ x2="23.99999"
1184+ y2="43" />
1185+ <linearGradient
1186+ id="linearGradient3924-7-7">
1187+ <stop
1188+ offset="0"
1189+ style="stop-color:#ffffff;stop-opacity:1;"
1190+ id="stop3926-6-0" />
1191+ <stop
1192+ id="stop3928-73-4"
1193+ style="stop-color:#ffffff;stop-opacity:0.23529412;"
1194+ offset="0.06316455" />
1195+ <stop
1196+ offset="0.95056331"
1197+ style="stop-color:#ffffff;stop-opacity:0.15686275;"
1198+ id="stop3930-6-5" />
1199+ <stop
1200+ offset="1"
1201+ style="stop-color:#ffffff;stop-opacity:0.39215687;"
1202+ id="stop3932-5-6" />
1203+ </linearGradient>
1204+ <linearGradient
1205+ y2="0"
1206+ x2="24"
1207+ y1="45"
1208+ x1="24"
1209+ gradientTransform="translate(0,1.0000003)"
1210+ gradientUnits="userSpaceOnUse"
1211+ id="linearGradient4796-0"
1212+ xlink:href="#linearGradient3390-178-986-453-3-7-8"
1213+ inkscape:collect="always" />
1214+ <linearGradient
1215+ id="linearGradient3390-178-986-453-3-7-8">
1216+ <stop
1217+ id="stop3624-6-3-3"
1218+ style="stop-color:#ba4712;stop-opacity:1;"
1219+ offset="0" />
1220+ <stop
1221+ offset="0.5"
1222+ style="stop-color:#cf671c;stop-opacity:1;"
1223+ id="stop3856-8-61-4" />
1224+ <stop
1225+ id="stop3626-0-0-3"
1226+ style="stop-color:#e27f39;stop-opacity:1;"
1227+ offset="1" />
1228+ </linearGradient>
1229+ <linearGradient
1230+ y2="0"
1231+ x2="24"
1232+ y1="45"
1233+ x1="24"
1234+ gradientTransform="translate(0,1.0000003)"
1235+ gradientUnits="userSpaceOnUse"
1236+ id="linearGradient4796"
1237+ xlink:href="#linearGradient3390-178-986-453-3-3-5"
1238+ inkscape:collect="always" />
1239+ <linearGradient
1240+ id="linearGradient3390-178-986-453-3-3-5">
1241+ <stop
1242+ id="stop3624-6-9-4"
1243+ style="stop-color:#ba4712;stop-opacity:1;"
1244+ offset="0" />
1245+ <stop
1246+ offset="0.5"
1247+ style="stop-color:#cf671c;stop-opacity:1;"
1248+ id="stop3856-8-6-0" />
1249+ <stop
1250+ id="stop3626-0-9-4"
1251+ style="stop-color:#e27f39;stop-opacity:1;"
1252+ offset="1" />
1253+ </linearGradient>
1254+ <linearGradient
1255+ inkscape:collect="always"
1256+ xlink:href="#linearGradient3390-178-986-453-3-32"
1257+ id="linearGradient4778"
1258+ gradientUnits="userSpaceOnUse"
1259+ gradientTransform="translate(0,1.0000003)"
1260+ x1="24"
1261+ y1="45"
1262+ x2="24"
1263+ y2="0" />
1264+ <linearGradient
1265+ id="linearGradient3390-178-986-453-3-32">
1266+ <stop
1267+ id="stop3624-6-1"
1268+ style="stop-color:#ba4712;stop-opacity:1;"
1269+ offset="0" />
1270+ <stop
1271+ offset="0.5"
1272+ style="stop-color:#cf671c;stop-opacity:1;"
1273+ id="stop3856-8-8" />
1274+ <stop
1275+ id="stop3626-0-04"
1276+ style="stop-color:#e27f39;stop-opacity:1;"
1277+ offset="1" />
1278+ </linearGradient>
1279+ <linearGradient
1280+ y2="24.627615"
1281+ x2="20.054544"
1282+ y1="15.298182"
1283+ x1="16.626165"
1284+ gradientTransform="matrix(0.91182026,0,0,1.4638878,2.0736565,-4.3620364)"
1285+ gradientUnits="userSpaceOnUse"
1286+ id="linearGradient7730"
1287+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-6-4"
1288+ inkscape:collect="always" />
1289+ <linearGradient
1290+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-4">
1291+ <stop
1292+ offset="0"
1293+ style="stop-color:#ffffff;stop-opacity:1"
1294+ id="stop2687-1-9-3-2" />
1295+ <stop
1296+ offset="1"
1297+ style="stop-color:#ffffff;stop-opacity:0"
1298+ id="stop2689-5-4-9-5" />
1299+ </linearGradient>
1300+ <radialGradient
1301+ cx="4.9929786"
1302+ cy="43.5"
1303+ r="2.5"
1304+ fx="4.9929786"
1305+ fy="43.5"
1306+ id="radialGradient2873-966-168"
1307+ xlink:href="#linearGradient3688-166-749-15"
1308+ gradientUnits="userSpaceOnUse"
1309+ gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)" />
1310+ <linearGradient
1311+ id="linearGradient3688-166-749-15">
1312+ <stop
1313+ id="stop2883-9"
1314+ style="stop-color:#181818;stop-opacity:1"
1315+ offset="0" />
1316+ <stop
1317+ id="stop2885-63"
1318+ style="stop-color:#181818;stop-opacity:0"
1319+ offset="1" />
1320+ </linearGradient>
1321+ <radialGradient
1322+ cx="4.9929786"
1323+ cy="43.5"
1324+ r="2.5"
1325+ fx="4.9929786"
1326+ fy="43.5"
1327+ id="radialGradient2875-742-326"
1328+ xlink:href="#linearGradient3688-464-309-7"
1329+ gradientUnits="userSpaceOnUse"
1330+ gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)" />
1331+ <linearGradient
1332+ id="linearGradient3688-464-309-7">
1333+ <stop
1334+ id="stop2889-1"
1335+ style="stop-color:#181818;stop-opacity:1"
1336+ offset="0" />
1337+ <stop
1338+ id="stop2891-71"
1339+ style="stop-color:#181818;stop-opacity:0"
1340+ offset="1" />
1341+ </linearGradient>
1342+ <linearGradient
1343+ x1="25.058096"
1344+ y1="47.027729"
1345+ x2="25.058096"
1346+ y2="39.999443"
1347+ id="linearGradient2877-634-617"
1348+ xlink:href="#linearGradient3702-501-757-6"
1349+ gradientUnits="userSpaceOnUse" />
1350+ <linearGradient
1351+ id="linearGradient3702-501-757-6">
1352+ <stop
1353+ id="stop2895-1"
1354+ style="stop-color:#181818;stop-opacity:0"
1355+ offset="0" />
1356+ <stop
1357+ id="stop2897-1"
1358+ style="stop-color:#181818;stop-opacity:1"
1359+ offset="0.5" />
1360+ <stop
1361+ id="stop2899-1"
1362+ style="stop-color:#181818;stop-opacity:0"
1363+ offset="1" />
1364+ </linearGradient>
1365+ <radialGradient
1366+ inkscape:collect="always"
1367+ xlink:href="#linearGradient4644-104-3-3-6-75"
1368+ id="radialGradient3164"
1369+ gradientUnits="userSpaceOnUse"
1370+ gradientTransform="matrix(2.8395452e-8,3.4156008,-3.6132983,-6.2928403e-8,62.531787,-20.250861)"
1371+ cx="7.4956832"
1372+ cy="8.4497671"
1373+ fx="7.4956832"
1374+ fy="8.4497671"
1375+ r="19.99999" />
1376+ <linearGradient
1377+ id="linearGradient4644-104-3-3-6-75">
1378+ <stop
1379+ offset="0"
1380+ style="stop-color:#ff7a35;stop-opacity:1;"
1381+ id="stop5237-6-5-1-4" />
1382+ <stop
1383+ offset="1"
1384+ style="stop-color:#f0431a;stop-opacity:1;"
1385+ id="stop5239-4-6-4-5" />
1386+ </linearGradient>
1387+ <linearGradient
1388+ inkscape:collect="always"
1389+ xlink:href="#linearGradient3895-5"
1390+ id="linearGradient3166"
1391+ gradientUnits="userSpaceOnUse"
1392+ gradientTransform="matrix(1.4615384,0,0,1.4615385,-3.0768236,-2.0769234)"
1393+ x1="10.533978"
1394+ y1="4.1300125"
1395+ x2="10.533978"
1396+ y2="43.79097" />
1397+ <linearGradient
1398+ id="linearGradient3895-5">
1399+ <stop
1400+ offset="0"
1401+ style="stop-color:#dc6838;stop-opacity:1"
1402+ id="stop3897-8" />
1403+ <stop
1404+ offset="1"
1405+ style="stop-color:#ba3d12;stop-opacity:1"
1406+ id="stop3899-99" />
1407+ </linearGradient>
1408+ <linearGradient
1409+ y2="43"
1410+ x2="23.99999"
1411+ y1="4.999989"
1412+ x1="23.99999"
1413+ gradientTransform="matrix(1.4864864,0,0,1.4884118,-3.6755718,-2.7574897)"
1414+ gradientUnits="userSpaceOnUse"
1415+ id="linearGradient3107"
1416+ xlink:href="#linearGradient3924-6"
1417+ inkscape:collect="always" />
1418+ <linearGradient
1419+ id="linearGradient3924-6">
1420+ <stop
1421+ id="stop3926-7"
1422+ style="stop-color:#ffffff;stop-opacity:1"
1423+ offset="0" />
1424+ <stop
1425+ id="stop3928-2"
1426+ style="stop-color:#ffffff;stop-opacity:0.23529412"
1427+ offset="0.06316455" />
1428+ <stop
1429+ id="stop3930-98"
1430+ style="stop-color:#ffffff;stop-opacity:0.15686275"
1431+ offset="0.95056331" />
1432+ <stop
1433+ id="stop3932-6"
1434+ style="stop-color:#ffffff;stop-opacity:0.39215687"
1435+ offset="1" />
1436+ </linearGradient>
1437+ <linearGradient
1438+ inkscape:collect="always"
1439+ xlink:href="#linearGradient3895-1-4"
1440+ id="linearGradient4058"
1441+ gradientUnits="userSpaceOnUse"
1442+ x1="32"
1443+ y1="-1"
1444+ x2="32"
1445+ y2="51" />
1446+ <linearGradient
1447+ id="linearGradient3895-1-4">
1448+ <stop
1449+ offset="0"
1450+ style="stop-color:#dc6838;stop-opacity:1"
1451+ id="stop3897-5" />
1452+ <stop
1453+ offset="1"
1454+ style="stop-color:#ba3d12;stop-opacity:1"
1455+ id="stop3899-0" />
1456+ </linearGradient>
1457+ <linearGradient
1458+ inkscape:collect="always"
1459+ xlink:href="#linearGradient3895-6-4"
1460+ id="linearGradient4038"
1461+ gradientUnits="userSpaceOnUse"
1462+ x1="32"
1463+ y1="-1"
1464+ x2="32"
1465+ y2="51" />
1466+ <linearGradient
1467+ id="linearGradient3895-6-4">
1468+ <stop
1469+ offset="0"
1470+ style="stop-color:#dc6838;stop-opacity:1"
1471+ id="stop3897-9" />
1472+ <stop
1473+ offset="1"
1474+ style="stop-color:#ba3d12;stop-opacity:1"
1475+ id="stop3899-1-19" />
1476+ </linearGradient>
1477+ <linearGradient
1478+ inkscape:collect="always"
1479+ xlink:href="#linearGradient3895-5"
1480+ id="linearGradient4018"
1481+ gradientUnits="userSpaceOnUse"
1482+ x1="32"
1483+ y1="-1"
1484+ x2="32"
1485+ y2="51" />
1486+ <linearGradient
1487+ id="linearGradient19122">
1488+ <stop
1489+ offset="0"
1490+ style="stop-color:#dc6838;stop-opacity:1"
1491+ id="stop19124" />
1492+ <stop
1493+ offset="1"
1494+ style="stop-color:#ba3d12;stop-opacity:1"
1495+ id="stop19126" />
1496+ </linearGradient>
1497+ <linearGradient
1498+ inkscape:collect="always"
1499+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-7"
1500+ id="linearGradient3158"
1501+ gradientUnits="userSpaceOnUse"
1502+ gradientTransform="matrix(1.1723404,0,0,1.8434143,3.8089875,-5.5299719)"
1503+ x1="16.626165"
1504+ y1="15.298182"
1505+ x2="20.054544"
1506+ y2="24.627615" />
1507+ <linearGradient
1508+ id="linearGradient8265-821-176-38-919-66-249-7-7-7">
1509+ <stop
1510+ id="stop2687-1-9-78"
1511+ style="stop-color:#ffffff;stop-opacity:1"
1512+ offset="0" />
1513+ <stop
1514+ id="stop2689-5-4-5"
1515+ style="stop-color:#ffffff;stop-opacity:0"
1516+ offset="1" />
1517+ </linearGradient>
1518+ <linearGradient
1519+ y2="24.627615"
1520+ x2="20.054544"
1521+ y1="15.298182"
1522+ x1="16.626165"
1523+ gradientTransform="matrix(1.2157604,0,0,1.8976324,2.7649759,-5.839677)"
1524+ gradientUnits="userSpaceOnUse"
1525+ id="linearGradient19145"
1526+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-7"
1527+ inkscape:collect="always" />
1528+ <radialGradient
1529+ cx="4.9929786"
1530+ cy="43.5"
1531+ r="2.5"
1532+ fx="4.9929786"
1533+ fy="43.5"
1534+ id="radialGradient2455"
1535+ xlink:href="#linearGradient3688-166-749-4"
1536+ gradientUnits="userSpaceOnUse"
1537+ gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)" />
1538+ <linearGradient
1539+ id="linearGradient3688-166-749-4">
1540+ <stop
1541+ id="stop2883-8"
1542+ style="stop-color:#181818;stop-opacity:1"
1543+ offset="0" />
1544+ <stop
1545+ id="stop2885-5"
1546+ style="stop-color:#181818;stop-opacity:0"
1547+ offset="1" />
1548+ </linearGradient>
1549+ <radialGradient
1550+ cx="4.9929786"
1551+ cy="43.5"
1552+ r="2.5"
1553+ fx="4.9929786"
1554+ fy="43.5"
1555+ id="radialGradient2457"
1556+ xlink:href="#linearGradient3688-464-309-2"
1557+ gradientUnits="userSpaceOnUse"
1558+ gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)" />
1559+ <linearGradient
1560+ id="linearGradient3688-464-309-2">
1561+ <stop
1562+ id="stop2889-59"
1563+ style="stop-color:#181818;stop-opacity:1"
1564+ offset="0" />
1565+ <stop
1566+ id="stop2891-3"
1567+ style="stop-color:#181818;stop-opacity:0"
1568+ offset="1" />
1569+ </linearGradient>
1570+ <linearGradient
1571+ x1="25.058096"
1572+ y1="47.027729"
1573+ x2="25.058096"
1574+ y2="39.999443"
1575+ id="linearGradient2459"
1576+ xlink:href="#linearGradient3702-501-757-46"
1577+ gradientUnits="userSpaceOnUse" />
1578+ <linearGradient
1579+ id="linearGradient3702-501-757-46">
1580+ <stop
1581+ id="stop2895-0"
1582+ style="stop-color:#181818;stop-opacity:0"
1583+ offset="0" />
1584+ <stop
1585+ id="stop2897-2"
1586+ style="stop-color:#181818;stop-opacity:1"
1587+ offset="0.5" />
1588+ <stop
1589+ id="stop2899-3"
1590+ style="stop-color:#181818;stop-opacity:0"
1591+ offset="1" />
1592+ </linearGradient>
1593+ <radialGradient
1594+ inkscape:collect="always"
1595+ xlink:href="#linearGradient4644-104-3-3-6-3"
1596+ id="radialGradient3171"
1597+ gradientUnits="userSpaceOnUse"
1598+ gradientTransform="matrix(5.9281743e-8,7.1308165,-7.5435537,-1.3137686e-7,127.74162,-114.17286)"
1599+ cx="7.4956832"
1600+ cy="8.4497671"
1601+ fx="7.4956832"
1602+ fy="8.4497671"
1603+ r="19.99999" />
1604+ <linearGradient
1605+ id="linearGradient4644-104-3-3-6-3">
1606+ <stop
1607+ id="stop5237-6-5-1-79"
1608+ style="stop-color:#ff7a35;stop-opacity:1;"
1609+ offset="0" />
1610+ <stop
1611+ id="stop5239-4-6-4-3"
1612+ style="stop-color:#f0431a;stop-opacity:1;"
1613+ offset="1" />
1614+ </linearGradient>
1615+ <linearGradient
1616+ inkscape:collect="always"
1617+ xlink:href="#linearGradient3895-64"
1618+ id="linearGradient3173"
1619+ gradientUnits="userSpaceOnUse"
1620+ gradientTransform="matrix(3.0512825,0,0,3.0512824,-9.2307627,-76.23077)"
1621+ x1="13.013197"
1622+ y1="4.4475093"
1623+ x2="13.013197"
1624+ y2="43.611675" />
1625+ <linearGradient
1626+ id="linearGradient3895-64">
1627+ <stop
1628+ id="stop3897-67"
1629+ style="stop-color:#dc6838;stop-opacity:1"
1630+ offset="0" />
1631+ <stop
1632+ id="stop3899-27"
1633+ style="stop-color:#ba3d12;stop-opacity:1"
1634+ offset="1" />
1635+ </linearGradient>
1636+ <linearGradient
1637+ y2="43"
1638+ x2="23.99999"
1639+ y1="4.999989"
1640+ x1="23.99999"
1641+ gradientTransform="matrix(3.1585558,0,0,3.1621622,-11.738617,-78.89186)"
1642+ gradientUnits="userSpaceOnUse"
1643+ id="linearGradient3128"
1644+ xlink:href="#linearGradient3924-2"
1645+ inkscape:collect="always" />
1646+ <linearGradient
1647+ id="linearGradient3924-2">
1648+ <stop
1649+ id="stop3926-5"
1650+ style="stop-color:#ffffff;stop-opacity:1;"
1651+ offset="0" />
1652+ <stop
1653+ offset="0.06316455"
1654+ style="stop-color:#ffffff;stop-opacity:0.23529412;"
1655+ id="stop3928-5" />
1656+ <stop
1657+ id="stop3930-7"
1658+ style="stop-color:#ffffff;stop-opacity:0.15686275;"
1659+ offset="0.95056331" />
1660+ <stop
1661+ id="stop3932-82"
1662+ style="stop-color:#ffffff;stop-opacity:0.39215687;"
1663+ offset="1" />
1664+ </linearGradient>
1665+ <linearGradient
1666+ inkscape:collect="always"
1667+ xlink:href="#linearGradient3895-9"
1668+ id="linearGradient3936"
1669+ gradientUnits="userSpaceOnUse"
1670+ x1="57.292713"
1671+ y1="-63.890587"
1672+ x2="57.292713"
1673+ y2="43.234192" />
1674+ <linearGradient
1675+ id="linearGradient3895-9">
1676+ <stop
1677+ id="stop3897-2"
1678+ style="stop-color:#dc6838;stop-opacity:1"
1679+ offset="0" />
1680+ <stop
1681+ id="stop3899-31"
1682+ style="stop-color:#ba3d12;stop-opacity:1"
1683+ offset="1" />
1684+ </linearGradient>
1685+ <linearGradient
1686+ inkscape:collect="always"
1687+ xlink:href="#linearGradient3895-4"
1688+ id="linearGradient3916"
1689+ gradientUnits="userSpaceOnUse"
1690+ x1="57.292713"
1691+ y1="-63.890587"
1692+ x2="57.292713"
1693+ y2="43.234192" />
1694+ <linearGradient
1695+ id="linearGradient3895-4">
1696+ <stop
1697+ id="stop3897-4-1"
1698+ style="stop-color:#dc6838;stop-opacity:1"
1699+ offset="0" />
1700+ <stop
1701+ id="stop3899-3"
1702+ style="stop-color:#ba3d12;stop-opacity:1"
1703+ offset="1" />
1704+ </linearGradient>
1705+ <linearGradient
1706+ inkscape:collect="always"
1707+ xlink:href="#linearGradient3895-64"
1708+ id="linearGradient3896"
1709+ gradientUnits="userSpaceOnUse"
1710+ x1="57.292713"
1711+ y1="-63.890587"
1712+ x2="57.292713"
1713+ y2="43.234192" />
1714+ <linearGradient
1715+ id="linearGradient19504">
1716+ <stop
1717+ id="stop19506"
1718+ style="stop-color:#dc6838;stop-opacity:1"
1719+ offset="0" />
1720+ <stop
1721+ id="stop19508"
1722+ style="stop-color:#ba3d12;stop-opacity:1"
1723+ offset="1" />
1724+ </linearGradient>
1725+ <linearGradient
1726+ inkscape:collect="always"
1727+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-9"
1728+ id="linearGradient3165"
1729+ gradientUnits="userSpaceOnUse"
1730+ gradientTransform="matrix(2.2144204,0,0,3.4699564,10.750311,-67.821123)"
1731+ x1="16.626165"
1732+ y1="15.298182"
1733+ x2="20.054544"
1734+ y2="24.627615" />
1735+ <linearGradient
1736+ id="linearGradient8265-821-176-38-919-66-249-7-7-9">
1737+ <stop
1738+ offset="0"
1739+ style="stop-color:#ffffff;stop-opacity:1"
1740+ id="stop2687-1-9-9" />
1741+ <stop
1742+ offset="1"
1743+ style="stop-color:#ffffff;stop-opacity:0"
1744+ id="stop2689-5-4-7" />
1745+ </linearGradient>
1746+ <linearGradient
1747+ y2="24.627615"
1748+ x2="20.054544"
1749+ y1="15.298182"
1750+ x1="16.626165"
1751+ gradientTransform="matrix(2.5617804,0,0,4.5000997,2.3974188,-87.705519)"
1752+ gradientUnits="userSpaceOnUse"
1753+ id="linearGradient19527"
1754+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-9"
1755+ inkscape:collect="always" />
1756+ <radialGradient
1757+ inkscape:collect="always"
1758+ xlink:href="#linearGradient3688-166-749-1-5-3"
1759+ id="radialGradient3013-8"
1760+ gradientUnits="userSpaceOnUse"
1761+ gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
1762+ cx="4.9929786"
1763+ cy="43.5"
1764+ fx="4.9929786"
1765+ fy="43.5"
1766+ r="2.5" />
1767+ <linearGradient
1768+ id="linearGradient3688-166-749-1-5-3">
1769+ <stop
1770+ offset="0"
1771+ style="stop-color:#181818;stop-opacity:1"
1772+ id="stop2883-0-5" />
1773+ <stop
1774+ offset="1"
1775+ style="stop-color:#181818;stop-opacity:0"
1776+ id="stop2885-6-3" />
1777+ </linearGradient>
1778+ <radialGradient
1779+ inkscape:collect="always"
1780+ xlink:href="#linearGradient3688-464-309-1-3"
1781+ id="radialGradient3015-2"
1782+ gradientUnits="userSpaceOnUse"
1783+ gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
1784+ cx="4.9929786"
1785+ cy="43.5"
1786+ fx="4.9929786"
1787+ fy="43.5"
1788+ r="2.5" />
1789+ <linearGradient
1790+ id="linearGradient3688-464-309-1-3">
1791+ <stop
1792+ offset="0"
1793+ style="stop-color:#181818;stop-opacity:1"
1794+ id="stop2889-5-6" />
1795+ <stop
1796+ offset="1"
1797+ style="stop-color:#181818;stop-opacity:0"
1798+ id="stop2891-9-0" />
1799+ </linearGradient>
1800+ <linearGradient
1801+ y2="39.999443"
1802+ x2="25.058096"
1803+ y1="47.027729"
1804+ x1="25.058096"
1805+ gradientUnits="userSpaceOnUse"
1806+ id="linearGradient5062"
1807+ xlink:href="#linearGradient3702-501-757-4-5"
1808+ inkscape:collect="always" />
1809+ <linearGradient
1810+ id="linearGradient3702-501-757-4-5">
1811+ <stop
1812+ offset="0"
1813+ style="stop-color:#181818;stop-opacity:0"
1814+ id="stop2895-9-0" />
1815+ <stop
1816+ offset="0.5"
1817+ style="stop-color:#181818;stop-opacity:1"
1818+ id="stop2897-0-1" />
1819+ <stop
1820+ offset="1"
1821+ style="stop-color:#181818;stop-opacity:0"
1822+ id="stop2899-9-5" />
1823+ </linearGradient>
1824+ <filter
1825+ color-interpolation-filters="sRGB"
1826+ inkscape:collect="always"
1827+ id="filter5031">
1828+ <feGaussianBlur
1829+ inkscape:collect="always"
1830+ stdDeviation="1.08"
1831+ id="feGaussianBlur5033" />
1832+ </filter>
1833+ <linearGradient
1834+ inkscape:collect="always"
1835+ xlink:href="#linearGradient4910"
1836+ id="linearGradient4908"
1837+ gradientUnits="userSpaceOnUse"
1838+ gradientTransform="matrix(2.5712119,0,0,2.571428,-351.9636,-781.71399)"
1839+ x1="156.00049"
1840+ y1="450.98816"
1841+ x2="156.00049"
1842+ y2="453" />
1843+ <linearGradient
1844+ id="linearGradient4910">
1845+ <stop
1846+ offset="0"
1847+ style="stop-color:#ffaf85;stop-opacity:1;"
1848+ id="stop4912" />
1849+ <stop
1850+ offset="1"
1851+ style="stop-color:#ff915b;stop-opacity:1;"
1852+ id="stop4914" />
1853+ </linearGradient>
1854+ <linearGradient
1855+ inkscape:collect="always"
1856+ xlink:href="#linearGradient4933"
1857+ id="linearGradient4939"
1858+ gradientUnits="userSpaceOnUse"
1859+ gradientTransform="matrix(2.5712119,0,0,2.571428,-351.9636,-781.71399)"
1860+ x1="152.05421"
1861+ y1="452.16666"
1862+ x2="148.55392"
1863+ y2="452.16666" />
1864+ <linearGradient
1865+ id="linearGradient4933">
1866+ <stop
1867+ id="stop4935"
1868+ style="stop-color:#ffa87b;stop-opacity:0;"
1869+ offset="0" />
1870+ <stop
1871+ id="stop4937"
1872+ style="stop-color:#ff7d3e;stop-opacity:1;"
1873+ offset="1" />
1874+ </linearGradient>
1875+ <linearGradient
1876+ inkscape:collect="always"
1877+ xlink:href="#linearGradient4933"
1878+ id="linearGradient4943"
1879+ gradientUnits="userSpaceOnUse"
1880+ gradientTransform="matrix(-2.5712119,0,0,2.571428,583.96358,-241.35181)"
1881+ x1="152.05421"
1882+ y1="452.16666"
1883+ x2="148.55392"
1884+ y2="452.16666" />
1885+ <linearGradient
1886+ id="linearGradient19695">
1887+ <stop
1888+ id="stop19697"
1889+ style="stop-color:#ffa87b;stop-opacity:0;"
1890+ offset="0" />
1891+ <stop
1892+ id="stop19699"
1893+ style="stop-color:#ff7d3e;stop-opacity:1;"
1894+ offset="1" />
1895+ </linearGradient>
1896+ <linearGradient
1897+ inkscape:collect="always"
1898+ xlink:href="#linearGradient4644-104-3-3-6-1-0"
1899+ id="linearGradient4891"
1900+ gradientUnits="userSpaceOnUse"
1901+ gradientTransform="matrix(2.5714286,0,0,2.5750001,-280.00001,-243.11285)"
1902+ x1="155.04018"
1903+ y1="453.00262"
1904+ x2="165.61214"
1905+ y2="492.4577" />
1906+ <linearGradient
1907+ id="linearGradient4644-104-3-3-6-1-0">
1908+ <stop
1909+ offset="0"
1910+ style="stop-color:#ff7a35;stop-opacity:1;"
1911+ id="stop5237-6-5-1-7-2" />
1912+ <stop
1913+ offset="1"
1914+ style="stop-color:#f0431a;stop-opacity:1;"
1915+ id="stop5239-4-6-4-7-9" />
1916+ </linearGradient>
1917+ <linearGradient
1918+ y2="24.627615"
1919+ x2="20.054544"
1920+ y1="15.298182"
1921+ x1="16.626165"
1922+ gradientTransform="matrix(2.3446832,0,0,3.6982468,23.617962,361.87484)"
1923+ gradientUnits="userSpaceOnUse"
1924+ id="linearGradient4960"
1925+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-6-5"
1926+ inkscape:collect="always" />
1927+ <linearGradient
1928+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5">
1929+ <stop
1930+ offset="0"
1931+ style="stop-color:#ffffff;stop-opacity:1"
1932+ id="stop2687-1-9-3-0" />
1933+ <stop
1934+ offset="1"
1935+ style="stop-color:#ffffff;stop-opacity:0"
1936+ id="stop2689-5-4-9-8" />
1937+ </linearGradient>
1938+ <linearGradient
1939+ inkscape:collect="always"
1940+ xlink:href="#linearGradient3895-6-7"
1941+ id="linearGradient5160"
1942+ gradientUnits="userSpaceOnUse"
1943+ x1="154"
1944+ y1="1016.3622"
1945+ x2="154"
1946+ y2="934.36218" />
1947+ <linearGradient
1948+ id="linearGradient3895-6-7">
1949+ <stop
1950+ id="stop3897-4-4"
1951+ style="stop-color:#dc6838;stop-opacity:1"
1952+ offset="0" />
1953+ <stop
1954+ id="stop3899-9-8"
1955+ style="stop-color:#ba3d12;stop-opacity:1"
1956+ offset="1" />
1957+ </linearGradient>
1958+ <linearGradient
1959+ inkscape:collect="always"
1960+ xlink:href="#linearGradient3895-6-7"
1961+ id="linearGradient5152"
1962+ x1="154"
1963+ y1="1016.3622"
1964+ x2="154"
1965+ y2="934.36218"
1966+ gradientUnits="userSpaceOnUse" />
1967+ <linearGradient
1968+ id="linearGradient19714">
1969+ <stop
1970+ id="stop19716"
1971+ style="stop-color:#dc6838;stop-opacity:1"
1972+ offset="0" />
1973+ <stop
1974+ id="stop19718"
1975+ style="stop-color:#ba3d12;stop-opacity:1"
1976+ offset="1" />
1977+ </linearGradient>
1978+ <linearGradient
1979+ inkscape:collect="always"
1980+ xlink:href="#linearGradient3895-6-7"
1981+ id="linearGradient5144"
1982+ x1="80"
1983+ y1="391"
1984+ x2="80"
1985+ y2="475"
1986+ gradientUnits="userSpaceOnUse" />
1987+ <linearGradient
1988+ id="linearGradient19721">
1989+ <stop
1990+ id="stop19723"
1991+ style="stop-color:#dc6838;stop-opacity:1"
1992+ offset="0" />
1993+ <stop
1994+ id="stop19725"
1995+ style="stop-color:#ba3d12;stop-opacity:1"
1996+ offset="1" />
1997+ </linearGradient>
1998+ <linearGradient
1999+ inkscape:collect="always"
2000+ xlink:href="#linearGradient5105"
2001+ id="linearGradient5111"
2002+ x1="149"
2003+ y1="936.36218"
2004+ x2="149"
2005+ y2="1013.3622"
2006+ gradientUnits="userSpaceOnUse" />
2007+ <linearGradient
2008+ id="linearGradient5105">
2009+ <stop
2010+ style="stop-color:#f5f5f5;stop-opacity:1;"
2011+ offset="0"
2012+ id="stop5107" />
2013+ <stop
2014+ style="stop-color:#ebebeb;stop-opacity:1;"
2015+ offset="1"
2016+ id="stop5109" />
2017+ </linearGradient>
2018+ <linearGradient
2019+ inkscape:collect="always"
2020+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-8-2"
2021+ id="linearGradient4906"
2022+ gradientUnits="userSpaceOnUse"
2023+ gradientTransform="matrix(2.5714286,0,0,2.5750001,-352.00001,-783.47503)"
2024+ x1="155.04018"
2025+ y1="453.00262"
2026+ x2="166.81435"
2027+ y2="496.88348" />
2028+ <linearGradient
2029+ id="linearGradient8265-821-176-38-919-66-249-7-7-8-2">
2030+ <stop
2031+ id="stop2687-1-9-6-1"
2032+ style="stop-color:#ffffff;stop-opacity:1"
2033+ offset="0" />
2034+ <stop
2035+ id="stop2689-5-4-8-39"
2036+ style="stop-color:#ffffff;stop-opacity:0"
2037+ offset="1" />
2038+ </linearGradient>
2039+ <radialGradient
2040+ inkscape:collect="always"
2041+ xlink:href="#linearGradient4918"
2042+ id="radialGradient4924"
2043+ cx="56"
2044+ cy="383.5"
2045+ fx="56"
2046+ fy="383.5"
2047+ r="16"
2048+ gradientTransform="matrix(1,0,0,0.09375,0,347.54687)"
2049+ gradientUnits="userSpaceOnUse" />
2050+ <linearGradient
2051+ inkscape:collect="always"
2052+ id="linearGradient4918">
2053+ <stop
2054+ style="stop-color:#ffffff;stop-opacity:1;"
2055+ offset="0"
2056+ id="stop4920" />
2057+ <stop
2058+ style="stop-color:#ffffff;stop-opacity:0;"
2059+ offset="1"
2060+ id="stop4922" />
2061+ </linearGradient>
2062+ <linearGradient
2063+ x1="7.8000002"
2064+ y1="0.036976371"
2065+ x2="7.8000002"
2066+ y2="12.957804"
2067+ id="linearGradient4010-8"
2068+ xlink:href="#linearGradient3895-20"
2069+ gradientUnits="userSpaceOnUse" />
2070+ <linearGradient
2071+ id="linearGradient3895-20">
2072+ <stop
2073+ id="stop3897-79"
2074+ style="stop-color:#dc6838;stop-opacity:1"
2075+ offset="0" />
2076+ <stop
2077+ id="stop3899-21"
2078+ style="stop-color:#ba3d12;stop-opacity:1"
2079+ offset="1" />
2080+ </linearGradient>
2081+ <linearGradient
2082+ gradientTransform="translate(0.00728597,-1.4260155e-5)"
2083+ y2="12.957804"
2084+ x2="7.8000002"
2085+ y1="0.036976371"
2086+ x1="7.8000002"
2087+ gradientUnits="userSpaceOnUse"
2088+ id="linearGradient19941"
2089+ xlink:href="#linearGradient3895-20"
2090+ inkscape:collect="always" />
2091+ <linearGradient
2092+ id="linearGradient3688-166-749-1-5-8">
2093+ <stop
2094+ offset="0"
2095+ style="stop-color:#181818;stop-opacity:1"
2096+ id="stop2883-0-5-8" />
2097+ <stop
2098+ offset="1"
2099+ style="stop-color:#181818;stop-opacity:0"
2100+ id="stop2885-6-3-6" />
2101+ </linearGradient>
2102+ <linearGradient
2103+ id="linearGradient3688-464-309-1-3-4">
2104+ <stop
2105+ offset="0"
2106+ style="stop-color:#181818;stop-opacity:1"
2107+ id="stop2889-5-6-8" />
2108+ <stop
2109+ offset="1"
2110+ style="stop-color:#181818;stop-opacity:0"
2111+ id="stop2891-9-0-2" />
2112+ </linearGradient>
2113+ <linearGradient
2114+ id="linearGradient3702-501-757-4-5-8">
2115+ <stop
2116+ offset="0"
2117+ style="stop-color:#181818;stop-opacity:0"
2118+ id="stop2895-9-0-9" />
2119+ <stop
2120+ offset="0.5"
2121+ style="stop-color:#181818;stop-opacity:1"
2122+ id="stop2897-0-1-1" />
2123+ <stop
2124+ offset="1"
2125+ style="stop-color:#181818;stop-opacity:0"
2126+ id="stop2899-9-5-2" />
2127+ </linearGradient>
2128+ <linearGradient
2129+ id="linearGradient4910-1">
2130+ <stop
2131+ offset="0"
2132+ style="stop-color:#ffaf85;stop-opacity:1;"
2133+ id="stop4912-5" />
2134+ <stop
2135+ offset="1"
2136+ style="stop-color:#ff915b;stop-opacity:1;"
2137+ id="stop4914-6" />
2138+ </linearGradient>
2139+ <linearGradient
2140+ id="linearGradient4933-8">
2141+ <stop
2142+ id="stop4935-6"
2143+ style="stop-color:#ffa87b;stop-opacity:0;"
2144+ offset="0" />
2145+ <stop
2146+ id="stop4937-8"
2147+ style="stop-color:#ff7d3e;stop-opacity:1;"
2148+ offset="1" />
2149+ </linearGradient>
2150+ <linearGradient
2151+ id="linearGradient9057">
2152+ <stop
2153+ id="stop9059"
2154+ style="stop-color:#ffa87b;stop-opacity:0;"
2155+ offset="0" />
2156+ <stop
2157+ id="stop9061"
2158+ style="stop-color:#ff7d3e;stop-opacity:1;"
2159+ offset="1" />
2160+ </linearGradient>
2161+ <linearGradient
2162+ id="linearGradient4644-104-3-3-6-1-2">
2163+ <stop
2164+ offset="0"
2165+ style="stop-color:#ff7a35;stop-opacity:1;"
2166+ id="stop5237-6-5-1-7-3" />
2167+ <stop
2168+ offset="1"
2169+ style="stop-color:#f0431a;stop-opacity:1;"
2170+ id="stop5239-4-6-4-7-7" />
2171+ </linearGradient>
2172+ <linearGradient
2173+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5-4">
2174+ <stop
2175+ offset="0"
2176+ style="stop-color:#ffffff;stop-opacity:1"
2177+ id="stop2687-1-9-3-0-0" />
2178+ <stop
2179+ offset="1"
2180+ style="stop-color:#ffffff;stop-opacity:0"
2181+ id="stop2689-5-4-9-8-2" />
2182+ </linearGradient>
2183+ <linearGradient
2184+ id="linearGradient3895-6-0">
2185+ <stop
2186+ id="stop3897-4-92"
2187+ style="stop-color:#dc6838;stop-opacity:1"
2188+ offset="0" />
2189+ <stop
2190+ id="stop3899-9-4"
2191+ style="stop-color:#ba3d12;stop-opacity:1"
2192+ offset="1" />
2193+ </linearGradient>
2194+ <linearGradient
2195+ id="linearGradient9076">
2196+ <stop
2197+ id="stop9078"
2198+ style="stop-color:#dc6838;stop-opacity:1"
2199+ offset="0" />
2200+ <stop
2201+ id="stop9080"
2202+ style="stop-color:#ba3d12;stop-opacity:1"
2203+ offset="1" />
2204+ </linearGradient>
2205+ <linearGradient
2206+ id="linearGradient9083">
2207+ <stop
2208+ id="stop9085"
2209+ style="stop-color:#dc6838;stop-opacity:1"
2210+ offset="0" />
2211+ <stop
2212+ id="stop9087"
2213+ style="stop-color:#ba3d12;stop-opacity:1"
2214+ offset="1" />
2215+ </linearGradient>
2216+ <linearGradient
2217+ id="linearGradient5105-7">
2218+ <stop
2219+ style="stop-color:#f5f5f5;stop-opacity:1;"
2220+ offset="0"
2221+ id="stop5107-5" />
2222+ <stop
2223+ style="stop-color:#ebebeb;stop-opacity:1;"
2224+ offset="1"
2225+ id="stop5109-6" />
2226+ </linearGradient>
2227+ <linearGradient
2228+ id="linearGradient8265-821-176-38-919-66-249-7-7-8-7">
2229+ <stop
2230+ id="stop2687-1-9-6-2"
2231+ style="stop-color:#ffffff;stop-opacity:1"
2232+ offset="0" />
2233+ <stop
2234+ id="stop2689-5-4-8-4"
2235+ style="stop-color:#ffffff;stop-opacity:0"
2236+ offset="1" />
2237+ </linearGradient>
2238+ <linearGradient
2239+ id="linearGradient5707">
2240+ <stop
2241+ id="stop5709"
2242+ offset="0"
2243+ style="stop-color:#000000;stop-opacity:1;" />
2244+ <stop
2245+ style="stop-color:#000000;stop-opacity:0.81896549;"
2246+ offset="0.80000001"
2247+ id="stop5713" />
2248+ <stop
2249+ id="stop5711"
2250+ offset="1"
2251+ style="stop-color:#000000;stop-opacity:0;" />
2252+ </linearGradient>
2253+ <linearGradient
2254+ id="linearGradient4910-2">
2255+ <stop
2256+ offset="0"
2257+ style="stop-color:#ffaf85;stop-opacity:1;"
2258+ id="stop4912-9" />
2259+ <stop
2260+ offset="1"
2261+ style="stop-color:#ff915b;stop-opacity:1;"
2262+ id="stop4914-1" />
2263+ </linearGradient>
2264+ <linearGradient
2265+ id="linearGradient4933-0">
2266+ <stop
2267+ id="stop4935-9"
2268+ style="stop-color:#ffa87b;stop-opacity:0;"
2269+ offset="0" />
2270+ <stop
2271+ id="stop4937-9"
2272+ style="stop-color:#ff7d3e;stop-opacity:1;"
2273+ offset="1" />
2274+ </linearGradient>
2275+ <linearGradient
2276+ id="linearGradient9321">
2277+ <stop
2278+ id="stop9323"
2279+ style="stop-color:#ffa87b;stop-opacity:0;"
2280+ offset="0" />
2281+ <stop
2282+ id="stop9325"
2283+ style="stop-color:#ff7d3e;stop-opacity:1;"
2284+ offset="1" />
2285+ </linearGradient>
2286+ <linearGradient
2287+ id="linearGradient4644-104-3-3-6-1-8">
2288+ <stop
2289+ offset="0"
2290+ style="stop-color:#ff7a35;stop-opacity:1;"
2291+ id="stop5237-6-5-1-7-0" />
2292+ <stop
2293+ offset="1"
2294+ style="stop-color:#f0431a;stop-opacity:1;"
2295+ id="stop5239-4-6-4-7-6" />
2296+ </linearGradient>
2297+ <linearGradient
2298+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5-6">
2299+ <stop
2300+ offset="0"
2301+ style="stop-color:#ffffff;stop-opacity:1"
2302+ id="stop2687-1-9-3-0-2" />
2303+ <stop
2304+ offset="1"
2305+ style="stop-color:#ffffff;stop-opacity:0"
2306+ id="stop2689-5-4-9-8-8" />
2307+ </linearGradient>
2308+ <linearGradient
2309+ id="linearGradient5105-1">
2310+ <stop
2311+ style="stop-color:#f5f5f5;stop-opacity:1;"
2312+ offset="0"
2313+ id="stop5107-2" />
2314+ <stop
2315+ style="stop-color:#ebebeb;stop-opacity:1;"
2316+ offset="1"
2317+ id="stop5109-1" />
2318+ </linearGradient>
2319+ <clipPath
2320+ clipPathUnits="userSpaceOnUse"
2321+ id="clipPath5480">
2322+ <path
2323+ sodipodi:nodetypes="ccsccccccccc"
2324+ inkscape:connector-curvature="0"
2325+ id="path5482"
2326+ d="m 120.99989,936.41601 0.1873,50.81094 c 0,0 -0.26854,21.31825 22.94772,25.81115 13.35265,2.5843 38.86509,-3.408 38.86509,-3.408 l 0,-73.21409 -21,-0.0538 0,54 -20,0 0,-33 -8,0 11.17715,-21 z"
2327+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
2328+ </clipPath>
2329+ <linearGradient
2330+ inkscape:collect="always"
2331+ xlink:href="#linearGradient5367"
2332+ id="linearGradient5771"
2333+ gradientUnits="userSpaceOnUse"
2334+ x1="1424"
2335+ y1="1028"
2336+ x2="1424"
2337+ y2="1181.5043" />
2338+ <linearGradient
2339+ inkscape:collect="always"
2340+ id="linearGradient5367">
2341+ <stop
2342+ style="stop-color:#ffffff;stop-opacity:1;"
2343+ offset="0"
2344+ id="stop5369" />
2345+ <stop
2346+ style="stop-color:#ffffff;stop-opacity:0;"
2347+ offset="1"
2348+ id="stop5371" />
2349+ </linearGradient>
2350+ <clipPath
2351+ clipPathUnits="userSpaceOnUse"
2352+ id="clipPath5623">
2353+ <rect
2354+ ry="12.016669"
2355+ y="1037"
2356+ x="1316"
2357+ height="206"
2358+ width="216"
2359+ id="rect5625"
2360+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
2361+ </clipPath>
2362+ <clipPath
2363+ clipPathUnits="userSpaceOnUse"
2364+ id="clipPath5606">
2365+ <path
2366+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
2367+ d="m 109.15625,918.36217 c -5.15625,0 -7.36925,2.80945 -8.875,5.0625 -1.07965,1.6155 -1.94945,2.5964 -2.20315,5.0469 0.4327,-2.8977 2.9156,-5.1094 5.9375,-5.1094 l 95.9688,0 c 3.0219,0 5.5048,2.2117 5.9375,5.1094 -0.2535,-2.4505 -1.1235,-3.4314 -2.20315,-5.0469 -1.50575,-2.25305 -3.71875,-5.0625 -8.875,-5.0625 l -42.84375,0 -42.84375,0 z"
2368+ id="path5608"
2369+ inkscape:connector-curvature="0" />
2370+ </clipPath>
2371+ <clipPath
2372+ clipPathUnits="userSpaceOnUse"
2373+ id="clipPath5651">
2374+ <rect
2375+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
2376+ id="rect5653"
2377+ width="216"
2378+ height="206"
2379+ x="1316"
2380+ y="1039"
2381+ ry="12.016669" />
2382+ </clipPath>
2383+ <linearGradient
2384+ inkscape:collect="always"
2385+ xlink:href="#linearGradient5683-2"
2386+ id="linearGradient5753-3"
2387+ gradientUnits="userSpaceOnUse"
2388+ x1="1432"
2389+ y1="1256"
2390+ x2="1432"
2391+ y2="1168" />
2392+ <linearGradient
2393+ inkscape:collect="always"
2394+ id="linearGradient5683-2">
2395+ <stop
2396+ style="stop-color:#000000;stop-opacity:1;"
2397+ offset="0"
2398+ id="stop5685-0" />
2399+ <stop
2400+ style="stop-color:#000000;stop-opacity:0;"
2401+ offset="1"
2402+ id="stop5687-2" />
2403+ </linearGradient>
2404+ <filter
2405+ inkscape:collect="always"
2406+ id="filter5695-7"
2407+ color-interpolation-filters="sRGB">
2408+ <feGaussianBlur
2409+ inkscape:collect="always"
2410+ stdDeviation="3.12"
2411+ id="feGaussianBlur5697-6" />
2412+ </filter>
2413+ <linearGradient
2414+ inkscape:collect="always"
2415+ xlink:href="#linearGradient5707-0"
2416+ id="linearGradient5755-3"
2417+ gradientUnits="userSpaceOnUse"
2418+ spreadMethod="reflect"
2419+ x1="152"
2420+ y1="1021.6122"
2421+ x2="204"
2422+ y2="1021.6122" />
2423+ <linearGradient
2424+ id="linearGradient5707-0">
2425+ <stop
2426+ id="stop5709-7"
2427+ offset="0"
2428+ style="stop-color:#000000;stop-opacity:1;" />
2429+ <stop
2430+ style="stop-color:#000000;stop-opacity:0.81896549;"
2431+ offset="0.80000001"
2432+ id="stop5713-1" />
2433+ <stop
2434+ id="stop5711-3"
2435+ offset="1"
2436+ style="stop-color:#000000;stop-opacity:0;" />
2437+ </linearGradient>
2438+ <filter
2439+ inkscape:collect="always"
2440+ id="filter5673-6"
2441+ x="-0.033028841"
2442+ width="1.0660577"
2443+ y="-0.32714337"
2444+ height="1.6542867"
2445+ color-interpolation-filters="sRGB">
2446+ <feGaussianBlur
2447+ inkscape:collect="always"
2448+ stdDeviation="1.4312498"
2449+ id="feGaussianBlur5675-5" />
2450+ </filter>
2451+ <filter
2452+ inkscape:collect="always"
2453+ id="filter5031-4"
2454+ color-interpolation-filters="sRGB">
2455+ <feGaussianBlur
2456+ inkscape:collect="always"
2457+ stdDeviation="1.08"
2458+ id="feGaussianBlur5033-0" />
2459+ </filter>
2460+ <linearGradient
2461+ inkscape:collect="always"
2462+ xlink:href="#linearGradient4910-3"
2463+ id="linearGradient5757-5"
2464+ gradientUnits="userSpaceOnUse"
2465+ gradientTransform="matrix(2.5712119,0,0,2.571428,-279.9636,-241.35181)"
2466+ x1="156.00049"
2467+ y1="450.98816"
2468+ x2="156.00049"
2469+ y2="453" />
2470+ <linearGradient
2471+ id="linearGradient4910-3">
2472+ <stop
2473+ offset="0"
2474+ style="stop-color:#ffaf85;stop-opacity:1;"
2475+ id="stop4912-95" />
2476+ <stop
2477+ offset="1"
2478+ style="stop-color:#ff915b;stop-opacity:1;"
2479+ id="stop4914-5" />
2480+ </linearGradient>
2481+ <linearGradient
2482+ inkscape:collect="always"
2483+ xlink:href="#linearGradient4933-3"
2484+ id="linearGradient5759-7"
2485+ gradientUnits="userSpaceOnUse"
2486+ gradientTransform="matrix(2.5712119,0,0,2.571428,-351.9636,-781.71399)"
2487+ x1="152.05421"
2488+ y1="452.16666"
2489+ x2="148.55392"
2490+ y2="452.16666" />
2491+ <linearGradient
2492+ id="linearGradient4933-3">
2493+ <stop
2494+ id="stop4935-8"
2495+ style="stop-color:#ffa87b;stop-opacity:0;"
2496+ offset="0" />
2497+ <stop
2498+ id="stop4937-6"
2499+ style="stop-color:#ff7d3e;stop-opacity:1;"
2500+ offset="1" />
2501+ </linearGradient>
2502+ <linearGradient
2503+ inkscape:collect="always"
2504+ xlink:href="#linearGradient4933-3"
2505+ id="linearGradient5761-4"
2506+ gradientUnits="userSpaceOnUse"
2507+ gradientTransform="matrix(-2.5712119,0,0,2.571428,583.96358,-241.35181)"
2508+ x1="152.05421"
2509+ y1="452.16666"
2510+ x2="148.55392"
2511+ y2="452.16666" />
2512+ <linearGradient
2513+ id="linearGradient9321-0">
2514+ <stop
2515+ id="stop9323-9"
2516+ style="stop-color:#ffa87b;stop-opacity:0;"
2517+ offset="0" />
2518+ <stop
2519+ id="stop9325-6"
2520+ style="stop-color:#ff7d3e;stop-opacity:1;"
2521+ offset="1" />
2522+ </linearGradient>
2523+ <linearGradient
2524+ inkscape:collect="always"
2525+ xlink:href="#linearGradient4644-104-3-3-6-1-7"
2526+ id="linearGradient5763-3"
2527+ gradientUnits="userSpaceOnUse"
2528+ gradientTransform="matrix(2.5714286,0,0,2.5750001,-280.00001,-243.11285)"
2529+ x1="155.04018"
2530+ y1="453.00262"
2531+ x2="165.61214"
2532+ y2="492.4577" />
2533+ <linearGradient
2534+ id="linearGradient4644-104-3-3-6-1-7">
2535+ <stop
2536+ offset="0"
2537+ style="stop-color:#ff7a35;stop-opacity:1;"
2538+ id="stop5237-6-5-1-7-09" />
2539+ <stop
2540+ offset="1"
2541+ style="stop-color:#f0431a;stop-opacity:1;"
2542+ id="stop5239-4-6-4-7-90" />
2543+ </linearGradient>
2544+ <linearGradient
2545+ inkscape:collect="always"
2546+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-6-5-8"
2547+ id="linearGradient5765-1"
2548+ gradientUnits="userSpaceOnUse"
2549+ gradientTransform="matrix(2.3446832,0,0,3.6982468,23.617962,361.87484)"
2550+ x1="16.626165"
2551+ y1="15.298182"
2552+ x2="20.054544"
2553+ y2="24.627615" />
2554+ <linearGradient
2555+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5-8">
2556+ <stop
2557+ offset="0"
2558+ style="stop-color:#ffffff;stop-opacity:1"
2559+ id="stop2687-1-9-3-0-6" />
2560+ <stop
2561+ offset="1"
2562+ style="stop-color:#ffffff;stop-opacity:0"
2563+ id="stop2689-5-4-9-8-4" />
2564+ </linearGradient>
2565+ <filter
2566+ inkscape:collect="always"
2567+ id="filter5472-9"
2568+ x="-0.13482843"
2569+ width="1.2696569"
2570+ y="-0.10811005"
2571+ height="1.2162201"
2572+ color-interpolation-filters="sRGB">
2573+ <feGaussianBlur
2574+ inkscape:collect="always"
2575+ stdDeviation="3.4830741"
2576+ id="feGaussianBlur5474-4" />
2577+ </filter>
2578+ <filter
2579+ inkscape:collect="always"
2580+ id="filter5458-7"
2581+ color-interpolation-filters="sRGB">
2582+ <feGaussianBlur
2583+ inkscape:collect="always"
2584+ stdDeviation="0.69661483"
2585+ id="feGaussianBlur5460-4" />
2586+ </filter>
2587+ <linearGradient
2588+ inkscape:collect="always"
2589+ xlink:href="#linearGradient5105-2"
2590+ id="linearGradient5767-2"
2591+ gradientUnits="userSpaceOnUse"
2592+ x1="149"
2593+ y1="936.36218"
2594+ x2="149"
2595+ y2="1013.3622" />
2596+ <linearGradient
2597+ id="linearGradient5105-2">
2598+ <stop
2599+ style="stop-color:#f5f5f5;stop-opacity:1;"
2600+ offset="0"
2601+ id="stop5107-8" />
2602+ <stop
2603+ style="stop-color:#ebebeb;stop-opacity:1;"
2604+ offset="1"
2605+ id="stop5109-2" />
2606+ </linearGradient>
2607+ <radialGradient
2608+ inkscape:collect="always"
2609+ xlink:href="#linearGradient4918-3"
2610+ id="radialGradient5769-9"
2611+ gradientUnits="userSpaceOnUse"
2612+ gradientTransform="matrix(1,0,0,0.09375,0,347.54687)"
2613+ cx="56"
2614+ cy="383.5"
2615+ fx="56"
2616+ fy="383.5"
2617+ r="16" />
2618+ <linearGradient
2619+ inkscape:collect="always"
2620+ id="linearGradient4918-3">
2621+ <stop
2622+ style="stop-color:#ffffff;stop-opacity:1;"
2623+ offset="0"
2624+ id="stop4920-3" />
2625+ <stop
2626+ style="stop-color:#ffffff;stop-opacity:0;"
2627+ offset="1"
2628+ id="stop4922-69" />
2629+ </linearGradient>
2630+ <clipPath
2631+ clipPathUnits="userSpaceOnUse"
2632+ id="clipPath5480-3">
2633+ <path
2634+ sodipodi:nodetypes="ccsccccccccc"
2635+ inkscape:connector-curvature="0"
2636+ id="path5482-9"
2637+ d="m 120.99989,936.41601 0.1873,50.81094 c 0,0 -0.26854,21.31825 22.94772,25.81115 13.35265,2.5843 38.86509,-3.408 38.86509,-3.408 l 0,-73.21409 -21,-0.0538 0,54 -20,0 0,-33 -8,0 11.17715,-21 z"
2638+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
2639+ </clipPath>
2640+ <filter
2641+ inkscape:collect="always"
2642+ id="filter5627-9"
2643+ x="-0.10786275"
2644+ width="1.2157255"
2645+ y="-0.086488038"
2646+ height="1.1729761"
2647+ color-interpolation-filters="sRGB">
2648+ <feGaussianBlur
2649+ inkscape:collect="always"
2650+ stdDeviation="2.7864593"
2651+ id="feGaussianBlur5629-9" />
2652+ </filter>
2653+ <linearGradient
2654+ inkscape:collect="always"
2655+ xlink:href="#linearGradient5367-9"
2656+ id="linearGradient5771-6"
2657+ gradientUnits="userSpaceOnUse"
2658+ x1="1424"
2659+ y1="1028"
2660+ x2="1424"
2661+ y2="1181.5043" />
2662+ <linearGradient
2663+ inkscape:collect="always"
2664+ id="linearGradient5367-9">
2665+ <stop
2666+ style="stop-color:#ffffff;stop-opacity:1;"
2667+ offset="0"
2668+ id="stop5369-0" />
2669+ <stop
2670+ style="stop-color:#ffffff;stop-opacity:0;"
2671+ offset="1"
2672+ id="stop5371-4" />
2673+ </linearGradient>
2674+ <clipPath
2675+ clipPathUnits="userSpaceOnUse"
2676+ id="clipPath5623-4">
2677+ <rect
2678+ ry="12.016669"
2679+ y="1037"
2680+ x="1316"
2681+ height="206"
2682+ width="216"
2683+ id="rect5625-7"
2684+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
2685+ </clipPath>
2686+ <filter
2687+ inkscape:collect="always"
2688+ id="filter5585-4"
2689+ color-interpolation-filters="sRGB">
2690+ <feGaussianBlur
2691+ inkscape:collect="always"
2692+ stdDeviation="1.1525"
2693+ id="feGaussianBlur5587-3" />
2694+ </filter>
2695+ <clipPath
2696+ clipPathUnits="userSpaceOnUse"
2697+ id="clipPath5606-8">
2698+ <path
2699+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
2700+ d="m 109.15625,918.36217 c -5.15625,0 -7.36925,2.80945 -8.875,5.0625 -1.07965,1.6155 -1.94945,2.5964 -2.20315,5.0469 0.4327,-2.8977 2.9156,-5.1094 5.9375,-5.1094 l 95.9688,0 c 3.0219,0 5.5048,2.2117 5.9375,5.1094 -0.2535,-2.4505 -1.1235,-3.4314 -2.20315,-5.0469 -1.50575,-2.25305 -3.71875,-5.0625 -8.875,-5.0625 l -42.84375,0 -42.84375,0 z"
2701+ id="path5608-5"
2702+ inkscape:connector-curvature="0" />
2703+ </clipPath>
2704+ <filter
2705+ inkscape:collect="always"
2706+ id="filter5614-4"
2707+ color-interpolation-filters="sRGB">
2708+ <feGaussianBlur
2709+ inkscape:collect="always"
2710+ stdDeviation="0.5275"
2711+ id="feGaussianBlur5616-6" />
2712+ </filter>
2713+ <clipPath
2714+ clipPathUnits="userSpaceOnUse"
2715+ id="clipPath5651-3">
2716+ <rect
2717+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
2718+ id="rect5653-1"
2719+ width="216"
2720+ height="206"
2721+ x="1316"
2722+ y="1039"
2723+ ry="12.016669" />
2724+ </clipPath>
2725+ <filter
2726+ inkscape:collect="always"
2727+ id="filter5655-7"
2728+ color-interpolation-filters="sRGB">
2729+ <feGaussianBlur
2730+ inkscape:collect="always"
2731+ stdDeviation="0.620078"
2732+ id="feGaussianBlur5657-9" />
2733+ </filter>
2734+ <linearGradient
2735+ inkscape:collect="always"
2736+ xlink:href="#linearGradient5683-4"
2737+ id="linearGradient5753-1"
2738+ gradientUnits="userSpaceOnUse"
2739+ x1="1432"
2740+ y1="1256"
2741+ x2="1432"
2742+ y2="1168" />
2743+ <linearGradient
2744+ inkscape:collect="always"
2745+ id="linearGradient5683-4">
2746+ <stop
2747+ style="stop-color:#000000;stop-opacity:1;"
2748+ offset="0"
2749+ id="stop5685-3" />
2750+ <stop
2751+ style="stop-color:#000000;stop-opacity:0;"
2752+ offset="1"
2753+ id="stop5687-1" />
2754+ </linearGradient>
2755+ <filter
2756+ inkscape:collect="always"
2757+ id="filter5695-8"
2758+ color-interpolation-filters="sRGB">
2759+ <feGaussianBlur
2760+ inkscape:collect="always"
2761+ stdDeviation="3.12"
2762+ id="feGaussianBlur5697-2" />
2763+ </filter>
2764+ <linearGradient
2765+ inkscape:collect="always"
2766+ xlink:href="#linearGradient5707-2"
2767+ id="linearGradient5755-5"
2768+ gradientUnits="userSpaceOnUse"
2769+ spreadMethod="reflect"
2770+ x1="152"
2771+ y1="1021.6122"
2772+ x2="204"
2773+ y2="1021.6122" />
2774+ <linearGradient
2775+ id="linearGradient5707-2">
2776+ <stop
2777+ id="stop5709-1"
2778+ offset="0"
2779+ style="stop-color:#000000;stop-opacity:1;" />
2780+ <stop
2781+ style="stop-color:#000000;stop-opacity:0.81896549;"
2782+ offset="0.80000001"
2783+ id="stop5713-6" />
2784+ <stop
2785+ id="stop5711-5"
2786+ offset="1"
2787+ style="stop-color:#000000;stop-opacity:0;" />
2788+ </linearGradient>
2789+ <filter
2790+ inkscape:collect="always"
2791+ id="filter5673-0"
2792+ x="-0.033028841"
2793+ width="1.0660577"
2794+ y="-0.32714337"
2795+ height="1.6542867"
2796+ color-interpolation-filters="sRGB">
2797+ <feGaussianBlur
2798+ inkscape:collect="always"
2799+ stdDeviation="1.4312498"
2800+ id="feGaussianBlur5675-56" />
2801+ </filter>
2802+ <filter
2803+ inkscape:collect="always"
2804+ id="filter5031-8"
2805+ color-interpolation-filters="sRGB">
2806+ <feGaussianBlur
2807+ inkscape:collect="always"
2808+ stdDeviation="1.08"
2809+ id="feGaussianBlur5033-66" />
2810+ </filter>
2811+ <linearGradient
2812+ inkscape:collect="always"
2813+ xlink:href="#linearGradient4910-0"
2814+ id="linearGradient5757-2"
2815+ gradientUnits="userSpaceOnUse"
2816+ gradientTransform="matrix(2.5712119,0,0,2.571428,-279.9636,-241.35181)"
2817+ x1="156.00049"
2818+ y1="450.98816"
2819+ x2="156.00049"
2820+ y2="453" />
2821+ <linearGradient
2822+ id="linearGradient4910-0">
2823+ <stop
2824+ offset="0"
2825+ style="stop-color:#ffaf85;stop-opacity:1;"
2826+ id="stop4912-57" />
2827+ <stop
2828+ offset="1"
2829+ style="stop-color:#ff915b;stop-opacity:1;"
2830+ id="stop4914-63" />
2831+ </linearGradient>
2832+ <linearGradient
2833+ inkscape:collect="always"
2834+ xlink:href="#linearGradient4933-01"
2835+ id="linearGradient5759-4"
2836+ gradientUnits="userSpaceOnUse"
2837+ gradientTransform="matrix(2.5712119,0,0,2.571428,-351.9636,-781.71399)"
2838+ x1="152.05421"
2839+ y1="452.16666"
2840+ x2="148.55392"
2841+ y2="452.16666" />
2842+ <linearGradient
2843+ id="linearGradient4933-01">
2844+ <stop
2845+ id="stop4935-7"
2846+ style="stop-color:#ffa87b;stop-opacity:0;"
2847+ offset="0" />
2848+ <stop
2849+ id="stop4937-3"
2850+ style="stop-color:#ff7d3e;stop-opacity:1;"
2851+ offset="1" />
2852+ </linearGradient>
2853+ <linearGradient
2854+ inkscape:collect="always"
2855+ xlink:href="#linearGradient4933-01"
2856+ id="linearGradient5761-9"
2857+ gradientUnits="userSpaceOnUse"
2858+ gradientTransform="matrix(-2.5712119,0,0,2.571428,583.96358,-241.35181)"
2859+ x1="152.05421"
2860+ y1="452.16666"
2861+ x2="148.55392"
2862+ y2="452.16666" />
2863+ <linearGradient
2864+ id="linearGradient9321-9">
2865+ <stop
2866+ id="stop9323-4"
2867+ style="stop-color:#ffa87b;stop-opacity:0;"
2868+ offset="0" />
2869+ <stop
2870+ id="stop9325-0"
2871+ style="stop-color:#ff7d3e;stop-opacity:1;"
2872+ offset="1" />
2873+ </linearGradient>
2874+ <linearGradient
2875+ inkscape:collect="always"
2876+ xlink:href="#linearGradient4644-104-3-3-6-1-21"
2877+ id="linearGradient5763-37"
2878+ gradientUnits="userSpaceOnUse"
2879+ gradientTransform="matrix(2.5714286,0,0,2.5750001,-280.00001,-243.11285)"
2880+ x1="155.04018"
2881+ y1="453.00262"
2882+ x2="165.61214"
2883+ y2="492.4577" />
2884+ <linearGradient
2885+ id="linearGradient4644-104-3-3-6-1-21">
2886+ <stop
2887+ offset="0"
2888+ style="stop-color:#ff7a35;stop-opacity:1;"
2889+ id="stop5237-6-5-1-7-19" />
2890+ <stop
2891+ offset="1"
2892+ style="stop-color:#f0431a;stop-opacity:1;"
2893+ id="stop5239-4-6-4-7-3" />
2894+ </linearGradient>
2895+ <linearGradient
2896+ inkscape:collect="always"
2897+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-6-5-7"
2898+ id="linearGradient5765-4"
2899+ gradientUnits="userSpaceOnUse"
2900+ gradientTransform="matrix(2.3446832,0,0,3.6982468,23.617962,361.87484)"
2901+ x1="16.626165"
2902+ y1="15.298182"
2903+ x2="20.054544"
2904+ y2="24.627615" />
2905+ <linearGradient
2906+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5-7">
2907+ <stop
2908+ offset="0"
2909+ style="stop-color:#ffffff;stop-opacity:1"
2910+ id="stop2687-1-9-3-0-05" />
2911+ <stop
2912+ offset="1"
2913+ style="stop-color:#ffffff;stop-opacity:0"
2914+ id="stop2689-5-4-9-8-46" />
2915+ </linearGradient>
2916+ <filter
2917+ inkscape:collect="always"
2918+ id="filter5472-5"
2919+ x="-0.13482843"
2920+ width="1.2696569"
2921+ y="-0.10811005"
2922+ height="1.2162201"
2923+ color-interpolation-filters="sRGB">
2924+ <feGaussianBlur
2925+ inkscape:collect="always"
2926+ stdDeviation="3.4830741"
2927+ id="feGaussianBlur5474-0" />
2928+ </filter>
2929+ <filter
2930+ inkscape:collect="always"
2931+ id="filter5458-4"
2932+ color-interpolation-filters="sRGB">
2933+ <feGaussianBlur
2934+ inkscape:collect="always"
2935+ stdDeviation="0.69661483"
2936+ id="feGaussianBlur5460-8" />
2937+ </filter>
2938+ <linearGradient
2939+ inkscape:collect="always"
2940+ xlink:href="#linearGradient5105-78"
2941+ id="linearGradient5767-21"
2942+ gradientUnits="userSpaceOnUse"
2943+ x1="149"
2944+ y1="936.36218"
2945+ x2="149"
2946+ y2="1013.3622" />
2947+ <linearGradient
2948+ id="linearGradient5105-78">
2949+ <stop
2950+ style="stop-color:#f5f5f5;stop-opacity:1;"
2951+ offset="0"
2952+ id="stop5107-4" />
2953+ <stop
2954+ style="stop-color:#ebebeb;stop-opacity:1;"
2955+ offset="1"
2956+ id="stop5109-3" />
2957+ </linearGradient>
2958+ <radialGradient
2959+ inkscape:collect="always"
2960+ xlink:href="#linearGradient4918-6"
2961+ id="radialGradient5769-1"
2962+ gradientUnits="userSpaceOnUse"
2963+ gradientTransform="matrix(1,0,0,0.09375,0,347.54687)"
2964+ cx="56"
2965+ cy="383.5"
2966+ fx="56"
2967+ fy="383.5"
2968+ r="16" />
2969+ <linearGradient
2970+ inkscape:collect="always"
2971+ id="linearGradient4918-6">
2972+ <stop
2973+ style="stop-color:#ffffff;stop-opacity:1;"
2974+ offset="0"
2975+ id="stop4920-06" />
2976+ <stop
2977+ style="stop-color:#ffffff;stop-opacity:0;"
2978+ offset="1"
2979+ id="stop4922-5" />
2980+ </linearGradient>
2981+ <clipPath
2982+ clipPathUnits="userSpaceOnUse"
2983+ id="clipPath5480-9">
2984+ <path
2985+ sodipodi:nodetypes="ccsccccccccc"
2986+ inkscape:connector-curvature="0"
2987+ id="path5482-0"
2988+ d="m 120.99989,936.41601 0.1873,50.81094 c 0,0 -0.26854,21.31825 22.94772,25.81115 13.35265,2.5843 38.86509,-3.408 38.86509,-3.408 l 0,-73.21409 -21,-0.0538 0,54 -20,0 0,-33 -8,0 11.17715,-21 z"
2989+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
2990+ </clipPath>
2991+ <filter
2992+ inkscape:collect="always"
2993+ id="filter5627-7"
2994+ x="-0.10786275"
2995+ width="1.2157255"
2996+ y="-0.086488038"
2997+ height="1.1729761"
2998+ color-interpolation-filters="sRGB">
2999+ <feGaussianBlur
3000+ inkscape:collect="always"
3001+ stdDeviation="2.7864593"
3002+ id="feGaussianBlur5629-4" />
3003+ </filter>
3004+ <linearGradient
3005+ inkscape:collect="always"
3006+ xlink:href="#linearGradient5367-1"
3007+ id="linearGradient5771-9"
3008+ gradientUnits="userSpaceOnUse"
3009+ x1="1424"
3010+ y1="1028"
3011+ x2="1424"
3012+ y2="1181.5043" />
3013+ <linearGradient
3014+ inkscape:collect="always"
3015+ id="linearGradient5367-1">
3016+ <stop
3017+ style="stop-color:#ffffff;stop-opacity:1;"
3018+ offset="0"
3019+ id="stop5369-6" />
3020+ <stop
3021+ style="stop-color:#ffffff;stop-opacity:0;"
3022+ offset="1"
3023+ id="stop5371-3" />
3024+ </linearGradient>
3025+ <clipPath
3026+ clipPathUnits="userSpaceOnUse"
3027+ id="clipPath5623-0">
3028+ <rect
3029+ ry="12.016669"
3030+ y="1037"
3031+ x="1316"
3032+ height="206"
3033+ width="216"
3034+ id="rect5625-9"
3035+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
3036+ </clipPath>
3037+ <filter
3038+ inkscape:collect="always"
3039+ id="filter5585-7"
3040+ color-interpolation-filters="sRGB">
3041+ <feGaussianBlur
3042+ inkscape:collect="always"
3043+ stdDeviation="1.1525"
3044+ id="feGaussianBlur5587-7" />
3045+ </filter>
3046+ <clipPath
3047+ clipPathUnits="userSpaceOnUse"
3048+ id="clipPath5606-2">
3049+ <path
3050+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
3051+ d="m 109.15625,918.36217 c -5.15625,0 -7.36925,2.80945 -8.875,5.0625 -1.07965,1.6155 -1.94945,2.5964 -2.20315,5.0469 0.4327,-2.8977 2.9156,-5.1094 5.9375,-5.1094 l 95.9688,0 c 3.0219,0 5.5048,2.2117 5.9375,5.1094 -0.2535,-2.4505 -1.1235,-3.4314 -2.20315,-5.0469 -1.50575,-2.25305 -3.71875,-5.0625 -8.875,-5.0625 l -42.84375,0 -42.84375,0 z"
3052+ id="path5608-4"
3053+ inkscape:connector-curvature="0" />
3054+ </clipPath>
3055+ <filter
3056+ inkscape:collect="always"
3057+ id="filter5614-1"
3058+ color-interpolation-filters="sRGB">
3059+ <feGaussianBlur
3060+ inkscape:collect="always"
3061+ stdDeviation="0.5275"
3062+ id="feGaussianBlur5616-0" />
3063+ </filter>
3064+ <clipPath
3065+ clipPathUnits="userSpaceOnUse"
3066+ id="clipPath5651-0">
3067+ <rect
3068+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
3069+ id="rect5653-3"
3070+ width="216"
3071+ height="206"
3072+ x="1316"
3073+ y="1039"
3074+ ry="12.016669" />
3075+ </clipPath>
3076+ <filter
3077+ inkscape:collect="always"
3078+ id="filter5655-5"
3079+ color-interpolation-filters="sRGB">
3080+ <feGaussianBlur
3081+ inkscape:collect="always"
3082+ stdDeviation="0.620078"
3083+ id="feGaussianBlur5657-0" />
3084+ </filter>
3085+ <linearGradient
3086+ id="linearGradient5707-02">
3087+ <stop
3088+ id="stop5709-16"
3089+ offset="0"
3090+ style="stop-color:#000000;stop-opacity:1;" />
3091+ <stop
3092+ style="stop-color:#000000;stop-opacity:0.81896549;"
3093+ offset="0.80000001"
3094+ id="stop5713-7" />
3095+ <stop
3096+ id="stop5711-1"
3097+ offset="1"
3098+ style="stop-color:#000000;stop-opacity:0;" />
3099+ </linearGradient>
3100+ <linearGradient
3101+ id="linearGradient4910-4">
3102+ <stop
3103+ offset="0"
3104+ style="stop-color:#ffaf85;stop-opacity:1;"
3105+ id="stop4912-4" />
3106+ <stop
3107+ offset="1"
3108+ style="stop-color:#ff915b;stop-opacity:1;"
3109+ id="stop4914-4" />
3110+ </linearGradient>
3111+ <linearGradient
3112+ id="linearGradient4933-02">
3113+ <stop
3114+ id="stop4935-2"
3115+ style="stop-color:#ffa87b;stop-opacity:0;"
3116+ offset="0" />
3117+ <stop
3118+ id="stop4937-60"
3119+ style="stop-color:#ff7d3e;stop-opacity:1;"
3120+ offset="1" />
3121+ </linearGradient>
3122+ <linearGradient
3123+ id="linearGradient9951">
3124+ <stop
3125+ id="stop9953"
3126+ style="stop-color:#ffa87b;stop-opacity:0;"
3127+ offset="0" />
3128+ <stop
3129+ id="stop9955"
3130+ style="stop-color:#ff7d3e;stop-opacity:1;"
3131+ offset="1" />
3132+ </linearGradient>
3133+ <linearGradient
3134+ id="linearGradient4644-104-3-3-6-1-70">
3135+ <stop
3136+ offset="0"
3137+ style="stop-color:#ff7a35;stop-opacity:1;"
3138+ id="stop5237-6-5-1-7-4" />
3139+ <stop
3140+ offset="1"
3141+ style="stop-color:#f0431a;stop-opacity:1;"
3142+ id="stop5239-4-6-4-7-5" />
3143+ </linearGradient>
3144+ <linearGradient
3145+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5-5">
3146+ <stop
3147+ offset="0"
3148+ style="stop-color:#ffffff;stop-opacity:1"
3149+ id="stop2687-1-9-3-0-4" />
3150+ <stop
3151+ offset="1"
3152+ style="stop-color:#ffffff;stop-opacity:0"
3153+ id="stop2689-5-4-9-8-3" />
3154+ </linearGradient>
3155+ <linearGradient
3156+ id="linearGradient5105-3">
3157+ <stop
3158+ style="stop-color:#f5f5f5;stop-opacity:1;"
3159+ offset="0"
3160+ id="stop5107-80" />
3161+ <stop
3162+ style="stop-color:#ebebeb;stop-opacity:1;"
3163+ offset="1"
3164+ id="stop5109-9" />
3165+ </linearGradient>
3166+ <clipPath
3167+ clipPathUnits="userSpaceOnUse"
3168+ id="clipPath5480-8">
3169+ <path
3170+ sodipodi:nodetypes="ccsccccccccc"
3171+ inkscape:connector-curvature="0"
3172+ id="path5482-8"
3173+ d="m 120.99989,936.41601 0.1873,50.81094 c 0,0 -0.26854,21.31825 22.94772,25.81115 13.35265,2.5843 38.86509,-3.408 38.86509,-3.408 l 0,-73.21409 -21,-0.0538 0,54 -20,0 0,-33 -8,0 11.17715,-21 z"
3174+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
3175+ </clipPath>
3176+ <linearGradient
3177+ inkscape:collect="always"
3178+ xlink:href="#linearGradient5367-2"
3179+ id="linearGradient5556"
3180+ x1="1424"
3181+ y1="1028"
3182+ x2="1424"
3183+ y2="1181.5043"
3184+ gradientUnits="userSpaceOnUse" />
3185+ <linearGradient
3186+ inkscape:collect="always"
3187+ id="linearGradient5367-2">
3188+ <stop
3189+ style="stop-color:#ffffff;stop-opacity:1;"
3190+ offset="0"
3191+ id="stop5369-3" />
3192+ <stop
3193+ style="stop-color:#ffffff;stop-opacity:0;"
3194+ offset="1"
3195+ id="stop5371-44" />
3196+ </linearGradient>
3197+ <clipPath
3198+ clipPathUnits="userSpaceOnUse"
3199+ id="clipPath5623-04">
3200+ <rect
3201+ ry="12.016669"
3202+ y="1037"
3203+ x="1316"
3204+ height="206"
3205+ width="216"
3206+ id="rect5625-2"
3207+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
3208+ </clipPath>
3209+ <clipPath
3210+ clipPathUnits="userSpaceOnUse"
3211+ id="clipPath5606-4">
3212+ <path
3213+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
3214+ d="m 109.15625,918.36217 c -5.15625,0 -7.36925,2.80945 -8.875,5.0625 -1.07965,1.6155 -1.94945,2.5964 -2.20315,5.0469 0.4327,-2.8977 2.9156,-5.1094 5.9375,-5.1094 l 95.9688,0 c 3.0219,0 5.5048,2.2117 5.9375,5.1094 -0.2535,-2.4505 -1.1235,-3.4314 -2.20315,-5.0469 -1.50575,-2.25305 -3.71875,-5.0625 -8.875,-5.0625 l -42.84375,0 -42.84375,0 z"
3215+ id="path5608-44"
3216+ inkscape:connector-curvature="0" />
3217+ </clipPath>
3218+ <clipPath
3219+ clipPathUnits="userSpaceOnUse"
3220+ id="clipPath5651-5">
3221+ <rect
3222+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
3223+ id="rect5653-5"
3224+ width="216"
3225+ height="206"
3226+ x="1316"
3227+ y="1039"
3228+ ry="12.016669" />
3229+ </clipPath>
3230+ <linearGradient
3231+ inkscape:collect="always"
3232+ xlink:href="#linearGradient5683-3"
3233+ id="linearGradient5689-2"
3234+ x1="1432"
3235+ y1="1256"
3236+ x2="1432"
3237+ y2="1168"
3238+ gradientUnits="userSpaceOnUse" />
3239+ <linearGradient
3240+ inkscape:collect="always"
3241+ id="linearGradient5683-3">
3242+ <stop
3243+ style="stop-color:#000000;stop-opacity:1;"
3244+ offset="0"
3245+ id="stop5685-28" />
3246+ <stop
3247+ style="stop-color:#000000;stop-opacity:0;"
3248+ offset="1"
3249+ id="stop5687-0" />
3250+ </linearGradient>
3251+ <filter
3252+ inkscape:collect="always"
3253+ id="filter5695-9"
3254+ color-interpolation-filters="sRGB">
3255+ <feGaussianBlur
3256+ inkscape:collect="always"
3257+ stdDeviation="3.12"
3258+ id="feGaussianBlur5697-69" />
3259+ </filter>
3260+ <linearGradient
3261+ inkscape:collect="always"
3262+ xlink:href="#linearGradient5707-8"
3263+ id="linearGradient5705-2"
3264+ x1="152"
3265+ y1="1021.6122"
3266+ x2="204"
3267+ y2="1021.6122"
3268+ gradientUnits="userSpaceOnUse"
3269+ spreadMethod="reflect" />
3270+ <linearGradient
3271+ id="linearGradient5707-8">
3272+ <stop
3273+ id="stop5709-162"
3274+ offset="0"
3275+ style="stop-color:#000000;stop-opacity:1;" />
3276+ <stop
3277+ style="stop-color:#000000;stop-opacity:0.81896549;"
3278+ offset="0.80000001"
3279+ id="stop5713-8" />
3280+ <stop
3281+ id="stop5711-8"
3282+ offset="1"
3283+ style="stop-color:#000000;stop-opacity:0;" />
3284+ </linearGradient>
3285+ <filter
3286+ inkscape:collect="always"
3287+ id="filter5673-8"
3288+ x="-0.033028841"
3289+ width="1.0660577"
3290+ y="-0.32714337"
3291+ height="1.6542867"
3292+ color-interpolation-filters="sRGB">
3293+ <feGaussianBlur
3294+ inkscape:collect="always"
3295+ stdDeviation="1.4312498"
3296+ id="feGaussianBlur5675-2" />
3297+ </filter>
3298+ <filter
3299+ inkscape:collect="always"
3300+ id="filter5031-77"
3301+ color-interpolation-filters="sRGB">
3302+ <feGaussianBlur
3303+ inkscape:collect="always"
3304+ stdDeviation="1.08"
3305+ id="feGaussianBlur5033-03" />
3306+ </filter>
3307+ <linearGradient
3308+ inkscape:collect="always"
3309+ xlink:href="#linearGradient4910-5"
3310+ id="linearGradient5434-2"
3311+ gradientUnits="userSpaceOnUse"
3312+ gradientTransform="matrix(2.5712119,0,0,2.571428,-279.9636,-241.35181)"
3313+ x1="156.00049"
3314+ y1="450.98816"
3315+ x2="156.00049"
3316+ y2="453" />
3317+ <linearGradient
3318+ id="linearGradient4910-5">
3319+ <stop
3320+ offset="0"
3321+ style="stop-color:#ffaf85;stop-opacity:1;"
3322+ id="stop4912-3" />
3323+ <stop
3324+ offset="1"
3325+ style="stop-color:#ff915b;stop-opacity:1;"
3326+ id="stop4914-0" />
3327+ </linearGradient>
3328+ <linearGradient
3329+ inkscape:collect="always"
3330+ xlink:href="#linearGradient4933-1"
3331+ id="linearGradient5436-2"
3332+ gradientUnits="userSpaceOnUse"
3333+ gradientTransform="matrix(2.5712119,0,0,2.571428,-351.9636,-781.71399)"
3334+ x1="152.05421"
3335+ y1="452.16666"
3336+ x2="148.55392"
3337+ y2="452.16666" />
3338+ <linearGradient
3339+ id="linearGradient4933-1">
3340+ <stop
3341+ id="stop4935-85"
3342+ style="stop-color:#ffa87b;stop-opacity:0;"
3343+ offset="0" />
3344+ <stop
3345+ id="stop4937-85"
3346+ style="stop-color:#ff7d3e;stop-opacity:1;"
3347+ offset="1" />
3348+ </linearGradient>
3349+ <linearGradient
3350+ inkscape:collect="always"
3351+ xlink:href="#linearGradient4933-1"
3352+ id="linearGradient5439-8"
3353+ gradientUnits="userSpaceOnUse"
3354+ gradientTransform="matrix(-2.5712119,0,0,2.571428,583.96358,-241.35181)"
3355+ x1="152.05421"
3356+ y1="452.16666"
3357+ x2="148.55392"
3358+ y2="452.16666" />
3359+ <linearGradient
3360+ id="linearGradient9951-1">
3361+ <stop
3362+ id="stop9953-0"
3363+ style="stop-color:#ffa87b;stop-opacity:0;"
3364+ offset="0" />
3365+ <stop
3366+ id="stop9955-6"
3367+ style="stop-color:#ff7d3e;stop-opacity:1;"
3368+ offset="1" />
3369+ </linearGradient>
3370+ <linearGradient
3371+ inkscape:collect="always"
3372+ xlink:href="#linearGradient4644-104-3-3-6-1-1"
3373+ id="linearGradient5442-4"
3374+ gradientUnits="userSpaceOnUse"
3375+ gradientTransform="matrix(2.5714286,0,0,2.5750001,-280.00001,-243.11285)"
3376+ x1="155.04018"
3377+ y1="453.00262"
3378+ x2="165.61214"
3379+ y2="492.4577" />
3380+ <linearGradient
3381+ id="linearGradient4644-104-3-3-6-1-1">
3382+ <stop
3383+ offset="0"
3384+ style="stop-color:#ff7a35;stop-opacity:1;"
3385+ id="stop5237-6-5-1-7-43" />
3386+ <stop
3387+ offset="1"
3388+ style="stop-color:#f0431a;stop-opacity:1;"
3389+ id="stop5239-4-6-4-7-4" />
3390+ </linearGradient>
3391+ <linearGradient
3392+ inkscape:collect="always"
3393+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-6-5-62"
3394+ id="linearGradient5444-2"
3395+ gradientUnits="userSpaceOnUse"
3396+ gradientTransform="matrix(2.3446832,0,0,3.6982468,23.617962,361.87484)"
3397+ x1="16.626165"
3398+ y1="15.298182"
3399+ x2="20.054544"
3400+ y2="24.627615" />
3401+ <linearGradient
3402+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5-62">
3403+ <stop
3404+ offset="0"
3405+ style="stop-color:#ffffff;stop-opacity:1"
3406+ id="stop2687-1-9-3-0-66" />
3407+ <stop
3408+ offset="1"
3409+ style="stop-color:#ffffff;stop-opacity:0"
3410+ id="stop2689-5-4-9-8-24" />
3411+ </linearGradient>
3412+ <filter
3413+ inkscape:collect="always"
3414+ id="filter5472-8"
3415+ x="-0.13482843"
3416+ width="1.2696569"
3417+ y="-0.10811005"
3418+ height="1.2162201"
3419+ color-interpolation-filters="sRGB">
3420+ <feGaussianBlur
3421+ inkscape:collect="always"
3422+ stdDeviation="3.4830741"
3423+ id="feGaussianBlur5474-1" />
3424+ </filter>
3425+ <filter
3426+ inkscape:collect="always"
3427+ id="filter5458-41"
3428+ color-interpolation-filters="sRGB">
3429+ <feGaussianBlur
3430+ inkscape:collect="always"
3431+ stdDeviation="0.69661483"
3432+ id="feGaussianBlur5460-48" />
3433+ </filter>
3434+ <linearGradient
3435+ inkscape:collect="always"
3436+ xlink:href="#linearGradient5105-0"
3437+ id="linearGradient5452-6"
3438+ gradientUnits="userSpaceOnUse"
3439+ x1="149"
3440+ y1="936.36218"
3441+ x2="149"
3442+ y2="1013.3622" />
3443+ <linearGradient
3444+ id="linearGradient5105-0">
3445+ <stop
3446+ style="stop-color:#f5f5f5;stop-opacity:1;"
3447+ offset="0"
3448+ id="stop5107-803" />
3449+ <stop
3450+ style="stop-color:#ebebeb;stop-opacity:1;"
3451+ offset="1"
3452+ id="stop5109-66" />
3453+ </linearGradient>
3454+ <radialGradient
3455+ inkscape:collect="always"
3456+ xlink:href="#linearGradient4918-4"
3457+ id="radialGradient5456-1"
3458+ gradientUnits="userSpaceOnUse"
3459+ gradientTransform="matrix(1,0,0,0.09375,0,347.54687)"
3460+ cx="56"
3461+ cy="383.5"
3462+ fx="56"
3463+ fy="383.5"
3464+ r="16" />
3465+ <linearGradient
3466+ inkscape:collect="always"
3467+ id="linearGradient4918-4">
3468+ <stop
3469+ style="stop-color:#ffffff;stop-opacity:1;"
3470+ offset="0"
3471+ id="stop4920-6" />
3472+ <stop
3473+ style="stop-color:#ffffff;stop-opacity:0;"
3474+ offset="1"
3475+ id="stop4922-54" />
3476+ </linearGradient>
3477+ <clipPath
3478+ clipPathUnits="userSpaceOnUse"
3479+ id="clipPath5480-4">
3480+ <path
3481+ sodipodi:nodetypes="ccsccccccccc"
3482+ inkscape:connector-curvature="0"
3483+ id="path5482-95"
3484+ d="m 120.99989,936.41601 0.1873,50.81094 c 0,0 -0.26854,21.31825 22.94772,25.81115 13.35265,2.5843 38.86509,-3.408 38.86509,-3.408 l 0,-73.21409 -21,-0.0538 0,54 -20,0 0,-33 -8,0 11.17715,-21 z"
3485+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
3486+ </clipPath>
3487+ <filter
3488+ inkscape:collect="always"
3489+ id="filter5627-8"
3490+ x="-0.10786275"
3491+ width="1.2157255"
3492+ y="-0.086488038"
3493+ height="1.1729761"
3494+ color-interpolation-filters="sRGB">
3495+ <feGaussianBlur
3496+ inkscape:collect="always"
3497+ stdDeviation="2.7864593"
3498+ id="feGaussianBlur5629-41" />
3499+ </filter>
3500+ <linearGradient
3501+ inkscape:collect="always"
3502+ xlink:href="#linearGradient5367-25"
3503+ id="linearGradient5556-2"
3504+ x1="1424"
3505+ y1="1028"
3506+ x2="1424"
3507+ y2="1181.5043"
3508+ gradientUnits="userSpaceOnUse" />
3509+ <linearGradient
3510+ inkscape:collect="always"
3511+ id="linearGradient5367-25">
3512+ <stop
3513+ style="stop-color:#ffffff;stop-opacity:1;"
3514+ offset="0"
3515+ id="stop5369-8" />
3516+ <stop
3517+ style="stop-color:#ffffff;stop-opacity:0;"
3518+ offset="1"
3519+ id="stop5371-9" />
3520+ </linearGradient>
3521+ <clipPath
3522+ clipPathUnits="userSpaceOnUse"
3523+ id="clipPath5623-9">
3524+ <rect
3525+ ry="12.016669"
3526+ y="1037"
3527+ x="1316"
3528+ height="206"
3529+ width="216"
3530+ id="rect5625-4"
3531+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
3532+ </clipPath>
3533+ <filter
3534+ inkscape:collect="always"
3535+ id="filter5585-90"
3536+ color-interpolation-filters="sRGB">
3537+ <feGaussianBlur
3538+ inkscape:collect="always"
3539+ stdDeviation="1.1525"
3540+ id="feGaussianBlur5587-0" />
3541+ </filter>
3542+ <clipPath
3543+ clipPathUnits="userSpaceOnUse"
3544+ id="clipPath5606-0">
3545+ <path
3546+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
3547+ d="m 109.15625,918.36217 c -5.15625,0 -7.36925,2.80945 -8.875,5.0625 -1.07965,1.6155 -1.94945,2.5964 -2.20315,5.0469 0.4327,-2.8977 2.9156,-5.1094 5.9375,-5.1094 l 95.9688,0 c 3.0219,0 5.5048,2.2117 5.9375,5.1094 -0.2535,-2.4505 -1.1235,-3.4314 -2.20315,-5.0469 -1.50575,-2.25305 -3.71875,-5.0625 -8.875,-5.0625 l -42.84375,0 -42.84375,0 z"
3548+ id="path5608-7"
3549+ inkscape:connector-curvature="0" />
3550+ </clipPath>
3551+ <filter
3552+ inkscape:collect="always"
3553+ id="filter5614-8"
3554+ color-interpolation-filters="sRGB">
3555+ <feGaussianBlur
3556+ inkscape:collect="always"
3557+ stdDeviation="0.5275"
3558+ id="feGaussianBlur5616-69" />
3559+ </filter>
3560+ <clipPath
3561+ clipPathUnits="userSpaceOnUse"
3562+ id="clipPath5651-7">
3563+ <rect
3564+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
3565+ id="rect5653-9"
3566+ width="216"
3567+ height="206"
3568+ x="1316"
3569+ y="1039"
3570+ ry="12.016669" />
3571+ </clipPath>
3572+ <filter
3573+ inkscape:collect="always"
3574+ id="filter5655-2"
3575+ color-interpolation-filters="sRGB">
3576+ <feGaussianBlur
3577+ inkscape:collect="always"
3578+ stdDeviation="0.620078"
3579+ id="feGaussianBlur5657-3" />
3580+ </filter>
3581+ <linearGradient
3582+ inkscape:collect="always"
3583+ xlink:href="#linearGradient5683-9"
3584+ id="linearGradient5689-3"
3585+ x1="1432"
3586+ y1="1256"
3587+ x2="1432"
3588+ y2="1168"
3589+ gradientUnits="userSpaceOnUse" />
3590+ <linearGradient
3591+ inkscape:collect="always"
3592+ id="linearGradient5683-9">
3593+ <stop
3594+ style="stop-color:#000000;stop-opacity:1;"
3595+ offset="0"
3596+ id="stop5685-30" />
3597+ <stop
3598+ style="stop-color:#000000;stop-opacity:0;"
3599+ offset="1"
3600+ id="stop5687-3" />
3601+ </linearGradient>
3602+ <filter
3603+ inkscape:collect="always"
3604+ id="filter5695-99"
3605+ color-interpolation-filters="sRGB">
3606+ <feGaussianBlur
3607+ inkscape:collect="always"
3608+ stdDeviation="3.12"
3609+ id="feGaussianBlur5697-1" />
3610+ </filter>
3611+ <linearGradient
3612+ inkscape:collect="always"
3613+ xlink:href="#linearGradient5707-5"
3614+ id="linearGradient5705-7"
3615+ x1="152"
3616+ y1="1021.6122"
3617+ x2="204"
3618+ y2="1021.6122"
3619+ gradientUnits="userSpaceOnUse"
3620+ spreadMethod="reflect" />
3621+ <linearGradient
3622+ id="linearGradient5707-5">
3623+ <stop
3624+ id="stop5709-4"
3625+ offset="0"
3626+ style="stop-color:#000000;stop-opacity:1;" />
3627+ <stop
3628+ style="stop-color:#000000;stop-opacity:0.81896549;"
3629+ offset="0.80000001"
3630+ id="stop5713-18" />
3631+ <stop
3632+ id="stop5711-2"
3633+ offset="1"
3634+ style="stop-color:#000000;stop-opacity:0;" />
3635+ </linearGradient>
3636+ <filter
3637+ inkscape:collect="always"
3638+ id="filter5673-1"
3639+ x="-0.033028841"
3640+ width="1.0660577"
3641+ y="-0.32714337"
3642+ height="1.6542867"
3643+ color-interpolation-filters="sRGB">
3644+ <feGaussianBlur
3645+ inkscape:collect="always"
3646+ stdDeviation="1.4312498"
3647+ id="feGaussianBlur5675-9" />
3648+ </filter>
3649+ <filter
3650+ inkscape:collect="always"
3651+ id="filter5031-1"
3652+ color-interpolation-filters="sRGB">
3653+ <feGaussianBlur
3654+ inkscape:collect="always"
3655+ stdDeviation="1.08"
3656+ id="feGaussianBlur5033-7" />
3657+ </filter>
3658+ <linearGradient
3659+ inkscape:collect="always"
3660+ xlink:href="#linearGradient4910-28"
3661+ id="linearGradient5434-8"
3662+ gradientUnits="userSpaceOnUse"
3663+ gradientTransform="matrix(2.5712119,0,0,2.571428,-279.9636,-241.35181)"
3664+ x1="156.00049"
3665+ y1="450.98816"
3666+ x2="156.00049"
3667+ y2="453" />
3668+ <linearGradient
3669+ id="linearGradient4910-28">
3670+ <stop
3671+ offset="0"
3672+ style="stop-color:#ffaf85;stop-opacity:1;"
3673+ id="stop4912-91" />
3674+ <stop
3675+ offset="1"
3676+ style="stop-color:#ff915b;stop-opacity:1;"
3677+ id="stop4914-67" />
3678+ </linearGradient>
3679+ <linearGradient
3680+ inkscape:collect="always"
3681+ xlink:href="#linearGradient4933-36"
3682+ id="linearGradient5436-0"
3683+ gradientUnits="userSpaceOnUse"
3684+ gradientTransform="matrix(2.5712119,0,0,2.571428,-351.9636,-781.71399)"
3685+ x1="152.05421"
3686+ y1="452.16666"
3687+ x2="148.55392"
3688+ y2="452.16666" />
3689+ <linearGradient
3690+ id="linearGradient4933-36">
3691+ <stop
3692+ id="stop4935-29"
3693+ style="stop-color:#ffa87b;stop-opacity:0;"
3694+ offset="0" />
3695+ <stop
3696+ id="stop4937-37"
3697+ style="stop-color:#ff7d3e;stop-opacity:1;"
3698+ offset="1" />
3699+ </linearGradient>
3700+ <linearGradient
3701+ inkscape:collect="always"
3702+ xlink:href="#linearGradient4933-36"
3703+ id="linearGradient5439-86"
3704+ gradientUnits="userSpaceOnUse"
3705+ gradientTransform="matrix(-2.5712119,0,0,2.571428,583.96358,-241.35181)"
3706+ x1="152.05421"
3707+ y1="452.16666"
3708+ x2="148.55392"
3709+ y2="452.16666" />
3710+ <linearGradient
3711+ id="linearGradient9951-0">
3712+ <stop
3713+ id="stop9953-4"
3714+ style="stop-color:#ffa87b;stop-opacity:0;"
3715+ offset="0" />
3716+ <stop
3717+ id="stop9955-5"
3718+ style="stop-color:#ff7d3e;stop-opacity:1;"
3719+ offset="1" />
3720+ </linearGradient>
3721+ <linearGradient
3722+ inkscape:collect="always"
3723+ xlink:href="#linearGradient4644-104-3-3-6-1-74"
3724+ id="linearGradient5442-9"
3725+ gradientUnits="userSpaceOnUse"
3726+ gradientTransform="matrix(2.5714286,0,0,2.5750001,-280.00001,-243.11285)"
3727+ x1="155.04018"
3728+ y1="453.00262"
3729+ x2="165.61214"
3730+ y2="492.4577" />
3731+ <linearGradient
3732+ id="linearGradient4644-104-3-3-6-1-74">
3733+ <stop
3734+ offset="0"
3735+ style="stop-color:#ff7a35;stop-opacity:1;"
3736+ id="stop5237-6-5-1-7-7" />
3737+ <stop
3738+ offset="1"
3739+ style="stop-color:#f0431a;stop-opacity:1;"
3740+ id="stop5239-4-6-4-7-17" />
3741+ </linearGradient>
3742+ <linearGradient
3743+ inkscape:collect="always"
3744+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-6-5-58"
3745+ id="linearGradient5444-7"
3746+ gradientUnits="userSpaceOnUse"
3747+ gradientTransform="matrix(2.3446832,0,0,3.6982468,23.617962,361.87484)"
3748+ x1="16.626165"
3749+ y1="15.298182"
3750+ x2="20.054544"
3751+ y2="24.627615" />
3752+ <linearGradient
3753+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5-58">
3754+ <stop
3755+ offset="0"
3756+ style="stop-color:#ffffff;stop-opacity:1"
3757+ id="stop2687-1-9-3-0-67" />
3758+ <stop
3759+ offset="1"
3760+ style="stop-color:#ffffff;stop-opacity:0"
3761+ id="stop2689-5-4-9-8-6" />
3762+ </linearGradient>
3763+ <filter
3764+ inkscape:collect="always"
3765+ id="filter5472-6"
3766+ x="-0.13482843"
3767+ width="1.2696569"
3768+ y="-0.10811005"
3769+ height="1.2162201"
3770+ color-interpolation-filters="sRGB">
3771+ <feGaussianBlur
3772+ inkscape:collect="always"
3773+ stdDeviation="3.4830741"
3774+ id="feGaussianBlur5474-16" />
3775+ </filter>
3776+ <filter
3777+ inkscape:collect="always"
3778+ id="filter5458-74"
3779+ color-interpolation-filters="sRGB">
3780+ <feGaussianBlur
3781+ inkscape:collect="always"
3782+ stdDeviation="0.69661483"
3783+ id="feGaussianBlur5460-2" />
3784+ </filter>
3785+ <linearGradient
3786+ inkscape:collect="always"
3787+ xlink:href="#linearGradient5105-4"
3788+ id="linearGradient5452-5"
3789+ gradientUnits="userSpaceOnUse"
3790+ x1="149"
3791+ y1="936.36218"
3792+ x2="149"
3793+ y2="1013.3622" />
3794+ <linearGradient
3795+ id="linearGradient5105-4">
3796+ <stop
3797+ style="stop-color:#f5f5f5;stop-opacity:1;"
3798+ offset="0"
3799+ id="stop5107-83" />
3800+ <stop
3801+ style="stop-color:#ebebeb;stop-opacity:1;"
3802+ offset="1"
3803+ id="stop5109-8" />
3804+ </linearGradient>
3805+ <radialGradient
3806+ inkscape:collect="always"
3807+ xlink:href="#linearGradient4918-77"
3808+ id="radialGradient5456-9"
3809+ gradientUnits="userSpaceOnUse"
3810+ gradientTransform="matrix(1,0,0,0.09375,0,347.54687)"
3811+ cx="56"
3812+ cy="383.5"
3813+ fx="56"
3814+ fy="383.5"
3815+ r="16" />
3816+ <linearGradient
3817+ inkscape:collect="always"
3818+ id="linearGradient4918-77">
3819+ <stop
3820+ style="stop-color:#ffffff;stop-opacity:1;"
3821+ offset="0"
3822+ id="stop4920-7" />
3823+ <stop
3824+ style="stop-color:#ffffff;stop-opacity:0;"
3825+ offset="1"
3826+ id="stop4922-573" />
3827+ </linearGradient>
3828+ <clipPath
3829+ clipPathUnits="userSpaceOnUse"
3830+ id="clipPath5480-39">
3831+ <path
3832+ sodipodi:nodetypes="ccsccccccccc"
3833+ inkscape:connector-curvature="0"
3834+ id="path5482-2"
3835+ d="m 120.99989,936.41601 0.1873,50.81094 c 0,0 -0.26854,21.31825 22.94772,25.81115 13.35265,2.5843 38.86509,-3.408 38.86509,-3.408 l 0,-73.21409 -21,-0.0538 0,54 -20,0 0,-33 -8,0 11.17715,-21 z"
3836+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
3837+ </clipPath>
3838+ <filter
3839+ inkscape:collect="always"
3840+ id="filter5627-96"
3841+ x="-0.10786275"
3842+ width="1.2157255"
3843+ y="-0.086488038"
3844+ height="1.1729761"
3845+ color-interpolation-filters="sRGB">
3846+ <feGaussianBlur
3847+ inkscape:collect="always"
3848+ stdDeviation="2.7864593"
3849+ id="feGaussianBlur5629-6" />
3850+ </filter>
3851+ <linearGradient
3852+ inkscape:collect="always"
3853+ xlink:href="#linearGradient5367-3"
3854+ id="linearGradient5556-7"
3855+ x1="1424"
3856+ y1="1028"
3857+ x2="1424"
3858+ y2="1181.5043"
3859+ gradientUnits="userSpaceOnUse" />
3860+ <linearGradient
3861+ inkscape:collect="always"
3862+ id="linearGradient5367-3">
3863+ <stop
3864+ style="stop-color:#ffffff;stop-opacity:1;"
3865+ offset="0"
3866+ id="stop5369-1" />
3867+ <stop
3868+ style="stop-color:#ffffff;stop-opacity:0;"
3869+ offset="1"
3870+ id="stop5371-7" />
3871+ </linearGradient>
3872+ <clipPath
3873+ clipPathUnits="userSpaceOnUse"
3874+ id="clipPath5623-1">
3875+ <rect
3876+ ry="12.016669"
3877+ y="1037"
3878+ x="1316"
3879+ height="206"
3880+ width="216"
3881+ id="rect5625-0"
3882+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
3883+ </clipPath>
3884+ <filter
3885+ inkscape:collect="always"
3886+ id="filter5585-3"
3887+ color-interpolation-filters="sRGB">
3888+ <feGaussianBlur
3889+ inkscape:collect="always"
3890+ stdDeviation="1.1525"
3891+ id="feGaussianBlur5587-73" />
3892+ </filter>
3893+ <clipPath
3894+ clipPathUnits="userSpaceOnUse"
3895+ id="clipPath5606-1">
3896+ <path
3897+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
3898+ d="m 109.15625,918.36217 c -5.15625,0 -7.36925,2.80945 -8.875,5.0625 -1.07965,1.6155 -1.94945,2.5964 -2.20315,5.0469 0.4327,-2.8977 2.9156,-5.1094 5.9375,-5.1094 l 95.9688,0 c 3.0219,0 5.5048,2.2117 5.9375,5.1094 -0.2535,-2.4505 -1.1235,-3.4314 -2.20315,-5.0469 -1.50575,-2.25305 -3.71875,-5.0625 -8.875,-5.0625 l -42.84375,0 -42.84375,0 z"
3899+ id="path5608-57"
3900+ inkscape:connector-curvature="0" />
3901+ </clipPath>
3902+ <filter
3903+ inkscape:collect="always"
3904+ id="filter5614-42"
3905+ color-interpolation-filters="sRGB">
3906+ <feGaussianBlur
3907+ inkscape:collect="always"
3908+ stdDeviation="0.5275"
3909+ id="feGaussianBlur5616-1" />
3910+ </filter>
3911+ <clipPath
3912+ clipPathUnits="userSpaceOnUse"
3913+ id="clipPath5651-2">
3914+ <rect
3915+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
3916+ id="rect5653-51"
3917+ width="216"
3918+ height="206"
3919+ x="1316"
3920+ y="1039"
3921+ ry="12.016669" />
3922+ </clipPath>
3923+ <filter
3924+ inkscape:collect="always"
3925+ id="filter5655-3"
3926+ color-interpolation-filters="sRGB">
3927+ <feGaussianBlur
3928+ inkscape:collect="always"
3929+ stdDeviation="0.620078"
3930+ id="feGaussianBlur5657-4" />
3931+ </filter>
3932+ <linearGradient
3933+ inkscape:collect="always"
3934+ xlink:href="#linearGradient5683-2-8"
3935+ id="linearGradient5753-3-8"
3936+ gradientUnits="userSpaceOnUse"
3937+ x1="1432"
3938+ y1="1256"
3939+ x2="1432"
3940+ y2="1168" />
3941+ <linearGradient
3942+ inkscape:collect="always"
3943+ id="linearGradient5683-2-8">
3944+ <stop
3945+ style="stop-color:#000000;stop-opacity:1;"
3946+ offset="0"
3947+ id="stop5685-0-9" />
3948+ <stop
3949+ style="stop-color:#000000;stop-opacity:0;"
3950+ offset="1"
3951+ id="stop5687-2-4" />
3952+ </linearGradient>
3953+ <filter
3954+ inkscape:collect="always"
3955+ id="filter5695-7-0"
3956+ color-interpolation-filters="sRGB">
3957+ <feGaussianBlur
3958+ inkscape:collect="always"
3959+ stdDeviation="3.12"
3960+ id="feGaussianBlur5697-6-3" />
3961+ </filter>
3962+ <linearGradient
3963+ inkscape:collect="always"
3964+ xlink:href="#linearGradient5707-0-7"
3965+ id="linearGradient5755-3-6"
3966+ gradientUnits="userSpaceOnUse"
3967+ spreadMethod="reflect"
3968+ x1="152"
3969+ y1="1021.6122"
3970+ x2="204"
3971+ y2="1021.6122" />
3972+ <linearGradient
3973+ id="linearGradient5707-0-7">
3974+ <stop
3975+ id="stop5709-7-4"
3976+ offset="0"
3977+ style="stop-color:#000000;stop-opacity:1;" />
3978+ <stop
3979+ style="stop-color:#000000;stop-opacity:0.81896549;"
3980+ offset="0.80000001"
3981+ id="stop5713-1-1" />
3982+ <stop
3983+ id="stop5711-3-2"
3984+ offset="1"
3985+ style="stop-color:#000000;stop-opacity:0;" />
3986+ </linearGradient>
3987+ <filter
3988+ inkscape:collect="always"
3989+ id="filter5673-6-5"
3990+ x="-0.033028841"
3991+ width="1.0660577"
3992+ y="-0.32714337"
3993+ height="1.6542867"
3994+ color-interpolation-filters="sRGB">
3995+ <feGaussianBlur
3996+ inkscape:collect="always"
3997+ stdDeviation="1.4312498"
3998+ id="feGaussianBlur5675-5-3" />
3999+ </filter>
4000+ <filter
4001+ inkscape:collect="always"
4002+ id="filter5031-4-4"
4003+ color-interpolation-filters="sRGB">
4004+ <feGaussianBlur
4005+ inkscape:collect="always"
4006+ stdDeviation="1.08"
4007+ id="feGaussianBlur5033-0-6" />
4008+ </filter>
4009+ <linearGradient
4010+ inkscape:collect="always"
4011+ xlink:href="#linearGradient4910-3-9"
4012+ id="linearGradient5757-5-9"
4013+ gradientUnits="userSpaceOnUse"
4014+ gradientTransform="matrix(2.5712119,0,0,2.571428,-279.9636,-241.35181)"
4015+ x1="156.00049"
4016+ y1="450.98816"
4017+ x2="156.00049"
4018+ y2="453" />
4019+ <linearGradient
4020+ id="linearGradient4910-3-9">
4021+ <stop
4022+ offset="0"
4023+ style="stop-color:#ffaf85;stop-opacity:1;"
4024+ id="stop4912-95-5" />
4025+ <stop
4026+ offset="1"
4027+ style="stop-color:#ff915b;stop-opacity:1;"
4028+ id="stop4914-5-0" />
4029+ </linearGradient>
4030+ <linearGradient
4031+ inkscape:collect="always"
4032+ xlink:href="#linearGradient4933-3-3"
4033+ id="linearGradient5759-7-5"
4034+ gradientUnits="userSpaceOnUse"
4035+ gradientTransform="matrix(2.5712119,0,0,2.571428,-351.9636,-781.71399)"
4036+ x1="152.05421"
4037+ y1="452.16666"
4038+ x2="148.55392"
4039+ y2="452.16666" />
4040+ <linearGradient
4041+ id="linearGradient4933-3-3">
4042+ <stop
4043+ id="stop4935-8-6"
4044+ style="stop-color:#ffa87b;stop-opacity:0;"
4045+ offset="0" />
4046+ <stop
4047+ id="stop4937-6-1"
4048+ style="stop-color:#ff7d3e;stop-opacity:1;"
4049+ offset="1" />
4050+ </linearGradient>
4051+ <linearGradient
4052+ inkscape:collect="always"
4053+ xlink:href="#linearGradient4933-3-3"
4054+ id="linearGradient5761-4-3"
4055+ gradientUnits="userSpaceOnUse"
4056+ gradientTransform="matrix(-2.5712119,0,0,2.571428,583.96358,-241.35181)"
4057+ x1="152.05421"
4058+ y1="452.16666"
4059+ x2="148.55392"
4060+ y2="452.16666" />
4061+ <linearGradient
4062+ id="linearGradient10581">
4063+ <stop
4064+ id="stop10583"
4065+ style="stop-color:#ffa87b;stop-opacity:0;"
4066+ offset="0" />
4067+ <stop
4068+ id="stop10585"
4069+ style="stop-color:#ff7d3e;stop-opacity:1;"
4070+ offset="1" />
4071+ </linearGradient>
4072+ <linearGradient
4073+ inkscape:collect="always"
4074+ xlink:href="#linearGradient4644-104-3-3-6-1-7-2"
4075+ id="linearGradient5763-3-4"
4076+ gradientUnits="userSpaceOnUse"
4077+ gradientTransform="matrix(2.5714286,0,0,2.5750001,-280.00001,-243.11285)"
4078+ x1="155.04018"
4079+ y1="453.00262"
4080+ x2="165.61214"
4081+ y2="492.4577" />
4082+ <linearGradient
4083+ id="linearGradient4644-104-3-3-6-1-7-2">
4084+ <stop
4085+ offset="0"
4086+ style="stop-color:#ff7a35;stop-opacity:1;"
4087+ id="stop5237-6-5-1-7-09-9" />
4088+ <stop
4089+ offset="1"
4090+ style="stop-color:#f0431a;stop-opacity:1;"
4091+ id="stop5239-4-6-4-7-90-3" />
4092+ </linearGradient>
4093+ <linearGradient
4094+ inkscape:collect="always"
4095+ xlink:href="#linearGradient8265-821-176-38-919-66-249-7-7-6-5-8-2"
4096+ id="linearGradient5765-1-0"
4097+ gradientUnits="userSpaceOnUse"
4098+ gradientTransform="matrix(2.3446832,0,0,3.6982468,23.617962,361.87484)"
4099+ x1="16.626165"
4100+ y1="15.298182"
4101+ x2="20.054544"
4102+ y2="24.627615" />
4103+ <linearGradient
4104+ id="linearGradient8265-821-176-38-919-66-249-7-7-6-5-8-2">
4105+ <stop
4106+ offset="0"
4107+ style="stop-color:#ffffff;stop-opacity:1"
4108+ id="stop2687-1-9-3-0-6-5" />
4109+ <stop
4110+ offset="1"
4111+ style="stop-color:#ffffff;stop-opacity:0"
4112+ id="stop2689-5-4-9-8-4-8" />
4113+ </linearGradient>
4114+ <filter
4115+ inkscape:collect="always"
4116+ id="filter5472-9-0"
4117+ x="-0.13482843"
4118+ width="1.2696569"
4119+ y="-0.10811005"
4120+ height="1.2162201"
4121+ color-interpolation-filters="sRGB">
4122+ <feGaussianBlur
4123+ inkscape:collect="always"
4124+ stdDeviation="3.4830741"
4125+ id="feGaussianBlur5474-4-4" />
4126+ </filter>
4127+ <filter
4128+ inkscape:collect="always"
4129+ id="filter5458-7-2"
4130+ color-interpolation-filters="sRGB">
4131+ <feGaussianBlur
4132+ inkscape:collect="always"
4133+ stdDeviation="0.69661483"
4134+ id="feGaussianBlur5460-4-2" />
4135+ </filter>
4136+ <linearGradient
4137+ inkscape:collect="always"
4138+ xlink:href="#linearGradient5105-2-0"
4139+ id="linearGradient5767-2-9"
4140+ gradientUnits="userSpaceOnUse"
4141+ x1="149"
4142+ y1="936.36218"
4143+ x2="149"
4144+ y2="1013.3622" />
4145+ <linearGradient
4146+ id="linearGradient5105-2-0">
4147+ <stop
4148+ style="stop-color:#f5f5f5;stop-opacity:1;"
4149+ offset="0"
4150+ id="stop5107-8-9" />
4151+ <stop
4152+ style="stop-color:#ebebeb;stop-opacity:1;"
4153+ offset="1"
4154+ id="stop5109-2-6" />
4155+ </linearGradient>
4156+ <radialGradient
4157+ inkscape:collect="always"
4158+ xlink:href="#linearGradient4918-3-3"
4159+ id="radialGradient5769-9-1"
4160+ gradientUnits="userSpaceOnUse"
4161+ gradientTransform="matrix(1,0,0,0.09375,0,347.54687)"
4162+ cx="56"
4163+ cy="383.5"
4164+ fx="56"
4165+ fy="383.5"
4166+ r="16" />
4167+ <linearGradient
4168+ inkscape:collect="always"
4169+ id="linearGradient4918-3-3">
4170+ <stop
4171+ style="stop-color:#ffffff;stop-opacity:1;"
4172+ offset="0"
4173+ id="stop4920-3-1" />
4174+ <stop
4175+ style="stop-color:#ffffff;stop-opacity:0;"
4176+ offset="1"
4177+ id="stop4922-69-5" />
4178+ </linearGradient>
4179+ <clipPath
4180+ clipPathUnits="userSpaceOnUse"
4181+ id="clipPath5480-3-7">
4182+ <path
4183+ sodipodi:nodetypes="ccsccccccccc"
4184+ inkscape:connector-curvature="0"
4185+ id="path5482-9-7"
4186+ d="m 120.99989,936.41601 0.1873,50.81094 c 0,0 -0.26854,21.31825 22.94772,25.81115 13.35265,2.5843 38.86509,-3.408 38.86509,-3.408 l 0,-73.21409 -21,-0.0538 0,54 -20,0 0,-33 -8,0 11.17715,-21 z"
4187+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
4188+ </clipPath>
4189+ <filter
4190+ inkscape:collect="always"
4191+ id="filter5627-9-6"
4192+ x="-0.10786275"
4193+ width="1.2157255"
4194+ y="-0.086488038"
4195+ height="1.1729761"
4196+ color-interpolation-filters="sRGB">
4197+ <feGaussianBlur
4198+ inkscape:collect="always"
4199+ stdDeviation="2.7864593"
4200+ id="feGaussianBlur5629-9-8" />
4201+ </filter>
4202+ <linearGradient
4203+ inkscape:collect="always"
4204+ xlink:href="#linearGradient5367-9-8"
4205+ id="linearGradient5771-6-5"
4206+ gradientUnits="userSpaceOnUse"
4207+ x1="1424"
4208+ y1="1028"
4209+ x2="1424"
4210+ y2="1181.5043" />
4211+ <linearGradient
4212+ inkscape:collect="always"
4213+ id="linearGradient5367-9-8">
4214+ <stop
4215+ style="stop-color:#ffffff;stop-opacity:1;"
4216+ offset="0"
4217+ id="stop5369-0-6" />
4218+ <stop
4219+ style="stop-color:#ffffff;stop-opacity:0;"
4220+ offset="1"
4221+ id="stop5371-4-8" />
4222+ </linearGradient>
4223+ <clipPath
4224+ clipPathUnits="userSpaceOnUse"
4225+ id="clipPath5623-4-5">
4226+ <rect
4227+ ry="12.016669"
4228+ y="1037"
4229+ x="1316"
4230+ height="206"
4231+ width="216"
4232+ id="rect5625-7-9"
4233+ style="fill:#ff00ff;fill-opacity:1;stroke:none" />
4234+ </clipPath>
4235+ <filter
4236+ inkscape:collect="always"
4237+ id="filter5585-4-3"
4238+ color-interpolation-filters="sRGB">
4239+ <feGaussianBlur
4240+ inkscape:collect="always"
4241+ stdDeviation="1.1525"
4242+ id="feGaussianBlur5587-3-9" />
4243+ </filter>
4244+ <clipPath
4245+ clipPathUnits="userSpaceOnUse"
4246+ id="clipPath5606-8-1">
4247+ <path
4248+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
4249+ d="m 109.15625,918.36217 c -5.15625,0 -7.36925,2.80945 -8.875,5.0625 -1.07965,1.6155 -1.94945,2.5964 -2.20315,5.0469 0.4327,-2.8977 2.9156,-5.1094 5.9375,-5.1094 l 95.9688,0 c 3.0219,0 5.5048,2.2117 5.9375,5.1094 -0.2535,-2.4505 -1.1235,-3.4314 -2.20315,-5.0469 -1.50575,-2.25305 -3.71875,-5.0625 -8.875,-5.0625 l -42.84375,0 -42.84375,0 z"
4250+ id="path5608-5-2"
4251+ inkscape:connector-curvature="0" />
4252+ </clipPath>
4253+ <filter
4254+ inkscape:collect="always"
4255+ id="filter5614-4-2"
4256+ color-interpolation-filters="sRGB">
4257+ <feGaussianBlur
4258+ inkscape:collect="always"
4259+ stdDeviation="0.5275"
4260+ id="feGaussianBlur5616-6-3" />
4261+ </filter>
4262+ <clipPath
4263+ clipPathUnits="userSpaceOnUse"
4264+ id="clipPath5651-3-4">
4265+ <rect
4266+ style="fill:#ff00ff;fill-opacity:1;stroke:none"
4267+ id="rect5653-1-7"
4268+ width="216"
4269+ height="206"
4270+ x="1316"
4271+ y="1039"
4272+ ry="12.016669" />
4273+ </clipPath>
4274+ <filter
4275+ inkscape:collect="always"
4276+ id="filter5655-7-2"
4277+ color-interpolation-filters="sRGB">
4278+ <feGaussianBlur
4279+ inkscape:collect="always"
4280+ stdDeviation="0.620078"
4281+ id="feGaussianBlur5657-9-6" />
4282+ </filter>
4283 </defs>
4284 <sodipodi:namedview
4285 stroke="#ef2929"
4286@@ -15218,11 +19119,11 @@
4287 borderopacity="0.25490196"
4288 inkscape:pageopacity="0.0"
4289 inkscape:pageshadow="2"
4290- inkscape:zoom="0.35355338"
4291- inkscape:cx="665.15666"
4292- inkscape:cy="994.57561"
4293- inkscape:current-layer="layer5"
4294- showgrid="true"
4295+ inkscape:zoom="0.70710676"
4296+ inkscape:cx="1083.3287"
4297+ inkscape:cy="1077.151"
4298+ inkscape:current-layer="layer11"
4299+ showgrid="false"
4300 inkscape:grid-bbox="true"
4301 inkscape:document-units="px"
4302 inkscape:showpageshadow="true"
4303@@ -15250,22 +19151,6 @@
4304 visible="true"
4305 empspacing="5"
4306 snapvisiblegridlinesonly="true" />
4307- <sodipodi:guide
4308- orientation="1,0"
4309- position="400,0"
4310- id="guide3498" />
4311- <sodipodi:guide
4312- orientation="1,0"
4313- position="800,180"
4314- id="guide7000" />
4315- <sodipodi:guide
4316- orientation="1,0"
4317- position="1200,461"
4318- id="guide8140" />
4319- <sodipodi:guide
4320- orientation="0,1"
4321- position="52.325904,299.99007"
4322- id="guide6400" />
4323 </sodipodi:namedview>
4324 <metadata
4325 id="metadata4">
4326@@ -15308,7 +19193,9 @@
4327 <dc:contributor>
4328 <cc:Agent>
4329 <dc:title>Ryan Collier
4330+Daniel Fore
4331 Lisette Slegers
4332+Matthieu James
4333 </dc:title>
4334 </cc:Agent>
4335 </dc:contributor>
4336@@ -15340,7 +19227,8 @@
4337 inkscape:groupmode="layer"
4338 id="layer12"
4339 inkscape:label="plate#5"
4340- style="display:none">
4341+ style="display:none"
4342+ sodipodi:insensitive="true">
4343 <rect
4344 style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4345 id="rect6401-7"
4346@@ -16986,7 +20874,8 @@
4347 inkscape:groupmode="layer"
4348 id="layer8"
4349 inkscape:label="plate#3"
4350- style="display:none">
4351+ style="display:none"
4352+ sodipodi:insensitive="true">
4353 <rect
4354 style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4355 id="rect8142"
4356@@ -17854,7 +21743,8 @@
4357 inkscape:groupmode="layer"
4358 id="layer7"
4359 inkscape:label="plate#2"
4360- style="display:none">
4361+ style="display:none"
4362+ sodipodi:insensitive="true">
4363 <rect
4364 style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4365 id="rect3500-6"
4366@@ -18836,7 +22726,8 @@
4367 inkscape:groupmode="layer"
4368 id="layer5"
4369 inkscape:label="plate#1"
4370- style="display:none">
4371+ style="display:none"
4372+ sodipodi:insensitive="true">
4373 <rect
4374 style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4375 id="rect3500"
4376@@ -19051,7 +22942,8 @@
4377 inkscape:groupmode="layer"
4378 id="layer6"
4379 inkscape:label="plate"
4380- style="display:none">
4381+ style="display:none"
4382+ sodipodi:insensitive="true">
4383 <rect
4384 style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4385 id="rect8104"
4386@@ -19172,332 +23064,1240 @@
4387 y="-480"
4388 inkscape:label="16x16@2x" />
4389 </g>
4390- <rect
4391- x="1101.5"
4392- y="224.50002"
4393- width="212.74756"
4394- height="254.99998"
4395- id="rect3045"
4396- style="fill:url(#linearGradient6574);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
4397- transform="scale(1,-1)" />
4398- <g
4399- id="g3047"
4400- style="fill:#ffffff;fill-opacity:1"
4401- transform="matrix(2.5029125,0,0,2.4999999,1081.4755,-502)">
4402- <g
4403- id="g3049"
4404- style="fill:#ffffff;fill-opacity:1">
4405- <g
4406- id="g3051"
4407- style="fill:#ffffff;fill-opacity:1">
4408- <path
4409- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4410- id="path3053"
4411- style="fill:#ffffff;fill-opacity:1"
4412- inkscape:connector-curvature="0" />
4413- </g>
4414- </g>
4415- </g>
4416- <rect
4417- x="104.17609"
4418- y="6.8395424"
4419- width="852.9903"
4420- height="1022"
4421- id="rect3045-9"
4422- style="fill:url(#linearGradient6875);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:2;stroke-opacity:1"
4423- transform="scale(1,-1)" />
4424- <g
4425- id="g3047-9"
4426- style="fill:#ffffff;fill-opacity:1"
4427- transform="matrix(10.03518,0,0,10.019608,23.889638,-1119.0161)">
4428- <g
4429- id="g3049-1"
4430- style="fill:#ffffff;fill-opacity:1">
4431- <g
4432- id="g3051-6"
4433- style="fill:#ffffff;fill-opacity:1">
4434- <path
4435- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4436- id="path3053-5"
4437- style="fill:#ffffff;fill-opacity:1"
4438- inkscape:connector-curvature="0" />
4439- </g>
4440- </g>
4441- </g>
4442- <rect
4443- x="1120.5"
4444- y="518.5"
4445- width="426.49515"
4446- height="511"
4447- id="rect3045-5"
4448- style="fill:url(#linearGradient6967);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:1;stroke-opacity:1"
4449- transform="scale(1,-1)" />
4450- <g
4451- id="g3047-0"
4452- style="fill:#ffffff;fill-opacity:1"
4453- transform="matrix(5.0175899,0,0,5.0098039,1080.3568,-1074.5882)">
4454- <g
4455- id="g3049-6"
4456- style="fill:#ffffff;fill-opacity:1">
4457- <g
4458- id="g3051-69"
4459- style="fill:#ffffff;fill-opacity:1">
4460- <path
4461- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4462- id="path3053-8"
4463- style="fill:#ffffff;fill-opacity:1"
4464- inkscape:connector-curvature="0" />
4465- </g>
4466- </g>
4467- </g>
4468- <rect
4469- x="1673.6458"
4470- y="519.02771"
4471- width="425.49515"
4472- height="510"
4473- id="rect3045-0"
4474- style="display:inline;enable-background:new;fill:url(#linearGradient7086-5);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
4475- transform="scale(1,-1)" />
4476- <g
4477- id="g3047-7"
4478- style="display:inline;enable-background:new;fill:#ffffff;fill-opacity:1"
4479- transform="matrix(5.0058252,0,0,5,1633.5964,-1074.0278)">
4480- <g
4481- id="g3049-3"
4482- style="fill:#ffffff;fill-opacity:1">
4483- <g
4484- id="g3051-8"
4485- style="fill:#ffffff;fill-opacity:1">
4486- <path
4487- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4488- id="path3053-7"
4489- style="fill:#ffffff;fill-opacity:1"
4490- inkscape:connector-curvature="0" />
4491- </g>
4492- </g>
4493- </g>
4494- <g
4495- id="g3043"
4496- style="fill:#dd4814;fill-opacity:1"
4497- transform="translate(1397.5,-335.49999)">
4498- <rect
4499- x="8.499999"
4500- y="-110.49999"
4501- width="211.74757"
4502- height="254"
4503- id="rect3045-1"
4504- style="fill:url(#linearGradient3775-9);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
4505- transform="scale(1,-1)"
4506- inkscape:export-xdpi="90"
4507- inkscape:export-ydpi="90" />
4508- <g
4509- id="g3047-2"
4510- style="fill:#ffffff;fill-opacity:1"
4511- transform="matrix(2.491148,0,0,2.4901962,-11.429185,-165.91178)"
4512- inkscape:export-filename="/Users/lisetteslegers/Documents/canonical/u1_client_xplatform/app_icons/icon_exports/rect3045.png"
4513- inkscape:export-xdpi="90"
4514- inkscape:export-ydpi="90">
4515- <g
4516- id="g3049-5"
4517- style="fill:#ffffff;fill-opacity:1">
4518- <g
4519- id="g3051-87"
4520- style="fill:#ffffff;fill-opacity:1">
4521- <path
4522- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4523- id="path3053-2"
4524- style="fill:#ffffff;fill-opacity:1"
4525- inkscape:connector-curvature="0" />
4526- </g>
4527- </g>
4528- </g>
4529- </g>
4530- <rect
4531- x="1690.5"
4532- y="352.5"
4533- width="105.87379"
4534- height="127"
4535- id="rect3045-7"
4536- style="fill:url(#linearGradient7328);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
4537- transform="scale(1,-1)" />
4538- <g
4539- id="g3047-5"
4540- style="fill:#ffffff;fill-opacity:1"
4541- transform="matrix(1.245574,0,0,1.2450981,1680.5348,-490.70592)">
4542- <g
4543- id="g3049-56"
4544- style="fill:#ffffff;fill-opacity:1">
4545- <g
4546- id="g3051-88"
4547- style="fill:#ffffff;fill-opacity:1">
4548- <path
4549- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4550- id="path3053-27"
4551- style="fill:#ffffff;fill-opacity:1"
4552- inkscape:connector-curvature="0" />
4553- </g>
4554- </g>
4555- </g>
4556- <rect
4557- x="1840.25"
4558- y="416.25"
4559- width="52.936893"
4560- height="63.5"
4561- id="rect3045-99"
4562- style="fill:url(#linearGradient7447);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
4563- transform="scale(1,-1)"
4564- inkscape:export-xdpi="90"
4565- inkscape:export-ydpi="90" />
4566- <g
4567- id="g3047-04"
4568- style="fill:#ffffff;fill-opacity:1"
4569- transform="matrix(0.622787,0,0,0.62254906,1835.2674,-485.3529)"
4570- inkscape:export-filename="/Users/lisetteslegers/Documents/canonical/u1_client_xplatform/app_icons/icon_exports/rect3045.png"
4571- inkscape:export-xdpi="90"
4572- inkscape:export-ydpi="90">
4573- <g
4574- id="g3049-0"
4575- style="fill:#ffffff;fill-opacity:1">
4576- <g
4577- id="g3051-83"
4578- style="fill:#ffffff;fill-opacity:1">
4579- <path
4580- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4581- id="path3053-1"
4582- style="fill:#ffffff;fill-opacity:1"
4583- inkscape:connector-curvature="0" />
4584- </g>
4585- </g>
4586- </g>
4587- <rect
4588- x="1930.1875"
4589- y="432.1875"
4590- width="39.702671"
4591- height="47.625"
4592- id="rect3045-53"
4593- style="fill:url(#linearGradient7566);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:0.375;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
4594- transform="scale(1,-1)" />
4595- <g
4596- id="g3047-8"
4597- style="fill:#ffffff;fill-opacity:1"
4598- transform="matrix(0.46709025,0,0,0.46691179,1926.4505,-484.01469)">
4599- <g
4600- id="g3049-2"
4601- style="fill:#ffffff;fill-opacity:1">
4602- <g
4603- id="g3051-80"
4604- style="fill:#ffffff;fill-opacity:1">
4605- <path
4606- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4607- id="path3053-19"
4608- style="fill:#ffffff;fill-opacity:1"
4609- inkscape:connector-curvature="0" />
4610- </g>
4611- </g>
4612- </g>
4613- <rect
4614- x="1997.4065"
4615- y="448.125"
4616- width="26.468447"
4617- height="31.75"
4618- id="rect3045-992"
4619- style="fill:url(#linearGradient7685);fill-opacity:1;fill-rule:nonzero;stroke:#ff7b4b;stroke-width:0.25;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
4620- transform="scale(1,-1)" />
4621- <g
4622- id="g3047-3"
4623- style="fill:#ffffff;fill-opacity:1"
4624- transform="matrix(0.3113935,0,0,0.31127453,1994.9152,-482.6765)">
4625- <g
4626- id="g3049-8"
4627- style="fill:#ffffff;fill-opacity:1">
4628- <g
4629- id="g3051-66"
4630- style="fill:#ffffff;fill-opacity:1">
4631- <path
4632- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4633- id="path3053-3"
4634- style="fill:#ffffff;fill-opacity:1"
4635- inkscape:connector-curvature="0" />
4636- </g>
4637- </g>
4638- </g>
4639- <rect
4640- x="2053"
4641- y="448"
4642- width="26.676863"
4643- height="31.999998"
4644- id="rect3045-54"
4645- style="fill:url(#linearGradient7804);fill-opacity:1;fill-rule:nonzero;stroke:none"
4646- transform="scale(1,-1)" />
4647- <g
4648- id="g3047-93"
4649- style="fill:#ffffff;fill-opacity:1"
4650- transform="matrix(0.31139352,0,0,0.31127454,2050.6129,-482.67648)">
4651- <g
4652- id="g3049-33"
4653- style="fill:#ffffff;fill-opacity:1">
4654- <g
4655- id="g3051-1"
4656- style="fill:#ffffff;fill-opacity:1">
4657- <path
4658- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4659- id="path3053-53"
4660- style="fill:#ffffff;fill-opacity:1"
4661- inkscape:connector-curvature="0" />
4662- </g>
4663- </g>
4664- </g>
4665- <rect
4666- x="2096.9924"
4667- y="456"
4668- width="20.007645"
4669- height="24"
4670- id="rect3045-79"
4671- style="fill:url(#linearGradient7923-8);fill-opacity:1;fill-rule:nonzero;stroke:none"
4672- transform="scale(1,-1)" />
4673- <g
4674- id="g3047-58"
4675- style="fill:#ffffff;fill-opacity:1"
4676- transform="matrix(0.23354513,0,0,0.2334559,2095.2023,-482.00739)">
4677- <g
4678- id="g3049-29"
4679- style="fill:#ffffff;fill-opacity:1">
4680- <g
4681- id="g3051-3"
4682- style="fill:#ffffff;fill-opacity:1">
4683- <path
4684- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4685- id="path3053-6"
4686- style="fill:#ffffff;fill-opacity:1"
4687- inkscape:connector-curvature="0" />
4688- </g>
4689- </g>
4690- </g>
4691- <rect
4692- x="2126.4263"
4693- y="464.00891"
4694- width="13.338429"
4695- height="15.999999"
4696- id="rect3045-2"
4697- style="fill:url(#linearGradient8025);fill-opacity:1;fill-rule:nonzero;stroke:none"
4698- transform="scale(1,-1)" />
4699- <g
4700- id="g3047-4"
4701- style="fill:#ffffff;fill-opacity:1"
4702- transform="matrix(0.15569675,0,0,0.15563726,2125.2327,-481.34713)">
4703- <g
4704- id="g3049-298"
4705- style="fill:#ffffff;fill-opacity:1">
4706- <g
4707- id="g3051-84"
4708- style="fill:#ffffff;fill-opacity:1">
4709- <path
4710- d="M 60.693,20.002 V 79.676 H 41.217 V 38.475 H 32.512 L 43.428,20.002 19,20 v 43.998 c 0,5.324 0.549,10.164 1.65,14.533 1.102,4.371 2.897,8.16 5.403,11.373 2.494,3.209 5.796,5.7 9.903,7.457 4.092,1.756 9.143,2.639 15.145,2.639 6.9,0 12.977,-0.456 18.225,-1.363 5.247,-0.901 9.474,-1.751 12.675,-2.557 V 20 l -21.308,0.002 z"
4711- id="path3053-65"
4712- style="fill:#ffffff;fill-opacity:1"
4713- inkscape:connector-curvature="0" />
4714- </g>
4715- </g>
4716+ <g
4717+ style="display:inline;enable-background:new"
4718+ transform="translate(2125,-480)"
4719+ id="layer1-6">
4720+ <rect
4721+ width="14.999999"
4722+ height="15"
4723+ rx="1.1538459"
4724+ ry="1.1538459"
4725+ x="0.49999997"
4726+ y="0.49999997"
4727+ id="rect5505-21"
4728+ style="color:#000000;fill:url(#radialGradient4052-6);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4054-0);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4729+ <rect
4730+ width="13"
4731+ height="13"
4732+ x="1.5"
4733+ y="1.4999999"
4734+ id="rect6741-0-3"
4735+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3079-9-7);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4736+ <rect
4737+ style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4738+ id="rect3264"
4739+ width="16"
4740+ height="16"
4741+ x="64"
4742+ y="988.36218"
4743+ transform="translate(-64,-988.36218)" />
4744+ <path
4745+ inkscape:connector-curvature="0"
4746+ d="m 4.507286,1.9999857 c -0.8877,-0.0368 -1.6079,0.82486 -1.5,1.68745 0.015,1.95176 -0.045,3.9060598 0.071,5.8554298 0.1481,1.8948405 1.4297,3.7517505 3.3089,4.2663105 1.1054,0.2864 2.2667,0.19964 3.3929,0.11373 0.7202,-0.0819 1.4408,-0.21412 2.1335,-0.42292 0.6031,-0.23807 1.0259,-0.84169 1.0243,-1.49356 0.1047,-1.79091 0.057,-3.5875205 0.069,-5.3811103 0,-1.09119 0.01,-2.18268 -0.01,-3.27367 -0.051,-0.83129 -0.873,-1.44701 -1.6815,-1.35166 -0.7024,0.0132 -1.4081,-0.0291 -2.1079,0.0267 -0.7843,0.1277 -1.2932,0.92768 -1.2047,1.69202 0,0.66669 0,1.33338 0,2.00006 0.1469,-0.4651 -0.4914,-0.82785 -0.4044,-1.16965 0.333,-0.46718 0.5511,-1.07231 0.293,-1.62862 -0.252,-0.67399 -0.9902,-0.98807 -1.6697,-0.92048 -0.573,0 -1.1459,0 -1.7189,0 z"
4747+ id="path3988"
4748+ style="opacity:0.3;color:#000000;fill:url(#linearGradient19941);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9854272;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4749+ <path
4750+ inkscape:connector-curvature="0"
4751+ d="m 6.669986,12.333636 c -0.9621,-0.31991 -1.5751,-0.98017 -1.9325,-2.08161 -0.1652,-0.5089505 -0.2302,-0.7345205 -0.2302,-3.6513803 l 0,-3.10066 2,0 -1.5,2.21346 1.5,0 0,4.7865403 3,0 0,-7.0000003 2,0 0,4.2810398 c 0,3.8054005 -0.01,4.2949005 -0.1194,4.3391305 -0.07,0.0274 -0.5508,0.12534 -1.0691,0.21758 -1.2791,0.22767 -2.9575,0.22578 -3.6488,-0.004 z"
4752+ id="path4766"
4753+ style="color:#000000;fill:#f7f7f7;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.9854272;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4754+ <path
4755+ inkscape:connector-curvature="0"
4756+ d="M 1.4483393,1 C 1.1981098,1 1,1.3421743 1,1.6750009 l 0.00464,8.3249987 C 1.4073883,9.9908874 14.694308,6.6824095 15,6.523266 L 15,1.6750009 C 15,1.420598 14.804303,1 14.58763,1 L 1.4483229,1 z"
4757+ id="path3333"
4758+ style="opacity:0.2;fill:url(#linearGradient7085);fill-opacity:1;fill-rule:evenodd;stroke:none" />
4759+ </g>
4760+ <g
4761+ style="display:inline;enable-background:new"
4762+ transform="translate(2096,-521)"
4763+ id="g6890">
4764+ <rect
4765+ width="21"
4766+ height="21"
4767+ rx="1.1052631"
4768+ ry="1.105263"
4769+ x="0.5"
4770+ y="42.5"
4771+ id="rect5505-21-6"
4772+ style="color:#000000;fill:url(#radialGradient7823);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient7825);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4773+ <path
4774+ inkscape:connector-curvature="0"
4775+ id="path3978-0"
4776+ d="m 5.5,42.989798 c -2.2472294,-0.073 -3.8753999,2.219184 -3.4893548,4.341562 0.075887,2.924789 -0.065664,5.865696 0.221168,8.779339 0.5159776,3.471499 3.5087387,6.381571 7.0173718,6.71548 3.021183,0.245075 6.231848,0.433304 9.040407,-0.913341 1.681872,-0.894605 1.821949,-2.907653 1.70915,-4.587347 -0.01405,-3.728243 0.02439,-7.457669 -0.0163,-11.185177 -0.139224,-1.993036 -2.130981,-3.387132 -4.047675,-3.150516 -1.538547,0.0785 -3.246282,-0.314666 -4.559767,0.71875 -1.396356,-1.066161 -3.1975358,-0.624372 -4.8209217,-0.71875 -0.3513594,0 -0.7027189,0 -1.0540783,0 z"
4777+ style="opacity:0.05;color:#000000;fill:url(#linearGradient7827);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542726;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4778+ <path
4779+ inkscape:connector-curvature="0"
4780+ id="path3978-8"
4781+ d="m 5.25,43.989798 c -1.4921487,0.1032 -2.4744755,1.637812 -2.2425252,3.05309 0.050491,2.8405 -0.00874,5.686094 0.1613774,8.522515 0.3041875,2.848106 2.4374217,5.471411 5.278758,6.087731 1.5509128,0.356523 3.1589958,0.30986 4.7404898,0.336631 1.57088,-0.05231 3.175538,-0.292663 4.606454,-0.964659 1.046693,-0.574041 1.296295,-1.818327 1.204731,-2.912042 -0.0099,-3.957576 0.01455,-7.915852 -0.01185,-11.872921 -0.09891,-1.389831 -1.47466,-2.403855 -2.824693,-2.250345 -1.052575,0.02456 -2.112194,-0.05594 -3.159102,0.05426 -0.673486,0.139488 -1.278857,0.572344 -1.62864,1.164492 -0.527686,-0.963239 -1.654993,-1.299795 -2.6862272,-1.21875 -1.1462576,0 -2.2925153,0 -3.4387728,0 z"
4782+ style="opacity:0.1;color:#000000;fill:url(#linearGradient7830);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542726;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4783+ <path
4784+ inkscape:connector-curvature="0"
4785+ id="path3978"
4786+ d="m 5.5,44.989798 c -0.9349937,-0.03929 -1.6476072,0.900669 -1.4960642,1.793353 0.053691,2.890539 -0.00469,5.785825 0.1587751,8.672697 0.270945,2.499876 2.1952525,4.776847 4.6958149,5.262489 1.3100252,0.269108 2.6582162,0.235793 3.9892462,0.280143 1.503788,-0.008 3.033735,-0.225996 4.421619,-0.820888 0.761822,-0.401985 0.77048,-1.318441 0.729894,-2.064755 -0.0073,-3.923798 0.0084,-7.847938 -0.0054,-11.771527 -0.05212,-0.864922 -0.921667,-1.462124 -1.749095,-1.351512 -1.013094,0.01523 -2.029932,-0.03218 -3.040416,0.02699 -0.997581,0.156835 -1.338414,1.24693 -1.204914,2.12508 -0.0015,2.615976 0.0044,5.231953 5.4e-4,7.847928 -0.333333,0 -0.666667,0 -1,0 -0.0055,-1.882717 0.01103,-3.766052 -0.0083,-5.64838 0.09756,-0.676434 -0.833217,-1.048841 -0.954136,-1.365348 0.371691,-0.582284 0.88913,-1.2191 0.610281,-1.954691 -0.216344,-0.760958 -1.032878,-1.115809 -1.7693745,-1.031579 -1.1261568,0 -2.2523137,0 -3.3784705,0 z"
4787+ style="opacity:0.25;color:#000000;fill:url(#linearGradient7832);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542726;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4788+ <path
4789+ sodipodi:nodetypes="ccccccccccccccc"
4790+ inkscape:connector-curvature="0"
4791+ id="path3992"
4792+ d="m 5.4927873,46.482511 c 0.044302,2.817596 0.030629,5.636593 0.1311244,8.452928 0.054121,1.256171 0.6233154,2.5122 1.5896936,3.37681 0.9553763,0.837462 2.2807027,1.085578 3.5401047,1.107452 1.895111,0.08132 3.500786,0.263699 5.74629,-0.530222 -0.0043,-4.163625 0.0066,-8.590539 0.0072,-12.406968 -1.048993,0 -1.955584,0 -3.004578,0 -0.0036,3.254347 0.007,6.753459 -0.0053,10.007287 l -3.997322,0 c 0,-2.07973 0,-4.910869 0,-6.9906 -0.492108,-0.0129 -1.327101,0.02558 -1.8149221,-0.0188 -0.250697,-0.09753 -0.156305,-0.415085 -0.013393,-0.560572 0.5193579,-0.812435 1.0387138,-1.62487 1.5580711,-2.437307 -1.2456819,0 -2.4913621,0 -3.7370424,0 z"
4793+ style="color:#000000;fill:#f7f7f7;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.98542726;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4794+ <path
4795+ sodipodi:nodetypes="ccccccc"
4796+ d="M 1.6404823,43 C 1.2830141,43 1,43.494251 1,43.974999 L 1.00669,56 C 1.5820473,55.986902 20.563296,51.207926 21,50.97805 l 0,-7.003051 C 21,43.60753 20.720429,43 20.4109,43 L 1.6405256,43 z"
4797+ id="path3333-8"
4798+ style="opacity:0.2;fill:url(#linearGradient7834);fill-opacity:1;fill-rule:evenodd;stroke:none"
4799+ inkscape:connector-curvature="0" />
4800+ <rect
4801+ width="19"
4802+ height="19"
4803+ x="1.5"
4804+ y="43.5"
4805+ id="rect6741-9"
4806+ style="opacity:0.5;fill:none;stroke:url(#linearGradient7836);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4807+ <rect
4808+ style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4809+ id="rect3244"
4810+ width="24"
4811+ height="24"
4812+ x="-1"
4813+ y="41.000004" />
4814+ </g>
4815+ <g
4816+ style="display:inline;enable-background:new"
4817+ transform="translate(2050,-481)"
4818+ id="g7226">
4819+ <g
4820+ transform="matrix(0.7499997,0,0,0.33333368,-2.0000003,16.333327)"
4821+ id="g2036"
4822+ style="display:inline">
4823+ <g
4824+ transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
4825+ id="g3712"
4826+ style="opacity:0.4">
4827+ <rect
4828+ width="5"
4829+ height="7"
4830+ x="38"
4831+ y="40"
4832+ id="rect2801"
4833+ style="fill:url(#radialGradient2976);fill-opacity:1;stroke:none" />
4834+ <rect
4835+ width="5"
4836+ height="7"
4837+ x="-10"
4838+ y="-47"
4839+ transform="scale(-1,-1)"
4840+ id="rect3696"
4841+ style="fill:url(#radialGradient2978);fill-opacity:1;stroke:none" />
4842+ <rect
4843+ width="28"
4844+ height="7.0000005"
4845+ x="10"
4846+ y="40"
4847+ id="rect3700"
4848+ style="fill:url(#linearGradient2980);fill-opacity:1;stroke:none" />
4849+ </g>
4850+ </g>
4851+ <rect
4852+ width="26.999998"
4853+ height="26.999998"
4854+ rx="2.1599998"
4855+ ry="2.1600001"
4856+ x="2.4999998"
4857+ y="3.4999998"
4858+ id="rect5505"
4859+ style="color:#000000;fill:url(#radialGradient3166-9);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3168-3);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4860+ <path
4861+ inkscape:connector-curvature="0"
4862+ id="path4122-3"
4863+ d="M 9.5,5 C 7.4657273,4.9304906 5.7782091,6.8836174 6,8.8748927 6.032365,12.579588 5.904841,16.290162 6.1431847,19.989493 c 0.3295552,3.858429 2.954648,7.651022 6.7966673,8.672899 2.107131,0.515195 4.312585,0.357839 6.453795,0.181232 1.329097,-0.14938 2.64684,-0.429162 3.944733,-0.725008 1.608941,-0.541009 2.632467,-2.210207 2.574271,-3.879524 C 26.05075,18.994013 25.983792,13.746356 26,8.5 26.069509,6.4657273 24.116383,4.7782091 22.125107,5 20.68637,5.031924 19.238848,4.9271599 17.8072,5.0708283 16.849042,4.953788 16.168598,6.6233982 15.468191,5.6128691 14.18143,4.7207156 12.588458,5.0725724 11.12568,5 10.583786,5 10.041893,5 9.5,5 z"
4864+ style="opacity:0.05;color:#000000;fill:url(#linearGradient4184);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542732;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4865+ <path
4866+ inkscape:connector-curvature="0"
4867+ id="path4122-8"
4868+ d="M 9.5,6 C 8.0112949,5.949293 6.8195688,7.3978773 7,8.8411046 7.027222,12.456482 6.919521,16.076143 7.125,19.6875 c 0.2016297,3.450735 2.4118977,6.927818 5.822158,7.947925 1.926547,0.529789 3.959247,0.375627 5.930361,0.263634 1.410298,-0.120075 2.804958,-0.409924 4.175911,-0.740762 1.182196,-0.385983 1.893546,-1.611607 1.874268,-2.821741 0.128113,-3.94324 0.05262,-7.890812 0.0723,-11.836061 -0.02603,-1.498063 0.05592,-3.0028364 -0.04848,-4.4960611 C 24.727797,6.6891946 23.382031,5.8520284 22.102045,6 20.736684,6.0245148 19.365055,5.946751 18.004308,6.0471696 16.927379,6.2415849 16.061769,7.2199048 16,8.3125 15.939413,6.8892818 14.535155,5.8370423 13.158895,6 11.939264,6 10.719632,6 9.5,6 z M 16,8.625 c 0,1.3541667 0,2.708333 0,4.0625 0.328888,-0.998538 -1.250355,-1.564467 -0.599828,-2.38852 C 15.64194,9.7574789 15.976955,9.2356463 16,8.625 z"
4869+ style="opacity:0.1;color:#000000;fill:url(#linearGradient4164);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542732;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4870+ <path
4871+ inkscape:connector-curvature="0"
4872+ id="path4122"
4873+ d="M 9.34375,7.03125 C 8.4481211,7.103628 7.9133159,8.0221098 8.03125,8.8577096 8.052514,12.38184 7.972733,15.908286 8.111168,19.430344 c 0.1509641,2.859779 1.7240048,5.819688 4.448805,6.970775 1.882629,0.777091 3.975464,0.621052 5.963262,0.514849 1.460334,-0.11237 2.903241,-0.415346 4.320515,-0.759718 1.021456,-0.410078 1.118284,-1.622631 1.08892,-2.569605 C 23.996915,18.558148 23.958121,13.52886 23.96875,8.5 23.991835,7.5752922 23.069025,6.9037795 22.193392,7.03125 c -1.328499,0.019447 -2.6622,-0.040021 -3.98726,0.031811 -0.855329,0.1496428 -1.278955,1.0477826 -1.174882,1.8457495 0,3.7074805 0,7.4149595 0,11.1224395 -0.6875,0 -1.375,0 -2.0625,0 -0.0049,-2.497121 0.0098,-4.994727 -0.0074,-7.491544 0.11918,-0.751592 -0.938594,-1.06931 -1.052368,-1.428418 0.344125,-0.806557 0.818653,-1.5677474 1.055809,-2.4118504 0.157637,-0.9646721 -0.781246,-1.8095381 -1.720342,-1.668188 -1.300244,7e-7 -2.600517,-9e-7 -3.900743,0 z"
4874+ style="opacity:0.25;color:#000000;fill:url(#linearGradient4144);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542732;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4875+ <path
4876+ sodipodi:nodetypes="cssccccccccssssc"
4877+ inkscape:connector-curvature="0"
4878+ id="path4766-2"
4879+ d="M 13.518703,25.17954 C 11.733713,24.575731 10.596451,23.329526 9.9332344,21.250614 9.6267713,20.289982 9.4960613,19.864239 9.4944437,14.358801 l -0.00173,-5.8660894 4.0072863,0 -2,4.0072884 2,0 0,9 5,0 0,-13.0072884 L 22.507286,8.5 22.5,16.587 c -0.0065,7.182513 -0.01931,8.106121 -0.227989,8.189619 -0.129361,0.05177 -1.02192,0.236566 -1.983473,0.410672 -2.373169,0.429708 -5.48723,0.426143 -6.769918,-0.0077 z"
4880+ style="color:#000000;fill:#f7f7f7;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.98542732;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4881+ <rect
4882+ width="25"
4883+ height="25"
4884+ rx="1.0869565"
4885+ ry="1.0869565"
4886+ x="3.5000002"
4887+ y="4.5"
4888+ id="rect6741-7"
4889+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3141);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4890+ <path
4891+ sodipodi:nodetypes="ccccccc"
4892+ d="M 4.4710561,4 C 4.0063473,4 3,4.6463301 3,5.275 L 3.0086456,21 C 3.7566031,20.982871 28.432284,14.73344 29,14.432836 L 29,5.275 C 29,4.7944642 27.870446,4 27.468055,4 z"
4893+ id="path3333-6"
4894+ style="opacity:0.2;fill:url(#linearGradient7309);fill-opacity:1;fill-rule:evenodd;stroke:none"
4895+ inkscape:connector-curvature="0" />
4896+ <rect
4897+ style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4898+ id="rect3224"
4899+ width="32"
4900+ height="32"
4901+ x="0"
4902+ y="1.0000026" />
4903+ </g>
4904+ <g
4905+ style="display:inline;enable-background:new"
4906+ transform="translate(1995,-481)"
4907+ id="g7226-5">
4908+ <g
4909+ transform="matrix(0.7499997,0,0,0.33333368,-2.0000003,16.333327)"
4910+ id="g2036-0"
4911+ style="display:inline">
4912+ <g
4913+ transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
4914+ id="g3712-7"
4915+ style="opacity:0.4">
4916+ <rect
4917+ width="5"
4918+ height="7"
4919+ x="38"
4920+ y="40"
4921+ id="rect2801-5"
4922+ style="fill:url(#radialGradient2976-5);fill-opacity:1;stroke:none" />
4923+ <rect
4924+ width="5"
4925+ height="7"
4926+ x="-10"
4927+ y="-47"
4928+ transform="scale(-1,-1)"
4929+ id="rect3696-6"
4930+ style="fill:url(#radialGradient2978-8);fill-opacity:1;stroke:none" />
4931+ <rect
4932+ width="28"
4933+ height="7.0000005"
4934+ x="10"
4935+ y="40"
4936+ id="rect3700-2"
4937+ style="fill:url(#linearGradient2980-8);fill-opacity:1;stroke:none" />
4938+ </g>
4939+ </g>
4940+ <rect
4941+ width="26.999998"
4942+ height="26.999998"
4943+ rx="2.1599998"
4944+ ry="2.1600001"
4945+ x="2.4999998"
4946+ y="3.4999998"
4947+ id="rect5505-8"
4948+ style="color:#000000;fill:url(#radialGradient3166-9-3);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3168-3-1);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4949+ <path
4950+ inkscape:connector-curvature="0"
4951+ id="path4122-3-6"
4952+ d="M 9.5,5 C 7.4657273,4.9304906 5.7782091,6.8836174 6,8.8748927 6.032365,12.579588 5.904841,16.290162 6.1431847,19.989493 c 0.3295552,3.858429 2.954648,7.651022 6.7966673,8.672899 2.107131,0.515195 4.312585,0.357839 6.453795,0.181232 1.329097,-0.14938 2.64684,-0.429162 3.944733,-0.725008 1.608941,-0.541009 2.632467,-2.210207 2.574271,-3.879524 C 26.05075,18.994013 25.983792,13.746356 26,8.5 26.069509,6.4657273 24.116383,4.7782091 22.125107,5 20.68637,5.031924 19.238848,4.9271599 17.8072,5.0708283 16.849042,4.953788 16.168598,6.6233982 15.468191,5.6128691 14.18143,4.7207156 12.588458,5.0725724 11.12568,5 10.583786,5 10.041893,5 9.5,5 z"
4953+ style="opacity:0.05;color:#000000;fill:url(#linearGradient4184-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542732;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4954+ <path
4955+ inkscape:connector-curvature="0"
4956+ id="path4122-8-3"
4957+ d="M 9.5,6 C 8.0112949,5.949293 6.8195688,7.3978773 7,8.8411046 7.027222,12.456482 6.919521,16.076143 7.125,19.6875 c 0.2016297,3.450735 2.4118977,6.927818 5.822158,7.947925 1.926547,0.529789 3.959247,0.375627 5.930361,0.263634 1.410298,-0.120075 2.804958,-0.409924 4.175911,-0.740762 1.182196,-0.385983 1.893546,-1.611607 1.874268,-2.821741 0.128113,-3.94324 0.05262,-7.890812 0.0723,-11.836061 -0.02603,-1.498063 0.05592,-3.0028364 -0.04848,-4.4960611 C 24.727797,6.6891946 23.382031,5.8520284 22.102045,6 20.736684,6.0245148 19.365055,5.946751 18.004308,6.0471696 16.927379,6.2415849 16.061769,7.2199048 16,8.3125 15.939413,6.8892818 14.535155,5.8370423 13.158895,6 11.939264,6 10.719632,6 9.5,6 z M 16,8.625 c 0,1.3541667 0,2.708333 0,4.0625 0.328888,-0.998538 -1.250355,-1.564467 -0.599828,-2.38852 C 15.64194,9.7574789 15.976955,9.2356463 16,8.625 z"
4958+ style="opacity:0.1;color:#000000;fill:url(#linearGradient4164-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542732;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4959+ <path
4960+ inkscape:connector-curvature="0"
4961+ id="path4122-1"
4962+ d="M 9.34375,7.03125 C 8.4481211,7.103628 7.9133159,8.0221098 8.03125,8.8577096 8.052514,12.38184 7.972733,15.908286 8.111168,19.430344 c 0.1509641,2.859779 1.7240048,5.819688 4.448805,6.970775 1.882629,0.777091 3.975464,0.621052 5.963262,0.514849 1.460334,-0.11237 2.903241,-0.415346 4.320515,-0.759718 1.021456,-0.410078 1.118284,-1.622631 1.08892,-2.569605 C 23.996915,18.558148 23.958121,13.52886 23.96875,8.5 23.991835,7.5752922 23.069025,6.9037795 22.193392,7.03125 c -1.328499,0.019447 -2.6622,-0.040021 -3.98726,0.031811 -0.855329,0.1496428 -1.278955,1.0477826 -1.174882,1.8457495 0,3.7074805 0,7.4149595 0,11.1224395 -0.6875,0 -1.375,0 -2.0625,0 -0.0049,-2.497121 0.0098,-4.994727 -0.0074,-7.491544 0.11918,-0.751592 -0.938594,-1.06931 -1.052368,-1.428418 0.344125,-0.806557 0.818653,-1.5677474 1.055809,-2.4118504 0.157637,-0.9646721 -0.781246,-1.8095381 -1.720342,-1.668188 -1.300244,7e-7 -2.600517,-9e-7 -3.900743,0 z"
4963+ style="opacity:0.25;color:#000000;fill:url(#linearGradient4144-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.98542732;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4964+ <path
4965+ sodipodi:nodetypes="cssccccccccssssc"
4966+ inkscape:connector-curvature="0"
4967+ id="path4766-2-0"
4968+ d="M 13.518703,25.17954 C 11.733713,24.575731 10.596451,23.329526 9.9332344,21.250614 9.6267713,20.289982 9.4960613,19.864239 9.4944437,14.358801 l -0.00173,-5.8660894 4.0072863,0 -2,4.0072884 2,0 0,9 5,0 0,-13.0072884 L 22.507286,8.5 22.5,16.587 c -0.0065,7.182513 -0.01931,8.106121 -0.227989,8.189619 -0.129361,0.05177 -1.02192,0.236566 -1.983473,0.410672 -2.373169,0.429708 -5.48723,0.426143 -6.769918,-0.0077 z"
4969+ style="color:#000000;fill:#f7f7f7;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.98542732;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4970+ <rect
4971+ width="25"
4972+ height="25"
4973+ rx="1.0869565"
4974+ ry="1.0869565"
4975+ x="3.5000002"
4976+ y="4.5"
4977+ id="rect6741-7-6"
4978+ style="opacity:0.5;fill:none;stroke:url(#linearGradient3141-7);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4979+ <path
4980+ sodipodi:nodetypes="ccccccc"
4981+ d="M 4.4710561,4 C 4.0063473,4 3,4.6463301 3,5.275 L 3.0086456,21 C 3.7566031,20.982871 28.432284,14.73344 29,14.432836 L 29,5.275 C 29,4.7944642 27.870446,4 27.468055,4 z"
4982+ id="path3333-6-7"
4983+ style="opacity:0.2;fill:url(#linearGradient7309-5);fill-opacity:1;fill-rule:evenodd;stroke:none"
4984+ inkscape:connector-curvature="0" />
4985+ <rect
4986+ style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4987+ id="rect3224-7"
4988+ width="32"
4989+ height="32"
4990+ x="0"
4991+ y="1.0000026" />
4992+ </g>
4993+ <g
4994+ transform="translate(1834.9999,-481)"
4995+ id="g19062">
4996+ <g
4997+ transform="matrix(1.5499994,0,0,0.5555561,-5.1999007,37.888881)"
4998+ id="g2036-05"
4999+ style="display:inline">
5000+ <g
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: