File: version19.svg

package info (click to toggle)
psychtoolbox-3 3.0.19.14.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 86,796 kB
  • sloc: ansic: 176,245; cpp: 20,103; objc: 5,393; sh: 2,753; python: 1,397; php: 384; makefile: 193; java: 113
file content (3158 lines) | stat: -rw-r--r-- 251,731 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="1000"
   height="750"
   viewBox="0 0 264.58331 198.43751"
   version="1.1"
   id="svg1825"
   inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
   sodipodi:docname="version19.svg">
  <defs
     id="defs1819">
    <rect
       x="1636.0538"
       y="1990.8505"
       width="1749.7523"
       height="231.7692"
       id="rect1472" />
    <rect
       x="-198.78738"
       y="499.01999"
       width="746.48145"
       height="83.92997"
       id="rect9247" />
    <linearGradient
       id="linearGradient2975">
      <stop
         style="stop-color:#ef2929;stop-opacity:1;"
         offset="0"
         id="stop11462" />
      <stop
         style="stop-color:#c00;stop-opacity:1"
         offset="1"
         id="stop11464" />
    </linearGradient>
    <marker
       inkscape:stockid="Arrow1Send"
       orient="auto"
       refY="0"
       refX="0"
       id="Arrow1Send"
       style="overflow:visible">
      <path
         id="path9947"
         d="M 0,0 5,-5 -12.5,0 5,5 Z"
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
         transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
    </marker>
    <marker
       inkscape:stockid="Arrow1Mend"
       orient="auto"
       refY="0"
       refX="0"
       id="Arrow1Mend"
       style="overflow:visible">
      <path
         id="path9941"
         d="M 0,0 5,-5 -12.5,0 5,5 Z"
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
    </marker>
    <marker
       inkscape:stockid="Arrow1Lend"
       orient="auto"
       refY="0"
       refX="0"
       id="Arrow1Lend"
       style="overflow:visible">
      <path
         id="path9935"
         d="M 0,0 5,-5 -12.5,0 5,5 Z"
         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
    </marker>
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 666.41029 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_z="744.09446 : 666.41029 : 1"
       inkscape:persp3d-origin="372.04723 : 491.01657 : 1"
       id="perspective10" />
    <inkscape:perspective
       id="perspective7931"
       inkscape:persp3d-origin="372.04723 : 491.01657 : 1"
       inkscape:vp_z="744.09446 : 666.41029 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 666.41029 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       id="linearGradient4210">
      <stop
         style="stop-color:#eaba6f;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop4212" />
      <stop
         style="stop-color:#b97a1b;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop4214" />
    </linearGradient>
    <linearGradient
       id="linearGradient3681"
       inkscape:collect="always">
      <stop
         id="stop3683"
         offset="0"
         style="stop-color:black;stop-opacity:1;" />
      <stop
         id="stop3685"
         offset="1"
         style="stop-color:black;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3703">
      <stop
         id="stop3705"
         offset="0"
         style="stop-color:black;stop-opacity:0;" />
      <stop
         style="stop-color:black;stop-opacity:1;"
         offset="0.5"
         id="stop3711" />
      <stop
         id="stop3707"
         offset="1"
         style="stop-color:black;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3452"
       inkscape:collect="always">
      <stop
         id="stop3454"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop3456"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3792">
      <stop
         style="stop-color:#ffffff;stop-opacity:1"
         offset="0"
         id="stop3794" />
      <stop
         id="stop3796"
         offset="0.5"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#888a85;stop-opacity:1"
         offset="1"
         id="stop3798" />
    </linearGradient>
    <linearGradient
       id="linearGradient3800">
      <stop
         style="stop-color:#babdb6;stop-opacity:1"
         offset="0"
         id="stop3802" />
      <stop
         id="stop3804"
         offset="0.5"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         style="stop-color:#babdb6;stop-opacity:1"
         offset="1"
         id="stop3806" />
    </linearGradient>
    <linearGradient
       id="linearGradient2384">
      <stop
         id="stop2386"
         offset="0"
         style="stop-color:#5c3566;stop-opacity:1;" />
      <stop
         id="stop2388"
         offset="1"
         style="stop-color:#43274b;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2394">
      <stop
         style="stop-color:#5c3566;stop-opacity:1"
         offset="0"
         id="stop2396" />
      <stop
         style="stop-color:#45284d;stop-opacity:1;"
         offset="1"
         id="stop2398" />
    </linearGradient>
    <inkscape:perspective
       id="perspective8105"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       y2="7.3314619"
       x2="36.610626"
       y1="5.2539482"
       x1="38.289421"
       gradientTransform="matrix(0.8048011,-0.08405894,-0.2587753,0.8411918,10.626724,5.876157)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient8442"
       xlink:href="#linearGradient3222"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient2911"
       inkscape:collect="always">
      <stop
         id="stop2913"
         offset="0"
         style="stop-color:#8ae234;stop-opacity:1" />
      <stop
         id="stop2915"
         offset="1"
         style="stop-color:#73d216;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3222"
       inkscape:collect="always">
      <stop
         id="stop3224"
         offset="0"
         style="stop-color:#eac586;stop-opacity:1;" />
      <stop
         id="stop3226"
         offset="1"
         style="stop-color:#eac586;stop-opacity:0;" />
    </linearGradient>
    <inkscape:perspective
       id="perspective8380"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       id="linearGradient2803">
      <stop
         id="stop2805"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         id="stop2807"
         offset="1"
         style="stop-color:white;stop-opacity:0.44642857;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3698">
      <stop
         id="stop3700"
         offset="0"
         style="stop-color:#888a85;stop-opacity:1" />
      <stop
         id="stop3702"
         offset="1"
         style="stop-color:white;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient8174">
      <stop
         id="stop8176"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop8178"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient21795">
      <stop
         style="stop-color:#babdb6;stop-opacity:1"
         offset="0"
         id="stop21797" />
      <stop
         style="stop-color:#555753;stop-opacity:1"
         offset="1"
         id="stop21799" />
    </linearGradient>
    <linearGradient
       id="linearGradient22096">
      <stop
         style="stop-color:#babdb6;stop-opacity:1"
         offset="0"
         id="stop22098" />
      <stop
         style="stop-color:#eeeeec;stop-opacity:1"
         offset="1"
         id="stop22100" />
    </linearGradient>
    <linearGradient
       id="linearGradient2882">
      <stop
         id="stop8616"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         style="stop-color:#fce94f;stop-opacity:1;"
         offset="0.39156628"
         id="stop2892" />
      <stop
         style="stop-color:#fce94f;stop-opacity:1;"
         offset="0.5"
         id="stop2890" />
      <stop
         id="stop8620"
         offset="0.69277108"
         style="stop-color:#fce94f;stop-opacity:1;" />
      <stop
         id="stop2886"
         offset="1"
         style="stop-color:white;stop-opacity:1;" />
    </linearGradient>
    <inkscape:perspective
       id="perspective8612"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective8833"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       y2="31"
       x2="76.701622"
       y1="31"
       x1="62.960461"
       gradientUnits="userSpaceOnUse"
       id="linearGradient9144"
       xlink:href="#linearGradient2976"
       inkscape:collect="always" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       y2="17.750229"
       x2="25.3125"
       y1="10.663662"
       x1="25.3125"
       id="linearGradient9140"
       xlink:href="#linearGradient2975"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient5137">
      <stop
         id="stop5139"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         id="stop5141"
         offset="1"
         style="stop-color:#e6e6e3;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5233">
      <stop
         id="stop5235"
         offset="0"
         style="stop-color:#888a85;stop-opacity:1" />
      <stop
         id="stop5237"
         offset="1"
         style="stop-color:#888a85;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient2872">
      <stop
         id="stop2874"
         offset="0"
         style="stop-color:black;stop-opacity:1;" />
      <stop
         id="stop2876"
         offset="1"
         style="stop-color:#d42828;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2899">
      <stop
         id="stop2901"
         offset="0"
         style="stop-color:#8f5902;stop-opacity:1;" />
      <stop
         id="stop2903"
         offset="1"
         style="stop-color:#633d00;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2907">
      <stop
         id="stop2909"
         offset="0"
         style="stop-color:#c17d11;stop-opacity:1" />
      <stop
         id="stop2911"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2915">
      <stop
         id="stop2917"
         offset="0"
         style="stop-color:#e9b96e;stop-opacity:1;" />
      <stop
         id="stop2919"
         offset="1"
         style="stop-color:#c17d11;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient2976">
      <stop
         id="stop2978"
         offset="0"
         style="stop-color:black;stop-opacity:1;" />
      <stop
         style="stop-color:#565855;stop-opacity:1;"
         offset="0.66265059"
         id="stop2984" />
      <stop
         id="stop2980"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient2986">
      <stop
         id="stop2988"
         offset="0"
         style="stop-color:#babdb6;stop-opacity:1" />
      <stop
         style="stop-color:#eeeeec;stop-opacity:1;"
         offset="0.3493976"
         id="stop2994" />
      <stop
         id="stop2990"
         offset="1"
         style="stop-color:#888a85;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3080">
      <stop
         id="stop3082"
         offset="0"
         style="stop-color:#a40000;stop-opacity:1" />
      <stop
         id="stop3084"
         offset="1"
         style="stop-color:#ef2929;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3178">
      <stop
         id="stop3180"
         offset="0"
         style="stop-color:#babdb6;stop-opacity:1" />
      <stop
         id="stop3182"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3186">
      <stop
         id="stop3188"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop3190"
         offset="1"
         style="stop-color:#888a85;stop-opacity:1" />
    </linearGradient>
    <inkscape:perspective
       id="perspective9063"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       r="23.75956"
       fy="42.6875"
       fx="23.9375"
       cy="42.6875"
       cx="23.9375"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient9515"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <radialGradient
       r="23.75956"
       fy="42.6875"
       fx="23.9375"
       cy="42.6875"
       cx="23.9375"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient9503"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.232634,0,0,0.778392,-4.584638,-0.845623)"
       r="19.00016"
       fy="32.997028"
       fx="24.006104"
       cy="32.997028"
       cx="24.006104"
       id="radialGradient9499"
       xlink:href="#linearGradient5233"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       r="23.75956"
       fy="42.6875"
       fx="23.9375"
       cy="42.6875"
       cx="23.9375"
       id="radialGradient9497"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <inkscape:perspective
       id="perspective9350"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       r="23.75956"
       fy="42.6875"
       fx="23.9375"
       cy="42.6875"
       cx="23.9375"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient10162"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <radialGradient
       r="23.75956"
       fy="42.6875"
       fx="23.9375"
       cy="42.6875"
       cx="23.9375"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient10150"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.232634,0,0,0.778392,-4.584638,-0.845623)"
       r="19.00016"
       fy="32.997028"
       fx="24.006104"
       cy="32.997028"
       cx="24.006104"
       id="radialGradient10146"
       xlink:href="#linearGradient5233"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       r="23.75956"
       fy="42.6875"
       fx="23.9375"
       cy="42.6875"
       cx="23.9375"
       id="radialGradient10144"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <inkscape:perspective
       id="perspective8201"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3681"
       id="radialGradient11598"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       cx="23.9375"
       cy="42.6875"
       fx="23.9375"
       fy="42.6875"
       r="23.75956" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5233"
       id="radialGradient11604"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.232634,0,0,0.778392,-4.584638,-0.845623)"
       cx="24.006104"
       cy="32.997028"
       fx="24.006104"
       fy="32.997028"
       r="19.00016" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3681"
       id="radialGradient11612"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       cx="23.9375"
       cy="42.6875"
       fx="23.9375"
       fy="42.6875"
       r="23.75956" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3681"
       id="radialGradient11630"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       cx="23.9375"
       cy="42.6875"
       fx="23.9375"
       fy="42.6875"
       r="23.75956" />
    <linearGradient
       y2="24.705801"
       x2="18.488775"
       y1="8.672389"
       x1="18.488775"
       gradientUnits="userSpaceOnUse"
       id="linearGradient12821"
       xlink:href="#linearGradient3703"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient14780"
       inkscape:collect="always">
      <stop
         id="stop14782"
         offset="0"
         style="stop-color:#ebff39;stop-opacity:1;" />
      <stop
         id="stop14784"
         offset="1"
         style="stop-color:#ebff39;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient14881">
      <stop
         id="stop14883"
         offset="0"
         style="stop-color:#747474;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.62068963"
         id="stop14893" />
      <stop
         id="stop14885"
         offset="1"
         style="stop-color:#3f3f3f;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient14973">
      <stop
         style="stop-color:#747474;stop-opacity:1;"
         offset="0"
         id="stop14975" />
      <stop
         id="stop14977"
         offset="0.62068963"
         style="stop-color:#b0b0b0;stop-opacity:1;" />
      <stop
         style="stop-color:#3f3f3f;stop-opacity:1;"
         offset="1"
         id="stop14979" />
    </linearGradient>
    <linearGradient
       id="linearGradient14981">
      <stop
         id="stop14983"
         offset="0"
         style="stop-color:#788600;stop-opacity:1;" />
      <stop
         id="stop14985"
         offset="1"
         style="stop-color:#505900;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient15015">
      <stop
         id="stop15017"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#d4d6d2;stop-opacity:1;"
         offset="0.13674198"
         id="stop15025" />
      <stop
         style="stop-color:#d4d6d2;stop-opacity:1;"
         offset="0.79310346"
         id="stop15023" />
      <stop
         id="stop15019"
         offset="1"
         style="stop-color:#7e8478;stop-opacity:1;" />
    </linearGradient>
    <inkscape:perspective
       id="perspective11796"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       id="linearGradient11977">
      <stop
         id="stop11979"
         offset="0"
         style="stop-color:#729fcf;stop-opacity:1;" />
      <stop
         id="stop11981"
         offset="1"
         style="stop-color:#326194;stop-opacity:1;" />
    </linearGradient>
    <inkscape:perspective
       id="perspective11974"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       id="linearGradient2303">
      <stop
         id="stop2305"
         offset="0"
         style="stop-color:#ffffff" />
      <stop
         style="stop-color:#dedfdc;stop-opacity:1;"
         offset="0.67346936"
         id="stop4891" />
      <stop
         id="stop2307"
         offset="1"
         style="stop-color:#babdb6" />
    </linearGradient>
    <linearGradient
       id="linearGradient5024">
      <stop
         id="stop5026"
         offset="0"
         style="stop-color:#555753" />
      <stop
         id="stop5028"
         offset="1"
         style="stop-color:#555753;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7130">
      <stop
         id="stop7132"
         offset="0"
         style="stop-color:#9ebdde;stop-opacity:1;" />
      <stop
         style="stop-color:#729fcf;stop-opacity:1;"
         offset="0.46938777"
         id="stop6963" />
      <stop
         id="stop7134"
         offset="1"
         style="stop-color:#3465a4;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient7120">
      <stop
         id="stop7122"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1" />
      <stop
         id="stop7124"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7116">
      <stop
         id="stop7118"
         offset="0"
         style="stop-color:#888a85;stop-opacity:1" />
      <stop
         id="stop7120"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:1;" />
    </linearGradient>
    <inkscape:perspective
       id="perspective12099"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.382603,3.581398e-5,0,0.171503,-6.729684,34.0972)"
       r="19.5"
       fy="47.045319"
       fx="20.913568"
       cy="47.045319"
       cx="20.913568"
       id="radialGradient3915"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <inkscape:perspective
       id="perspective12330"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       y2="24.003584"
       x2="-29.875"
       y1="10.70663"
       x1="-26.853115"
       id="linearGradient4796"
       xlink:href="#linearGradient4790"
       inkscape:collect="always" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       y2="2.0453157"
       x2="81.75782"
       y1="15.414051"
       x1="76.781258"
       id="linearGradient3903"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       y2="5.6930151"
       x2="80.921646"
       y1="14.582699"
       x1="82.489655"
       id="linearGradient3215"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="translate(-60)"
       gradientUnits="userSpaceOnUse"
       y2="14.446928"
       x2="90.249092"
       y1="13.75"
       x1="87.5"
       id="linearGradient12877"
       xlink:href="#linearGradient3089"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="translate(-60,-1)"
       gradientUnits="userSpaceOnUse"
       y2="12.306049"
       x2="76.955917"
       y1="25.384384"
       x1="73.337959"
       id="linearGradient3072"
       xlink:href="#linearGradient21795"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="translate(-60)"
       gradientUnits="userSpaceOnUse"
       y2="43.444958"
       x2="35.625"
       y1="38.874573"
       x1="35.625"
       id="linearGradient2933"
       xlink:href="#linearGradient2927"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="translate(-60)"
       gradientUnits="userSpaceOnUse"
       y2="44.380974"
       x2="34.25"
       y1="38.804165"
       x1="34.25"
       id="linearGradient2925"
       xlink:href="#linearGradient2919"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="translate(-60)"
       gradientUnits="userSpaceOnUse"
       y2="43.9375"
       x2="29.75"
       y1="38.420128"
       x1="29.75"
       id="linearGradient2917"
       xlink:href="#linearGradient2911"
       inkscape:collect="always" />
    <linearGradient
       y2="2.1401622"
       x2="34.056786"
       y1="-33.518921"
       x1="4.6333733"
       gradientTransform="translate(3.505583,42.36313)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient2001"
       xlink:href="#aigrd1"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="translate(-57.87868,40.00204)"
       gradientUnits="userSpaceOnUse"
       y2="-0.67233789"
       x2="30.994286"
       y1="-37.643921"
       x1="0.88337302"
       id="linearGradient6380"
       xlink:href="#aigrd6"
       inkscape:collect="always" />
    <radialGradient
       r="10.8808"
       fy="12.3457"
       fx="13.5024"
       cy="12.3457"
       cx="13.5024"
       gradientTransform="matrix(1.101263,0,0,1.101263,-57.56432,3.17435)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient4556"
       xlink:href="#aigrd2"
       inkscape:collect="always" />
    <radialGradient
       r="26.966"
       fy="29.033701"
       fx="23.1567"
       cy="29.033701"
       cx="23.1567"
       gradientTransform="matrix(1.101263,0,0,1.101263,-57.56432,3.17435)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient4553"
       xlink:href="#aigrd3"
       inkscape:collect="always" />
    <linearGradient
       id="aigrd1"
       gradientUnits="userSpaceOnUse"
       x1="99.777298"
       y1="15.4238"
       x2="153.0005"
       y2="248.6311">
      <stop
         offset="0"
         style="stop-color:#707070;stop-opacity:1;"
         id="stop53300" />
      <stop
         offset="1"
         style="stop-color:#cdcdcd;stop-opacity:1;"
         id="stop53302" />
    </linearGradient>
    <radialGradient
       gradientUnits="userSpaceOnUse"
       fy="12.3457"
       fx="13.5024"
       r="10.8808"
       cy="12.3457"
       cx="13.5024"
       id="aigrd2">
      <stop
         id="stop6436"
         style="stop-color:#454545"
         offset="0" />
      <stop
         id="stop6438"
         style="stop-color:#333333"
         offset="1" />
    </radialGradient>
    <radialGradient
       gradientUnits="userSpaceOnUse"
       fy="29.033701"
       fx="23.1567"
       r="26.966"
       cy="29.033701"
       cx="23.1567"
       id="aigrd3">
      <stop
         id="stop6443"
         style="stop-color:#767676"
         offset="0" />
      <stop
         id="stop6445"
         style="stop-color:#484848"
         offset="1" />
    </radialGradient>
    <linearGradient
       y2="28.3922"
       x2="26.5278"
       y1="-3.2012"
       x1="-1.2431999"
       gradientUnits="userSpaceOnUse"
       id="aigrd6">
      <stop
         id="stop6468"
         style="stop-color:#FFFFFF"
         offset="0" />
      <stop
         id="stop6470"
         style="stop-color:#959595"
         offset="1" />
    </linearGradient>
    <linearGradient
       id="linearGradient2919"
       inkscape:collect="always">
      <stop
         id="stop2921"
         offset="0"
         style="stop-color:#646464;stop-opacity:1;" />
      <stop
         id="stop2923"
         offset="1"
         style="stop-color:#646464;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2927"
       inkscape:collect="always">
      <stop
         id="stop2929"
         offset="0"
         style="stop-color:#ddd;stop-opacity:1;" />
      <stop
         id="stop2931"
         offset="1"
         style="stop-color:#ddd;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2982">
      <stop
         id="stop12833"
         offset="0"
         style="stop-color:black;stop-opacity:0;" />
      <stop
         style="stop-color:black;stop-opacity:1;"
         offset="0.0547975"
         id="stop12835" />
      <stop
         id="stop2992"
         offset="0.90963858"
         style="stop-color:black;stop-opacity:1;" />
      <stop
         id="stop2986"
         offset="1"
         style="stop-color:black;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3041">
      <stop
         id="stop3043"
         offset="0"
         style="stop-color:#555753;stop-opacity:1;" />
      <stop
         style="stop-color:#898b86;stop-opacity:1;"
         offset="0.32630172"
         id="stop3049" />
      <stop
         id="stop3051"
         offset="0.62983823"
         style="stop-color:#525450;stop-opacity:1;" />
      <stop
         style="stop-color:#535551;stop-opacity:1;"
         offset="0.85847878"
         id="stop3053" />
      <stop
         id="stop3045"
         offset="1"
         style="stop-color:#3e3f3d;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3093">
      <stop
         id="stop3095"
         offset="0"
         style="stop-color:#555753;stop-opacity:1;" />
      <stop
         style="stop-color:#888a85;stop-opacity:1;"
         offset="0.72289157"
         id="stop2022" />
      <stop
         id="stop3097"
         offset="1"
         style="stop-color:#71736e;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3089">
      <stop
         id="stop12809"
         offset="0"
         style="stop-color:black;stop-opacity:1;" />
      <stop
         id="stop3094"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3101">
      <stop
         id="stop3103"
         offset="0"
         style="stop-color:#2e3436;stop-opacity:1;" />
      <stop
         style="stop-color:#555753;stop-opacity:1;"
         offset="0.12824793"
         id="stop3109" />
      <stop
         id="stop3111"
         offset="0.56024098"
         style="stop-color:#555753;stop-opacity:1;" />
      <stop
         id="stop3105"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient4790">
      <stop
         id="stop4792"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop4794"
         offset="1"
         style="stop-color:#babdb6;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient5737">
      <stop
         id="stop5739"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         id="stop5741"
         offset="1"
         style="stop-color:white;stop-opacity:0.32163742;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3002">
      <stop
         style="stop-color:#babdb6;stop-opacity:1"
         offset="0"
         id="stop3004" />
      <stop
         style="stop-color:#2e3436;stop-opacity:1"
         offset="1"
         id="stop3006" />
    </linearGradient>
    <linearGradient
       id="linearGradient3010">
      <stop
         style="stop-color:white;stop-opacity:1;"
         offset="0"
         id="stop3012" />
      <stop
         style="stop-color:white;stop-opacity:0.4269006;"
         offset="1"
         id="stop3014" />
    </linearGradient>
    <linearGradient
       id="linearGradient6593">
      <stop
         id="stop6595"
         offset="0"
         style="stop-color:#2e3436;stop-opacity:1;" />
      <stop
         style="stop-color:#424a4d;stop-opacity:1;"
         offset="0.5"
         id="stop6601" />
      <stop
         id="stop6597"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2998">
      <stop
         id="stop3001"
         offset="0"
         style="stop-color:white;stop-opacity:0;" />
      <stop
         style="stop-color:white;stop-opacity:1;"
         offset="0.5"
         id="stop3007" />
      <stop
         id="stop3003"
         offset="1"
         style="stop-color:white;stop-opacity:0;" />
    </linearGradient>
    <inkscape:perspective
       id="perspective12760"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       gradientTransform="translate(-2)"
       gradientUnits="userSpaceOnUse"
       y2="4.6897092"
       x2="36.150833"
       y1="15.91503"
       x1="31.819805"
       id="linearGradient3296"
       xlink:href="#linearGradient3290"
       inkscape:collect="always" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       y2="9.3125"
       x2="28.0625"
       y1="5.25"
       x1="31.25"
       id="linearGradient3284"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       y2="37.481789"
       x2="27.5"
       y1="24.120338"
       x1="27.5"
       id="linearGradient3267"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <linearGradient
       y2="43.330803"
       x2="37.485153"
       y1="39.532585"
       x1="32.195919"
       gradientUnits="userSpaceOnUse"
       id="linearGradient3249"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <radialGradient
       r="6.1868596"
       fy="38.486931"
       fx="31.489759"
       cy="38.486931"
       cx="31.489759"
       gradientTransform="matrix(0.9163208,0,2.4558126e-7,0.2494089,2.7809112,31.305092)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2231"
       xlink:href="#linearGradient3241"
       inkscape:collect="always" />
    <radialGradient
       r="6"
       fy="19.5"
       fx="10"
       cy="19.5"
       cx="10"
       gradientTransform="matrix(1,0,0,0.4166667,0,11.375)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2227"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient3241">
      <stop
         style="stop-color:#729fcf;stop-opacity:1"
         offset="0"
         id="stop3243" />
      <stop
         style="stop-color:#729fcf;stop-opacity:0"
         offset="1"
         id="stop13234" />
    </linearGradient>
    <linearGradient
       id="linearGradient3290">
      <stop
         id="stop3292"
         offset="0"
         style="stop-color:#3465a4;stop-opacity:1" />
      <stop
         id="stop3294"
         offset="1"
         style="stop-color:#729fcf;stop-opacity:1" />
    </linearGradient>
    <inkscape:perspective
       id="perspective13220"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.6999424,0,0,3.5713875,-122.46854,-58.740132)"
       r="4.82023"
       fy="22.84375"
       fx="72.495682"
       cy="22.84375"
       cx="72.495682"
       id="radialGradient6964"
       xlink:href="#linearGradient6958"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient2793">
      <stop
         id="stop2795"
         offset="0"
         style="stop-color:#babdb6;stop-opacity:1;" />
      <stop
         style="stop-color:#eeeeec;stop-opacity:1;"
         offset="0.25301206"
         id="stop2801" />
      <stop
         id="stop2797"
         offset="1"
         style="stop-color:#555753;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient21622">
      <stop
         id="stop21624"
         offset="0"
         style="stop-color:#3465a4;stop-opacity:0;" />
      <stop
         style="stop-color:#3465a4;stop-opacity:0;"
         offset="0.85542166"
         id="stop21630" />
      <stop
         id="stop21626"
         offset="1"
         style="stop-color:#3465a4;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient21644">
      <stop
         style="stop-color:#3465a4;stop-opacity:0;"
         offset="0"
         id="stop21646" />
      <stop
         id="stop21648"
         offset="0.73493975"
         style="stop-color:#3465a4;stop-opacity:0;" />
      <stop
         style="stop-color:#3465a4;stop-opacity:1"
         offset="1"
         id="stop21650" />
    </linearGradient>
    <linearGradient
       id="linearGradient21662">
      <stop
         style="stop-color:#3465a4;stop-opacity:0;"
         offset="0"
         id="stop21664" />
      <stop
         id="stop21666"
         offset="0.81927711"
         style="stop-color:#3465a4;stop-opacity:0;" />
      <stop
         style="stop-color:#3465a4;stop-opacity:1"
         offset="1"
         id="stop21668" />
    </linearGradient>
    <linearGradient
       id="linearGradient6643">
      <stop
         id="stop6645"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop6647"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6958">
      <stop
         id="stop6960"
         offset="0"
         style="stop-color:#729fcf;stop-opacity:1;" />
      <stop
         style="stop-color:#729fcf;stop-opacity:1;"
         offset="0.60000002"
         id="stop6966" />
      <stop
         id="stop6962"
         offset="1"
         style="stop-color:#729fcf;stop-opacity:0;" />
    </linearGradient>
    <inkscape:perspective
       id="perspective13396"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       id="linearGradient2276">
      <stop
         id="stop2278"
         offset="0"
         style="stop-color:#f57900;stop-opacity:1;" />
      <stop
         id="stop2280"
         offset="1"
         style="stop-color:#fcaf3e;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2322">
      <stop
         id="stop2324"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         id="stop2326"
         offset="1"
         style="stop-color:#c1c7bc;stop-opacity:1;" />
    </linearGradient>
    <inkscape:perspective
       id="perspective13583"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.232634,0,0,0.778392,-5.584638,2.154377)"
       r="19.00016"
       fy="32.997028"
       fx="24.006104"
       cy="32.997028"
       cx="24.006104"
       id="radialGradient13710"
       xlink:href="#linearGradient5233"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       r="23.75956"
       fy="42.6875"
       fx="23.9375"
       cy="42.6875"
       cx="23.9375"
       id="radialGradient13708"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <inkscape:perspective
       id="perspective13667"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       r="19.5"
       fy="47.045319"
       fx="20.913568"
       cy="47.045319"
       cx="20.913568"
       gradientTransform="matrix(1.382603,3.581398e-5,0,0.171503,-6.729684,34.0972)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2433"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.232634,0,0,0.778392,-5.590582,-0.847446)"
       r="19.00016"
       fy="32.997028"
       fx="24.006104"
       cy="32.997028"
       cx="24.006104"
       id="radialGradient14004"
       xlink:href="#linearGradient5233"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="matrix(0.999303,0,0,0.998527,0.00306125,-2.971316)"
       y2="38.876041"
       x2="39.904388"
       y1="6.3760414"
       x1="17.247635"
       gradientUnits="userSpaceOnUse"
       id="linearGradient14002"
       xlink:href="#linearGradient5137"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="translate(-0.0235294,-3.039216)"
       gradientUnits="userSpaceOnUse"
       y2="26.039215"
       x2="20.156862"
       y1="5.0996137"
       x1="20.156862"
       id="linearGradient14000"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <inkscape:perspective
       id="perspective13952"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.232634,0,0,0.778392,-5.584638,2.154377)"
       r="19.00016"
       fy="32.997028"
       fx="24.006104"
       cy="32.997028"
       cx="24.006104"
       id="radialGradient14295"
       xlink:href="#linearGradient5233"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.24763,0,32.1168)"
       r="23.75956"
       fy="42.6875"
       fx="23.9375"
       cy="42.6875"
       cx="23.9375"
       id="radialGradient14293"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <inkscape:perspective
       id="perspective14252"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient3452"
       id="linearGradient15221"
       y2="37.75"
       x2="47.375"
       y1="1.125"
       x1="40.546875" />
    <radialGradient
       gradientTransform="matrix(1,0,0,0.220588,0,34.87868)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient3681"
       id="radialGradient15218"
       fy="44.75"
       fx="21.5"
       r="17"
       cy="44.75"
       cx="21.5" />
    <linearGradient
       gradientTransform="translate(6,-2)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14981"
       id="linearGradient15216"
       y2="49.79393"
       x2="39.002876"
       y1="22.747095"
       x1="20.046677" />
    <linearGradient
       gradientTransform="translate(18,-47)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14973"
       id="linearGradient15214"
       y2="23.5"
       x2="4.712738"
       y1="23.5"
       x1="7.1161165" />
    <linearGradient
       gradientTransform="translate(18,-45)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14973"
       id="linearGradient15212"
       y2="21.5"
       x2="4.712738"
       y1="21.5"
       x1="7.1161165" />
    <linearGradient
       gradientTransform="translate(18,-43)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14973"
       id="linearGradient15210"
       y2="19.5"
       x2="4.712738"
       y1="19.5"
       x1="7.1161165" />
    <linearGradient
       gradientTransform="translate(18,-41)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14973"
       id="linearGradient15208"
       y2="17.5"
       x2="4.712738"
       y1="17.5"
       x1="7.1161165" />
    <linearGradient
       gradientTransform="translate(18,-39)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14973"
       id="linearGradient15206"
       y2="15.5"
       x2="4.712738"
       y1="15.5"
       x1="7.1161165" />
    <linearGradient
       gradientTransform="translate(18,-37)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14973"
       id="linearGradient15204"
       y2="13.5"
       x2="4.712738"
       y1="13.5"
       x1="7.1161165" />
    <linearGradient
       gradientTransform="translate(18,-35)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14973"
       id="linearGradient15202"
       y2="11.5"
       x2="4.712738"
       y1="11.5"
       x1="7.1161165" />
    <linearGradient
       gradientTransform="translate(8,-47)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15200"
       y2="19.5"
       x2="4.3283887"
       y1="19.5"
       x1="8" />
    <linearGradient
       gradientTransform="translate(8,-45)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15198"
       y2="19.5"
       x2="4.3283887"
       y1="19.5"
       x1="8" />
    <linearGradient
       gradientTransform="translate(8,-43)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15196"
       y2="19.5"
       x2="4.3283887"
       y1="19.5"
       x1="8" />
    <linearGradient
       gradientTransform="translate(8,-41)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15194"
       y2="19.5"
       x2="4.3283887"
       y1="19.5"
       x1="8" />
    <linearGradient
       gradientTransform="translate(8,-39)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15192"
       y2="19.5"
       x2="4.3283887"
       y1="19.5"
       x1="8" />
    <linearGradient
       gradientTransform="translate(8,-37)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15190"
       y2="19.5"
       x2="4.3283887"
       y1="19.5"
       x1="8" />
    <linearGradient
       gradientTransform="translate(8,-35)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15188"
       y2="19.5"
       x2="4.3283887"
       y1="19.5"
       x1="8" />
    <linearGradient
       gradientTransform="translate(6,-2)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15186"
       y2="19.5"
       x2="4.3283887"
       y1="19.5"
       x1="8" />
    <linearGradient
       gradientTransform="translate(5,-2)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15180"
       y2="23.5"
       x2="27"
       y1="23.5"
       x1="24" />
    <linearGradient
       gradientTransform="translate(5,-2)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15178"
       y2="21.5"
       x2="27"
       y1="21.5"
       x1="24" />
    <linearGradient
       gradientTransform="translate(5,-2)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14881"
       id="linearGradient15176"
       y2="19.5"
       x2="27"
       y1="19.5"
       x1="24" />
    <linearGradient
       gradientTransform="matrix(0.934742,0,0,1.14936,6.518753,-5.859611)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient3452"
       id="linearGradient15174"
       y2="31.347067"
       x2="18.968426"
       y1="20.165941"
       x1="16.964844" />
    <linearGradient
       gradientTransform="matrix(1.984375,0,0,1,15.10938,-0.013595)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14780"
       id="linearGradient14814"
       y2="39.266895"
       x2="6.2376504"
       y1="42.890816"
       x1="6.2209711" />
    <linearGradient
       gradientTransform="matrix(1.984375,0,0,1,12.10938,-0.013595)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14780"
       id="linearGradient14810"
       y2="39.266895"
       x2="6.2376504"
       y1="42.890816"
       x1="6.2209711" />
    <linearGradient
       gradientTransform="matrix(1.984375,0,0,1,9.109375,-0.013595)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14780"
       id="linearGradient14806"
       y2="39.266895"
       x2="6.2376504"
       y1="42.890816"
       x1="6.2209711" />
    <linearGradient
       gradientTransform="matrix(1.984375,0,0,1,6.09375,-0.013595)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14780"
       id="linearGradient14802"
       y2="39.266895"
       x2="6.2376504"
       y1="42.890816"
       x1="6.2209711" />
    <linearGradient
       gradientTransform="matrix(1.984375,0,0,1,3.09375,-0.013595)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14780"
       id="linearGradient14798"
       y2="39.266895"
       x2="6.2376504"
       y1="42.890816"
       x1="6.2209711" />
    <linearGradient
       gradientTransform="matrix(1.984375,0,0,1,0.09375,0)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14780"
       id="linearGradient14794"
       y2="39.266895"
       x2="6.2376504"
       y1="42.890816"
       x1="6.2209711" />
    <linearGradient
       gradientTransform="matrix(1.984375,0,0,1,-2.890625,0)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14780"
       id="linearGradient14790"
       y2="39.266895"
       x2="6.2376504"
       y1="42.890816"
       x1="6.2209711" />
    <linearGradient
       gradientTransform="matrix(1.984375,0,0,1,-5.90625,0)"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient14780"
       id="linearGradient14786"
       y2="39.266895"
       x2="6.2376504"
       y1="42.890816"
       x1="6.2209711" />
    <inkscape:perspective
       id="perspective15120"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3681"
       id="radialGradient15334"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.220588,0,34.87868)"
       cx="21.5"
       cy="44.75"
       fx="21.5"
       fy="44.75"
       r="17" />
    <inkscape:perspective
       id="perspective15453"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       y2="58.047787"
       x2="105.32369"
       y1="2.047786"
       x1="58.748795"
       gradientTransform="matrix(1.004639,0,0,1,-55.021331,-3.04779)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5862"
       xlink:href="#linearGradient3452"
       inkscape:collect="always" />
    <radialGradient
       r="8.0625"
       fy="19.03125"
       fx="11.25"
       cy="19.03125"
       cx="11.25"
       gradientTransform="matrix(1,0,0,0.282946,0,13.64644)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient5855"
       xlink:href="#linearGradient3681"
       inkscape:collect="always" />
    <inkscape:perspective
       id="perspective15546"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       id="linearGradient2831">
      <stop
         id="stop2833"
         offset="0"
         style="stop-color:#3465a4;stop-opacity:1;" />
      <stop
         style="stop-color:#5b86be;stop-opacity:1;"
         offset="0.33333334"
         id="stop2855" />
      <stop
         id="stop2835"
         offset="1"
         style="stop-color:#83a8d8;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3207">
      <stop
         id="stop3209"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:0.47058824;" />
      <stop
         id="stop15637"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient8152">
      <stop
         id="stop8154"
         offset="0"
         style="stop-color:#3465a4;stop-opacity:1;" />
      <stop
         style="stop-color:#4f7eba;stop-opacity:1;"
         offset="0.5"
         id="stop15632" />
      <stop
         id="stop8156"
         offset="1"
         style="stop-color:#729fcf;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5313">
      <stop
         style="stop-color:#99b8df;stop-opacity:1"
         offset="0"
         id="stop5315" />
      <stop
         id="stop5333"
         offset="0.23705086"
         style="stop-color:#3969a8;stop-opacity:1;" />
      <stop
         id="stop5317"
         offset="0.54706067"
         style="stop-color:#4f7eba;stop-opacity:1;" />
      <stop
         style="stop-color:#96b6d7;stop-opacity:1"
         offset="0.74557692"
         id="stop5321" />
      <stop
         id="stop5331"
         offset="0.87321436"
         style="stop-color:#a0bddc;stop-opacity:1" />
      <stop
         style="stop-color:#729fcf;stop-opacity:1;"
         offset="1"
         id="stop5319" />
    </linearGradient>
    <inkscape:perspective
       id="perspective15617"
       inkscape:persp3d-origin="23.999999 : 156.22918 : 1"
       inkscape:vp_z="47.999999 : 164.22918 : 1"
       inkscape:vp_y="0 : 999.99999 : 0"
       inkscape:vp_x="0 : 164.22918 : 1"
       sodipodi:type="inkscape:persp3d" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.66"
     inkscape:cx="590.58473"
     inkscape:cy="350.27717"
     inkscape:document-units="px"
     inkscape:current-layer="g6595"
     inkscape:document-rotation="0"
     showgrid="false"
     units="px"
     inkscape:window-width="1299"
     inkscape:window-height="713"
     inkscape:window-x="67"
     inkscape:window-y="27"
     inkscape:window-maximized="1"
     inkscape:lockguides="true" />
  <metadata
     id="metadata1822">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1">
    <g
       id="g6595"
       transform="matrix(0.13229166,0,0,0.13229166,31.797339,-24.925663)">
      <rect
         style="opacity:1;fill:#5a005a;fill-opacity:1;stroke:none;stroke-width:4.04512;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.757409"
         id="rect1460"
         width="2000.0001"
         height="1500.0001"
         x="-240.35785"
         y="188.41447" />
      <g
         id="g12930"
         inkscape:label="troiai2"
         style="display:none"
         transform="translate(685.89751,-11.25955)">
        <path
           style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4796);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           d="m -19.970667,8.274237 c -9.330839,-1.142967 -18.932843,1.391352 -21.433035,5.656962 -2.500193,4.265612 3.043528,8.655181 12.374369,9.798148 9.330839,1.142966 18.932841,-1.391351 21.433035,-5.656963 2.500192,-4.265611 -3.043529,-8.655181 -12.374369,-9.798147 z m -3.515801,1.196231 c 0.980536,0.075308 1.112183,0.194794 1.080165,0.309793 l -2.240402,3.822379 c -0.112096,0.191248 -0.494787,0.312314 -1.045801,0.404334 -0.558359,0.04192 -0.99297,0.02283 -1.292042,-0.113896 l -6.120199,-2.805486 c -0.233586,-0.140411 -0.07365,-0.366503 2.595656,-1.116674 1.493098,-0.311582 3.100057,-0.504139 4.766242,-0.569783 0.980065,0.014582 1.773392,0.032239 2.256381,0.069333 z m 4.769259,0.584203 c 0.467401,0.05224 1.297071,0.217645 2.512877,0.51487 1.371162,0.437699 2.552224,0.97177 3.504499,1.582893 1.491206,1.259807 1.382428,1.492165 1.026565,1.560372 l -8.368688,1.030693 c -0.434687,0.05325 -0.847575,-0.04923 -1.317893,-0.235383 -0.329455,-0.190968 -0.494168,-0.371223 -0.389079,-0.550517 l 2.240402,-3.82238 c 0.07844,-0.08553 0.251416,-0.140885 0.791317,-0.08055 z m -16.658664,1.982288 c 0.04864,0.0069 0.102468,0.01825 0.142837,0.03229 l 6.128287,2.791687 c 0.303011,0.138521 0.324776,0.344599 0.227898,0.604724 -0.200607,0.247419 -0.444848,0.420911 -0.858769,0.471614 l -8.360601,1.016894 c -0.379206,0.02207 -0.743872,-0.157443 -0.837367,-1.551986 0.07401,-0.373641 0.208065,-0.741361 0.427664,-1.11602 0.219598,-0.374659 0.50569,-0.723755 0.850255,-1.064255 1.393112,-1.028938 1.961857,-1.230127 2.279796,-1.184944 z m 24.631108,3.017148 c 0.324762,0.03354 0.597263,0.33778 0.678353,1.547298 -0.07401,0.373641 -0.208065,0.741361 -0.427664,1.11602 -0.219598,0.37466 -0.50569,0.723755 -0.850255,1.064255 -1.606219,1.186338 -2.118366,1.258444 -2.422633,1.152658 l -6.128287,-2.791687 c -0.287109,-0.131252 -0.32861,-0.322638 -0.252162,-0.563326 0.01016,-0.01345 0.01374,-0.02841 0.02426,-0.0414 0.0051,-0.01365 0.01836,-0.02743 0.02426,-0.0414 0.197043,-0.225916 0.442305,-0.382174 0.834504,-0.430216 l 8.360601,-1.016894 c 0.05031,-0.0029 0.109335,-4.43e-4 0.159014,0.0047 z m -17.607408,2.221032 c 0.205098,0.03494 0.418793,0.09967 0.637643,0.181637 0.376547,0.20564 0.575554,0.397961 0.463458,0.589208 l -2.240402,3.82238 c -0.146347,0.159575 -0.684,0.206229 -3.304194,-0.434322 -1.371163,-0.437696 -2.552223,-0.971771 -3.504499,-1.582893 -1.491203,-1.259807 -1.382427,-1.492167 -1.026565,-1.560372 l 8.368688,-1.030693 c 0.204271,-0.02502 0.400773,-0.01988 0.605871,0.01506 z m 5.82574,0.713615 c 0.204195,0.01804 0.367427,0.05613 0.510981,0.121752 l 6.120199,2.805486 c 0.233588,0.140408 0.07365,0.366501 -2.595656,1.116673 -1.493097,0.311581 -3.100058,0.504141 -4.766242,0.569783 -2.969743,-0.04418 -3.384338,-0.207478 -3.336546,-0.379125 l 2.240402,-3.82238 c 0.116407,-0.198604 0.527034,-0.317628 1.11426,-0.410739 0.263248,-0.01747 0.508408,-0.01949 0.712602,-0.0014 z"
           id="path3888" />
        <g
           style="display:inline"
           id="g2992">
          <g
             style="stroke:#2e3436"
             id="g3891">
            <path
               style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
               d="m -23.486468,9.470468 c 0.980536,0.075308 1.112183,0.194794 1.080165,0.309793 l -2.240402,3.822379 c -0.112096,0.191248 -0.494787,0.312314 -1.045801,0.404334 -0.558359,0.04192 -0.99297,0.02283 -1.292042,-0.113896 l -6.120199,-2.805486 c -0.233586,-0.140411 -0.07365,-0.366503 2.595656,-1.116674 1.493098,-0.311582 3.100057,-0.504139 4.766242,-0.569783 0.980065,0.014582 1.773392,0.032239 2.256381,0.069333 z m 4.769259,0.584203 c 0.467401,0.05224 1.297071,0.217645 2.512877,0.51487 1.371162,0.437699 2.552224,0.97177 3.504499,1.582893 1.491206,1.259807 1.382428,1.492165 1.026565,1.560372 l -8.368688,1.030693 c -0.434687,0.05325 -0.847575,-0.04923 -1.317893,-0.235383 -0.329455,-0.190968 -0.494168,-0.371223 -0.389079,-0.550517 l 2.240402,-3.82238 c 0.07844,-0.08553 0.251416,-0.140885 0.791317,-0.08055 z m -16.658664,1.982288 c 0.04864,0.0069 0.102468,0.01825 0.142837,0.03229 l 6.128287,2.791687 c 0.303011,0.138521 0.324776,0.344599 0.227898,0.604724 -0.200607,0.247419 -0.444848,0.420911 -0.858769,0.471614 l -8.360601,1.016894 c -0.379206,0.02207 -0.743872,-0.157443 -0.837367,-1.551986 0.07401,-0.373641 0.208065,-0.741361 0.427664,-1.11602 0.219598,-0.374659 0.50569,-0.723755 0.850255,-1.064255 1.393112,-1.028938 1.961857,-1.230127 2.279796,-1.184944 z m 24.631108,3.017148 c 0.324762,0.03354 0.597263,0.33778 0.678353,1.547298 -0.07401,0.373641 -0.208065,0.741361 -0.427664,1.11602 -0.219598,0.37466 -0.50569,0.723755 -0.850255,1.064255 -1.606219,1.186338 -2.118366,1.258444 -2.422633,1.152658 l -6.128287,-2.791687 c -0.287109,-0.131252 -0.32861,-0.322638 -0.252162,-0.563326 0.01016,-0.01345 0.01374,-0.02841 0.02426,-0.0414 0.0051,-0.01365 0.01836,-0.02743 0.02426,-0.0414 0.197043,-0.225916 0.442305,-0.382174 0.834504,-0.430216 l 8.360601,-1.016894 c 0.05031,-0.0029 0.109335,-4.43e-4 0.159014,0.0047 z m -17.607408,2.221032 c 0.205098,0.03494 0.418793,0.09967 0.637643,0.181637 0.376547,0.20564 0.575554,0.397961 0.463458,0.589208 l -2.240402,3.82238 c -0.146347,0.159575 -0.684,0.206229 -3.304194,-0.434322 -1.371163,-0.437696 -2.552223,-0.971771 -3.504499,-1.582893 -1.491203,-1.259807 -1.382427,-1.492167 -1.026565,-1.560372 l 8.368688,-1.030693 c 0.204271,-0.02502 0.400773,-0.01988 0.605871,0.01506 z m 5.82574,0.713615 c 0.204195,0.01804 0.367427,0.05613 0.510981,0.121752 l 6.120199,2.805486 c 0.233588,0.140408 0.07365,0.366501 -2.595656,1.116673 -1.493097,0.311581 -3.100058,0.504141 -4.766242,0.569783 -2.969743,-0.04418 -3.384338,-0.207478 -3.336546,-0.379125 l 2.240402,-3.82238 c 0.116407,-0.198604 0.527034,-0.317628 1.11426,-0.410739 0.263248,-0.01747 0.508408,-0.01949 0.712602,-0.0014 z"
               id="path3884"
               sodipodi:nodetypes="cccccccccccccccccccccccccsccccscccsssccccccccccccccccccccc" />
            <ellipse
               style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.751734;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
               id="path3886"
               transform="matrix(1.210083,0,0,1.462367,-127.7352,0.188166)"
               cx="85.3125"
               cy="10.8125"
               rx="14.875"
               ry="5.8125" />
          </g>
          <ellipse
             style="display:inline;overflow:visible;visibility:visible;opacity:0.900752;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3903);stroke-width:0.823483;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             id="path3895"
             transform="matrix(1.142857,0,0,1.290324,-122,2.04838)"
             cx="85.3125"
             cy="10.8125"
             rx="14.875"
             ry="5.8125" />
        </g>
        <g
           style="display:inline"
           id="g3189"
           transform="translate(50)">
          <path
             id="path3152"
             d="M 25.96875,8.002653 C 19.762261,7.929462 13.664379,9.373241 10.34375,12.00219 5.513746,15.826114 8.384206,20.721752 16.75,22.929496 25.115794,25.137239 35.826245,23.825188 40.65625,20.001263 45.48625,16.177339 42.61579,11.281701 34.25,9.073958 31.635689,8.384038 28.789881,8.035922 25.96875,8.002653 Z m 3.71875,2.385438 c 0.8647,-0.02798 1.755798,0.05851 2.5625,0.271397 2.151203,0.567706 2.898253,1.830665 1.65625,2.81396 -1.242003,0.983295 -4.005044,1.310478 -6.15625,0.742771 -2.151205,-0.567706 -2.898253,-1.81638 -1.65625,-2.799676 0.77625,-0.614559 2.152583,-0.981814 3.59375,-1.028452 z m -12.28125,1.499826 c 0.8647,-0.02798 1.755798,0.05851 2.5625,0.271398 2.151204,0.567706 2.867003,1.830662 1.625,2.813959 -1.242002,0.983298 -3.973794,1.324762 -6.125,0.757055 -2.151205,-0.567706 -2.898253,-1.830662 -1.65625,-2.813959 0.776251,-0.614561 2.152583,-0.981814 3.59375,-1.028453 z m 15.5625,4.11381 c 0.8647,-0.02798 1.755798,0.05851 2.5625,0.271397 2.151206,0.567706 2.898253,1.830662 1.65625,2.813959 -1.242,0.983298 -4.005044,1.324762 -6.15625,0.757056 -2.151202,-0.567707 -2.867003,-1.830663 -1.625,-2.81396 0.776252,-0.614561 2.121334,-0.981814 3.5625,-1.028452 z m -12.28125,1.51411 c 0.8647,-0.02798 1.755798,0.05851 2.5625,0.271397 2.151203,0.567706 2.898253,1.81638 1.65625,2.799676 -1.242003,0.983295 -4.005044,1.324761 -6.15625,0.757055 -2.151205,-0.567707 -2.898253,-1.830665 -1.65625,-2.81396 0.77625,-0.614559 2.152583,-0.967531 3.59375,-1.014168 z"
             style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
          <path
             id="path2959"
             d="M 25.96875,8.002653 C 19.762261,7.929462 13.664379,9.373241 10.34375,12.00219 5.513746,15.826114 8.384206,20.721752 16.75,22.929496 25.115794,25.137239 35.826245,23.825188 40.65625,20.001263 45.48625,16.177339 42.61579,11.281701 34.25,9.073958 31.635689,8.384038 28.789881,8.035922 25.96875,8.002653 Z m 3.71875,2.385438 c 0.8647,-0.02798 1.755798,0.05851 2.5625,0.271397 2.151203,0.567706 2.898253,1.830665 1.65625,2.81396 -1.242003,0.983295 -4.005044,1.310478 -6.15625,0.742771 -2.151205,-0.567706 -2.898253,-1.81638 -1.65625,-2.799676 0.77625,-0.614559 2.152583,-0.981814 3.59375,-1.028452 z m -12.28125,1.499826 c 0.8647,-0.02798 1.755798,0.05851 2.5625,0.271398 2.151204,0.567706 2.867003,1.830662 1.625,2.813959 -1.242002,0.983298 -3.973794,1.324762 -6.125,0.757055 -2.151205,-0.567706 -2.898253,-1.830662 -1.65625,-2.813959 0.776251,-0.614561 2.152583,-0.981814 3.59375,-1.028453 z m 15.5625,4.11381 c 0.8647,-0.02798 1.755798,0.05851 2.5625,0.271397 2.151206,0.567706 2.898253,1.830662 1.65625,2.813959 -1.242,0.983298 -4.005044,1.324762 -6.15625,0.757056 -2.151202,-0.567707 -2.867003,-1.830663 -1.625,-2.81396 0.776252,-0.614561 2.121334,-0.981814 3.5625,-1.028452 z m -12.28125,1.51411 c 0.8647,-0.02798 1.755798,0.05851 2.5625,0.271397 2.151203,0.567706 2.898253,1.81638 1.65625,2.799676 -1.242003,0.983295 -4.005044,1.324761 -6.15625,0.757055 -2.151205,-0.567707 -2.898253,-1.830665 -1.65625,-2.81396 0.77625,-0.614559 2.152583,-0.967531 3.59375,-1.014168 z"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3072);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
          <ellipse
             transform="matrix(1.142857,0,0,1.290323,-72.00001,2.048386)"
             id="path2968"
             style="display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3215);stroke-width:0.823483;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="85.3125"
             cy="10.8125"
             rx="14.875"
             ry="5.8125" />
        </g>
        <path
           style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           d="M -67.21875,4.0285714 C -66.228989,3.9852983 -66.03418,4.0851337 -66,4.2 v 3.5 c 0,0.1856183 -0.261153,0.3402377 -0.6875,0.4857143 -0.04674,0.018327 -0.104316,0.028613 -0.15625,0.042857 -0.48877,0.09605 -0.898363,0.1213806 -1.25,0.028571 L -74.75,6.5 c -0.289409,-0.1024229 -0.21304,-0.33504 1.625,-1.2428571 0.01047,-0.00517 0.02065,-0.00907 0.03125,-0.014286 1.207594,-0.455648 2.619156,-0.8142857 4.125,-1.0571428 0.703517,-0.069824 1.350652,-0.1396846 1.75,-0.1571427 z m 4.9375,0 c 0.419164,-0.00422 1.197758,0.052709 2.25,0.1571429 1.505844,0.2428571 2.917406,0.6014948 4.125,1.0571428 0.01148,0.00433 0.0198,0.00993 0.03125,0.014286 1.83804,0.9078169 1.914409,1.140434 1.625,1.2428569 l -6.65625,1.7571429 c -0.38973,0.1028662 -0.846568,0.052727 -1.40625,-0.071429 C -62.738847,8.0402377 -63,7.8856137 -63,7.7 V 4.2 c 0.02734,-0.091895 0.163086,-0.1658286 0.71875,-0.1714286 z m -14.125,3.6571429 c 0.05004,9.234e-4 0.10931,0.0055 0.15625,0.014286 l 6.65625,1.7428571 c 0.351636,0.092805 0.500074,0.2727589 0.5625,0.5142858 -9.4e-5,0.028558 0,0.057156 0,0.085714 -0.06243,0.241527 -0.210863,0.421477 -0.5625,0.514286 L -76.25,12.3 c -0.333792,0.06244 -0.752186,-0.06981 -1.53125,-1.2 C -77.922377,10.742473 -78,10.376023 -78,10 c 0,-0.3760229 0.07762,-0.7424731 0.21875,-1.1 0.669507,-0.9712594 1.06922,-1.2199177 1.375,-1.2142857 z m 23.8125,0 c 0.30578,-0.00563 0.705493,0.2430263 1.375,1.2142857 C -51.077623,9.2575269 -51,9.6239771 -51,10 c 0,0.376023 -0.07762,0.742473 -0.21875,1.1 -0.779064,1.130194 -1.197459,1.262437 -1.53125,1.2 l -6.65625,-1.742857 c -0.351636,-0.09281 -0.500074,-0.272759 -0.5625,-0.514286 -8.99e-4,-0.02858 0,-0.057134 0,-0.085714 0.06242,-0.2415269 0.210863,-0.4214766 0.5625,-0.5142858 L -52.75,7.7 c 0.04694,-0.00878 0.106212,-0.013362 0.15625,-0.014286 z M -67.5,11.685714 c 0.217889,0.0095 0.460951,0.04672 0.71875,0.1 C -66.301109,11.939794 -66,12.102011 -66,12.3 v 3.5 c -0.04797,0.161216 -0.521607,0.257161 -2.96875,0.01429 -1.505844,-0.242857 -2.917406,-0.601495 -4.125,-1.057143 -0.01148,-0.0043 -0.0198,-0.0099 -0.03125,-0.01429 C -74.96304,13.83504 -75.039409,13.602423 -74.75,13.5 l 6.65625,-1.757143 c 0.183144,-0.04834 0.375861,-0.06662 0.59375,-0.05714 z m 6.03125,0 c 0.207449,-0.0067 0.386681,0.01074 0.5625,0.05714 L -54.25,13.5 c 0.289408,0.102423 0.213039,0.33504 -1.625,1.242857 -0.01145,0.0044 -0.01977,0.01 -0.03125,0.01429 -1.207595,0.455648 -2.619156,0.814286 -4.125,1.057143 C -62.478393,16.057161 -62.952029,15.961216 -63,15.8 v -3.5 c 0,-0.185618 0.261153,-0.340238 0.6875,-0.485714 0.04591,-0.01567 0.106229,-0.02736 0.15625,-0.04286 0.244385,-0.04802 0.480051,-0.07898 0.6875,-0.08571 z"
           id="path5719"
           sodipodi:nodetypes="cccssccssccccsscccccccccsscccsccccscccssccccccccssccccccsscccssc" />
        <path
           style="display:inline;overflow:visible;visibility:visible;fill:#8ae234;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           d="m -64.5,2 c -9.659996,0 -17.5,3.584 -17.5,8 0,4.416 7.840003,8.000005 17.5,8 9.659996,0 17.499999,-3.584 17.5,-8 0,-4.416 -7.840004,-8 -17.5,-8 z m -2.71875,2.0285714 C -66.228989,3.9852983 -66.03418,4.0851337 -66,4.2 v 3.5 c 0,0.1856183 -0.261153,0.3402377 -0.6875,0.4857143 -0.04674,0.018327 -0.104316,0.028613 -0.15625,0.042857 -0.48877,0.09605 -0.898363,0.1213806 -1.25,0.028571 L -74.75,6.5 c -0.289409,-0.1024229 -0.21304,-0.33504 1.625,-1.2428571 0.01047,-0.00517 0.02065,-0.00907 0.03125,-0.014286 1.207594,-0.455648 2.619156,-0.8142857 4.125,-1.0571428 0.703517,-0.069824 1.350652,-0.1396846 1.75,-0.1571427 z m 4.9375,0 c 0.419164,-0.00422 1.197758,0.052709 2.25,0.1571429 1.505844,0.2428571 2.917406,0.6014948 4.125,1.0571428 0.01148,0.00433 0.0198,0.00993 0.03125,0.014286 1.83804,0.9078169 1.914409,1.140434 1.625,1.2428569 l -6.65625,1.7571429 c -0.38973,0.1028662 -0.846568,0.052727 -1.40625,-0.071429 C -62.738847,8.0402377 -63,7.8856137 -63,7.7 V 4.2 c 0.02734,-0.091895 0.163086,-0.1658286 0.71875,-0.1714286 z m -14.125,3.6571429 c 0.05004,9.234e-4 0.10931,0.0055 0.15625,0.014286 l 6.65625,1.7428571 c 0.351636,0.092805 0.500074,0.2727589 0.5625,0.5142858 -9.4e-5,0.028558 0,0.057156 0,0.085714 -0.06243,0.241527 -0.210863,0.421477 -0.5625,0.514286 L -76.25,12.3 c -0.333792,0.06244 -0.752186,-0.06981 -1.53125,-1.2 C -77.922377,10.742473 -78,10.376023 -78,10 c 0,-0.3760229 0.07762,-0.7424731 0.21875,-1.1 0.669507,-0.9712594 1.06922,-1.2199177 1.375,-1.2142857 z m 23.8125,0 c 0.30578,-0.00563 0.705493,0.2430263 1.375,1.2142857 C -51.077623,9.2575269 -51,9.6239771 -51,10 c 0,0.376023 -0.07762,0.742473 -0.21875,1.1 -0.779064,1.130194 -1.197459,1.262437 -1.53125,1.2 l -6.65625,-1.742857 c -0.351636,-0.09281 -0.500074,-0.272759 -0.5625,-0.514286 -8.99e-4,-0.02858 0,-0.057134 0,-0.085714 0.06242,-0.2415269 0.210863,-0.4214766 0.5625,-0.5142858 L -52.75,7.7 c 0.04694,-0.00878 0.106212,-0.013362 0.15625,-0.014286 z M -67.5,11.685714 c 0.217889,0.0095 0.460951,0.04672 0.71875,0.1 C -66.301109,11.939794 -66,12.102011 -66,12.3 v 3.5 c -0.04797,0.161216 -0.521607,0.257161 -2.96875,0.01429 -1.505844,-0.242857 -2.917406,-0.601495 -4.125,-1.057143 -0.01148,-0.0043 -0.0198,-0.0099 -0.03125,-0.01429 C -74.96304,13.83504 -75.039409,13.602423 -74.75,13.5 l 6.65625,-1.757143 c 0.183144,-0.04834 0.375861,-0.06662 0.59375,-0.05714 z m 6.03125,0 c 0.207449,-0.0067 0.386681,0.01074 0.5625,0.05714 L -54.25,13.5 c 0.289408,0.102423 0.213039,0.33504 -1.625,1.242857 -0.01145,0.0044 -0.01977,0.01 -0.03125,0.01429 -1.207595,0.455648 -2.619156,0.814286 -4.125,1.057143 C -62.478393,16.057161 -62.952029,15.961216 -63,15.8 v -3.5 c 0,-0.185618 0.261153,-0.340238 0.6875,-0.485714 0.04591,-0.01567 0.106229,-0.02736 0.15625,-0.04286 0.244385,-0.04802 0.480051,-0.07898 0.6875,-0.08571 z"
           id="path5712"
           sodipodi:nodetypes="csssccccssccssccccsscccccccccsscccsccccscccssccccccccssccccccsscccssc" />
        <path
           style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           d="m -23.745287,-14.087957 c 0.980535,0.07531 1.112183,0.194793 1.080165,0.309792 l -1.981583,3.380805 c -0.105091,0.179297 -0.444886,0.297751 -0.93907,0.387828 -0.05552,0.012173 -0.116961,0.015296 -0.17519,0.022911 -0.526496,0.034948 -0.936474,0.010953 -1.223583,-0.1203 l -5.434608,-2.484867 c -0.22156,-0.133178 -0.01609,-0.348837 2.273293,-1.008262 0.01305,-0.0038 0.02508,-0.0063 0.03827,-0.0101 1.424419,-0.297249 2.990931,-0.476658 4.582963,-0.533074 0.719077,0.01579 1.383714,0.02488 1.779339,0.05527 z m 4.769259,0.584202 c 0.407273,0.04551 1.127103,0.192632 2.084364,0.418011 1.317036,0.412757 2.477451,0.926196 3.385925,1.509209 0.0086,0.0055 0.0135,0.01194 0.0221,0.0175 1.261434,1.094376 1.203501,1.328107 0.865965,1.3928 l -7.424279,0.9097375 c -0.43469,0.05325 -0.847575,-0.049234 -1.317893,-0.2353828 -0.329456,-0.1909678 -0.494167,-0.3712255 -0.389079,-0.5505177 l 1.981583,-3.380805 c 0.07844,-0.08553 0.251416,-0.140885 0.791317,-0.08055 z m -15.714255,1.861333 c 0.04781,0.0068 0.102469,0.01825 0.142838,0.03229 l 5.442696,2.4710672 c 0.287111,0.1312495 0.328607,0.3226384 0.252162,0.5633264 -0.01626,0.027574 -0.03236,0.05521 -0.04853,0.082795 -0.197042,0.2259156 -0.442304,0.3821735 -0.834504,0.4302165 l -7.416192,0.8959387 c -0.357768,0.020816 -0.687034,-0.156426 -0.799674,-1.3403096 0.0661,-0.3620499 0.198596,-0.7252047 0.411487,-1.0884217 0.212892,-0.363217 0.495342,-0.7080035 0.83408,-1.0366565 1.196589,-0.858967 1.723464,-1.051863 2.015636,-1.010243 z m 23.001109,2.8174845 c 0.298549,0.030739 0.54386,0.318223 0.64066,1.3356215 -0.0661,0.36205 -0.198596,0.725205 -0.411487,1.088422 -0.212892,0.363217 -0.495342,0.708003 -0.83408,1.036655 -1.392396,0.999527 -1.871406,1.077761 -2.158474,0.977957 l -5.442696,-2.471067 c -0.287111,-0.131249 -0.328607,-0.322639 -0.252162,-0.563326 0.01531,-0.027714 0.03235,-0.055189 0.04853,-0.082796 0.197042,-0.225915 0.442304,-0.382173 0.834504,-0.430216 l 7.416192,-0.895939 c 0.05031,-0.00293 0.110158,-3.401e-4 0.159014,0.00469 z m -16.662999,2.1000765 c 0.205097,0.034939 0.418793,0.099668 0.637643,0.181637 0.376545,0.205643 0.575552,0.397962 0.463458,0.589208 l -1.981583,3.380805 c -0.137612,0.150051 -0.64943,0.186688 -2.875681,-0.337461 -1.317036,-0.412758 -2.477451,-0.926198 -3.385925,-1.50921 -0.0086,-0.00554 -0.0135,-0.011938 -0.0221,-0.017497 -1.261434,-1.094376 -1.203501,-1.328107 -0.865965,-1.392799 l 7.424279,-0.909738 c 0.204271,-0.025023 0.400775,-0.019884 0.605871,0.015055 z m 5.82574,0.713615 c 0.204196,0.018036 0.367426,0.056124 0.510981,0.121751 l 5.434608,2.484868 c 0.221559,0.133176 0.01609,0.348836 -2.273293,1.008261 -0.01352,0.00285 -0.02473,0.00727 -0.03827,0.010102 -1.42442,0.297248 -2.990931,0.476657 -4.582963,0.533073 -2.501266,-0.054941 -2.904443,-0.203659 -2.859504,-0.365061 l 1.981583,-3.380805 c 0.105091,-0.179297 0.444886,-0.297751 0.93907,-0.387828 0.05322,-0.0097 0.118099,-0.013859 0.17519,-0.02291 0.263247,-0.017473 0.508407,-0.019488 0.712602,-0.00145 z"
           id="path5717"
           sodipodi:nodetypes="cccssccssccccsscccccccccsscccsccccscccssccccccccssccccccsscccssc" />
        <path
           style="display:inline;overflow:visible;visibility:visible;fill:#8ae234;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           d="m -19.970667,-15.725763 c -9.330839,-1.142967 -18.932843,1.391352 -21.433035,5.656963 -2.500192,4.26561 3.043526,8.655184 12.374369,9.798146 9.330839,1.142966 18.932842,-1.391352 21.433035,-5.656963 2.500192,-4.26561 -3.043529,-8.65518 -12.374369,-9.798146 z m -3.77462,1.637806 c 0.980535,0.07531 1.112183,0.194793 1.080165,0.309792 l -1.981583,3.380805 c -0.105091,0.179297 -0.444886,0.297751 -0.93907,0.387828 -0.05552,0.012173 -0.116961,0.015296 -0.17519,0.022911 -0.526496,0.034948 -0.936474,0.010953 -1.223583,-0.120301 l -5.434608,-2.484867 c -0.22156,-0.133177 -0.01609,-0.348836 2.273293,-1.008262 0.01305,-0.0038 0.02508,-0.0063 0.03827,-0.0101 1.424419,-0.297249 2.990931,-0.476658 4.582963,-0.533073 0.719077,0.01579 1.383714,0.02488 1.779339,0.05527 z m 4.769259,0.584202 c 0.407273,0.04551 1.127103,0.192632 2.084364,0.418011 1.317036,0.412757 2.477451,0.926196 3.385925,1.509209 0.0086,0.0055 0.0135,0.01194 0.0221,0.0175 1.261434,1.094376 1.203501,1.328107 0.865965,1.3928 l -7.424279,0.9097375 c -0.43469,0.05325 -0.847575,-0.049234 -1.317893,-0.2353828 -0.329456,-0.1909678 -0.494167,-0.3712255 -0.389079,-0.5505177 l 1.981583,-3.380805 c 0.07844,-0.08553 0.251416,-0.140885 0.791317,-0.08055 z m -15.714255,1.861333 c 0.04781,0.0068 0.102469,0.01825 0.142838,0.03229 l 5.442696,2.4710672 c 0.287111,0.1312495 0.328607,0.3226384 0.252162,0.5633264 -0.01626,0.027574 -0.03236,0.05521 -0.04853,0.082795 -0.197042,0.2259156 -0.442304,0.3821735 -0.834504,0.4302165 l -7.416192,0.8959387 c -0.357768,0.020816 -0.687034,-0.156426 -0.799674,-1.3403096 0.0661,-0.3620499 0.198596,-0.7252047 0.411487,-1.0884217 0.212892,-0.363217 0.495342,-0.7080035 0.83408,-1.0366565 1.196589,-0.858967 1.723464,-1.051863 2.015636,-1.010243 z m 23.001109,2.8174845 c 0.298549,0.030739 0.54386,0.318223 0.64066,1.3356215 -0.0661,0.36205 -0.198596,0.725205 -0.411487,1.088422 -0.212892,0.363217 -0.495342,0.708003 -0.83408,1.036655 -1.392396,0.999527 -1.871406,1.077761 -2.158474,0.977957 l -5.442696,-2.471067 c -0.287111,-0.131249 -0.328607,-0.322639 -0.252162,-0.563326 0.01531,-0.027714 0.03235,-0.055189 0.04853,-0.082796 0.197042,-0.225915 0.442304,-0.382173 0.834504,-0.430216 l 7.416192,-0.895939 c 0.05031,-0.00293 0.110158,-3.401e-4 0.159014,0.00469 z m -16.662999,2.1000765 c 0.205097,0.034939 0.418793,0.099668 0.637643,0.181637 0.376545,0.205643 0.575552,0.397962 0.463458,0.589208 l -1.981583,3.380805 c -0.137612,0.150051 -0.64943,0.186688 -2.875681,-0.337461 -1.317036,-0.412758 -2.477451,-0.926198 -3.385925,-1.50921 -0.0086,-0.00554 -0.0135,-0.011938 -0.0221,-0.017497 -1.261434,-1.094376 -1.203501,-1.328107 -0.865965,-1.392799 l 7.424279,-0.909738 c 0.204271,-0.025023 0.400775,-0.019884 0.605871,0.015055 z m 5.82574,0.713615 c 0.204196,0.018036 0.367426,0.056124 0.510981,0.121751 l 5.434608,2.484868 c 0.221559,0.133176 0.01609,0.348836 -2.273293,1.008261 -0.01352,0.00285 -0.02473,0.00727 -0.03827,0.010102 -1.42442,0.297248 -2.990931,0.476657 -4.582963,0.533073 -2.501266,-0.054941 -2.904443,-0.203659 -2.859504,-0.365061 l 1.981583,-3.380805 c 0.105091,-0.179297 0.444886,-0.297751 0.93907,-0.387828 0.05322,-0.0097 0.118099,-0.013859 0.17519,-0.02291 0.263247,-0.017473 0.508407,-0.019488 0.712602,-0.00145 z"
           id="path5715"
           sodipodi:nodetypes="csssccccssccssccccsscccccccccsscccsccccscccssccccccccssccccccsscccssc" />
      </g>
      <g
         id="g12946"
         inkscape:label="troiai"
         style="display:none"
         transform="translate(685.89751,-11.25955)">
        <rect
           style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
           id="rect2947"
           width="48"
           height="48"
           x="-60"
           y="-1.3322676e-15" />
        <g
           id="g1996"
           transform="matrix(1,0,0,1.011094,-59.50013,-0.849162)">
          <path
             id="path6409"
             d="M 23.343751,6.7920654 C 19.276738,6.9662854 14.839018,8.953048 11.250001,12.542065 4.8695268,18.922539 3.6038088,28.020873 8.4375008,32.854566 13.271193,37.688258 22.369527,36.42254 28.750001,30.042065 35.130475,23.661591 36.396191,14.563256 31.562501,9.7295651 29.447761,7.614825 26.506983,6.6565614 23.343751,6.7920654 Z m 2.9375,2.5937496 c 1.104583,-0.015582 2.059925,0.3727631 2.625,1.15625 1.130147,1.566973 0.238525,4.135505 -2,5.75 -2.238524,1.614496 -4.963601,1.660723 -6.09375,0.09375 -1.13015,-1.566974 -0.238525,-4.135505 2,-5.75 1.119263,-0.8072479 2.364167,-1.234418 3.46875,-1.25 z m -10.875,2.4375 c 0.659278,-0.0045 1.262885,0.197485 1.6875,0.625 1.132305,1.140039 0.667211,3.44619 -1.03125,5.15625 -1.698462,1.71006 -3.992695,2.171289 -5.125,1.03125 -1.1323052,-1.140039 -0.698461,-3.44619 1,-5.15625 1.061538,-1.068788 2.369953,-1.648747 3.46875,-1.65625 z m 8.90625,8.46875 c 1.279863,-0.127987 2.528023,0.215523 3.40625,1.09375 1.756454,1.756453 1.428027,4.946973 -0.71875,7.09375 -2.146779,2.146778 -5.306047,2.443953 -7.0625,0.6875 -1.756452,-1.756453 -1.459277,-4.915723 0.6875,-7.0625 1.073389,-1.073389 2.407637,-1.684513 3.6875,-1.8125 z m -10.78125,1.5 c 0.494555,0.02463 0.970752,0.171294 1.375,0.4375 1.616993,1.064826 1.634087,3.752447 0.0625,6 -1.571586,2.247554 -4.133007,3.221076 -5.7500002,2.15625 -1.616994,-1.064825 -1.665337,-3.752447 -0.09375,-6 1.1786902,-1.685665 2.9225852,-2.667649 4.4062502,-2.59375 z"
             style="opacity:1;fill:url(#linearGradient2001);fill-opacity:1;stroke:none;stroke-width:0.986395;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <ellipse
             transform="matrix(0.6512,0.648774,-0.68514,0.682587,21.74573,-2.442557)"
             id="path7695"
             style="opacity:0.451087;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.05476;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             cx="17.399878"
             cy="18.629814"
             rx="12.399623"
             ry="15.884648" />
          <ellipse
             transform="matrix(0.702727,0.69577,-0.724088,0.716919,21.70497,-3.797766)"
             id="path6407"
             style="opacity:1;fill:none;fill-opacity:1;stroke:#898b86;stroke-width:0.990742;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             cx="17.399878"
             cy="18.629814"
             rx="12.399623"
             ry="15.884648" />
        </g>
        <path
           inkscape:r_cy="true"
           inkscape:r_cx="true"
           id="path4573"
           d="m -38.579058,5.017711 c -0.996134,0.046321 -2.00166,0.207595 -3.038591,0.486172 -6.317787,1.713289 -12.097826,7.507761 -13.704044,13.825516 -1.240844,4.890362 0.277999,8.004599 2.640311,10.807661 l 14.254253,0.353553 c 3.894237,-1.938218 6.556776,-4.616909 8.399614,-8.550632 V 8.395851 c -2.151444,-2.37532 -4.70162,-3.557166 -8.551543,-3.37814 z m 3.141845,2.525474 c 1.97162,-0.127253 3.436983,1.02639 3.34245,2.917032 -0.107079,2.248692 -2.35257,4.494169 -4.922517,4.922491 -2.462867,0.428323 -4.058711,-1.064815 -3.737466,-3.099346 0.214162,-2.141612 2.248411,-4.083231 4.497114,-4.618634 0.276068,-0.062742 0.5587,-0.104651 0.820419,-0.121543 z m -10.638523,2.462974 c 0.71357,-0.061945 1.343691,0.131469 1.792768,0.486172 0.583909,0.477833 0.894903,1.28509 0.729262,2.278931 -0.321246,2.034533 -2.371414,4.054306 -4.405956,4.375549 -0.918556,0.153091 -1.672033,-0.07969 -2.1574,-0.57733 -0.515795,-0.547673 -0.737415,-1.406631 -0.51656,-2.400474 0.428326,-1.820369 2.14425,-3.643368 4.071711,-4.07169 0.165642,-0.03681 0.329189,-0.07753 0.486175,-0.09116 z m 8.651342,8.10781 c 2.46198,-0.189032 4.479306,1.508718 4.375571,4.102076 l -0.121544,0.121543 c -0.107082,2.784095 -2.685353,5.331969 -5.469463,5.43905 -2.677029,0.107078 -4.469651,-1.911234 -4.041326,-4.588249 0.321243,-2.462852 2.550808,-4.722793 5.013675,-5.044034 0.08031,-0.01004 0.163669,-0.02429 0.243087,-0.03039 z m -10.594312,1.738902 c 1.972238,-0.127303 3.223232,1.552873 2.917047,3.798219 l -0.121544,0.09116 c -0.428322,2.569935 -2.659349,4.724254 -4.800973,4.831334 -2.141624,0.10708 -3.330909,-1.807074 -2.795503,-4.162848 0.535406,-2.248694 2.462572,-4.282931 4.497114,-4.497091 0.100388,-0.01506 0.206863,-0.05451 0.303859,-0.06077 z"
           style="fill:none;fill-rule:nonzero;stroke:#333333;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           sodipodi:nodetypes="ccccccccccccsccsccscsccccccsccccscsc" />
        <path
           style="fill:url(#radialGradient4556);fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
           d="m -31.134002,18.15152 c 0,5.836691 -5.616438,11.45313 -11.563256,11.45313 -4.955681,0 -7.378459,-4.184798 -6.16707,-8.8101 1.101263,-4.074671 4.735429,-7.818964 8.8101,-8.8101 4.625302,-1.211389 8.920226,1.211388 8.920226,6.16707 z"
           id="path6440"
           inkscape:r_cx="true"
           inkscape:r_cy="true" />
        <path
           style="fill:url(#radialGradient4553);fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
           d="m -32.785896,16.499626 c 0,5.836691 -5.616438,11.45313 -11.563256,11.45313 -4.955681,0 -7.378459,-4.184798 -6.16707,-8.8101 1.101263,-4.074671 4.735429,-7.818964 8.810101,-8.8101 4.625301,-1.211389 8.920225,1.211389 8.920225,6.16707 z"
           id="path6447"
           inkscape:r_cx="true"
           inkscape:r_cy="true" />
        <path
           style="fill:#3b3b3b;fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
           d="m -29.933771,7.80123 v 0.09375 c 0.0527,0.052697 0.136209,0.101759 0.1875,0.15625 -0.05997,-0.086261 -0.124694,-0.164824 -0.1875,-0.25 z m 0.3125,0.4375 c 0.02198,0.032954 0.07217,0.060647 0.09375,0.09375 -0.02803,-0.032707 -0.06525,-0.061608 -0.09375,-0.09375 z m 0.125,0.15625 c 0.181503,0.282072 0.315881,0.551634 0.46875,0.84375 V 9.01998 c -0.149709,-0.217313 -0.301952,-0.427075 -0.46875,-0.625 z m 0.46875,12.59375 c -1.878411,4.485449 -5.613944,8.551667 -10.15625,10.625 h 1.46875 c 2.079394,-1.065661 4.075734,-2.569347 5.8125,-4.53125 1.192461,-1.324957 2.150976,-2.750217 2.875,-4.1875 z"
           id="path6490" />
        <path
           style="fill:url(#linearGradient2925);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2917);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
           d="m -39.696441,31.175733 c 0,0 5.905042,-5.506054 14.633183,-2.128216 8.667171,3.354241 10.634667,15.523889 10.634667,15.523889 h -16.027164 c 0,0 1.837487,-7.855356 0.606534,-12.079275 -1.230952,-4.223919 -9.84722,-1.316398 -9.84722,-1.316398 z"
           id="path6728"
           sodipodi:nodetypes="czcczc" />
        <path
           style="opacity:0.2;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m -35.812505,29.341692 c 0,0 3.119327,-2.496827 10.485636,0.52118 7.314853,2.996923 9.639372,13.637148 9.639372,13.637148 H -29.02648 c 0,0 1.097775,-7.554417 0.05888,-11.328375 -1.038889,-3.773957 -6.844909,-2.829953 -6.844909,-2.829953 z"
           id="path7675"
           sodipodi:nodetypes="czcczc" />
        <path
           style="opacity:1;fill:url(#linearGradient6380);fill-opacity:1;stroke:none;stroke-width:0.986395;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="m -38.040516,4.4309723 c -4.067013,0.17422 -8.504733,2.160983 -12.09375,5.7499997 -6.380474,6.380474 -7.646192,15.478808 -2.8125,20.312501 4.833692,4.833692 13.932026,3.567974 20.3125,-2.812501 6.380474,-6.380474 7.64619,-15.478809 2.8125,-20.3124997 -2.11474,-2.11474 -5.055518,-3.073004 -8.21875,-2.9375 z m 2.9375,2.59375 c 1.104583,-0.015582 2.059925,0.372763 2.625,1.15625 1.130147,1.566973 0.238525,4.1355047 -2,5.7499997 -2.238524,1.614496 -4.963601,1.660723 -6.09375,0.09375 -1.13015,-1.566974 -0.238525,-4.1355047 2,-5.7499997 1.119263,-0.807248 2.364167,-1.234418 3.46875,-1.25 z m -10.875,2.4375 c 0.659278,-0.0045 1.262885,0.197485 1.6875,0.6249997 1.132305,1.140039 0.667211,3.44619 -1.03125,5.15625 -1.698462,1.71006 -3.992695,2.171289 -5.125,1.03125 -1.132305,-1.140039 -0.698461,-3.44619 1,-5.15625 1.061538,-1.068788 2.369953,-1.6487467 3.46875,-1.6562497 z m 8.90625,8.4687497 c 1.279863,-0.127987 2.528023,0.215523 3.40625,1.09375 1.756454,1.756453 1.428027,4.946973 -0.71875,7.09375 -2.146779,2.146778 -5.306047,2.443953 -7.0625,0.6875 -1.756452,-1.756453 -1.459277,-4.915723 0.6875,-7.0625 1.073389,-1.073389 2.407637,-1.684513 3.6875,-1.8125 z m -10.78125,1.5 c 0.494555,0.02463 0.970752,0.171294 1.375,0.4375 1.616993,1.064826 1.634087,3.752447 0.0625,6 -1.571586,2.247554 -4.133007,3.221076 -5.75,2.15625 -1.616994,-1.064825 -1.665337,-3.752447 -0.09375,-6 1.17869,-1.685665 2.922585,-2.667649 4.40625,-2.59375 z"
           id="path4541" />
        <ellipse
           style="opacity:1;fill:none;fill-opacity:1;stroke:#898b86;stroke-width:0.986395;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path4539"
           transform="matrix(0.706206,0.706206,-0.727673,0.727673,-40.48126,-6.884929)"
           cx="17.399878"
           cy="18.629814"
           rx="12.399623"
           ry="15.884648" />
        <path
           style="fill:#e6e6e6;fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
           d="m -50.357005,16.385341 c 0.780808,0.780808 2.788603,1.11544 5.019484,-0.892353 1.450073,-1.338528 2.788601,-4.127129 0.892352,-5.5772029 2.342424,2.3424249 -2.788601,8.3658039 -6.02338,6.4695559 z"
           id="path6480"
           inkscape:r_cx="true"
           inkscape:r_cy="true" />
        <path
           style="fill:#e6e6e6;fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
           d="m -39.556216,14.843811 c 0.767701,0.7677 3.72883,0.877373 5.922259,-1.096715 1.974086,-1.864414 2.558157,-4.2032296 0.913086,-5.7386296 2.851458,3.7288296 -3.325858,8.4804166 -6.725673,6.9450166 z"
           id="path6488"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#e6e6e6;fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
           d="m -41.088696,27.153796 c 5.490953,3.697987 11.766324,-5.042711 7.171855,-8.292457 4.258289,4.370349 -2.241205,11.093963 -7.171855,8.292457 z"
           id="path6476"
           inkscape:r_cx="true"
           inkscape:r_cy="true" />
        <path
           style="fill:#e6e6e6;fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
           d="m -52.387455,28.305461 c 0.840054,0.840054 3.120199,1.080069 5.400342,-0.960061 2.520161,-2.400152 2.880185,-6.120388 0.840054,-7.560481 2.880184,3.720238 -2.400153,10.320657 -6.240396,8.64055 z"
           id="path6484"
           inkscape:r_cx="true"
           inkscape:r_cy="true" />
        <ellipse
           style="opacity:0.451087;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.06059;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path6401"
           transform="matrix(0.6512,0.648774,-0.68514,0.682587,-40.31421,-5.005059)"
           cx="17.399878"
           cy="18.629814"
           rx="12.399623"
           ry="15.884648" />
        <path
           style="opacity:0.3;fill:url(#linearGradient2933);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m -28,44 0.58185,-7 8.120159,0.05051 L -17,44 Z"
           id="path6738"
           sodipodi:nodetypes="ccccc" />
        <path
           style="opacity:0.3;fill:#dddddd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m -27.642397,35.0625 -0.539671,-3.818019 5.125604,-0.126269 2.271638,3.944288 z"
           id="path7629"
           sodipodi:nodetypes="ccccc" />
        <path
           style="opacity:0.3;fill:#dddddd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m -29.51056,30.094209 -2.489979,-1.026505 3.250235,0.02044 3.020706,1.041836 z"
           id="path7631"
           sodipodi:nodetypes="ccccc" />
        <g
           id="g2872"
           transform="translate(-110,-40)">
          <ellipse
             transform="matrix(0.992983,0,0,2.142753,48.71484,-19.0262)"
             id="path2862"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.275528,0,0,0.59456,65.90022,-8.860351)"
             id="path2864"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.275528,0,0,0.594561,56.9002,0.139637)"
             id="path2866"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.275528,0,0,0.594561,74.9002,0.139637)"
             id="path2868"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.275528,0,0,0.59456,65.90022,9.13965)"
             id="path12974"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
        </g>
        <ellipse
           transform="matrix(0.496284,0,0,0.535015,0.6124,75.37678)"
           id="path2005"
           style="display:inline;overflow:visible;visibility:visible;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.96992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           cx="23.953241"
           cy="12.379497"
           rx="18.119612"
           ry="8.3968925" />
        <ellipse
           transform="matrix(0.496284,0,0,0.535015,0.6124,69.37678)"
           id="path2007"
           style="display:inline;overflow:visible;visibility:visible;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.96992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           cx="23.953241"
           cy="12.379497"
           rx="18.119612"
           ry="8.3968925" />
        <g
           id="g2041"
           transform="translate(-47,-50)">
          <ellipse
             transform="matrix(0.965804,0,0,2.084105,49.36585,-18.30016)"
             id="path2043"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535913,66.55122,-8.134333)"
             id="path2045"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535914,57.55119,0.865653)"
             id="path2047"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535914,75.55119,0.865653)"
             id="path2049"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535913,66.55122,9.865668)"
             id="path2051"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
        </g>
        <path
           style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           d="m -20.3125,-55.625 c -1.441167,0.04664 -2.8175,0.416618 -3.59375,1.03125 -1.242003,0.983412 -0.494955,2.244724 1.65625,2.8125 2.151206,0.567776 4.914247,0.233412 6.15625,-0.75 1.242003,-0.983412 0.494953,-2.244724 -1.65625,-2.8125 -0.806702,-0.212916 -1.6978,-0.309235 -2.5625,-0.28125 z m -12.28125,1.53125 c -1.441167,0.04664 -2.817499,0.385365 -3.59375,1 -1.242003,0.983417 -0.494955,2.244724 1.65625,2.8125 2.151206,0.567776 4.882998,0.233417 6.125,-0.75 1.242003,-0.983417 0.526204,-2.244724 -1.625,-2.8125 -0.806702,-0.212916 -1.6978,-0.277986 -2.5625,-0.25 z M -17.03125,-50 c -1.441166,0.04664 -2.786248,0.416615 -3.5625,1.03125 -1.242003,0.983417 -0.526202,2.244724 1.625,2.8125 2.151206,0.567776 4.91425,0.233417 6.15625,-0.75 1.242003,-0.983417 0.494956,-2.244724 -1.65625,-2.8125 -0.806702,-0.212916 -1.6978,-0.309236 -2.5625,-0.28125 z m -12.28125,1.5 c -1.441167,0.04664 -2.8175,0.416617 -3.59375,1.03125 -1.242003,0.983412 -0.494955,2.244724 1.65625,2.8125 2.151206,0.567776 4.914247,0.233412 6.15625,-0.75 1.242003,-0.983412 0.494953,-2.244724 -1.65625,-2.8125 -0.806702,-0.212916 -1.6978,-0.309235 -2.5625,-0.28125 z"
           id="path3013" />
        <g
           id="g3055"
           transform="translate(0,-20)">
          <ellipse
             transform="matrix(0.965804,0,0,0.952734,2.36585,-1.79436)"
             id="path2052"
             style="display:inline;overflow:visible;visibility:visible;fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.23396,0,0,0.200025,19.89589,2.690751)"
             id="path2054"
             style="display:inline;overflow:visible;visibility:visible;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.244989,10.55119,5.654657)"
             id="path2056"
             style="display:inline;overflow:visible;visibility:visible;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.244989,28.55119,5.654657)"
             id="path2058"
             style="display:inline;overflow:visible;visibility:visible;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.268112,0,0,0.237961,19.07786,10.41845)"
             id="path2060"
             style="display:inline;overflow:visible;visibility:visible;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
        </g>
        <g
           style="display:inline"
           id="g2087"
           transform="matrix(0.885715,0,0,0.885715,1.28563,-23.14286)">
          <ellipse
             transform="matrix(0.965804,0,0,2.084105,49.36585,-18.30016)"
             id="path2089"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535913,66.55122,-8.134333)"
             id="path2091"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535914,57.55119,0.865653)"
             id="path2093"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535914,75.55119,0.865653)"
             id="path2095"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535913,66.55122,9.865668)"
             id="path2097"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
        </g>
        <g
           id="g3041"
           transform="translate(50)">
          <path
             sodipodi:nodetypes="ccccc"
             id="rect2067"
             d="m 10.15625,2 -4.3125,16 39.34375,-0.03125 -4.3125,-16 z"
             style="display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.03497;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
          <g
             style="opacity:0.5"
             id="g2149">
            <path
               style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
               d="M 9.9878833,19.052816 13.5,1"
               id="path2141" />
            <path
               style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
               d="M 20.417708,19 21.4375,1"
               id="path2143" />
            <path
               style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
               d="M 30.670757,19.008622 29.43332,1"
               id="path2145" />
            <path
               style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
               d="M 41,19 37.375,1"
               id="path2147" />
          </g>
        </g>
        <g
           id="g3070"
           transform="translate(-50)">
          <ellipse
             style="display:inline;overflow:visible;visibility:visible;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             id="path3062"
             transform="matrix(0.23396,0,0,0.200025,19.89589,2.69075)"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             style="display:inline;overflow:visible;visibility:visible;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             id="path3064"
             transform="matrix(0.24835,0,0,0.244989,10.55119,5.65466)"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             style="display:inline;overflow:visible;visibility:visible;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             id="path3066"
             transform="matrix(0.24835,0,0,0.244989,28.55119,5.65466)"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             style="display:inline;overflow:visible;visibility:visible;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             id="path13008"
             transform="matrix(0.268112,0,0,0.237961,19.07786,10.10595)"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
        </g>
        <g
           style="display:inline"
           id="g2121"
           transform="matrix(1.143947,0,0,1.143947,-57.43614,69.9204)">
          <ellipse
             transform="matrix(0.965804,0,0,2.084105,49.36585,-18.30016)"
             id="path2123"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535913,66.55122,-8.134333)"
             id="path2125"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535914,57.55119,0.865653)"
             id="path2127"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535914,75.55119,0.865653)"
             id="path2129"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             transform="matrix(0.24835,0,0,0.535913,66.55122,9.865668)"
             id="path2131"
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.50793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
        </g>
        <path
           style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#8ae234;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           d="m 25.5,-110 c -9.659996,0 -17.5,7.84 -17.5,17.5 0,9.660003 7.840003,17.499999 17.5,17.5 9.659996,0 17.499999,-7.839996 17.5,-17.5 0,-9.66 -7.840004,-17.5 -17.5,-17.5 z m -2.71875,3.4375 c 0.989761,-0.0947 1.18457,0.12373 1.21875,0.375 v 8.65625 c 0,0.433103 -0.301109,0.787955 -0.78125,1.125 -0.515597,0.233096 -0.946212,0.305227 -1.3125,0.09375 l -7.5,-4.34375 c -0.305121,-0.23622 -0.278639,-0.75533 1.875,-3.03125 1.265818,-1.04479 2.709004,-1.86756 4.28125,-2.4375 0.954926,-0.22285 1.731218,-0.39087 2.21875,-0.4375 z m 4.9375,0 c 0.481049,-0.0106 1.376096,0.12416 2.71875,0.4375 1.572246,0.56994 3.015432,1.39271 4.28125,2.4375 2.153641,2.27592 2.180121,2.79503 1.875,3.03125 l -7.5,4.34375 c -0.389729,0.225013 -0.846568,0.115341 -1.40625,-0.15625 C 27.261153,-96.786983 27,-97.125216 27,-97.53125 v -8.65625 c 0.02734,-0.20102 0.163086,-0.36275 0.71875,-0.375 z m -14.96875,8.5 c 0.05089,0.002 0.10931,0.01204 0.15625,0.03125 l 7.5,4.3125 c 0.371111,0.214259 0.508806,0.644051 0.5625,1.21875 -0.05369,0.574697 -0.191388,1.004488 -0.5625,1.21875 l -7.5,4.3125 c -0.353791,0.144771 -0.807662,-0.140137 -1.6875,-3.0625 C 11.078701,-90.83988 11,-91.651538 11,-92.5 c 0,-0.848462 0.0787,-1.660121 0.21875,-2.46875 0.763103,-2.53463 1.198564,-3.106929 1.53125,-3.09375 z m 25.5,0 c 0.332686,-0.01318 0.768147,0.559119 1.53125,3.09375 C 39.921299,-94.160121 40,-93.348462 40,-92.5 c 0,0.848463 -0.0787,1.66012 -0.21875,2.46875 -0.879836,2.922361 -1.333709,3.207267 -1.6875,3.0625 l -7.5,-4.3125 c -0.351635,-0.203015 -0.500076,-0.596657 -0.5625,-1.125 0.0022,-0.03105 -0.0028,-0.06359 0,-0.09375 -0.0028,-0.03016 0.0022,-0.0627 0,-0.09375 0.06243,-0.528342 0.210864,-0.921982 0.5625,-1.125 l 7.5,-4.3125 c 0.04694,-0.01921 0.105358,-0.02923 0.15625,-0.03125 z m -15.75,9.25 c 0.217889,0.02074 0.460951,0.102201 0.71875,0.21875 0.480141,0.337045 0.78125,0.691896 0.78125,1.125 v 8.65625 c -0.05102,0.375047 -0.543935,0.612777 -3.4375,-0.0625 -1.572246,-0.569936 -3.015432,-1.392713 -4.28125,-2.4375 -2.153639,-2.275922 -2.180121,-2.795033 -1.875,-3.03125 l 7.5,-4.34375 c 0.183144,-0.105739 0.375861,-0.145735 0.59375,-0.125 z m 6.03125,0 c 0.207449,-0.01474 0.386682,0.02349 0.5625,0.125 l 7.5,4.34375 c 0.305122,0.236214 0.27864,0.755326 -1.875,3.03125 -1.265818,1.044787 -2.709004,1.867564 -4.28125,2.4375 -2.893565,0.675277 -3.386484,0.437547 -3.4375,0.0625 v -8.65625 c 0,-0.449762 0.329248,-0.80753 0.84375,-1.15625 0.244385,-0.105054 0.480051,-0.172762 0.6875,-0.1875 z"
           id="path2064" />
        <g
           id="g2979"
           transform="translate(0,-20)">
          <ellipse
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#8ae234;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             id="path2971"
             transform="matrix(0.965804,0,0,2.084105,2.36585,-148.3002)"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             id="path2973"
             transform="matrix(0.800238,0,0,1.726831,6.331715,-143.8773)"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <ellipse
             style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#8ae234;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
             id="path2975"
             transform="matrix(0.248349,0,0,0.535911,19.55124,-129.1343)"
             cx="23.953241"
             cy="12.379497"
             rx="18.119612"
             ry="8.3968925" />
          <path
             sodipodi:nodetypes="ccccccccccccccccccccc"
             id="path2977"
             d="M 24,-137.15625 20,-136 c 3.5,-0.875 3.945312,-0.58954 4,-0.1875 v 8.65625 c 0,0.54138 -0.436951,0.95971 -1.15625,1.375 v 7.3125 c 0.719299,0.41529 1.15625,0.83362 1.15625,1.375 v 8.65625 c -0.05469,0.40204 -0.5,0.6875 -4,-0.1875 l 4,1.15625 h 3 L 31,-109 c -3.5,0.875 -3.945312,0.58954 -4,0.1875 v -8.65625 c 0,-0.54138 0.436951,-0.95971 1.15625,-1.375 v -7.3125 C 27.436951,-126.57154 27,-126.98987 27,-127.53125 v -8.65625 c 0.05469,-0.40204 0.5,-0.6875 4,0.1875 l -4,-1.15625 z"
             style="display:inline;overflow:visible;visibility:visible;opacity:0.495367;fill:#000080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.4;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
        </g>
        <path
           style="display:inline;overflow:visible;visibility:visible;fill:#8ae234;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.695888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
           d="m 25.5,-200 c -9.659996,0 -17.5,7.84 -17.5,17.5 0,9.66 7.840003,17.50001 17.5,17.5 9.659996,0 17.499999,-7.84 17.5,-17.5 0,-9.66 -7.840004,-17.5 -17.5,-17.5 z m -2.71875,4.4375 c 0.989761,-0.0947 1.18457,0.12373 1.21875,0.375 v 7.65625 c 0,0.40604 -0.261153,0.74427 -0.6875,1.0625 -0.04674,0.0401 -0.104316,0.0626 -0.15625,0.0937 -0.48877,0.21011 -0.898363,0.26552 -1.25,0.0625 l -6.65625,-3.8437 c -0.289409,-0.22405 -0.21304,-0.7329 1.625,-2.71875 0.01047,-0.0113 0.02065,-0.0198 0.03125,-0.0312 1.207594,-0.99673 2.619156,-1.78125 4.125,-2.3125 0.703517,-0.15274 1.350652,-0.30556 1.75,-0.34375 z m 4.9375,0 c 0.419164,-0.009 1.197758,0.1153 2.25,0.34375 1.505844,0.53125 2.917406,1.31577 4.125,2.3125 0.01148,0.009 0.0198,0.0217 0.03125,0.0312 1.83804,1.98585 1.914409,2.4947 1.625,2.71875 l -6.65625,3.84375 c -0.38973,0.22502 -0.846568,0.11534 -1.40625,-0.15625 C 27.261153,-186.78698 27,-187.12522 27,-187.53125 v -7.65625 c 0.02734,-0.20102 0.163086,-0.36275 0.71875,-0.375 z m -14.125,8 c 0.05004,0.002 0.10931,0.012 0.15625,0.0312 l 6.65625,3.8125 c 0.351636,0.20301 0.500074,0.59666 0.5625,1.125 -9.4e-5,0.0625 0,0.12503 0,0.1875 -0.06243,0.52834 -0.210863,0.92198 -0.5625,1.125 l -6.65625,3.8125 c -0.333792,0.13658 -0.752186,-0.1527 -1.53125,-2.625 C 12.077623,-180.87584 12,-181.67745 12,-182.5 c 0,-0.82255 0.07762,-1.62416 0.21875,-2.40625 0.669507,-2.12463 1.06922,-2.66857 1.375,-2.65625 z m 23.8125,0 c 0.30578,-0.0123 0.705493,0.53162 1.375,2.65625 0.141127,0.78209 0.21875,1.5837 0.21875,2.40625 0,0.82255 -0.07762,1.62416 -0.21875,2.40625 -0.779064,2.4723 -1.197459,2.76158 -1.53125,2.625 l -6.65625,-3.8125 c -0.351636,-0.20301 -0.500074,-0.59666 -0.5625,-1.125 -8.99e-4,-0.0625 0,-0.12498 0,-0.1875 0.06243,-0.52834 0.210863,-0.92198 0.5625,-1.125 l 6.65625,-3.8125 c 0.04694,-0.0192 0.106212,-0.0292 0.15625,-0.0312 z m -14.90625,8.75 c 0.217889,0.0207 0.460951,0.1022 0.71875,0.21875 0.480141,0.33705 0.78125,0.6919 0.78125,1.125 v 7.65625 c -0.04797,0.35266 -0.521607,0.56254 -2.96875,0.0312 -1.505844,-0.53125 -2.917406,-1.31577 -4.125,-2.3125 -0.01148,-0.009 -0.0198,-0.0217 -0.03125,-0.0312 -1.83804,-1.98585 -1.914409,-2.4947 -1.625,-2.71875 l 6.65625,-3.84375 c 0.183144,-0.10574 0.375861,-0.14574 0.59375,-0.125 z m 6.03125,0 c 0.207449,-0.0147 0.386681,0.0235 0.5625,0.125 l 6.65625,3.84375 c 0.289408,0.22405 0.213039,0.7329 -1.625,2.71875 -0.01145,0.01 -0.01977,0.0218 -0.03125,0.0312 -1.207595,0.99673 -2.619156,1.78125 -4.125,2.3125 -2.447143,0.53129 -2.920779,0.32141 -2.96875,-0.0312 v -7.65625 c 0,-0.40604 0.261153,-0.74427 0.6875,-1.0625 0.04591,-0.0343 0.106229,-0.0599 0.15625,-0.0937 0.244385,-0.10505 0.480051,-0.17276 0.6875,-0.1875 z"
           id="path5693"
           sodipodi:nodetypes="csssccccssccssccccsscccccccccsscccsccccscccssccccccccssccccccsscccssc" />
      </g>
      <g
         id="g14797"
         transform="matrix(2.0331669,0,0,2.0331669,-299.2828,-292.99968)">
        <path
           d="m 548.75437,362.70224 c 2.97133,8.81845 5.19293,17.86984 7.35227,26.91492 0.19043,0.79768 -11.13486,3.09786 -11.36537,2.31082 v 0 c -2.61845,-8.9405 -4.89446,-18.03473 -5.99408,-27.29967 -0.0849,-0.71558 9.77708,-2.60895 10.00718,-1.92607 z"
           id="path14799"
           style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 513.14901,345.37118 c 5.94982,9.8876 9.80897,21.0052 12.76243,32.1204 0.99321,3.73794 1.79442,7.52429 2.69164,11.28643 2.99494,13.76628 4.56579,27.78503 5.41234,41.83361 0.29278,4.85866 0.39746,9.72683 0.59618,14.59024 0.0448,1.0952 -15.45026,1.37385 -15.49893,0.27881 v 0 c -0.80889,-18.20289 -1.61402,-36.45843 -4.56447,-54.47041 -0.66331,-3.6066 -1.25268,-7.22759 -1.98995,-10.81979 -2.16406,-10.5438 -5.24931,-20.8747 -9.00529,-30.95644 -0.25537,-0.68543 9.21892,-4.48958 9.59605,-3.86285 z"
           id="path14801"
           style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 476.53746,325.44191 c 0.69363,1.23983 1.4604,2.44147 2.0809,3.71948 4.07465,8.39244 6.67427,17.54694 8.83022,26.58517 3.35182,14.05155 3.90768,19.20622 6.3524,34.0174 5.14207,33.77236 7.51833,67.87274 11.64175,101.76712 0.11613,0.95458 -13.17289,3.00113 -13.43985,2.0773 v 0 c -0.93426,-3.23319 -1.99591,-6.43227 -2.80282,-9.69958 -2.60431,-10.54514 -4.1931,-20.02226 -5.78519,-30.85856 -3.01015,-20.48821 -4.90272,-41.10802 -6.75748,-61.72554 -1.94581,-20.65139 -3.40389,-41.64792 -9.47539,-61.5999 -0.21181,-0.69604 9.00023,-4.91783 9.35546,-4.28289 z"
           id="path14803"
           style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 448.10874,345.14452 c 4.65378,21.13316 9.2662,42.27122 13.50417,63.49234 3.60759,18.43302 6.82519,36.94272 9.71688,55.50127 1.41193,9.06157 3.05923,20.11146 4.06499,29.35302 0.35904,3.29912 0.56623,6.61299 0.84936,9.91949 0.0824,0.96206 -13.3451,2.50236 -13.56575,1.56233 v 0 c -7.30647,-31.12877 -12.97395,-62.6103 -17.72032,-94.22691 -1.22195,-8.36546 -3.52348,-23.84481 -4.64618,-32.53578 -1.23726,-9.57788 -2.52562,-19.31229 -2.6385,-28.99045 -0.017,-1.4535 0.0978,-2.90555 0.14666,-4.35833 0.0245,-0.72739 10.13217,-0.42774 10.28869,0.28302 z"
           id="path14805"
           style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 417.59855,366.45533 c 4.06556,17.58477 7.98791,35.1974 11.65865,52.8695 3.90069,19.02356 7.37537,38.12199 10.39194,57.30409 0.15893,1.01066 -14.0605,3.15329 -14.30646,2.16021 v 0 c -4.69622,-18.96191 -8.87718,-38.05781 -11.71895,-57.39824 -1.76544,-11.65215 -2.56513,-16.46109 -4.0323,-27.83544 -1.01298,-7.85309 -2.08878,-15.84944 -2.25878,-23.78464 -0.0242,-1.12839 0.0719,-2.25614 0.10783,-3.38421 0.0229,-0.71793 9.99627,-0.63112 10.15807,0.0687 z"
           id="path14807"
           style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 391.83349,381.44455 c 4.84401,18.60257 8.61786,37.46258 12.12647,56.35537 0.69786,4.25338 1.39571,8.50677 2.09358,12.76015 0.17065,1.04013 -14.57385,2.99552 -14.77691,1.96122 v 0 c -0.83319,-4.24377 -1.66637,-8.48753 -2.49955,-12.7313 -3.23942,-18.97974 -6.65251,-38.09028 -7.06887,-57.38514 -0.0155,-0.71902 9.94405,-1.65628 10.12528,-0.9603 z"
           id="path14809"
           style="opacity:0.5;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 537.40093,351.76084 c 3.39245,9.77034 4.9736,20.07042 6.60391,30.2497 1.99728,13.95421 4.24672,27.90028 5.35819,41.96272 0.24008,3.03743 0.37971,6.08197 0.56955,9.12295 0.0585,0.9378 -13.21507,1.42968 -13.27924,0.49225 v 0 c -1.15178,-16.8275 -2.93129,-33.59762 -5.0663,-50.32851 -1.21088,-9.88632 -2.64244,-19.73485 -4.19329,-29.57303 -0.1122,-0.71181 9.77082,-2.60681 10.00718,-1.92608 z"
           id="path14811"
           style="opacity:0.5;fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 490.01339,342.95981 c -0.38872,-6.67831 -2.27562,-12.52066 10.04194,-4.58565 1.19914,0.7725 0.36126,2.8299 0.54189,4.24485 3.42626,23.418 9.81017,46.28246 15.86753,69.12312 3.16013,12.22965 6.85293,24.33969 9.45613,36.70996 0.61724,2.93313 1.05785,5.90067 1.58677,8.851 0.16475,0.91899 -12.74354,3.18616 -13.00358,2.28946 v 0 c -4.33953,-14.96361 -9.25104,-29.75217 -13.41745,-44.76739 -6.13865,-23.61975 -12.33584,-47.69876 -11.99121,-72.28341 0.14,-1.66531 -0.98334,-4.08848 0.42001,-4.99593 12.42737,-8.03577 10.90291,-1.02874 10.65603,5.4827 -0.0272,0.71779 -10.11633,0.64837 -10.15806,-0.0687 z"
           id="path14813"
           style="opacity:0.5;fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 448.36044,333.98383 c -0.53843,-2.34914 -0.82904,-4.74867 -0.97445,-7.15224 -0.0349,-0.57761 -0.0539,-1.15646 -0.0549,-1.73512 -6.1e-4,-0.35018 -0.15081,-1.33619 0.05,-1.04934 0.53487,0.76391 0.69005,1.73274 1.03508,2.59912 2.8552,-0.5245 5.66409,-1.48122 8.5656,-1.57349 0.44564,-0.0142 0.25012,0.85629 0.3542,1.28983 0.23911,0.99605 0.45117,1.99841 0.67514,2.99796 1.58691,7.08209 3.19461,14.15885 4.76692,21.24428 6.03084,25.79145 10.63144,51.8797 15.37998,77.928 4.02791,21.24795 7.79548,42.54551 11.42464,63.86496 0.93425,6.0298 2.46882,11.94676 3.54548,17.94853 0.39773,2.21715 0.79487,4.68666 0.72704,6.97123 -0.0249,0.83753 -0.19852,1.66401 -0.29778,2.49602 -0.50097,2.32071 -1.94343,3.8537 -3.65436,5.36624 -0.53694,0.47466 -7.92675,-6.52232 -7.36291,-6.96468 v 0 c 2.24072,-1.75797 0.70446,-0.42439 0.75641,0.85054 -0.22647,-2.20374 -1.02424,-4.42115 -1.64649,-6.52014 -1.79032,-6.03918 -3.60095,-12.07618 -4.91599,-18.24324 -4.8235,-21.1645 -9.34937,-42.39533 -13.62636,-63.67712 -5.02731,-26.01056 -9.76524,-52.0853 -13.65286,-78.29331 -0.99099,-7.50721 -1.34513,-9.58192 -2.01601,-16.71877 -0.18739,-1.99342 -0.58605,-6.89973 -0.54352,-9.21272 0.017,-0.92249 -0.5219,-2.25268 0.25103,-2.75652 2.61078,-1.7019 5.86948,-2.09757 8.80424,-3.14636 0.47974,0.9881 1.00864,1.95382 1.43924,2.96429 0.17968,0.42167 0.49853,2.5059 0.51713,2.63353 0.3342,2.29399 0.56574,4.60824 0.57872,6.92822 0.004,0.71916 -9.96462,1.66129 -10.12529,0.9603 z"
           id="path14815"
           style="opacity:0.5;fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 426.37242,350.15855 c 6.16452,12.24901 9.22657,25.80386 12.4104,39.0578 5.17918,21.74157 8.5206,43.85125 12.57193,65.81486 1.57012,8.94298 3.61871,17.80291 5.10721,26.76081 0.48505,2.91906 1.11106,7.75699 1.51032,10.73702 0.66385,7.23251 2.2935,14.84561 0.0968,21.9599 -2.64601,4.1543 -2.00739,4.84756 -10.03366,0.8837 -0.90374,-0.44631 -0.69037,-5.60067 -0.6967,-6.56834 -0.005,-0.73419 10.4381,-0.20848 10.37016,0.52258 v 0 c -0.0531,0.57144 -0.10745,1.14275 -0.15933,1.71431 -0.0365,0.4026 0.27862,1.08342 -0.10591,1.20814 -0.35701,0.11579 -0.11461,-0.94386 -0.48268,-1.01724 -8.13702,-1.62212 -6.82753,-2.76346 -8.84168,1.25392 -0.16764,-6.28681 -0.83448,-12.52829 -1.8008,-18.74496 -0.44115,-2.80081 -1.13685,-7.39363 -1.68566,-10.15973 -1.769,-8.91611 -4.47594,-17.61106 -6.61557,-26.43776 -5.16434,-21.73931 -8.82667,-43.78009 -12.79551,-65.76119 -2.33771,-12.64257 -4.78563,-25.29371 -8.45035,-37.63185 -0.20639,-0.69485 9.27519,-4.23944 9.60105,-3.59197 z"
           id="path14817"
           style="opacity:0.5;fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 399.39271,371.20626 c 5.94865,18.06875 10.16642,36.63805 14.64118,55.10858 2.77287,11.79765 5.74247,23.68919 5.99825,35.86152 -0.0687,4.24506 -0.0311,2.14119 -0.11248,6.3116 -0.015,0.76726 -10.87153,0.32026 -10.84352,-0.44664 v 0 c 0.13972,-3.82602 0.0996,-1.97373 0.13051,-5.55666 -0.35619,-3.55716 -1.22394,-6.7489 -2.23033,-10.19137 -2.2685,-7.75977 -4.62574,-15.49386 -6.78726,-23.28476 -4.92352,-18.36279 -9.27612,-36.99616 -11.24856,-55.93356 -0.0778,-0.74676 10.21743,-2.58186 10.45221,-1.86871 z"
           id="path14819"
           style="opacity:0.5;fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 162.36683,322.60846 c -2.02227,-0.71156 -1.79573,-3.27769 -1.75653,-5.05266 0.38125,-5.51086 0.27683,-4.42637 9.6972,-8.35439 0.52617,-0.2194 0.22095,1.12045 0.27553,1.68793 0.0822,0.85411 0.0894,1.71377 0.13413,2.57066 -0.12126,11.55861 -0.73033,23.10712 -1.02361,34.66378 -0.32424,18.64905 -0.42512,37.30013 -0.83857,55.94765 -0.48461,19.38913 -1.57048,38.75933 -3.25901,58.07976 -1.15842,10.58104 -1.6046,21.22513 -2.71379,31.8104 -0.21589,2.06038 -0.36032,4.13432 -0.74182,6.17056 -0.3662,1.95451 -0.99752,3.84992 -1.49628,5.77488 -0.72981,2.81669 -1.75501,4.53701 -2.51142,1.72735 v 0 c -0.35949,-1.33536 -0.89323,-2.63564 -1.07849,-4.00608 -0.32502,-2.40421 -0.19038,-9.96749 -0.14063,-12.076 0.18997,-8.05095 0.77808,-16.08411 0.98943,-24.13434 0.77804,-19.17382 2.06499,-38.32603 2.50932,-57.5138 0.40267,-18.58664 0.4797,-37.17397 0.57528,-55.76418 0.18232,-11.40114 0.57464,-22.80193 0.49829,-34.20509 -0.038,-0.82519 -0.0629,-1.65109 -0.11393,-2.47558 -0.03,-0.48525 -0.47642,-1.1125 -0.12921,-1.45282 12.98569,-12.72866 8.91806,-9.58818 8.31222,-4.55723 -0.35224,2.7256 -0.85858,5.4804 -2.36157,7.83366 -3.01168,4.71546 0.45142,5.18266 -4.82654,3.32554 z"
           id="path14821"
           style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 118.6318,351.46048 c -0.11617,-0.75883 0.0459,-1.2809 0.27445,-2.02 0.71548,-2.31392 0.60597,-3.38281 2.07634,-1.45819 v 0 c 0.40943,0.53595 0.46833,0.85822 0.45029,1.52848 -0.0877,3.2567 -2.30814,5.17007 -2.80108,1.94971 z"
           id="path14823"
           style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 122.7993,388.80265 c -1.57671,0.40734 -2.65519,-0.44881 -3.59991,-1.61767 -1.96285,-3.24477 -1.28251,-7.23501 -0.74194,-10.77949 1.99347,-9.4469 7.43556,-17.17484 13.2386,-24.66944 4.0011,-4.80279 8.40027,-9.3175 13.29435,-13.22187 6.65785,-5.31146 11.67163,-9.76854 18.76809,-13.56904 1.72736,-0.92507 3.5473,-1.66576 5.32096,-2.49864 7.63791,-2.90504 16.56034,-4.80784 24.13369,-0.52881 1.25179,0.70728 2.29213,1.7364 3.43818,2.60461 0.9282,1.11595 1.99969,2.12686 2.7846,3.34785 3.49789,5.44127 4.23616,12.3827 3.70762,18.68314 -0.15404,1.8362 -0.54339,3.64504 -0.81509,5.46755 -2.33944,11.75151 -7.68328,22.57376 -13.1398,33.14128 -5.31689,9.99741 -10.90877,19.84098 -16.00918,29.95271 -2.3101,4.4177 -4.24493,9.0385 -6.65253,13.40642 -0.85878,1.558 -1.81868,3.05808 -2.72801,4.5871 -1.91709,3.22357 -3.40052,5.87266 -3.30577,2.12332 v 0 c 0.0244,-0.966 -0.0762,-1.94332 0.0732,-2.898 0.64418,-4.11541 2.58241,-7.98172 4.04946,-11.82575 4.58164,-10.08493 9.8976,-19.78691 15.22185,-29.49524 5.41928,-10.48713 10.76232,-21.16048 13.26148,-32.78594 1.1909,-8.0029 2.18905,-16.06834 -2.52481,-23.25445 -0.7466,-1.13816 -1.71872,-2.11122 -2.57807,-3.16683 -2.73251,-2.02321 -3.64815,-3.08816 -7.02306,-4.01702 -6.54487,-1.80131 -13.27194,0.10671 -19.36402,2.48686 -1.76969,0.8785 -3.57966,1.68014 -5.30907,2.6355 -1.76604,0.97559 -3.16565,2.8993 -5.16738,3.15189 -1.4299,0.18044 4.37521,-3.74292 3.20326,-2.90405 -5.24339,3.7532 -9.59716,8.65647 -13.94128,13.36136 -5.9491,7.45964 -11.21423,14.59295 -13.3135,24.09428 -0.54887,3.47624 -0.91185,6.97025 0.0511,10.41436 0.12906,0.34207 0.33751,0.94599 0.53086,1.27849 0.37297,0.64142 0.83694,1.04867 0.61557,1.87274 -1.77531,6.60919 1.14648,2.91095 -5.47945,4.62278 z"
           id="path14825"
           style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 223.58669,427.13241 c 0.48936,-1.70998 -0.28234,-3.21569 -1.21995,-4.61334 -2.46228,-3.04162 -5.92684,-5.34111 -9.73538,-6.34232 -0.96033,-0.25246 -1.9585,-0.32891 -2.93775,-0.49336 -4.27024,-0.33264 -8.42881,0.67462 -12.07088,2.94368 -0.89784,0.55936 -3.40781,2.50813 -2.55807,1.8781 1.90583,-1.41306 3.81757,-2.81813 5.72635,-4.2272 -2.14068,2.49849 -4.2001,5.64268 -3.25698,9.10997 0.51279,1.88523 1.25335,2.41527 2.49316,3.87541 3.53172,3.51456 8.29218,5.51761 11.65272,9.23329 0.72118,0.79739 1.29973,1.71303 1.94959,2.56954 0.48003,1.00388 1.07931,1.959 1.44008,3.01164 1.71849,5.01404 0.94311,10.62596 -0.60035,15.56336 -0.46464,1.48638 -1.08387,2.91995 -1.62581,4.37992 -4.41151,10.23025 -11.66167,18.74587 -19.11266,26.87613 -1.59666,1.61455 -3.19332,3.2291 -4.78997,4.84365 -4.00675,4.05165 -8.43116,7.69159 -5.13521,3.04331 v 0 c 0.80947,-1.14161 1.61895,-2.28321 2.42843,-3.42482 5.85999,-7.86593 12.00277,-15.64584 16.12606,-24.61362 3.09324,-7.9054 4.91581,-13.82076 1.50129,-22.01078 -1.43122,-2.47599 -1.49365,-2.87777 -3.39903,-5.0144 -2.60347,-2.91946 -5.90404,-5.10273 -8.55892,-7.96899 -1.25363,-1.67498 -2.05246,-2.42042 -2.65344,-4.45949 -1.07452,-3.64576 0.45868,-7.01015 2.66236,-9.85358 5.69971,-4.77246 11.2509,-10.98873 18.92672,-12.51843 2.5639,-0.51096 3.88627,-0.33625 6.47785,-0.27531 5.59189,1.12698 9.95263,2.62446 13.4991,7.34785 1.00859,2.14353 1.71538,4.04962 0.47927,6.26965 -4.2343,7.60477 -10.10339,13.23833 -7.70858,4.87014 z"
           id="path14827"
           style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 246.53947,415.25227 c 0.047,0.17489 0.1247,0.34432 0.14107,0.52468 0.0828,0.91279 -8.2e-4,1.83381 0.0432,2.7493 0.13836,2.87452 0.501,5.73764 0.80314,8.59768 0.48545,5.66365 1.77681,11.23341 2.35576,16.88349 0.14924,1.45648 0.17816,2.9228 0.26724,4.38418 0.34823,5.71268 -1.79949,8.41771 -4.82468,3.55929 v 0 c -0.65801,-1.05675 -1.43293,-2.04913 -1.97403,-3.17026 -2.33084,-4.82933 -3.0765,-10.64048 -3.97734,-15.8664 -0.32451,-2.92861 -0.60535,-5.83574 -0.69599,-8.78201 -0.0166,-0.53927 -0.0596,-2.23935 0.0383,-2.90823 0.0416,-0.284 0.15639,-0.55233 0.2346,-0.8285 2.38421,-8.42009 5.31652,-13.59424 7.58869,-5.14322 z"
           id="path14829"
           style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 286.48967,430.92042 c 1.25617,-2.18933 2.97744,-4.15385 4.34103,-6.29493 0.0461,-0.1939 0.37081,-1.05914 0.0551,-1.33665 -1.09606,-0.96343 -6.41362,1.34274 -7.09966,1.62125 -1.12118,0.64295 -4.56868,2.47726 -3.36356,1.92884 1.90118,-0.86518 3.41177,-3.72036 5.45838,-2.88215 1.85462,0.75959 -2.67147,2.29714 -3.8735,3.53125 -2.85752,2.93377 -4.88453,5.61009 -6.86431,8.98398 -0.96291,1.64097 -1.71378,3.35973 -2.57066,5.03958 -1.95374,4.67571 -3.51744,9.54203 -3.25591,14.59696 0.11968,2.31323 0.55975,4.85608 2.36856,6.88708 0.69154,0.7765 1.78072,1.29042 2.67109,1.93564 1.23663,0.32259 2.43362,0.80382 3.70991,0.96779 5.18658,0.66629 10.73554,-0.56906 15.54391,-1.62989 1.78714,-0.39427 3.50331,-0.94591 5.29872,-1.32057 1.29853,-0.27099 2.64618,-0.40899 3.96927,-0.61348 l -4.27493,3.42661 c -6.31404,2.50344 -11.82752,4.61904 -18.8468,5.93841 -3.43678,0.64599 -7.42681,1.21875 -11.08582,0.66163 -1.45298,-0.22122 -2.783,-0.84485 -4.17449,-1.26727 -0.97631,-0.77135 -2.16629,-1.41205 -2.92892,-2.31406 -1.87751,-2.22066 -2.3608,-4.89188 -2.47901,-7.39923 -0.24603,-5.21859 1.30309,-10.26826 3.43071,-15.06903 2.20143,-4.28999 2.87723,-6.03593 5.78894,-10.02654 5.69864,-7.81018 13.9066,-13.28434 23.71925,-18.08944 1.04975,-0.37079 2.05144,-0.82625 3.14926,-1.11237 1.763,-0.45947 4.26833,-0.77548 5.65628,0.61849 0.28391,0.28514 0.51516,0.62971 0.56649,0.9801 0.0541,0.36966 -0.1767,0.71854 -0.26504,1.07781 -1.46467,2.72161 -3.8407,5.08757 -6.19974,7.34821 z"
           id="path14831"
           style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 332.59312,341.08217 c -0.19781,1.07116 -0.3956,2.14234 -0.59341,3.2135 -0.2743,1.6665 -0.52577,3.33692 -0.82291,4.99951 -1.69133,9.46333 -1.23725,5.53378 -2.75492,16.11049 -1.41895,9.88868 -1.66598,12.94642 -2.79327,23.1695 -1.45266,13.11045 -2.72319,26.24335 -3.58206,39.40731 -0.39733,6.0899 -0.82878,13.67108 -0.76888,19.88273 0.0206,2.13498 0.20869,4.26506 0.31304,6.39758 -0.53292,-1.31825 0.4022,5.28033 2.05908,4.77314 0.71842,-0.21993 2.08472,-2.04297 1.38017,-1.78201 -2.20096,0.81524 -4.24634,4.97565 -6.09373,3.5279 -1.72362,-1.35074 2.36958,-3.68383 3.50663,-5.55532 1.42527,-2.34587 2.78628,-4.73018 4.17941,-7.09526 4.42035,-7.22924 8.3306,-14.80974 13.20764,-21.75688 1.1239,-1.60095 2.18158,-3.29443 3.62466,-4.61494 10.69534,-9.78694 6.77347,-9.61022 13.98532,-8.76306 0.60546,0.97223 1.43353,1.83723 1.81637,2.91671 1.04679,2.95156 1.0805,7.85481 1.1116,10.76462 0.0724,6.76874 -0.2674,13.55981 -0.48125,20.32378 -0.10124,4.43958 0.0983,8.86545 0.42608,13.2891 0.0702,0.9471 0.33156,1.90158 0.19975,2.84209 -0.16831,1.201 -0.72315,2.31516 -1.08474,3.47274 l -1.57988,1.20473 c -0.99096,-0.15459 -2.08874,0.01 -2.97287,-0.46376 -0.73711,-0.39477 -1.15232,-1.2343 -1.56043,-1.96411 -2.07166,-3.70464 -1.93641,-8.18478 -2.2703,-12.25824 -0.0619,-6.67313 0.16756,-13.33968 0.11749,-20.01143 -0.021,-2.79429 -0.01,-7.40346 -0.79445,-10.30472 -0.20457,-0.75656 -0.73715,-1.38328 -1.10573,-2.07492 -0.62818,0.0101 -2.26006,0.53394 -1.88454,0.0303 1.35774,-1.8211 2.92398,-4.77094 5.17104,-4.43838 1.98909,0.29438 -2.67868,3.00794 -3.86461,4.63173 -4.97588,6.81305 -8.83631,14.38723 -13.11298,21.63145 -1.29479,2.31469 -2.57057,4.64011 -3.88434,6.94408 -1.04735,1.83673 -1.78529,3.90497 -3.1987,5.47747 -3.46896,3.8594 -7.31549,7.38761 -11.32541,10.68141 -0.66696,0.54785 -1.66615,0.89821 -2.49987,0.67487 -1.96177,-0.52552 -1.90541,-5.30211 -1.98637,-5.87595 -0.24464,-22.24033 2.56747,-44.4168 4.9278,-66.49145 2.22926,-15.92725 4.59029,-31.83054 7.1695,-47.7034 z"
           id="path14833"
           style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="m 267.91304,417.50075 c -3.632,12.97687 -9.42209,25.24636 -14.62711,37.64348 -9.94119,22.89248 -19.87997,45.7855 -29.98704,68.60552 -1.65698,3.60618 -6.51595,14.39186 -8.56363,18.05703 -1.673,2.9945 -3.63922,5.81549 -5.45884,8.72324 l -1.29291,0.82208 c 0.23811,-1.90514 0.20512,-3.8642 0.71434,-5.71541 0.87905,-3.19568 5.89304,-14.53457 6.97272,-17.04681 9.91566,-22.80034 19.89206,-45.57457 29.7101,-68.41709 5.32274,-12.35757 10.86008,-24.6883 14.80444,-37.57352 z"
           id="path14835"
           style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <g
           transform="matrix(1.1078198,0,0,1.1078198,-52.570778,-52.171752)"
           id="g14837">
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14839"
             d="m 584.25859,348.05198 c 0.0684,-0.53256 0.13245,-1.0657 0.20506,-1.59771 0.30016,-2.19928 0.91923,-4.25328 1.51801,-6.38773 0.5738,-2.04543 0.46387,-1.17215 0.56262,-2.44163 2.72255,-1.54857 5.09783,-4.02398 8.16765,-4.64572 1.09536,-0.22185 -0.70005,2.12325 -1.0119,3.19645 -0.58864,2.02566 -1.18105,4.05141 -1.68915,6.09875 -2.76676,11.14846 -4.55943,22.45868 -6.40334,33.78611 -2.22421,13.39392 -3.81576,26.87789 -5.65283,40.32764 -0.47067,3.44584 -0.79171,6.91483 -1.39763,10.33949 -0.49401,2.79209 -1.26587,5.52783 -1.89879,8.29175 l -4.77487,3.23246 c -0.0394,-2.30591 -0.21163,-4.61337 -0.11833,-6.91773 0.13453,-3.32247 0.50916,-6.63099 0.80102,-9.94335 1.1758,-13.34418 2.85273,-26.62433 4.88643,-39.8657 0.75278,-4.4814 1.4382,-8.97464 2.25835,-13.44421 1.24125,-6.76447 2.80449,-13.80747 4.30556,-20.54543 0.43859,-1.96876 0.87955,-3.93707 1.33902,-5.90105 0.2504,-1.07031 0.0103,-2.42719 0.79046,-3.20148 2.60251,-2.58275 5.94697,-4.29048 8.92045,-6.43572 -1.48371,4.23829 -3.02974,8.46461 -5.20384,12.41607 z" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14841"
             d="m 641.90759,318.27911 c -16.22568,-2.51826 -32.67989,-0.3482 -48.81401,1.73541 -27.27956,4.65343 -54.01698,12.43121 -79.69123,22.74155 -4.48441,1.80086 -8.8907,3.79052 -13.33605,5.68577 -11.31537,4.90563 -22.15048,10.78385 -33.03756,16.5475 l 2.09927,-2.24944 c 2.33458,-1.62355 4.61075,-3.33449 7.00373,-4.87065 9.66339,-6.20332 20.01806,-11.25507 30.38982,-16.13518 4.55561,-1.98929 9.06347,-4.09167 13.66681,-5.96786 26.03089,-10.60941 53.20368,-18.42419 80.82977,-23.55227 4.72317,-0.68904 9.4311,-1.49208 14.1695,-2.06713 7.4108,-0.89939 14.13062,-1.37637 21.53923,-1.43382 3.4725,-0.0269 8.1157,0.14143 11.69204,0.6658 0.91041,0.13349 1.79394,0.41044 2.69091,0.61565 z" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14843"
             d="m 615.12503,399.95156 c 0.48532,-2.5157 -0.19899,-6.30781 -3.28967,-6.8709 -0.73441,-0.1338 -1.49103,0.0766 -2.23654,0.11494 -0.50021,0.20274 -6.65267,2.46589 -6.08951,3.39068 1.36067,2.23444 9.5198,-11.3033 -0.45581,2.2815 -3.53887,4.81923 -3.67751,5.90647 -6.13049,11.36319 -0.57087,2.09083 -1.33874,4.13762 -1.7126,6.27248 -1.04919,5.9914 -0.99291,15.60693 5.59863,18.7479 1.30986,0.62417 2.84772,0.55839 4.27158,0.83758 5.07669,-1.4077 6.38814,-1.21226 10.69786,-5.02817 0.41627,-0.36857 -1.90563,0.66751 -1.65938,0.16902 1.28272,-2.59682 3.56388,-4.58328 5.06377,-7.06101 3.58916,-5.92908 4.21889,-8.72248 6.46638,-15.10712 0.50351,-2.21574 1.00701,-4.4315 1.51052,-6.64724 l 3.90034,-2.68778 c 0.37157,1.69129 0.74314,3.38257 1.11472,5.07385 -0.5196,2.31381 -0.77293,4.70399 -1.55881,6.94141 -0.932,2.6534 -2.17874,5.19989 -3.56518,7.64671 -4.97207,8.77489 -8.82549,11.47704 -17.74078,18.60194 -1.82091,1.45523 -3.83065,2.72534 -5.98327,3.61957 -1.74198,0.72365 -3.6916,0.77753 -5.53741,1.1663 -1.5684,-0.37747 -3.27941,-0.37781 -4.70522,-1.13243 -6.88029,-3.64145 -6.62568,-13.78244 -5.44878,-20.17609 0.40426,-2.19615 1.1733,-4.30923 1.75995,-6.46385 0.88851,-2.03915 1.64155,-4.14286 2.66554,-6.11746 4.56643,-8.80574 9.60182,-12.641 17.70074,-19.02202 1.09079,-0.85941 2.28714,-1.59755 3.54022,-2.19607 0.98435,-0.47017 2.08048,-0.657 3.12073,-0.9855 0.85333,0.0665 1.73794,-0.0388 2.56,0.19959 3.40142,0.98635 4.41041,4.9694 3.79974,8.01708 z" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14845"
             d="m 659.89055,394.94668 c 2.14582,-2.88694 3.60982,-6.65883 2.4833,-10.26983 -0.25237,-0.809 -0.74091,-1.52437 -1.11136,-2.28656 -2.25173,-2.34297 -3.98306,-2.97111 -7.22123,-1.70393 -1.22392,0.47894 -3.90153,3.17199 -3.42955,1.94536 0.53329,-1.38596 3.74202,-4.02427 3.65896,-2.54158 -0.11028,1.96837 -2.51452,3.03708 -3.77179,4.55561 -1.0398,1.8508 -2.25419,3.61382 -3.11939,5.55238 -3.10709,6.96163 -4.90158,16.357 -0.46719,23.20865 0.88674,1.3701 2.24583,2.36858 3.36874,3.55287 1.48033,0.58591 2.86351,1.54269 4.44097,1.75771 1.74498,0.23785 3.56721,0.0318 5.26544,-0.43465 1.94231,-0.53348 3.57582,-1.89979 5.49219,-2.51998 0.86613,-0.2803 -2.73733,2.2786 -2.29236,1.48442 6.30055,-7.79838 3.60156,-3.65459 8.13977,-12.40343 2.4333,-8.29622 1.793,-4.22035 2.15769,-12.18804 l 5.00841,-3.56781 c 2.18139,6.71322 1.78979,3.11806 0.67998,10.82795 -1.02809,2.18213 -1.84445,4.47721 -3.08427,6.54639 -4.40225,7.34707 -9.98234,11.32257 -17.43889,16.39959 -3.0939,2.10656 -7.7667,3.25005 -11.50503,2.56109 -1.70007,-0.31332 -3.17156,-1.37652 -4.75735,-2.06478 -1.16678,-1.30248 -2.59402,-2.41198 -3.50034,-3.90746 -4.37972,-7.22679 -2.67648,-16.93908 0.44271,-24.24193 0.84289,-1.97342 2.01165,-3.79112 3.01747,-5.6867 5.82948,-7.48693 4.08819,-5.95881 14.95182,-13.94281 2.69402,-1.97991 6.79434,-3.10111 9.82418,-1.13081 0.77963,0.507 1.28358,1.34608 1.92538,2.01911 0.38814,0.86887 0.91048,1.68949 1.16444,2.60659 1.16143,4.19412 -0.28132,8.58284 -3.18563,11.65617 z" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14847"
             d="m 770.09665,368.83338 c 0.96838,-2.03221 2.92118,-4.2826 2.69572,-6.69104 -0.0318,-0.33953 -0.20666,-0.64997 -0.30997,-0.97495 -0.28083,-0.26928 -0.49575,-0.63134 -0.84248,-0.80782 -2.89026,-1.47111 -7.0023,-0.025 -9.52964,1.44529 -1.07869,0.62754 -2.0394,1.43889 -3.05911,2.15833 2.20738,-1.51035 3.98276,-4.09813 6.62212,-4.53105 1.49147,-0.24464 -1.74219,2.48472 -2.41064,3.84026 -2.17156,4.40368 -2.92853,9.43985 -2.17439,14.29519 0.24888,1.6023 0.84255,3.13166 1.26383,4.6975 1.7313,3.81606 4.20972,7.88857 8.84708,8.49884 1.31794,0.17344 2.70514,-0.007 3.96435,-0.43274 1.42056,-0.48051 5.12092,-3.11093 3.90737,-2.2299 -1.93053,1.40156 -4.0443,2.53158 -6.06645,3.79738 0.95913,-1.73592 2.10867,-3.37954 2.87741,-5.20775 2.22782,-5.29819 3.03827,-11.45314 1.77425,-17.10162 -0.31847,-1.42314 -1.03682,-2.72633 -1.53082,-4.09845 -0.41183,-1.14391 -0.79096,-2.29934 -1.18642,-3.44902 l 3.14339,-2.59508 c 1.66104,0.18994 3.47509,-0.15192 4.98314,0.56984 1.31029,0.62713 2.23147,1.95007 2.93605,3.22039 2.7338,4.92886 1.70205,11.43038 -0.18102,16.4179 -0.69585,1.84299 -1.79142,3.50915 -2.68712,5.26372 -0.80262,0.70466 -11.61783,12.13145 -17.40024,13.72838 -4.40133,1.21551 -8.49423,-1.15806 -10.99177,-4.65708 -0.92232,-1.29214 -1.45098,-2.82416 -2.17646,-4.23624 -0.40512,-1.63047 -0.97195,-3.22908 -1.21536,-4.89139 -0.72939,-4.98121 -0.0357,-10.0756 2.05833,-14.65355 0.62214,-1.36014 1.19345,-2.82428 2.25194,-3.881 3.83771,-3.8313 8.20031,-7.09807 12.30046,-10.6471 1.04717,-0.69268 2.03636,-1.4822 3.1415,-2.07804 2.80078,-1.51004 7.10867,-2.79828 10.11826,-1.00525 0.42857,0.25533 0.72442,0.68606 1.08663,1.02909 0.11248,0.41443 0.30552,0.81507 0.33744,1.2433 0.20639,2.76927 -2.03096,5.25721 -3.28665,7.50565 z" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14849"
             d="m 786.70308,360.5076 c 6.75696,0.9164 12.48947,-1.4796 18.44336,-4.37587 3.22626,-1.8594 4.82872,-2.6702 7.82731,-4.83141 1.08131,-0.77935 4.1977,-3.28685 3.13705,-2.47961 -12.20033,9.28542 -7.1788,6.12049 -4.3653,2.45282 0.18342,-0.31587 0.40062,-0.6144 0.55027,-0.9476 0.11156,-0.24839 0.32167,-0.92805 0.0747,-0.81348 -0.0769,0.0356 -0.0835,0.30238 -0.014,0.25383 10.0325,-7.01426 9.87167,-11.06441 9.67669,-5.85224 0.86081,4.54745 3.36465,8.60352 5.72679,12.50942 3.12124,5.16114 3.66773,5.81575 7.17854,10.99921 4.13446,6.33817 9.01772,12.18821 12.52837,18.92767 1.06387,2.04232 2.36336,4.05486 2.79865,6.31614 0.44895,2.33227 -0.14121,4.74808 -0.21181,7.12211 l -1.12659,0.88949 c -2.00475,-0.72904 -4.2318,-1.0152 -6.01425,-2.18711 -1.86792,-1.22809 -3.17082,-3.15602 -4.65508,-4.82763 -5.02476,-5.659 -9.16109,-11.98369 -13.62057,-18.0762 -5.03714,-7.46253 -11.05239,-14.96595 -12.9735,-23.95747 -0.001,-0.48115 -0.34745,-1.1065 -0.004,-1.44346 3.23826,-3.17702 6.82996,-5.9802 10.4103,-8.76604 0.39376,-0.30639 0.7282,0.86051 0.43261,1.68972 -0.1325,0.37169 -0.36336,0.70058 -0.54504,1.05087 -3.87224,5.31027 -9.6636,8.8882 -14.70693,12.94894 -3.40181,2.73902 -7.05348,5.12074 -10.9428,7.11525 -5.83821,2.77067 -12.23114,5.52321 -18.83063,4.16823 z" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14851"
             d="m 867.89493,333.03198 c 2.85955,-2.459 10.65068,-7.32793 -2.93974,2.30971 -0.56918,0.40364 1.01469,-0.96069 1.47746,-1.48292 1.19277,-1.34601 0.99679,-1.19157 1.60338,-2.69026 -0.0667,-0.31916 0.035,-0.73171 -0.20027,-0.95749 -0.76377,-0.73302 -3.21324,-0.12659 -3.63535,-0.0132 -5.73389,1.53994 -10.43144,5.11792 -15.25542,8.39955 0.98386,-0.73716 3.80595,-3.09552 2.95159,-2.2115 -21.53061,22.27799 6.19788,-8.54464 -16.33194,16.11946 -8.53523,9.34381 -16.2399,19.33326 -23.9395,29.36035 -10.43978,13.94062 -20.64149,28.05692 -30.98852,42.06582 -3.8937,4.9196 -1.94397,2.52722 -5.84267,7.18247 l -5.49861,3.90803 c -1.35219,-1.72705 -0.92963,-0.59392 0.57785,-3.58176 10.18271,-14.35263 21.09862,-28.17702 31.44887,-42.40835 7.68481,-10.01057 15.36583,-20.00123 23.83717,-29.37143 10.07974,-11.14925 21.12638,-21.13109 33.35044,-29.94905 4.72477,-3.14658 9.6114,-6.98637 15.37378,-8.04974 1.20298,-0.22198 3.18594,-0.38643 4.02776,0.93265 0.25932,0.40637 0.0866,0.96021 0.12998,1.44032 -0.95495,1.98448 -2.12129,3.5762 -3.83708,5.00854 -4.06817,3.39609 -8.31502,7.2448 -12.94127,10.11322 z" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14853"
             d="m 739.72433,280.69164 c 1.12332,-3.97476 0.40919,-5.02096 8.65027,-6.33044 1.19788,-0.19034 -0.60303,2.34973 -0.92096,3.52023 -0.53323,1.96328 -1.0883,3.92058 -1.63245,5.88087 -0.76089,2.80614 -1.52177,5.61227 -2.28266,8.41841 -7.21452,26.55128 -13.31686,53.37787 -19.5944,80.15921 -1.77904,8.47854 -4.06699,16.84156 -5.43965,25.40227 -0.49021,3.05721 -0.76937,5.80044 -0.44817,8.85334 0.42452,0.50293 0.60517,1.06664 1.39358,0.87065 0.73536,-0.1828 2.78118,-1.46049 3.19523,-1.74912 0.92117,-0.64215 3.57935,-2.71342 2.68322,-2.03678 -2.28936,1.72863 -4.57528,3.46183 -6.86292,5.19274 6.8808,-6.76423 12.85095,-14.4628 17.117,-23.15463 2.96136,-6.03362 3.39808,-8.42714 5.31895,-14.81177 0.62632,-4.04121 2.76264,-16.40278 -4.34402,-17.01601 -2.98249,-0.25737 -5.56258,1.84884 -7.88302,3.20622 1.71383,-1.31153 3.13047,-4.71756 5.14151,-3.93457 1.85717,0.72309 -2.8276,2.81558 -4.12084,4.33197 -1.26253,1.48036 -2.41142,3.05625 -3.53486,4.64474 -2.37776,3.36204 -3.57326,5.68616 -5.82452,9.11751 -1.0642,1.62206 -2.19388,3.20023 -3.29082,4.80034 l -4.60649,3.29314 c -0.11134,-0.755 -0.48076,-1.51606 -0.33401,-2.26497 0.44263,-2.259 3.0314,-6.39385 4.14322,-8.04359 5.65697,-8.39392 13.01694,-14.25937 21.37655,-20.18907 2.64771,-1.40179 5.00664,-3.31978 8.26036,-2.74253 7.17418,1.27279 5.13933,13.38705 4.51013,17.91678 -0.58973,2.41193 -0.99136,4.87778 -1.76915,7.23579 -3.80513,11.5359 -11.03857,21.64575 -19.41404,30.28497 -4.54856,3.74794 -9.05952,7.54199 -13.64566,11.24385 -1.3993,1.12949 -4.32165,3.52386 -6.37497,3.41877 -1.42131,-0.0728 -1.25089,-0.56298 -1.69273,-1.67808 -0.20613,-3.35616 0.47738,-6.35582 1.21552,-9.64982 1.94664,-8.68699 4.23395,-17.30014 6.21007,-25.98025 6.35182,-26.86244 12.67013,-53.74466 19.87816,-80.39248 1.74439,-6.1108 2.50592,-8.64672 4.02369,-14.3653 0.30711,-1.15713 0.0941,-2.58136 0.88387,-3.48109 2.60193,-2.96427 5.88657,-5.25633 8.95779,-7.73112 0.61006,-0.49159 -2.05917,3.02474 -1.05777,2.09896 z" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14855"
             d="m 718.44335,281.47442 c -0.0582,2.5321 -0.44725,3.1667 -0.93049,6.13823 -0.54975,3.38047 -1.37653,8.62608 -2.0579,11.70404 -4.80066,21.68583 1.00452,-5.07202 -4.31562,19.60105 -5.5386,25.55898 -10.1689,51.30202 -14.83915,77.03025 -1.46526,7.35258 -2.20073,11.89276 -4.24053,19.00508 -0.7577,2.64189 -1.71541,5.22227 -2.57312,7.8334 l -2.83977,2.06937 c 0.65991,-8.13498 1.68385,-16.21708 3.26439,-24.2336 4.51881,-25.68802 9.34254,-51.32103 14.5946,-76.86995 2.78182,-12.76781 5.70521,-25.50654 8.49592,-38.26923 z"
             sodipodi:nodetypes="cssccscccccc" />
          <path
             style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path14857"
             d="m 712.85338,294.35623 c 0.48347,-3.20486 -0.22543,-9.01012 1.16781,-11.97652 2.43111,-4.75996 3.61261,-8.26151 9.28444,-8.72829 0.77175,-0.0635 2.90123,1.16283 3.70925,1.46729 1.42016,0.53508 1.43094,1.68024 1.89776,2.96128 0.0387,1.11297 0.18212,2.22723 0.11608,3.33891 -0.40108,6.75219 -2.54805,13.46539 -4.76394,19.79165 -2.96203,8.45651 -4.7529,12.21613 -8.36968,20.67187 -7.75192,16.90611 -16.57384,33.35515 -26.40945,49.14443 -2.41464,3.87627 -4.97612,7.6591 -7.46418,11.48865 l -4.05663,2.85743 c 10.04386,-18.95982 20.80531,-37.57933 29.29674,-57.31986 3.86572,-9.33624 8.87517,-20.14574 11.9668,-29.79284 1.46067,-4.55787 2.88643,-7.62285 3.803,-11.29117 1.55373,-4.26913 1.36918,-5.99822 -1.72676,-6.22033 z"
             sodipodi:nodetypes="ccsscsscscccsccc" />
        </g>
      </g>
      <path
         style="opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14861"
         d="m 816.4262,444.43445 c 6.0414,17.92941 10.55832,36.33237 14.94859,54.72253 0.3871,1.6218 -22.63907,6.29847 -23.10772,4.69829 v 0 c -5.32369,-18.17752 -9.9512,-36.66761 -12.18698,-55.50478 -0.17259,-1.45491 19.87842,-5.30444 20.34611,-3.91604 z" />
      <path
         style="opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14863"
         d="m 744.0346,409.19754 c 12.09714,20.10313 19.94349,42.70707 25.94828,65.30612 2.01938,7.59986 3.6484,15.29813 5.47254,22.94719 6.08916,27.98915 9.28306,56.4916 11.00424,85.05471 0.59519,9.87846 0.80807,19.77627 1.21207,29.66439 0.0906,2.22672 -31.41293,2.79328 -31.51187,0.56688 v 0 c -1.64454,-37.00952 -3.28161,-74.12607 -9.28032,-110.74744 -1.34856,-7.33281 -2.54692,-14.69489 -4.04587,-21.99844 -4.39996,-21.4373 -10.67269,-42.44174 -18.30928,-62.93961 -0.51928,-1.39358 18.74354,-9.12806 19.51021,-7.8538 z" />
      <path
         style="opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14865"
         d="m 669.59734,368.67801 c 1.41026,2.52077 2.96923,4.96391 4.2308,7.5623 8.28445,17.06324 13.56992,35.67586 17.95333,54.05209 6.81482,28.56914 7.94497,39.04947 12.91549,69.16306 10.45468,68.66483 15.28601,137.99657 23.66962,206.90956 0.23612,1.94084 -26.78269,6.10184 -27.32547,4.22349 v 0 c -1.89951,-6.57365 -4.05801,-13.07789 -5.69858,-19.72092 -5.29502,-21.44 -8.52527,-40.70855 -11.76227,-62.74057 -6.12014,-41.65596 -9.96805,-83.57948 -13.73908,-125.49831 -3.95616,-41.98773 -6.92068,-84.67719 -19.26506,-125.24288 -0.43064,-1.41517 18.29897,-9.99877 19.02122,-8.70782 z" />
      <path
         style="opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14867"
         d="m 611.79701,408.73669 c 9.46192,42.96724 18.83972,85.94443 27.45622,129.09052 7.33484,37.4774 13.87676,75.11071 19.75603,112.84333 2.87071,18.42374 6.21994,40.89 8.26482,59.67965 0.72998,6.70757 1.15124,13.44531 1.72689,20.16796 0.16753,1.95602 -27.13281,5.08771 -27.58143,3.17644 v 0 C 626.56427,670.40455 615.04133,606.3974 605.39117,542.11556 c -2.48443,-17.00836 -7.16383,-48.48046 -9.44645,-66.15066 -2.51558,-19.47343 -5.13502,-39.2651 -5.36452,-58.94244 -0.0347,-2.95519 0.19885,-5.90746 0.29819,-8.8612 0.0497,-1.47891 20.60037,-0.86966 20.91862,0.57543 z" />
      <path
         style="opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14869"
         d="m 549.76471,452.06512 c 8.26596,35.75277 16.24075,71.56218 23.70397,107.49251 7.93076,38.67807 14.99535,77.50836 21.12855,116.50873 0.32314,2.05489 -28.58734,6.41123 -29.08742,4.39213 v 0 c -9.54819,-38.55274 -18.04879,-77.37791 -23.82658,-116.70022 -3.58943,-23.69075 -5.21533,-33.46814 -8.19834,-56.59409 -2.05955,-15.96663 -4.24684,-32.22454 -4.59248,-48.35813 -0.0492,-2.29421 0.14621,-4.58711 0.21924,-6.88067 0.0465,-1.45967 20.32408,-1.28318 20.65306,0.13969 z" />
      <path
         style="opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14871"
         d="m 497.38004,482.54069 c 9.84868,37.82215 17.52155,76.16769 24.65514,114.57988 1.41886,8.64783 2.83771,17.29568 4.2566,25.94352 0.34695,2.11476 -29.63107,6.0904 -30.04393,3.98749 v 0 c -1.69401,-8.6283 -3.38801,-17.25657 -5.08199,-25.88485 -6.5863,-38.58898 -13.52567,-77.44391 -14.37221,-116.67357 -0.0316,-1.46189 20.21792,-3.36749 20.58639,-1.95247 z" />
      <path
         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14873"
         d="m 793.34284,422.18877 c 6.89749,19.86474 10.1123,40.8065 13.427,61.50269 4.06062,28.37123 8.63429,56.72592 10.89406,85.3172 0.48811,6.17562 0.77199,12.36566 1.15797,18.54848 0.11901,1.90671 -26.86841,2.90679 -26.9989,1.00084 v 0 c -2.34184,-34.21312 -5.95987,-68.30957 -10.30059,-102.32626 -2.46213,-20.10053 -5.37258,-40.12424 -8.52574,-60.12691 -0.22815,-1.44723 19.86572,-5.30008 20.3462,-3.91604 z" />
      <path
         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14875"
         d="m 696.99615,404.29481 c -0.79034,-13.57811 -4.6267,-25.45659 20.41695,-9.32338 2.43804,1.5706 0.73449,5.75366 1.10174,8.63048 6.96613,47.61269 19.94562,94.09996 32.26138,140.53884 6.42501,24.8649 13.93312,49.48664 19.22578,74.63746 1.25503,5.96355 2.15081,11.99704 3.22622,17.99555 0.33506,1.86851 -25.9097,6.47804 -26.43844,4.65488 v 0 c -8.82291,-30.42353 -18.80884,-60.49114 -27.2799,-91.01959 -12.48092,-48.02289 -25.08083,-96.97953 -24.38013,-146.96424 0.28465,-3.38584 -1.9993,-8.31254 0.85394,-10.15755 25.26691,-16.33806 22.16744,-2.0916 21.6655,11.14725 -0.0553,1.45939 -20.5682,1.31824 -20.65304,-0.13967 z" />
      <path
         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14877"
         d="m 612.30876,386.04515 c -1.09473,-4.7762 -1.68559,-9.65485 -1.98123,-14.5417 -0.071,-1.17438 -0.10958,-2.35127 -0.11161,-3.5278 -8.2e-4,-0.71197 -0.30663,-2.71668 0.10166,-2.13348 1.08748,1.55317 1.40298,3.52295 2.10449,5.28446 5.8051,-1.06641 11.51604,-3.01157 17.4153,-3.19917 0.90605,-0.0288 0.50851,1.74099 0.72014,2.62244 0.48615,2.02514 0.9173,4.0631 1.37267,6.09535 3.22646,14.39907 6.49518,28.7873 9.69195,43.19316 12.2617,52.43832 21.61549,105.48009 31.27005,158.44062 8.18942,43.20064 15.84952,86.50206 23.22821,129.84815 1.89948,12.25959 5.01952,24.28974 7.20856,36.49235 0.80865,4.50783 1.61609,9.52881 1.47817,14.17372 -0.0506,1.70274 -0.40361,3.38311 -0.60543,5.07481 -1.01855,4.71834 -3.9513,7.83515 -7.42991,10.91037 -1.0917,0.96505 -16.11641,-13.26091 -14.97004,-14.16033 v 0 c 4.55576,-3.57429 1.43229,-0.86285 1.53792,1.72936 -0.46047,-4.48062 -2.08246,-8.98903 -3.34758,-13.25657 -3.64004,-12.27861 -7.32134,-24.55288 -9.99506,-37.09157 C 660.19007,668.96831 650.98821,625.80254 642.29238,582.53311 632.07101,529.6493 622.43801,476.635 614.53384,423.34974 c -2.01486,-15.2634 -2.73488,-19.48162 -4.09888,-33.99202 -0.381,-4.05298 -1.19155,-14.02833 -1.10508,-18.73102 0.0347,-1.87557 -1.06111,-4.58006 0.51039,-5.60446 5.30815,-3.46024 11.93364,-4.26471 17.90049,-6.39708 0.97538,2.00899 2.05072,3.97245 2.92621,6.02691 0.36533,0.85733 1.0136,5.0949 1.05142,5.35441 0.67947,4.66406 1.15024,9.36931 1.17663,14.08622 0.009,1.46217 -20.25974,3.37768 -20.58641,1.95245 z" />
      <path
         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14879"
         d="m 567.60345,418.93105 c 12.53349,24.90428 18.75915,52.46356 25.2324,79.41101 10.53014,44.20423 17.32381,89.15691 25.56084,133.81259 3.19232,18.1826 7.35744,36.19632 10.3838,54.40922 0.98618,5.93491 2.25898,15.77122 3.07074,21.8302 1.34972,14.70483 4.66307,30.18353 0.19681,44.64808 -5.37978,8.44639 -4.08136,9.85584 -20.4001,1.79668 -1.83747,-0.9074 -1.40364,-11.38708 -1.41651,-13.35444 -0.0102,-1.49281 21.2224,-0.42399 21.08426,1.06243 v 0 c -0.10796,1.16186 -0.21845,2.32344 -0.32394,3.4855 -0.0742,0.8185 0.56649,2.20271 -0.21534,2.45639 -0.72584,0.23534 -0.23303,-1.91907 -0.98136,-2.06827 -16.54392,-3.29806 -13.88151,-5.61854 -17.97661,2.54943 -0.34086,-12.78213 -1.69664,-25.47211 -3.66132,-38.11162 -0.89693,-5.69452 -2.31142,-15.03253 -3.42725,-20.65649 -3.59667,-18.12787 -9.10031,-35.80621 -13.45053,-53.75234 -10.49999,-44.19966 -17.94611,-89.01224 -26.01542,-133.70348 -4.75295,-25.70445 -9.72999,-51.42633 -17.18097,-76.51183 -0.41963,-1.41276 18.85801,-8.61949 19.52054,-7.30306 z" />
      <path
         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path14881"
         d="m 512.7492,461.72456 c 12.0946,36.73677 20.67002,74.49125 29.76796,112.04493 5.63769,23.9866 11.67539,48.16408 12.19544,72.91243 -0.13969,8.63098 -0.0632,4.35338 -0.2287,12.83259 -0.0305,1.55992 -22.10363,0.65115 -22.04667,-0.90809 v 0 c 0.28407,-7.77897 0.20249,-4.01297 0.26534,-11.29768 -0.7242,-7.23228 -2.48847,-13.72161 -4.53464,-20.72072 -4.61223,-15.77692 -9.40489,-31.50162 -13.79963,-47.34181 -10.01033,-37.3346 -18.85991,-75.21936 -22.8702,-113.72225 -0.15817,-1.5183 20.77376,-5.24936 21.2511,-3.7994 z" />
      <path
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
         id="path14883"
         d="m 30.836033,362.91713 c -4.11161,-1.44674 -3.651011,-6.6641 -3.571319,-10.2729 0.775153,-11.20451 0.562859,-8.99955 19.716033,-16.98587 1.069782,-0.4461 0.449222,2.27805 0.560192,3.43183 0.167136,1.73654 0.181764,3.48438 0.272714,5.22659 -0.246539,23.50058 -1.48488,46.98062 -2.081175,70.47725 -0.659236,37.91663 -0.864337,75.83739 -1.704959,113.7509 -0.985278,39.42133 -3.193036,78.80417 -6.626095,118.08583 -2.355268,21.51305 -3.262431,43.15421 -5.517585,64.67591 -0.438959,4.18899 -0.732593,8.40579 -1.50826,12.5457 -0.744535,3.97385 -2.02812,7.82755 -3.04218,11.74137 -1.483825,5.72675 -3.568223,9.22447 -5.10614,3.51202 v 0 c -0.730903,-2.7151 -1.816092,-5.35874 -2.192745,-8.1451 -0.660813,-4.88814 -0.38708,-20.26553 -0.285934,-24.55257 0.386255,-16.36885 1.581976,-32.70162 2.011684,-49.06909 1.581891,-38.98359 4.198462,-77.92323 5.101861,-116.93515 0.818708,-37.78975 0.975316,-75.58088 1.169648,-113.37789 0.370687,-23.18042 1.168337,-46.36013 1.013101,-69.54465 -0.07725,-1.67775 -0.127878,-3.35694 -0.231638,-5.03327 -0.06095,-0.9866 -0.968645,-2.2619 -0.262699,-2.95383 26.402074,-25.87948 18.131895,-19.49436 16.900122,-9.26561 -0.716158,5.54162 -1.745633,11.14257 -4.801464,15.92713 -6.123243,9.58733 0.91782,10.53722 -9.813162,6.7614 z" />
      <path
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
         id="path14885"
         d="m -58.08457,421.57808 c -0.236192,-1.5428 0.09334,-2.60427 0.558008,-4.10699 1.454685,-4.70458 1.232038,-6.87781 4.221542,-2.96473 v 0 c 0.832439,1.08968 0.952192,1.74489 0.915514,3.10765 -0.178316,6.62139 -4.692837,10.5116 -5.695064,3.96407 z" />
      <path
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
         id="path14887"
         d="m -49.611358,497.50094 c -3.205716,0.8282 -5.39843,-0.91249 -7.319212,-3.28898 -3.990792,-6.59716 -2.607539,-14.70999 -1.508484,-21.91649 4.053056,-19.20714 15.117742,-34.91933 26.916287,-50.1571 8.134895,-9.76487 17.079143,-18.94402 27.0296312,-26.88225 13.5365017,-10.79911 23.7303678,-19.86109 38.1586518,-27.58813 3.512005,-1.88083 7.212255,-3.38677 10.818401,-5.08017 15.529145,-5.90641 33.669939,-9.77514 49.067813,-1.07514 2.5451,1.43801 4.66029,3.5304 6.9904,5.29559 1.88718,2.26893 4.0657,4.32427 5.66155,6.80673 7.1118,11.06302 8.61283,25.17611 7.53821,37.98594 -0.3132,3.73331 -1.1048,7.41098 -1.65721,11.11646 -4.75648,23.89277 -15.62139,45.89622 -26.715413,67.38173 -10.810128,20.32642 -22.179348,40.34003 -32.549325,60.89888 -4.696829,8.98191 -8.630663,18.37677 -13.525708,27.25748 -1.746044,3.16767 -3.697678,6.21758 -5.546496,9.32632 -3.897772,6.55408 -6.913829,11.94013 -6.721186,4.31709 v 0 c 0.04956,-1.96406 -0.154927,-3.95109 0.148833,-5.89212 1.309717,-8.36732 5.250461,-16.22818 8.233217,-24.04373 9.315242,-20.50434 20.123483,-40.23008 30.948571,-59.96873 11.018298,-21.3221 21.881582,-43.02278 26.962797,-66.65929 2.4213,-16.27123 4.4507,-32.66961 -5.133361,-47.28018 -1.517956,-2.31406 -3.494446,-4.29246 -5.241648,-6.4387 -5.555643,-4.11353 -7.417296,-6.27874 -14.27904,-8.16726 -13.306819,-3.66237 -26.984078,0.21696 -39.370291,5.05619 -3.598077,1.78614 -7.278042,3.41602 -10.794223,5.35841 -3.590655,1.98353 -6.436299,5.89478 -10.5061551,6.40832 -2.9072221,0.36686 8.8955331,-7.60998 6.5127661,-5.90441 -10.6606872,7.63088 -19.5126289,17.60005 -28.344946,27.16587 -12.095502,15.1667 -22.800388,29.6699 -27.068563,48.9877 -1.115941,7.06777 -1.853933,14.17167 0.103896,21.17412 0.262401,0.69549 0.686215,1.92335 1.079336,2.59939 0.758298,1.3041 1.701636,2.13212 1.251551,3.8076 -3.609495,13.43757 2.330977,5.91844 -11.14065,9.39886 z" />
      <path
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.06689;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
         id="path14889"
         d="m 155.30623,575.43175 c 0.99495,-3.47668 -0.57405,-6.53804 -2.48037,-9.37967 -5.00622,-6.18414 -12.05025,-10.85939 -19.79365,-12.89503 -1.95251,-0.51329 -3.98197,-0.66871 -5.97294,-1.00307 -8.68211,-0.67632 -17.13718,1.37162 -24.54211,5.985 -1.82546,1.13726 -6.92865,5.09944 -5.20099,3.81847 3.87488,-2.87298 7.76176,-5.72971 11.64264,-8.5946 -4.35236,5.07986 -8.53951,11.47251 -6.62199,18.52209 1.04259,3.833 2.54827,4.91066 5.06902,7.87936 7.18056,7.14568 16.85938,11.21823 23.69191,18.77283 1.46628,1.62122 2.64258,3.48287 3.96386,5.22429 0.97596,2.04107 2.19439,3.98297 2.92792,6.12317 3.49397,10.1944 1.91748,21.60434 -1.22062,31.64289 -0.94469,3.02209 -2.2037,5.93679 -3.30554,8.90516 -8.96934,20.79979 -23.71012,38.1134 -38.85923,54.64365 -3.24628,3.2826 -6.492551,6.56527 -9.738804,9.84796 -8.1464,8.23764 -17.141961,15.63824 -10.440736,6.18759 v 0 c 1.645783,-2.32118 3.291592,-4.64224 4.937383,-6.96323 11.914348,-15.99286 24.403647,-31.81067 32.786977,-50.0437 6.28908,-16.07297 9.99466,-28.09988 3.05239,-44.75154 -2.90992,-5.03412 -3.03685,-5.85102 -6.9108,-10.19513 -5.29329,-5.93575 -12.0039,-10.37468 -17.401718,-16.20228 -2.548829,-3.40551 -4.172999,-4.92112 -5.394877,-9.06688 -2.184686,-7.41244 0.932558,-14.2528 5.413019,-20.03398 11.588456,-9.70322 22.874946,-22.34193 38.481166,-25.45205 5.21285,-1.03888 7.90145,-0.68367 13.17056,-0.55975 11.36925,2.29133 20.23535,5.33597 27.44592,14.9394 2.05063,4.35814 3.48765,8.23355 0.97444,12.74724 -8.60904,15.46176 -20.54188,26.91574 -15.67283,9.90181 z" />
      <path
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
         id="path14891"
         d="m 201.97306,551.27744 c 0.0956,0.35558 0.25353,0.70006 0.28681,1.06675 0.16836,1.85588 -0.002,3.72845 0.0878,5.5898 0.2813,5.84437 1.01861,11.66558 1.63291,17.48051 0.98702,11.51516 3.61256,22.83941 4.78965,34.32696 0.30344,2.96125 0.36224,5.94253 0.54335,8.91377 0.70802,11.61482 -3.65867,17.11456 -9.80938,7.23663 v 0 c -1.33783,-2.14855 -2.91338,-4.16623 -4.01353,-6.44567 -4.73899,-9.81885 -6.25504,-21.63386 -8.08659,-32.25904 -0.65978,-5.95436 -1.23079,-11.86503 -1.41508,-17.8553 -0.0337,-1.09642 -0.12116,-4.55297 0.0779,-5.91291 0.0846,-0.57741 0.31796,-1.12298 0.47698,-1.68447 4.84751,-17.11945 10.80937,-27.63937 15.42909,-10.45703 z" />
      <path
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
         id="path14893"
         d="m 283.19848,583.1334 c 2.55401,-4.45126 6.05364,-8.44547 8.82603,-12.79864 0.0938,-0.39423 0.75392,-2.1534 0.11204,-2.71763 -2.22848,-1.95882 -13.03996,2.73001 -14.4348,3.29627 -2.27954,1.30723 -9.28889,5.03669 -6.83867,3.92165 3.86542,-1.75904 6.93669,-7.5641 11.0978,-5.85989 3.77076,1.54437 -5.43156,4.67046 -7.87547,7.17963 -5.80982,5.96484 -9.93107,11.40625 -13.95628,18.26593 -1.95778,3.33635 -3.48441,6.83088 -5.22659,10.2463 -3.97229,9.50649 -7.15154,19.40053 -6.61982,29.67805 0.24333,4.70315 1.13806,9.87326 4.81568,14.00264 1.40602,1.57865 3.62051,2.62363 5.43078,3.93539 2.51426,0.6559 4.94796,1.63435 7.54285,1.96767 10.54519,1.35474 21.82714,-1.15694 31.60336,-3.31383 3.63357,-0.80154 7.12283,-1.92321 10.7732,-2.68493 2.64011,-0.55093 5.3801,-0.83151 8.07019,-1.24732 l -8.69165,6.96688 c -12.83751,5.08998 -24.04732,9.39132 -38.3187,12.07379 -6.98754,1.31345 -15.09995,2.47798 -22.53933,1.34519 -2.95413,-0.44971 -5.65829,-1.71772 -8.48741,-2.57653 -1.98501,-1.56832 -4.40444,-2.87091 -5.95498,-4.70483 -3.8173,-4.51501 -4.79991,-9.94609 -5.04024,-15.04397 -0.50024,-10.61022 2.64938,-20.87704 6.9752,-30.6378 4.47587,-8.72227 5.84989,-12.27206 11.76988,-20.38563 11.58628,-15.87942 28.27444,-27.00927 48.2252,-36.77884 2.13431,-0.75389 4.17091,-1.67991 6.40296,-2.26164 3.58448,-0.93418 8.67823,-1.57668 11.50016,1.25749 0.57724,0.57974 1.04739,1.2803 1.15176,1.99271 0.10999,0.75158 -0.35926,1.46091 -0.53887,2.19136 -2.97792,5.53349 -7.80878,10.34389 -12.60509,14.94015 z" />
      <path
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
         id="path14895"
         d="m 376.93449,400.47725 c -0.40219,2.17785 -0.80432,4.35574 -1.20649,6.53359 -0.55772,3.38828 -1.06899,6.7845 -1.67313,10.16485 -3.43876,19.24051 -2.51553,11.25108 -5.6012,32.75529 -2.88498,20.10535 -3.38723,26.32223 -5.6792,47.10747 -2.9535,26.65572 -5.5367,53.3571 -7.28292,80.12162 -0.80783,12.38178 -1.68504,27.7956 -1.56326,40.42492 0.0419,4.34077 0.42431,8.67157 0.63645,13.00734 -1.08349,-2.68022 0.81774,10.73578 4.18646,9.70459 1.46067,-0.44714 4.2386,-4.15371 2.80612,-3.62309 -4.47493,1.65751 -8.63352,10.11631 -12.38957,7.17276 -3.5044,-2.74625 4.81775,-7.48981 7.12956,-11.29487 2.89783,-4.76955 5.66497,-9.61724 8.49744,-14.42585 8.98732,-14.69825 16.9375,-30.11067 26.85334,-44.23536 2.28508,-3.255 4.43551,-6.69813 7.36954,-9.38295 21.7454,-19.89848 13.77158,-19.53918 28.43449,-17.81675 1.231,1.97669 2.91459,3.73538 3.69298,5.93015 2.12828,6.00102 2.19683,15.97013 2.26007,21.88627 0.1472,13.76198 -0.54367,27.56935 -0.97847,41.32164 -0.20583,9.02639 0.19985,18.02494 0.86629,27.01897 0.14273,1.92555 0.67412,3.86621 0.40613,5.77838 -0.34222,2.44191 -1.47028,4.70719 -2.20546,7.0607 l -3.21215,2.44939 c -2.01479,-0.31429 -4.24677,0.0206 -6.04436,-0.94288 -1.49867,-0.80263 -2.34285,-2.50952 -3.1726,-3.99336 -4.21204,-7.53218 -3.93705,-16.64105 -4.61589,-24.92305 -0.12586,-13.56758 0.34068,-27.12179 0.23887,-40.68657 -0.0427,-5.68126 -0.0203,-15.05246 -1.61524,-20.95122 -0.41594,-1.5382 -1.49875,-2.81243 -2.24815,-4.21865 -1.2772,0.0205 -4.59507,1.08558 -3.83159,0.0616 2.76051,-3.70259 5.94494,-9.70011 10.5136,-9.02397 4.04415,0.59853 -5.4462,6.11565 -7.85741,9.41707 -10.11678,13.85209 -17.96568,29.25165 -26.66086,43.98037 -2.63253,4.70616 -5.2264,9.43411 -7.89753,14.11845 -2.12942,3.73439 -3.62978,7.93947 -6.50348,11.13662 -7.05297,7.84679 -14.87361,15.02024 -23.02645,21.71706 -1.35604,1.11387 -3.38756,1.82623 -5.08264,1.37218 -3.98861,-1.06853 -3.87402,-10.78016 -4.03862,-11.94686 -0.49741,-45.21825 5.22009,-90.30673 10.01903,-135.18815 4.53245,-32.38277 9.33282,-64.7168 14.57679,-96.98897 z" />
      <path
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.06633;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
         id="path14897"
         d="m 245.42908,555.84896 c -7.38445,26.38415 -19.15667,51.33006 -29.73935,76.53548 -20.21209,46.54426 -40.4193,93.08965 -60.96866,139.48651 -3.3689,7.33192 -13.24801,29.26105 -17.41128,36.71292 -3.40149,6.08835 -7.39915,11.82387 -11.09873,17.7358 l -2.62871,1.67149 c 0.48413,-3.8735 0.41705,-7.85662 1.45238,-11.62044 1.78726,-6.49735 11.98154,-29.55121 14.17671,-34.65893 20.1602,-46.35694 40.44387,-92.66076 60.40559,-139.10345 10.82201,-25.12499 22.08036,-50.19543 30.09988,-76.39321 z" />
      <g
         id="g14899"
         transform="matrix(2.2523825,0,0,2.2523825,-406.16798,-399.07356)"
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0">
        <path
           d="m 584.25859,348.05198 c 0.0684,-0.53256 0.13245,-1.0657 0.20506,-1.59771 0.30016,-2.19928 0.91923,-4.25328 1.51801,-6.38773 0.5738,-2.04543 0.46387,-1.17215 0.56262,-2.44163 2.72255,-1.54857 5.09783,-4.02398 8.16765,-4.64572 1.09536,-0.22185 -0.70005,2.12325 -1.0119,3.19645 -0.58864,2.02566 -1.18105,4.05141 -1.68915,6.09875 -2.76676,11.14846 -4.55943,22.45868 -6.40334,33.78611 -2.22421,13.39392 -3.81576,26.87789 -5.65283,40.32764 -0.47067,3.44584 -0.79171,6.91483 -1.39763,10.33949 -0.49401,2.79209 -1.26587,5.52783 -1.89879,8.29175 l -4.77487,3.23246 c -0.0394,-2.30591 -0.21163,-4.61337 -0.11833,-6.91773 0.13453,-3.32247 0.50916,-6.63099 0.80102,-9.94335 1.1758,-13.34418 2.85273,-26.62433 4.88643,-39.8657 0.75278,-4.4814 1.4382,-8.97464 2.25835,-13.44421 1.24125,-6.76447 2.80449,-13.80747 4.30556,-20.54543 0.43859,-1.96876 0.87955,-3.93707 1.33902,-5.90105 0.2504,-1.07031 0.0103,-2.42719 0.79046,-3.20148 2.60251,-2.58275 5.94697,-4.29048 8.92045,-6.43572 -1.48371,4.23829 -3.02974,8.46461 -5.20384,12.41607 z"
           id="path14901"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           d="m 641.90759,318.27911 c -16.22568,-2.51826 -32.67989,-0.3482 -48.81401,1.73541 -27.27956,4.65343 -54.01698,12.43121 -79.69123,22.74155 -4.48441,1.80086 -8.8907,3.79052 -13.33605,5.68577 -11.31537,4.90563 -22.15048,10.78385 -33.03756,16.5475 l 2.09927,-2.24944 c 2.33458,-1.62355 4.61075,-3.33449 7.00373,-4.87065 9.66339,-6.20332 20.01806,-11.25507 30.38982,-16.13518 4.55561,-1.98929 9.06347,-4.09167 13.66681,-5.96786 26.03089,-10.60941 53.20368,-18.42419 80.82977,-23.55227 4.72317,-0.68904 9.4311,-1.49208 14.1695,-2.06713 7.4108,-0.89939 14.13062,-1.37637 21.53923,-1.43382 3.4725,-0.0269 8.1157,0.14143 11.69204,0.6658 0.91041,0.13349 1.79394,0.41044 2.69091,0.61565 z"
           id="path14903"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           d="m 615.12503,399.95156 c 0.48532,-2.5157 -0.19899,-6.30781 -3.28967,-6.8709 -0.73441,-0.1338 -1.49103,0.0766 -2.23654,0.11494 -0.50021,0.20274 -6.65267,2.46589 -6.08951,3.39068 1.36067,2.23444 9.5198,-11.3033 -0.45581,2.2815 -3.53887,4.81923 -3.67751,5.90647 -6.13049,11.36319 -0.57087,2.09083 -1.33874,4.13762 -1.7126,6.27248 -1.04919,5.9914 -0.99291,15.60693 5.59863,18.7479 1.30986,0.62417 2.84772,0.55839 4.27158,0.83758 5.07669,-1.4077 6.38814,-1.21226 10.69786,-5.02817 0.41627,-0.36857 -1.90563,0.66751 -1.65938,0.16902 1.28272,-2.59682 3.56388,-4.58328 5.06377,-7.06101 3.58916,-5.92908 4.21889,-8.72248 6.46638,-15.10712 0.50351,-2.21574 1.00701,-4.4315 1.51052,-6.64724 l 3.90034,-2.68778 c 0.37157,1.69129 0.74314,3.38257 1.11472,5.07385 -0.5196,2.31381 -0.77293,4.70399 -1.55881,6.94141 -0.932,2.6534 -2.17874,5.19989 -3.56518,7.64671 -4.97207,8.77489 -8.82549,11.47704 -17.74078,18.60194 -1.82091,1.45523 -3.83065,2.72534 -5.98327,3.61957 -1.74198,0.72365 -3.6916,0.77753 -5.53741,1.1663 -1.5684,-0.37747 -3.27941,-0.37781 -4.70522,-1.13243 -6.88029,-3.64145 -6.62568,-13.78244 -5.44878,-20.17609 0.40426,-2.19615 1.1733,-4.30923 1.75995,-6.46385 0.88851,-2.03915 1.64155,-4.14286 2.66554,-6.11746 4.56643,-8.80574 9.60182,-12.641 17.70074,-19.02202 1.09079,-0.85941 2.28714,-1.59755 3.54022,-2.19607 0.98435,-0.47017 2.08048,-0.657 3.12073,-0.9855 0.85333,0.0665 1.73794,-0.0388 2.56,0.19959 3.40142,0.98635 4.41041,4.9694 3.79974,8.01708 z"
           id="path14905"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           d="m 659.89055,394.94668 c 2.14582,-2.88694 3.60982,-6.65883 2.4833,-10.26983 -0.25237,-0.809 -0.74091,-1.52437 -1.11136,-2.28656 -2.25173,-2.34297 -3.98306,-2.97111 -7.22123,-1.70393 -1.22392,0.47894 -3.90153,3.17199 -3.42955,1.94536 0.53329,-1.38596 3.74202,-4.02427 3.65896,-2.54158 -0.11028,1.96837 -2.51452,3.03708 -3.77179,4.55561 -1.0398,1.8508 -2.25419,3.61382 -3.11939,5.55238 -3.10709,6.96163 -4.90158,16.357 -0.46719,23.20865 0.88674,1.3701 2.24583,2.36858 3.36874,3.55287 1.48033,0.58591 2.86351,1.54269 4.44097,1.75771 1.74498,0.23785 3.56721,0.0318 5.26544,-0.43465 1.94231,-0.53348 3.57582,-1.89979 5.49219,-2.51998 0.86613,-0.2803 -2.73733,2.2786 -2.29236,1.48442 6.30055,-7.79838 3.60156,-3.65459 8.13977,-12.40343 2.4333,-8.29622 1.793,-4.22035 2.15769,-12.18804 l 5.00841,-3.56781 c 2.18139,6.71322 1.78979,3.11806 0.67998,10.82795 -1.02809,2.18213 -1.84445,4.47721 -3.08427,6.54639 -4.40225,7.34707 -9.98234,11.32257 -17.43889,16.39959 -3.0939,2.10656 -7.7667,3.25005 -11.50503,2.56109 -1.70007,-0.31332 -3.17156,-1.37652 -4.75735,-2.06478 -1.16678,-1.30248 -2.59402,-2.41198 -3.50034,-3.90746 -4.37972,-7.22679 -2.67648,-16.93908 0.44271,-24.24193 0.84289,-1.97342 2.01165,-3.79112 3.01747,-5.6867 5.82948,-7.48693 4.08819,-5.95881 14.95182,-13.94281 2.69402,-1.97991 6.79434,-3.10111 9.82418,-1.13081 0.77963,0.507 1.28358,1.34608 1.92538,2.01911 0.38814,0.86887 0.91048,1.68949 1.16444,2.60659 1.16143,4.19412 -0.28132,8.58284 -3.18563,11.65617 z"
           id="path14907"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           d="m 770.09665,368.83338 c 0.96838,-2.03221 2.92118,-4.2826 2.69572,-6.69104 -0.0318,-0.33953 -0.20666,-0.64997 -0.30997,-0.97495 -0.28083,-0.26928 -0.49575,-0.63134 -0.84248,-0.80782 -2.89026,-1.47111 -7.0023,-0.025 -9.52964,1.44529 -1.07869,0.62754 -2.0394,1.43889 -3.05911,2.15833 2.20738,-1.51035 3.98276,-4.09813 6.62212,-4.53105 1.49147,-0.24464 -1.74219,2.48472 -2.41064,3.84026 -2.17156,4.40368 -2.92853,9.43985 -2.17439,14.29519 0.24888,1.6023 0.84255,3.13166 1.26383,4.6975 1.7313,3.81606 4.20972,7.88857 8.84708,8.49884 1.31794,0.17344 2.70514,-0.007 3.96435,-0.43274 1.42056,-0.48051 5.12092,-3.11093 3.90737,-2.2299 -1.93053,1.40156 -4.0443,2.53158 -6.06645,3.79738 0.95913,-1.73592 2.10867,-3.37954 2.87741,-5.20775 2.22782,-5.29819 3.03827,-11.45314 1.77425,-17.10162 -0.31847,-1.42314 -1.03682,-2.72633 -1.53082,-4.09845 -0.41183,-1.14391 -0.79096,-2.29934 -1.18642,-3.44902 l 3.14339,-2.59508 c 1.66104,0.18994 3.47509,-0.15192 4.98314,0.56984 1.31029,0.62713 2.23147,1.95007 2.93605,3.22039 2.7338,4.92886 1.70205,11.43038 -0.18102,16.4179 -0.69585,1.84299 -1.79142,3.50915 -2.68712,5.26372 -0.80262,0.70466 -11.61783,12.13145 -17.40024,13.72838 -4.40133,1.21551 -8.49423,-1.15806 -10.99177,-4.65708 -0.92232,-1.29214 -1.45098,-2.82416 -2.17646,-4.23624 -0.40512,-1.63047 -0.97195,-3.22908 -1.21536,-4.89139 -0.72939,-4.98121 -0.0357,-10.0756 2.05833,-14.65355 0.62214,-1.36014 1.19345,-2.82428 2.25194,-3.881 3.83771,-3.8313 8.20031,-7.09807 12.30046,-10.6471 1.04717,-0.69268 2.03636,-1.4822 3.1415,-2.07804 2.80078,-1.51004 7.10867,-2.79828 10.11826,-1.00525 0.42857,0.25533 0.72442,0.68606 1.08663,1.02909 0.11248,0.41443 0.30552,0.81507 0.33744,1.2433 0.20639,2.76927 -2.03096,5.25721 -3.28665,7.50565 z"
           id="path14909"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           d="m 786.70308,360.5076 c 6.75696,0.9164 12.48947,-1.4796 18.44336,-4.37587 3.22626,-1.8594 4.82872,-2.6702 7.82731,-4.83141 1.08131,-0.77935 4.1977,-3.28685 3.13705,-2.47961 -12.20033,9.28542 -7.1788,6.12049 -4.3653,2.45282 0.18342,-0.31587 0.40062,-0.6144 0.55027,-0.9476 0.11156,-0.24839 0.32167,-0.92805 0.0747,-0.81348 -0.0769,0.0356 -0.0835,0.30238 -0.014,0.25383 10.0325,-7.01426 9.87167,-11.06441 9.67669,-5.85224 0.86081,4.54745 3.36465,8.60352 5.72679,12.50942 3.12124,5.16114 3.66773,5.81575 7.17854,10.99921 4.13446,6.33817 9.01772,12.18821 12.52837,18.92767 1.06387,2.04232 2.36336,4.05486 2.79865,6.31614 0.44895,2.33227 -0.14121,4.74808 -0.21181,7.12211 l -1.12659,0.88949 c -2.00475,-0.72904 -4.2318,-1.0152 -6.01425,-2.18711 -1.86792,-1.22809 -3.17082,-3.15602 -4.65508,-4.82763 -5.02476,-5.659 -9.16109,-11.98369 -13.62057,-18.0762 -5.03714,-7.46253 -11.05239,-14.96595 -12.9735,-23.95747 -0.001,-0.48115 -0.34745,-1.1065 -0.004,-1.44346 3.23826,-3.17702 6.82996,-5.9802 10.4103,-8.76604 0.39376,-0.30639 0.7282,0.86051 0.43261,1.68972 -0.1325,0.37169 -0.36336,0.70058 -0.54504,1.05087 -3.87224,5.31027 -9.6636,8.8882 -14.70693,12.94894 -3.40181,2.73902 -7.05348,5.12074 -10.9428,7.11525 -5.83821,2.77067 -12.23114,5.52321 -18.83063,4.16823 z"
           id="path14911"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           d="m 867.89493,333.03198 c 2.85955,-2.459 10.65068,-7.32793 -2.93974,2.30971 -0.56918,0.40364 1.01469,-0.96069 1.47746,-1.48292 1.19277,-1.34601 0.99679,-1.19157 1.60338,-2.69026 -0.0667,-0.31916 0.035,-0.73171 -0.20027,-0.95749 -0.76377,-0.73302 -3.21324,-0.12659 -3.63535,-0.0132 -5.73389,1.53994 -10.43144,5.11792 -15.25542,8.39955 0.98386,-0.73716 3.80595,-3.09552 2.95159,-2.2115 -21.53061,22.27799 6.19788,-8.54464 -16.33194,16.11946 -8.53523,9.34381 -16.2399,19.33326 -23.9395,29.36035 -10.43978,13.94062 -20.64149,28.05692 -30.98852,42.06582 -3.8937,4.9196 -1.94397,2.52722 -5.84267,7.18247 l -5.49861,3.90803 c -1.35219,-1.72705 -0.92963,-0.59392 0.57785,-3.58176 10.18271,-14.35263 21.09862,-28.17702 31.44887,-42.40835 7.68481,-10.01057 15.36583,-20.00123 23.83717,-29.37143 10.07974,-11.14925 21.12638,-21.13109 33.35044,-29.94905 4.72477,-3.14658 9.6114,-6.98637 15.37378,-8.04974 1.20298,-0.22198 3.18594,-0.38643 4.02776,0.93265 0.25932,0.40637 0.0866,0.96021 0.12998,1.44032 -0.95495,1.98448 -2.12129,3.5762 -3.83708,5.00854 -4.06817,3.39609 -8.31502,7.2448 -12.94127,10.11322 z"
           id="path14913"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           d="m 739.72433,280.69164 c 1.12332,-3.97476 0.40919,-5.02096 8.65027,-6.33044 1.19788,-0.19034 -0.60303,2.34973 -0.92096,3.52023 -0.53323,1.96328 -1.0883,3.92058 -1.63245,5.88087 -0.76089,2.80614 -1.52177,5.61227 -2.28266,8.41841 -7.21452,26.55128 -13.31686,53.37787 -19.5944,80.15921 -1.77904,8.47854 -4.06699,16.84156 -5.43965,25.40227 -0.49021,3.05721 -0.76937,5.80044 -0.44817,8.85334 0.42452,0.50293 0.60517,1.06664 1.39358,0.87065 0.73536,-0.1828 2.78118,-1.46049 3.19523,-1.74912 0.92117,-0.64215 3.57935,-2.71342 2.68322,-2.03678 -2.28936,1.72863 -4.57528,3.46183 -6.86292,5.19274 6.8808,-6.76423 12.85095,-14.4628 17.117,-23.15463 2.96136,-6.03362 3.39808,-8.42714 5.31895,-14.81177 0.62632,-4.04121 2.76264,-16.40278 -4.34402,-17.01601 -2.98249,-0.25737 -5.56258,1.84884 -7.88302,3.20622 1.71383,-1.31153 3.13047,-4.71756 5.14151,-3.93457 1.85717,0.72309 -2.8276,2.81558 -4.12084,4.33197 -1.26253,1.48036 -2.41142,3.05625 -3.53486,4.64474 -2.37776,3.36204 -3.57326,5.68616 -5.82452,9.11751 -1.0642,1.62206 -2.19388,3.20023 -3.29082,4.80034 l -4.60649,3.29314 c -0.11134,-0.755 -0.48076,-1.51606 -0.33401,-2.26497 0.44263,-2.259 3.0314,-6.39385 4.14322,-8.04359 5.65697,-8.39392 13.01694,-14.25937 21.37655,-20.18907 2.64771,-1.40179 5.00664,-3.31978 8.26036,-2.74253 7.17418,1.27279 5.13933,13.38705 4.51013,17.91678 -0.58973,2.41193 -0.99136,4.87778 -1.76915,7.23579 -3.80513,11.5359 -11.03857,21.64575 -19.41404,30.28497 -4.54856,3.74794 -9.05952,7.54199 -13.64566,11.24385 -1.3993,1.12949 -4.32165,3.52386 -6.37497,3.41877 -1.42131,-0.0728 -1.25089,-0.56298 -1.69273,-1.67808 -0.20613,-3.35616 0.47738,-6.35582 1.21552,-9.64982 1.94664,-8.68699 4.23395,-17.30014 6.21007,-25.98025 6.35182,-26.86244 12.67013,-53.74466 19.87816,-80.39248 1.74439,-6.1108 2.50592,-8.64672 4.02369,-14.3653 0.30711,-1.15713 0.0941,-2.58136 0.88387,-3.48109 2.60193,-2.96427 5.88657,-5.25633 8.95779,-7.73112 0.61006,-0.49159 -2.05917,3.02474 -1.05777,2.09896 z"
           id="path14915"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           sodipodi:nodetypes="cssccscccccc"
           d="m 718.44335,281.47442 c -0.0582,2.5321 -0.44725,3.1667 -0.93049,6.13823 -0.54975,3.38047 -1.37653,8.62608 -2.0579,11.70404 -4.80066,21.68583 1.00452,-5.07202 -4.31562,19.60105 -5.5386,25.55898 -10.1689,51.30202 -14.83915,77.03025 -1.46526,7.35258 -2.20073,11.89276 -4.24053,19.00508 -0.7577,2.64189 -1.71541,5.22227 -2.57312,7.8334 l -2.83977,2.06937 c 0.65991,-8.13498 1.68385,-16.21708 3.26439,-24.2336 4.51881,-25.68802 9.34254,-51.32103 14.5946,-76.86995 2.78182,-12.76781 5.70521,-25.50654 8.49592,-38.26923 z"
           id="path14917"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
        <path
           sodipodi:nodetypes="ccsscsscscccsccc"
           d="m 712.85338,294.35623 c 0.48347,-3.20486 -0.22543,-9.01012 1.16781,-11.97652 2.43111,-4.75996 3.61261,-8.26151 9.28444,-8.72829 0.77175,-0.0635 2.90123,1.16283 3.70925,1.46729 1.42016,0.53508 1.43094,1.68024 1.89776,2.96128 0.0387,1.11297 0.18212,2.22723 0.11608,3.33891 -0.40108,6.75219 -2.54805,13.46539 -4.76394,19.79165 -2.96203,8.45651 -4.7529,12.21613 -8.36968,20.67187 -7.75192,16.90611 -16.57384,33.35515 -26.40945,49.14443 -2.41464,3.87627 -4.97612,7.6591 -7.46418,11.48865 l -4.05663,2.85743 c 10.04386,-18.95982 20.80531,-37.57933 29.29674,-57.31986 3.86572,-9.33624 8.87517,-20.14574 11.9668,-29.79284 1.46067,-4.55787 2.88643,-7.62285 3.803,-11.29117 1.55373,-4.26913 1.36918,-5.99822 -1.72676,-6.22033 z"
           id="path14919"
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.80559;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" />
      </g>
      <g
         inkscape:label="Ebene 1"
         id="layer1-6" />
      <text
         xml:space="preserve"
         id="text9245"
         style="font-style:normal;font-weight:normal;font-size:80px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect9247);fill:#000000;fill-opacity:1;stroke:none;" />
      <text
         xml:space="preserve"
         style="font-size:18.5588px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;white-space:pre;inline-size:735.371;fill:#55b9dc;fill-opacity:1;stroke-width:2"
         x="-203.72263"
         y="521.80603"
         id="text9253"
         transform="matrix(2.586375,0,0,2.586375,346.61565,209.80549)"><tspan
           x="-203.72263"
           y="521.80603"><tspan
             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.5588px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1">Please wait a few seconds while we test your graphics driver. The FAQ page on the </tspan></tspan><tspan
           x="-203.72263"
           y="545.30127"><tspan
             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.5588px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1">website explains how to skip this screen test.</tspan><tspan
             style="font-size:18.5588px;fill:#ffffff"> </tspan><tspan
             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.5588px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#55b9dc;fill-opacity:1">  </tspan><tspan
             style="fill:#00ffff"> http://psychtoolbox.org </tspan></tspan></text>
      <text
         xml:space="preserve"
         style="font-size:29.9003px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;white-space:pre;inline-size:529.738;fill:#55b9dc;fill-opacity:1;stroke-width:2"
         x="-203.72263"
         y="521.80603"
         id="text9253-5"
         transform="matrix(2.586375,0,0,2.586375,329.7068,-131.71332)"><tspan
           x="-203.72263"
           y="521.80603"><tspan
             style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:29.9003px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1">Type</tspan><tspan
             style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:29.9003px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"> </tspan><tspan
             style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:29.9003px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#00ffff">PsychPaidSupportAndServices</tspan><tspan
             style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:29.9003px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"> </tspan></tspan><tspan
           x="-203.72263"
           y="559.65945"><tspan
             style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:29.9003px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff">to learn how to get priority support</tspan></tspan></text>
      <text
         xml:space="preserve"
         style="font-size:68.9699px;line-height:1.25;font-family:sans-serif;stroke-width:5.17275"
         x="529.448"
         y="1316.6189"
         id="text9286"><tspan
           sodipodi:role="line"
           id="tspan9284"
           x="529.448"
           y="1316.6189"
           style="stroke-width:5.17275"> </tspan></text>
      <text
         xml:space="preserve"
         id="text1470"
         style="font-size:26.6667px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect1472);" />
      <g
         id="g1504"
         transform="matrix(1.4056876,0,0,1.4056876,1157.3394,825.0961)">
        <path
           d="m 98.293,42.051 c 6.046,8.353 20.089,5.634 24.313,-2.832 2.682,-5.375 1.655,-7.26 -0.937,-12.459 -1.813,-3.636 -4.652,-9.407 -7.156,-12.424 C 107.836,6.292 94.81,-3.08 90.858,10.773 88.56,18.826 94.74,34.934 98.293,42.051"
           fill="#f0f0f0"
           fill-rule="evenodd"
           id="path1316" />
        <path
           d="m 208.975,246.574 c -2.067,-8.282 -5.312,-15.548 -9.542,-22.938 -4.901,-8.563 -13.786,-14.029 -21.976,-20.544 -9.185,-7.306 -14.965,-10.313 -26.137,-14.186 -4.778,-1.657 -8.427,-4.054 -13.226,-2.452 -3.952,1.319 -12.377,2.267 -14.816,5.82 l -9.513,13.857 c -2.382,3.47 -1.718,12.416 -2.234,16.551 -1.4,11.223 1.843,22.239 3.754,33.343 3.554,20.646 18.486,37.701 30.715,53.626 -19.194,0 -38.358,-1.57 -57.525,-2.581 -17.873,-0.942 -39.62,-2.353 -56.511,4.696 -3.671,1.532 -8.831,5.283 -12.747,3.976 -5.502,-1.837 -9.534,-3.226 -15.297,-3.226 -5.11,0 -4.19,6.935 -2.951,10.036 1.916,4.796 7.479,6.277 12.404,5.256 8.447,-1.752 14.272,-7.641 23.342,-8.938 7.409,-1.06 19.875,-0.052 26.273,4.159 -11.556,6.633 -25.453,8.393 -36.617,15.851 -5.297,3.539 -8.14,8.553 -14.43,9.953 -9.175,2.043 -11.218,7.701 -3.375,13.594 6.488,4.874 11.677,-4.422 13.888,-8.851 2.948,-5.905 10.151,-8.937 16.203,-10.954 14.066,-4.692 27.813,-5.767 42.46,-4.302 -10.421,3.635 -18.898,15.63 -27.635,22.194 -5.04,3.786 -38.52,9.702 -24.843,18.901 4.649,3.127 11.663,1.807 16.221,-0.478 5.233,-2.621 6.509,-9.602 12.045,-13.299 10.016,-6.69 21.959,-9.582 33.754,-11.55 24.799,-4.137 48.52,-12.35 73.098,-16.83 14.59,-2.659 26.9,-3.458 41.783,-2.861 3.472,0.14 13.935,-1.501 15.183,-4.419 3.046,-7.122 1.279,-11.553 -3.727,-17.568 -12.437,-14.95 -28.387,-27.565 -43.325,-40.034 8.195,4.69 15.239,9.188 22.529,15.161 4.699,3.852 13.089,13.431 19.418,11.847 6.67,-1.667 -5.647,-47.987 -6.643,-52.81"
           fill="#008000"
           fill-rule="evenodd"
           id="path1318" />
        <path
           d="m 206.112,246.574 c -4.073,-6.649 -6.021,-15.049 -9.542,-21.981 -4.442,-8.745 -14.311,-13.959 -22.478,-20.156 -9.329,-7.079 -16.28,-9.584 -27.633,-13.223 -7.311,-2.343 -19.734,-1.483 -24.146,5.588 -7.23,11.586 -8.547,18.239 -10.325,31.886 -1.197,9.191 2.767,20.008 4.385,29.088 3.423,19.204 18.583,36.74 29.626,51.877 -37.79,0 -75.977,-7.496 -113.117,1.803 -3.876,0.971 -7.698,3.142 -11.385,4.681 -2.869,1.197 -9.238,-2.661 -12.896,-2.661 -11.334,0 -3.594,16.181 5.725,14.335 3.692,-0.731 6.807,-5.594 10.287,-6.988 4.347,-1.742 8.387,-2.568 13.089,-2.568 7.382,0 19.01,0.648 25.285,4.778 -11.009,6.319 -24.599,7.822 -35.197,14.902 -4.707,3.144 -8.849,9.267 -14.244,10.618 -7.057,1.768 -11.569,7.957 -3.073,12.213 7.742,3.877 9.985,-3.191 12.899,-9.026 2.657,-5.322 12.121,-8.06 17.351,-9.805 13.268,-4.425 26.635,-4.987 40.393,-3.611 -10.421,3.635 -18.898,15.63 -27.635,22.194 -5.858,4.401 -11.413,4.934 -18.627,6.379 -6.288,1.26 -9.948,8.41 -2.459,10.91 4.053,1.353 14.588,3.835 16.579,-2.149 2.113,-6.352 7.146,-10.22 13.06,-13.441 10.896,-5.936 22.802,-7.616 34.35,-11.469 11.599,-3.87 24.917,-3.859 36.823,-7.433 12.262,-3.682 25.387,-9.707 38.235,-10.778 14.464,-1.207 28.345,0.165 42.273,-4.128 14.699,-4.53 -6.555,-25.351 -11.026,-29.83 -9.208,-9.224 -19.378,-17.42 -29.019,-26.198 6.111,3.569 33.224,27.089 38.166,21.98 3.566,-3.687 -0.323,-18.941 -0.954,-22.938 -1.312,-8.318 -3.182,-16.579 -4.77,-24.849"
           fill="#008500"
           fill-rule="evenodd"
           id="path1320" />
        <path
           d="m 202.296,246.574 c -3.902,-6.369 -6.714,-15.391 -9.064,-22.46 -2.792,-8.394 -15.142,-13.901 -22.499,-19.198 -8.487,-6.109 -15.255,-8.098 -25.475,-11.084 -5.896,-1.723 -19.578,-1.547 -22.906,4.377 -6.406,11.408 -8.133,17.198 -9.316,30.238 -0.889,9.794 2.356,19.824 4.134,29.443 3.457,18.7 18.371,36.629 28.83,51.762 -36.488,0 -74.399,-7.891 -110.247,1.085 -3.894,0.975 -7.41,2.541 -11.125,4.092 -5.365,2.239 -6.823,-1.381 -12.21,-1.354 -11.582,0.057 -6.108,14.583 2.862,13.38 3.339,-0.448 6.294,-4.815 9.333,-6.033 4.347,-1.742 8.387,-2.568 13.089,-2.568 7.382,0 19.01,0.648 25.285,4.778 -10.905,6.26 -23.856,8.602 -34.861,14.902 -4.334,2.481 -8.326,8.754 -12.787,10.244 -6.393,2.135 -11.475,6.414 -3.664,11.631 5.898,3.94 9.686,-4.041 11.697,-8.07 2.657,-5.322 12.121,-8.06 17.351,-9.805 13.268,-4.425 26.635,-4.987 40.393,-3.611 -10.421,3.635 -18.898,15.63 -27.635,22.194 -5.703,4.284 -10.98,3.593 -17.209,6.478 -9.017,4.176 -4.56,7.538 2.116,10.214 7.425,2.976 8.717,-2.718 12.195,-6.392 4.359,-4.604 10.332,-7.962 15.779,-11.078 9.442,-5.403 22.753,-10.015 33.465,-11.965 26.642,-4.852 51.997,-15.539 78.985,-18 8.292,-0.756 33.343,2.122 34.931,-10.565 1.433,-11.449 -13.432,-23.794 -21.097,-30.192 -6.477,-5.407 -12.738,-10.956 -18.977,-16.637 5.988,3.599 11.843,7.271 17.653,11.15 2.062,1.377 14.854,12.273 15.842,5.356 2.065,-14.461 -1.816,-28.248 -4.868,-42.312"
           fill="#008c00"
           fill-rule="evenodd"
           id="path1322" />
        <path
           d="m 198.479,247.529 c -2.851,-7.131 -4.704,-15.156 -8.111,-21.981 -2.176,-4.357 -1.047,-4.209 -5.877,-7.486 l -17.1,-11.603 c -12.267,-8.323 -38.096,-17.394 -46.977,-0.712 -18.452,34.657 6.098,75.197 25.586,103.906 -34.496,0 -72.051,-8.479 -105.911,-0.001 -7.604,1.903 -15.961,7.583 -23.411,5.45 -10.511,-3.009 -10.075,11.668 -0.443,10.797 3.482,-0.315 6.784,-4.438 10.019,-5.734 4.483,-1.797 8.968,-1.911 13.746,-1.911 6.587,0 17.441,1.127 22.989,4.778 -10.252,5.885 -22.564,7.861 -32.884,13.77 -5.359,3.069 -8.977,7.59 -13.87,11.078 -2.417,1.723 -5.729,-0.198 -6.679,3.822 -0.765,3.237 1.688,4.634 4.029,6.196 7.428,4.958 7.156,-4.8 11.273,-7.894 5.493,-4.128 10.99,-6.443 17.457,-8.601 12.636,-4.215 25.744,-4.387 38.802,-3.081 -10.421,3.635 -18.898,15.63 -27.635,22.194 -5.112,3.841 -11.705,2.821 -16.291,6.266 -7.51,5.64 0.999,10.631 7.668,8.813 4.887,-1.332 7.844,-6.545 12.045,-10.053 5.561,-4.642 11.144,-7.818 17.793,-10.675 11.773,-5.056 22.425,-8.403 35.045,-10.812 12.971,-2.476 25.294,-6.932 37.918,-10.724 13.759,-4.134 27.322,-5.359 41.552,-6.859 13.104,-1.381 26.186,-6.692 16.554,-21.163 -7.53,-11.313 -17.744,-19.862 -27.72,-28.945 l -4.377,-3.985 c 5.527,3.459 24.062,17.84 28.625,11.468 5.297,-7.394 -2.205,-28.659 -3.815,-36.318"
           fill="#009100"
           fill-rule="evenodd"
           id="path1324" />
        <path
           d="m 195.616,247.529 c -4.183,-6.41 -4.991,-13.44 -7.633,-20.069 -3.397,-8.521 -13.641,-12.222 -21.235,-17.039 -11.457,-7.268 -36.77,-19.674 -45.378,-2.429 -17.375,34.804 5.892,72.332 24.631,101.661 -16.087,0 -32.092,-1.239 -48.154,-2.087 -16.24,-0.856 -35.784,-3.416 -51.711,0.572 -7.885,1.975 -17.344,7.075 -25.128,8.203 -3.146,0.456 -8.475,-3.259 -10.496,0.957 -1.728,3.604 3.978,7.7 6.679,7.645 3.405,-0.07 7.454,-4.133 10.704,-5.436 3.731,-1.496 8.175,-1.254 12.106,-1.254 6.587,0 17.441,1.127 22.989,4.778 -9.701,5.568 -21.487,7.244 -31.228,12.821 -5.738,3.286 -29.485,17.246 -15.049,22.063 4.333,1.445 6.938,-7.004 9.983,-9.293 4.793,-3.602 10.496,-5.89 16.256,-7.431 12.902,-3.451 24.954,-4.19 38.166,-2.869 -9.872,3.443 -17.566,14.63 -25.797,20.813 -2.011,1.511 -4.858,4.594 -7.28,5.133 -2.697,0.601 -6.372,0.717 -8.693,2.266 -7.329,4.891 4.938,8.489 9.294,7.398 2.218,-0.556 9.986,-9.828 12.798,-12.176 4.064,-3.394 10.11,-6.218 14.848,-8.591 5.613,-2.812 11.42,-5.802 17.234,-8.152 6.103,-2.467 12.348,-2.092 18.695,-3.364 11.979,-2.4 23.473,-6.893 35.056,-10.76 13.078,-4.367 26.782,-5.99 40.437,-7.51 38.843,-4.322 -1.526,-39.723 -14.039,-51.001 4.206,2.406 22.489,14.878 24.003,5.792 1.776,-10.667 -0.09,-20.132 -2.058,-30.641"
           fill="#009900"
           fill-rule="evenodd"
           id="path1326" />
        <path
           d="m 191.8,247.529 c -3.215,-6.441 -5.486,-12.561 -7.633,-19.114 -2.728,-8.326 -11.137,-11.109 -18.884,-15.926 -10.817,-6.725 -36.032,-17.417 -43.914,-1.631 -16.302,32.653 7.957,70.956 24.631,98.794 -16.087,0 -32.092,-1.239 -48.154,-2.087 -16.24,-0.856 -35.784,-3.416 -51.711,0.572 -8.346,2.09 -16.902,6.508 -25.128,8.203 -1.452,0.299 -9.671,-2.173 -7.156,2.868 0.947,1.897 1.705,7.029 5.248,5.256 12.367,-6.19 30.838,-10.024 43.891,-1.434 -9.701,5.568 -21.487,7.244 -31.228,12.821 -4.271,2.445 -24.945,15.543 -15.526,20.629 4.925,2.659 7.08,-5.318 10.46,-7.859 4.793,-3.602 10.496,-5.89 16.256,-7.431 12.902,-3.451 24.954,-4.19 38.166,-2.869 -9.21,3.213 -17.507,13.782 -24.808,20.07 -1.932,1.664 -5.274,4.8 -7.633,5.734 -2.547,1.009 -5.59,-0.137 -7.633,1.911 -5.487,5.498 7.802,8.267 9.065,5.734 4.946,-9.918 18.658,-14.687 27.3,-20.459 4.904,-3.275 10.634,-5.997 16.113,-8.212 5.573,-2.253 11.371,-1.249 16.858,-3.08 11.165,-3.726 22.239,-7.743 33.395,-11.468 12.192,-4.071 24.374,-5.023 36.927,-7.38 12.692,-2.383 25.029,-7.513 17.813,-21.965 -5.379,-10.774 -16.07,-18.923 -24.843,-26.83 6.022,2.411 14.525,7.978 19.083,1.911 4.679,-6.224 0.09,-19.951 -0.955,-26.758"
           fill="#009e00"
           fill-rule="evenodd"
           id="path1328" />
        <path
           d="m 187.983,248.486 c -3.355,-5.884 -6.679,-10.798 -6.679,-17.682 0,-9.205 -10.262,-11.539 -17.45,-15.653 -7.995,-4.576 -13.043,-6.416 -22.125,-8.234 -6.213,-1.245 -17.572,-0.939 -20.328,6.237 -12.938,33.696 7.958,67.919 24.6,96.498 -15.514,0 -30.935,-1.179 -46.425,-1.995 -16.226,-0.856 -36.343,-3.8 -52.28,0.19 -8.583,2.148 -16.35,4.346 -24.5,7.746 -2.049,0.855 -5.579,0.117 -6.56,2.659 -0.586,1.521 1.165,5.271 2.863,5.734 1.445,0.395 6.968,-3.748 8.795,-4.48 3.731,-1.496 8.175,-1.254 12.106,-1.254 8.168,0 15.729,0.611 22.989,4.778 -9.701,5.568 -21.487,7.244 -31.228,12.821 -3.904,2.235 -22.334,13.63 -13.618,18.717 4.248,2.479 5.219,-3.441 8.552,-5.947 4.793,-3.602 10.496,-5.89 16.256,-7.431 12.902,-3.451 24.954,-4.19 38.166,-2.869 -8.461,2.951 -17.909,13.16 -24.212,19.473 -1.602,1.604 -3.59,2.847 -5.402,4.208 -2.293,1.723 -6.384,1.861 -8.075,3.558 -2.905,2.914 5.663,6.752 6.679,5.733 16.3,-16.342 35.917,-29.364 58.681,-33.926 11.589,-2.322 21.911,-6.998 33.078,-10.726 11.545,-3.855 23.025,-4.662 34.821,-7.194 11.02,-2.365 23.311,-7.813 19.6,-20.822 -2.914,-10.213 -15.039,-19.416 -22.617,-26.247 17.605,6.238 16.987,-11.844 14.313,-23.892"
           fill="#0fa600"
           fill-rule="evenodd"
           id="path1330" />
        <path
           d="m 185.121,248.486 c -4.479,-6.283 -6.678,-9.976 -6.678,-16.726 0,-8.899 -8.847,-10.312 -15.974,-14.014 -7.833,-4.067 -13.413,-6.142 -22.053,-7.964 -6.117,-1.29 -16.306,-0.815 -19.015,6.239 -12.193,31.755 8.902,66.675 24.6,93.631 -24.457,0 -48.81,-2.868 -73.271,-2.868 -12.766,0 -24.596,0.854 -36.976,3.953 -7.996,2.002 -18.395,3.511 -15.702,12.294 12.51,-6.821 30.411,-7.189 42.937,0 -4.139,2.376 -57.699,21.762 -43.891,30.583 3.751,2.396 4.446,-2.623 7.598,-4.992 4.793,-3.602 10.496,-5.89 16.256,-7.431 12.902,-3.451 24.954,-4.19 38.166,-2.869 -8.461,2.951 -17.909,13.16 -24.212,19.473 -6.656,6.667 -14.242,5.088 -6.798,12.544 -0.493,-0.493 22.592,-17.715 25.285,-19.592 10.83,-7.548 19.528,-12.512 32.688,-15.15 10.954,-2.196 20.921,-6.493 31.239,-10.654 10.481,-4.227 21.546,-5.395 32.441,-8.123 8.27,-2.07 23.165,-7.212 21.61,-18.125 -1.52,-10.66 -12.42,-19.022 -19.702,-26.315 11.413,0.628 11.452,-16.505 11.452,-23.894"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1332" />
        <path
           d="m 139.321,165.338 c -20.427,17.538 -41.187,32.952 -64.005,47.237 -11.725,7.34 -22.594,10.142 -36.004,10.813 -15.7,0.787 -21.354,-14.343 -26.327,-26.299 C 7.8,184.624 8.946,169.711 7.97,156.352 c -0.373,-5.101 1.297,-8.446 3.197,-13.204 1.67,-4.181 4.985,-11.467 7.72,-15.118 7.103,-9.485 10.603,-17.912 20.249,-25.769 6.802,-5.541 10.861,-13.537 18.129,-10.512 -9.634,8.042 -21.031,17.404 -23.606,30.299 -1.98,9.913 25.318,2.684 31.24,9.841 1.366,1.651 2.039,5.083 2.916,7.133 2.179,5.093 4.856,2.632 7.121,6.034 3.672,5.518 -2.837,11.936 -7.174,5.947 -3.83,-5.289 -3.09,-11.975 -10.496,-15.292 -5.935,-2.658 -10.604,1.4 -16.22,1.912 7.377,7.39 17.731,9.158 25.02,16.459 4.088,4.096 -2.048,10.009 -4.487,13.428 -2.671,3.745 -1.046,11.797 -8.341,6.925 -4.534,-3.028 -3.354,-8.141 1.837,-8.141 4.018,0 6.99,-7.627 3.357,-10.053 -3.975,-2.654 -7.802,-4.772 -12.581,-3.575 -6.165,1.544 -4.314,7.836 -5.513,12.637 -1.247,4.994 -2.338,10.237 -3.11,15.327 -1.066,7.029 -1.134,7.563 5.411,10.543 11.69,5.322 20.667,-3.038 28.129,-11.342 14.918,-16.603 25.993,-37.383 38.976,-55.588 3.618,7.32 8.753,14.287 13.357,21.025 4.224,6.181 9.291,16.762 16.22,20.07"
           fill="#008000"
           fill-rule="evenodd"
           id="path1334" />
        <path
           d="m 111.651,23.893 c 10.894,-6.838 24.637,-4.854 35.622,0.036 13.345,5.94 25.509,11.339 39.551,15.84 26.066,8.355 49.441,18.666 71.745,34.625 21.284,15.23 41.396,30.716 58.227,50.806 17.773,21.215 31.664,43.857 45.186,67.931 12.589,22.414 19.392,51.508 22.711,76.78 2.065,15.723 2.184,28.797 1.162,44.668 -0.667,10.349 -4.589,25.37 -12.163,32.511 -3.872,3.65 -9.048,11.054 -14.222,12.632 -5.72,1.743 -15.063,6.852 -20.975,6.296 -13.008,-1.221 -25.942,-1.354 -38.318,-5.596 -13.494,-4.624 -25.997,-9.354 -40.069,-11.367 -14.361,-2.055 -28.243,-4.042 -42.295,-7.561 -13.408,-3.357 -26.568,-7.32 -37.461,-16.55 -11.158,-9.454 -16.299,-23.023 -21.908,-35.942 -9.58,-22.067 -12.034,-49.532 -15.947,-73.052 -1.46,-8.777 -2.921,-17.554 -4.381,-26.331 -0.926,-5.566 -0.761,-12.903 -3.952,-17.696 -6.889,-10.348 -12.457,-21.644 -18.693,-32.387 -2.8,-4.824 -5.2,-10.85 -10.302,-12.98 -6.145,-2.565 -12.966,-3.75 -18.959,-6.417 C 72.268,113.932 62.342,109.41 53.631,96.324 50.503,91.624 50.069,85.279 44.863,82.672 41.743,81.109 36.933,78.407 33.413,78.371 37.451,62.194 43.657,45.187 60.711,38.975 77.456,32.872 94.673,29.207 111.651,23.893"
           fill="#008000"
           fill-rule="evenodd"
           id="path1336" />
        <path
           d="m 111.65,26.76 c 12.123,0 24.257,-0.821 35.941,3.08 13.159,4.393 26.104,9.353 39.278,13.752 26.494,8.846 48.797,22.2 71.347,38.332 42.821,30.635 77.662,69.577 99.606,117.82 11.58,25.458 18.384,52.908 22.718,80.399 2.239,14.209 1.633,27.442 1.169,41.872 -0.452,14.024 -9.849,25.328 -18.747,34.837 -8.052,8.603 -23.914,9.309 -35.118,8.223 -16.134,-1.563 -28.182,-4.831 -43.586,-10.109 -13.447,-4.608 -26.407,-6.235 -40.543,-8.258 -13.724,-1.964 -26.87,-5.457 -40.331,-8.828 -24.167,-6.052 -40.978,-31.923 -46.807,-54.553 -6.95,-26.979 -11.872,-54.091 -16.444,-81.568 -2.48,-14.906 -3.813,-26.375 -11.308,-39.288 -6.098,-10.505 -13.179,-20.666 -18.606,-31.539 -4.27,-8.554 -25.561,-11.588 -34.315,-15.345 C 61.935,109.591 55.659,99.491 49.622,86.187 47.699,81.949 35.56,81.045 36.754,76.559 39.929,64.633 43.103,55.278 51.934,46.434 65.531,32.815 93.877,31.506 111.65,26.759"
           fill="#008700"
           fill-rule="evenodd"
           id="path1338" />
        <path
           d="m 111.651,29.627 c 53.077,7.79 101.936,24.325 144.078,58.298 20.394,16.441 42.115,31.398 57.967,52.568 15.873,21.197 32.178,42.697 41.077,67.956 9.756,27.689 17.649,54.225 22.335,83.172 1.632,10.08 3.309,24.909 0.383,34.538 -1.956,6.437 -3.006,14.925 -6.31,20.765 -1.849,3.268 -10.196,13.472 -13.711,14.432 -6.499,1.775 -13.938,5.169 -20.639,5.638 -7.297,0.511 -15.977,-2.134 -23.226,-3.102 -13.676,-1.826 -26.956,-8.107 -39.968,-12.566 -12.331,-4.226 -27.272,-4.239 -40.171,-6.085 -10.504,-1.503 -25.177,-3.76 -34.309,-9.165 -13,-7.696 -24.068,-13.978 -32.166,-27.382 -6.914,-11.445 -10.363,-25.166 -13.66,-37.962 -7.052,-27.376 -10.965,-55.545 -15.603,-83.418 -0.827,-4.973 -0.726,-11.123 -3.569,-15.393 -3.363,-5.051 -6.896,-10.662 -9.6,-16.08 -4.88,-9.776 -11.493,-25.988 -21.497,-30.165 -12.639,-5.275 -26.216,-8.175 -37.472,-16.228 -5.241,-3.75 -8.36,-9.2 -11.19,-14.833 -3.37,-6.707 -3.925,-9.134 -9.542,-12.425 -1.902,-1.114 -3.413,-2.529 -5.725,-2.867 4.203,-16.836 9.045,-30.336 25.762,-38.228 14.12,-6.664 31.511,-8.197 46.756,-11.468"
           fill="#008f00"
           fill-rule="evenodd"
           id="path1340" />
        <path
           d="m 111.651,32.494 c 11.681,5.851 23.364,10.452 36.434,12.088 6.287,0.787 12.823,0.336 19.155,0.336 6.025,0 13.767,4.578 19.469,6.577 25.568,8.963 45.573,26.46 66.158,43.121 21.065,17.048 43.413,32.494 59.792,54.369 16.093,21.492 29.119,43.947 39.341,68.813 10.549,25.663 16.036,53.506 21.866,80.518 2.351,10.89 1.224,25.651 -1.711,36.433 -3.991,14.656 -9.422,25.841 -25.105,29.581 -12.395,2.957 -26.7,3.004 -39.041,-1.226 -12.044,-4.127 -25.054,-10.782 -37.652,-12.584 -28.533,-4.083 -57.479,-6.323 -82.616,-21.203 -24.72,-14.633 -30.751,-44.395 -37.411,-70.247 -6.895,-26.763 -9.868,-55.349 -14.4,-82.589 -1.523,-9.153 -11.063,-21.393 -16.254,-29.194 -2.958,-4.444 -6.088,-9.611 -8.47,-14.383 -3.282,-6.576 -9.349,-8.26 -16.338,-10.36 C 81.71,118.59 69.302,113.823 60.13,103.217 55.323,97.658 53.468,92.757 51.184,85.895 c -0.705,-2.12 -6.715,-4.856 -9.183,-6.093 -3.171,-1.588 5.898,-18.636 7.73,-22 4.013,-7.368 9.252,-11.396 16.442,-15.397 12.579,-7.002 31.547,-6.691 45.478,-9.911"
           fill="#009600"
           fill-rule="evenodd"
           id="path1342" />
        <path
           d="m 111.651,35.361 c 9.869,6.589 20.316,14.533 32.442,16.247 4.055,0.573 13,1.075 16.856,-0.212 9.271,-3.095 11.605,-1.028 20.673,3.009 25.875,11.52 45.795,26.554 67.216,44.945 19.742,16.95 40.631,30.945 57.225,51.258 17.6,21.543 29.69,45.423 40.21,71.013 10.628,25.852 16.919,52.98 22.95,80.159 2.879,12.976 2.192,26.904 -0.703,39.664 -1.914,8.438 -3.014,10.207 -9.156,16.36 -6.203,6.214 -10.789,6.727 -19.494,8.906 -25.778,6.453 -49.403,-13.314 -73.738,-16.796 -13.852,-1.981 -27.887,-3.306 -41.469,-6.707 l -23.076,-5.778 c -6.346,-1.589 -13.417,-7.858 -19.054,-11.195 -21.002,-12.432 -28.021,-47.455 -32.715,-69.147 -5.919,-27.354 -9.692,-55.38 -14.284,-82.976 -0.593,-3.565 -5.961,-10.518 -8.052,-13.658 -3.362,-5.052 -6.894,-10.662 -9.599,-16.081 -2.208,-4.425 -5.551,-13.021 -9.094,-16.306 -4.262,-3.951 -14.786,-5.782 -20.285,-7.434 -11.982,-3.6 -24.5,-9.471 -30.763,-20.76 C 54.735,94.453 52.618,88.371 48.677,84.102 48.161,83.544 44.19,79.427 44.07,79.788 49.213,64.332 52.547,50.08 68.715,43.007 c 13.256,-5.8 28.837,-5.473 42.936,-7.646"
           fill="#009e00"
           fill-rule="evenodd"
           id="path1344" />
        <path
           d="m 111.651,39.184 c 11.072,7.921 21.117,16.518 34.511,19.871 4.748,1.188 12.269,0.186 16.625,-1.996 8.773,-4.393 11.124,-1.867 20.328,1.929 24.858,10.252 44.097,29.68 64.028,47.095 20.313,17.749 42.851,32.974 58.828,54.98 15.648,21.552 27.975,42.891 36.587,68.307 10.808,31.898 54.532,136.524 -8.587,139.534 -11.605,0.554 -25.691,-4.39 -36.56,-8.509 -13.616,-5.16 -25.264,-9.621 -39.568,-11.668 -14.488,-2.072 -28.262,-4.289 -42.438,-7.839 -11.07,-2.772 -27.697,-6.999 -35.278,-16.221 -9.494,-11.549 -15.055,-20.403 -21.001,-34.1 -4.521,-10.414 -6.91,-22.409 -9.306,-33.482 -5.656,-26.134 -9.282,-52.915 -13.669,-79.281 -1.514,-9.1 -9.35,-18.786 -14.002,-26.803 -2.59,-4.463 -5.17,-9.204 -8.022,-13.488 -4.566,-6.858 -5.273,-9.423 -13.163,-12.716 C 89.849,120.157 79.01,118.054 68.823,111.251 62.987,107.354 59.989,102.198 56.665,96.207 54.158,91.687 53.396,85.714 48.678,83.145 49.261,81.823 49.914,81.738 46.77,81.234 51.19,67.066 54.439,52.067 68.644,44.953 81.326,38.602 97.8,39.184 111.651,39.184"
           fill="#0da600"
           fill-rule="evenodd"
           id="path1346" />
        <path
           d="m 111.65,42.051 c 9.067,7.784 17.582,17.125 28.625,21.982 4.619,2.031 11.856,4.74 16.916,2.568 3.677,-1.578 12.601,-9.704 15.205,-8.563 27.131,11.889 46.459,30.133 67.868,50.046 20.188,18.779 42.421,34.946 60.705,55.548 17.174,19.35 26.964,45.592 36.661,69.183 9.381,22.82 18.639,50.65 22.14,75.19 2.208,15.476 3.667,27.245 1.362,42.621 -1.682,11.227 -17.433,20.259 -28.406,18.224 -13.986,-2.594 -26.448,-5.095 -39.69,-10.113 -14.024,-5.314 -25.143,-8.571 -39.923,-10.686 -14.55,-2.082 -28.127,-4.764 -42.392,-8.336 -10.918,-2.734 -24.907,-8.129 -32.176,-16.971 -16.288,-19.813 -24.498,-42.062 -29.038,-67.396 -4.849,-27.053 -9.462,-54.127 -13.973,-81.239 -0.466,-2.805 -5.464,-9.77 -7.105,-12.236 -3.481,-5.23 -6.221,-10.78 -9.701,-16.011 -3.05,-4.583 -6.041,-9.989 -8.508,-14.932 -2.558,-5.125 -9.962,-6.769 -15.354,-8.389 C 82.906,118.947 70.671,114.549 62.532,104.766 58.896,100.395 49.862,84.065 51.54,82.188 44.845,80.655 60.813,51.261 66.417,48.455 80.937,41.187 95.769,42.051 111.65,42.051"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1348" />
        <path
           d="m 111.651,44.918 c 9.06,9.074 17.632,18.683 28.554,25.521 5.77,3.613 10.962,4.106 17.564,4.106 6.496,0 9.618,-11.22 14.948,-12.425 3.321,-0.75 12.198,5.597 15.372,7.717 6.209,4.146 11.875,8.444 17.653,13.179 9.604,7.872 17.285,17.434 26.329,25.845 19.717,18.337 42.685,34.313 60.475,54.358 18.89,21.287 28.124,46.758 39.327,72.412 9.901,22.672 57.258,147.421 -3.689,133.333 -14.749,-3.41 -27.86,-7.465 -42.018,-12.83 -13.604,-5.156 -25.674,-7.027 -40.186,-9.104 -25.645,-3.669 -54.267,-8.267 -71.54,-29.278 -14.3,-17.395 -20.989,-40.393 -24.934,-62.404 -4.771,-26.622 -9.318,-53.263 -13.757,-79.943 -1.213,-7.291 -9.824,-18.724 -14,-25 -3.166,-4.758 -5.594,-9.841 -8.755,-14.588 -4.73,-7.104 -5.568,-8.321 -13.866,-11.785 C 88.375,119.544 77.514,118.048 68.355,110.403 60.045,103.467 58.101,91.012 51.54,84.101 52.697,83.89 53.248,83.365 54.402,83.145 53.523,82.683 53.429,82.463 52.494,82.189 55.23,71.226 58.362,54.401 69.739,48.704 82.868,42.131 97.358,43.487 111.651,44.918"
           fill="#47b500"
           fill-rule="evenodd"
           id="path1350" />
        <path
           d="m 149.818,221.726 c 2.327,12.823 5.148,25.41 8.304,38.053 2.944,11.795 3.588,25.903 8.404,36.929 11.704,26.792 35.759,38.028 63.089,44.872 5.472,1.369 36.123,9.344 38.965,4.599 5.778,-9.647 -7.046,-25.762 -12.638,-33.762 -15.9,-22.753 -33.122,-43.972 -50.427,-65.633 -13.053,-16.341 -21.005,-35.63 -35.303,-51.252 -3.271,-3.575 -7.311,-6.014 -11.279,-8.797 -5.523,-3.874 -8.82,-0.338 -11.581,3.812 -4.92,7.394 0.967,23.673 2.466,31.179"
           fill="#47b500"
           fill-rule="evenodd"
           id="path1352" />
        <path
           d="m 152.68,229.371 c 4.962,24.862 9.537,51.6 19.506,74.9 10.301,24.076 40.497,32.806 64.235,36.203 6.742,0.965 13.365,1.802 20.152,2.324 10.3,0.794 6.364,-6.832 3.717,-13.197 -5.153,-12.391 -13.75,-23.21 -21.528,-33.996 -15.972,-22.149 -34.164,-41.682 -48.237,-65.176 -7.235,-12.079 -15.991,-23.586 -27.279,-32.066 -17.992,-13.516 -11.706,24.152 -10.566,31.008"
           fill="#5cba00"
           fill-rule="evenodd"
           id="path1354" />
        <path
           d="m 156.5,237.02 c 1.319,11.888 4.222,23.938 7.634,35.361 3.547,11.875 3.795,24.644 10.495,35.361 14.785,23.651 43.75,26.212 68.327,30.688 5.271,0.96 14.761,3.651 12.034,-5.45 -2.306,-7.699 -6.108,-13.293 -10.468,-20.085 -7.236,-11.276 -14.792,-21.447 -23.14,-31.913 -7.566,-9.485 -17.567,-18.865 -23.438,-29.447 -6.77,-12.207 -13.231,-24.485 -23.154,-34.423 -5.543,-5.552 -13.802,-13.26 -20.557,-6.494 -4.061,4.069 1.398,21.762 2.267,26.402"
           fill="#70bf00"
           fill-rule="evenodd"
           id="path1356" />
        <path
           d="m 159.358,244.663 c 5.974,23.923 7.978,51.234 23.484,71.201 6.929,8.922 24.736,14.739 35.41,16.521 5.946,0.992 12.03,2.577 18.021,3.123 9.407,0.857 14.557,1.093 9.949,-9.291 -10.195,-22.976 -29.249,-43.82 -44.88,-63.396 -8.116,-10.165 -13.81,-22.49 -22.505,-32.288 -4.339,-4.89 -8.868,-11.019 -15.662,-12.152 -6.568,-1.096 -7.322,8.725 -6.318,13.755 l 2.501,12.527"
           fill="#85c400"
           fill-rule="evenodd"
           id="path1358" />
        <path
           d="m 163.18,252.31 c 1.6,11.204 4.956,21.616 7.633,32.494 2.938,11.94 4.659,20.625 12.989,30.159 7.576,8.673 21.05,12.594 31.856,14.76 8.589,1.721 32.764,7.877 22.613,-8.099 -7.053,-11.1 -14.451,-21.795 -22.461,-32.226 -6.308,-8.214 -14.94,-16.182 -20.029,-25.102 -5.886,-10.317 -12.311,-22.933 -21.151,-31.102 -15.928,-14.716 -13.615,9.714 -11.45,19.116"
           fill="#9ccc00"
           fill-rule="evenodd"
           id="path1360" />
        <path
           d="m 166.038,259.954 c 1.537,9.831 4.428,19.041 6.679,28.672 2.265,9.688 4.364,21.366 13.429,27.042 9.394,5.882 18.106,8.647 28.873,11.045 4.568,1.018 9.512,1.133 14.169,1.716 7.47,0.937 2.63,-6.469 0.787,-10.158 -9.402,-18.837 -25.971,-32.446 -36.472,-50.478 -4.979,-8.548 -10.569,-19.813 -18.985,-25.433 -12.95,-8.645 -9.824,10.187 -8.48,17.594"
           fill="#b0d100"
           fill-rule="evenodd"
           id="path1362" />
        <path
           d="m 169.86,267.6 c 2.866,14.379 3.71,35.27 15.861,45.415 6.956,5.808 14.213,7.837 22.816,10.3 7.744,2.217 20.661,5.916 15.71,-6.017 -6.629,-15.975 -22.927,-27.442 -31.669,-42.036 -5.333,-8.901 -9.732,-15.682 -16.994,-22.953 -9.73,-9.745 -6.592,11.382 -5.724,15.291"
           fill="#c4d600"
           fill-rule="evenodd"
           id="path1364" />
        <path
           d="m 172.72,275.24 c 2.595,11.844 3.065,28.834 13.149,36.915 5.572,4.465 12.581,6.399 19.352,8.661 5.978,1.996 16.71,2.559 10.993,-6.032 -7.744,-11.636 -17.39,-22.175 -24.693,-33.88 -3.411,-5.466 -7.433,-14.002 -12.864,-17.628 -9.185,-6.133 -6.647,6.276 -5.937,11.964"
           fill="#dede00"
           fill-rule="evenodd"
           id="path1366" />
        <path
           d="m 178.442,220.77 c 1.043,27.208 2.353,54.46 -3.817,81.237 -2.833,12.295 -7.509,24.542 -15.796,34.228 -8.549,9.992 -25.423,5.218 -37.796,6.768 -4.47,0.56 -11.688,2.874 -14.647,6.431 -2.524,3.032 -3.006,5.863 -6.626,3.791 -3.146,-1.8 -6.398,-3.83 -10.088,-1.98 -4.479,2.244 -5.494,11.962 0.93,13.033 8.141,1.358 10.723,-2.621 16.245,-5.388 4.291,-2.15 32.003,-10.332 29.614,-2.407 -1.167,3.868 -11.148,8.992 -14.521,11.02 -2.671,1.606 -13.153,9.243 -15.764,8.98 -7.571,-0.76 -17.875,-0.287 -15.762,10.3 2.438,12.211 12.424,4.361 17.28,-1.11 9.165,-10.325 25.739,-17.699 40.216,-16.766 -0.591,6.197 -16.493,17.476 -21.203,22.194 -4.215,4.222 -12.192,4.583 -12.192,12.247 0,7.601 10.245,8.403 14.313,3.31 3.816,-4.78 5.033,-10.542 9.083,-15.41 4.59,-5.517 9.685,-10.492 14.275,-16.009 3.325,-3.997 8.86,-7.464 13.594,-9.496 5.58,-2.396 13.337,-1.746 18.176,-4.977 8.479,-5.661 8.198,-24.81 10.509,-34.071 3.322,-13.316 6.692,-26.624 9.379,-40.081 2.546,-12.753 7.589,-25.709 11.174,-38.281 3.374,-11.831 9.519,-23.681 8.774,-35.966 -0.916,-15.122 -2.253,-26.59 -6.813,-40.947 -1.787,-5.625 -5.536,-8.77 -9.554,-13.16 -2.425,-2.649 -10.876,-6.896 -14.168,-5.098 -12.134,6.629 -17.068,14.4 -18.943,28.169 -1.914,14.045 1.248,25.496 4.128,39.439"
           fill="#47b500"
           fill-rule="evenodd"
           id="path1368" />
        <path
           d="m 178.442,220.77 c 1.043,27.208 2.353,54.46 -3.817,81.237 -2.833,12.295 -7.509,24.542 -15.796,34.228 -8.549,9.992 -25.423,5.218 -37.796,6.768 -4.47,0.56 -11.688,2.874 -14.647,6.431 -2.524,3.032 -3.006,5.863 -6.626,3.791 -3.146,-1.8 -6.398,-3.83 -10.088,-1.98 -4.479,2.244 -5.494,11.962 0.93,13.033 8.141,1.358 10.723,-2.621 16.245,-5.388 4.291,-2.15 32.003,-10.332 29.614,-2.407 -1.167,3.868 -11.148,8.992 -14.521,11.02 -2.671,1.606 -13.153,9.243 -15.764,8.98 -7.571,-0.76 -17.875,-0.287 -15.762,10.3 2.438,12.211 12.424,4.361 17.28,-1.11 9.165,-10.325 25.739,-17.699 40.216,-16.766 -0.591,6.197 -16.493,17.476 -21.203,22.194 -4.215,4.222 -12.192,4.583 -12.192,12.247 0,7.601 10.245,8.403 14.313,3.31 3.816,-4.78 5.033,-10.542 9.083,-15.41 4.59,-5.517 9.685,-10.492 14.275,-16.009 3.325,-3.997 8.86,-7.464 13.594,-9.496 5.58,-2.396 13.337,-1.746 18.176,-4.977 7.176,-4.791 7.794,-25.805 8.729,-34.229 1.449,-13.053 6.712,-26.303 10.084,-38.968 3.4,-12.772 6.715,-25.57 10.34,-38.281 3.164,-11.094 9.612,-23.833 8.827,-35.254 -0.946,-13.746 -2.167,-23.814 -6.682,-36.733 -2.553,-7.305 -13.485,-21.252 -23.027,-16.474 -24.523,12.277 -18.134,37.293 -13.785,59.943"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1370" />
        <path
           d="m 178.442,220.77 c 1.043,27.208 2.353,54.46 -3.817,81.237 -2.833,12.295 -7.509,24.542 -15.796,34.228 -8.549,9.992 -25.423,5.218 -37.796,6.768 -4.47,0.56 -11.688,2.874 -14.647,6.431 -2.524,3.032 -3.006,5.863 -6.626,3.791 -3.146,-1.8 -6.398,-3.83 -10.088,-1.98 -4.479,2.244 -5.494,11.962 0.93,13.033 8.141,1.358 10.723,-2.621 16.245,-5.388 4.291,-2.15 32.003,-10.332 29.614,-2.407 -1.167,3.868 -11.148,8.992 -14.521,11.02 -2.671,1.606 -13.153,9.243 -15.764,8.98 -7.571,-0.76 -17.875,-0.287 -15.762,10.3 2.438,12.211 12.424,4.361 17.28,-1.11 9.165,-10.325 25.739,-17.699 40.216,-16.766 -0.591,6.197 -16.493,17.476 -21.203,22.194 -4.215,4.222 -12.192,4.583 -12.192,12.247 0,7.601 10.245,8.403 14.313,3.31 3.816,-4.78 5.033,-10.542 9.083,-15.41 4.59,-5.517 9.685,-10.492 14.275,-16.009 3.325,-3.997 8.86,-7.464 13.594,-9.496 5.108,-2.193 14.687,-1.729 18.388,-5.438 6.644,-6.653 5.5,-24.271 7.633,-33.449 3.049,-13.116 5.593,-26.266 9.061,-39.287 3.401,-12.772 6.714,-25.57 10.34,-38.281 3.265,-11.444 9.68,-23.779 8.729,-35.666 -1.028,-12.887 -2.829,-21.345 -7.511,-33.402 -2.395,-6.168 -13.793,-15.703 -21.147,-12.756 -10.774,4.316 -14.07,10.107 -15.975,21.556 -1.915,11.497 0.657,20.29 3.144,31.75"
           fill="#0da600"
           fill-rule="evenodd"
           id="path1372" />
        <path
           d="m 178.442,220.77 c 1.043,27.208 2.353,54.46 -3.817,81.237 -2.833,12.295 -7.509,24.542 -15.796,34.228 -8.549,9.992 -25.423,5.218 -37.796,6.768 -4.47,0.56 -11.688,2.874 -14.647,6.431 -2.524,3.032 -3.006,5.863 -6.626,3.791 -3.146,-1.8 -6.398,-3.83 -10.088,-1.98 -4.479,2.244 -5.494,11.962 0.93,13.033 8.141,1.358 10.723,-2.621 16.245,-5.388 4.291,-2.15 32.003,-10.332 29.614,-2.407 -1.167,3.868 -11.148,8.992 -14.521,11.02 -2.671,1.606 -13.153,9.243 -15.764,8.98 -7.571,-0.76 -17.875,-0.287 -15.762,10.3 2.438,12.211 12.424,4.361 17.28,-1.11 9.165,-10.325 25.739,-17.699 40.216,-16.766 -0.591,6.197 -16.493,17.476 -21.203,22.194 -4.215,4.222 -12.192,4.583 -12.192,12.247 0,7.601 10.245,8.403 14.313,3.31 3.816,-4.78 5.033,-10.542 9.083,-15.41 4.59,-5.517 9.685,-10.492 14.275,-16.009 3.325,-3.997 8.86,-7.464 13.594,-9.496 5.999,-2.575 12.695,-2.109 18.388,-4.959 5.658,-2.832 4.432,-28.316 5.848,-34.462 3.118,-13.531 6.274,-27.044 9.418,-40.562 3.15,-13.551 7.153,-26.987 10.969,-40.364 1.52,-5.329 3.145,-10.645 4.895,-15.903 2.878,-8.646 2.861,-12.319 1.625,-21.4 -1.625,-11.938 -10.327,-41.164 -28.302,-33.16 -18.744,8.343 -13.445,29.481 -10.179,45.837"
           fill="#009e00"
           fill-rule="evenodd"
           id="path1374" />
        <path
           d="m 178.442,220.77 c 1.043,27.208 2.353,54.46 -3.817,81.237 -2.833,12.295 -7.509,24.542 -15.796,34.228 -8.549,9.992 -25.423,5.218 -37.796,6.768 -4.47,0.56 -11.688,2.874 -14.647,6.431 -2.524,3.032 -3.006,5.863 -6.626,3.791 -3.146,-1.8 -6.398,-3.83 -10.088,-1.98 -4.479,2.244 -5.494,11.962 0.93,13.033 8.141,1.358 10.723,-2.621 16.245,-5.388 4.291,-2.15 32.003,-10.332 29.614,-2.407 -1.167,3.868 -11.148,8.992 -14.521,11.02 -2.671,1.606 -13.153,9.243 -15.764,8.98 -7.571,-0.76 -17.875,-0.287 -15.762,10.3 2.438,12.211 12.424,4.361 17.28,-1.11 9.165,-10.325 25.739,-17.699 40.216,-16.766 -0.591,6.197 -16.493,17.476 -21.203,22.194 -4.215,4.222 -12.192,4.583 -12.192,12.247 0,7.601 10.245,8.403 14.313,3.31 3.816,-4.78 5.033,-10.542 9.083,-15.41 4.59,-5.517 9.685,-10.492 14.275,-16.009 3.325,-3.997 8.86,-7.464 13.594,-9.496 5.999,-2.575 12.695,-2.109 18.388,-4.959 3.545,-1.774 1.909,-12.376 1.909,-15.77 0,-6.174 1.507,-12.166 2.862,-18.158 3.07,-13.575 5.829,-27.152 9.411,-40.604 3.459,-12.989 5.951,-26.158 9.637,-39.075 1.569,-5.503 3.066,-11.097 5.018,-16.474 3.354,-9.239 3.146,-12.846 1.603,-22.633 -1.676,-10.632 -11.803,-31.43 -25.986,-26.695 -17.755,5.926 -13.573,24.954 -10.18,39.395"
           fill="#009600"
           fill-rule="evenodd"
           id="path1376" />
        <path
           d="m 178.442,220.77 c 1.043,27.208 2.353,54.46 -3.817,81.237 -2.833,12.295 -7.509,24.542 -15.796,34.228 -8.549,9.992 -25.423,5.218 -37.796,6.768 -4.47,0.56 -11.688,2.874 -14.647,6.431 -2.524,3.032 -3.006,5.863 -6.626,3.791 -3.146,-1.8 -6.398,-3.83 -10.088,-1.98 -4.479,2.244 -5.494,11.962 0.93,13.033 8.141,1.358 10.723,-2.621 16.245,-5.388 4.291,-2.15 32.003,-10.332 29.614,-2.407 -1.167,3.868 -11.148,8.992 -14.521,11.02 -2.671,1.606 -13.153,9.243 -15.764,8.98 -7.571,-0.76 -17.875,-0.287 -15.762,10.3 2.438,12.211 12.424,4.361 17.28,-1.11 9.165,-10.325 25.739,-17.699 40.216,-16.766 -0.591,6.197 -16.493,17.476 -21.203,22.194 -4.215,4.222 -12.192,4.583 -12.192,12.247 0,7.601 10.245,8.403 14.313,3.31 3.816,-4.78 5.033,-10.542 9.083,-15.41 4.59,-5.517 9.685,-10.492 14.275,-16.009 3.325,-3.997 8.86,-7.464 13.594,-9.496 4.631,-1.988 14.664,-1.71 17.911,-4.959 3.068,-3.069 1.431,-11.761 1.431,-15.77 0,-5.688 0.817,-12.103 2.007,-17.662 2.881,-13.47 6.647,-26.634 9.344,-40.146 2.548,-12.757 6.391,-25.415 9.957,-37.919 1.696,-5.945 2.714,-12.086 4.454,-18.003 2.72,-9.247 3.619,-11.502 1.696,-21.133 -1.819,-9.113 -11.924,-24.57 -23.481,-21.676 -16.21,4.057 -13.293,19.091 -10.657,32.295"
           fill="#008f00"
           fill-rule="evenodd"
           id="path1378" />
        <path
           d="m 178.442,220.77 c 1.043,27.208 2.353,54.46 -3.817,81.237 -2.833,12.295 -7.509,24.542 -15.796,34.228 -8.549,9.992 -25.423,5.218 -37.796,6.768 -4.47,0.56 -11.688,2.874 -14.647,6.431 -2.524,3.032 -3.006,5.863 -6.626,3.791 -3.146,-1.8 -6.398,-3.83 -10.088,-1.98 -4.479,2.244 -5.494,11.962 0.93,13.033 8.141,1.358 10.723,-2.621 16.245,-5.388 4.291,-2.15 32.003,-10.332 29.614,-2.407 -1.167,3.868 -11.148,8.992 -14.521,11.02 -2.671,1.606 -13.153,9.243 -15.764,8.98 -7.571,-0.76 -17.875,-0.287 -15.762,10.3 2.438,12.211 12.424,4.361 17.28,-1.11 9.165,-10.325 25.739,-17.699 40.216,-16.766 -0.591,6.197 -16.493,17.476 -21.203,22.194 -4.215,4.222 -12.192,4.583 -12.192,12.247 0,7.601 10.245,8.403 14.313,3.31 3.816,-4.78 5.033,-10.542 9.083,-15.41 4.59,-5.517 9.685,-10.492 14.275,-16.009 3.325,-3.997 8.86,-7.464 13.594,-9.496 4.631,-1.988 14.664,-1.71 17.911,-4.959 3.528,-3.529 0.478,-11.449 0.478,-15.77 0,-6.844 0.822,-12.49 2.355,-19.145 3.021,-13.111 4.813,-26.659 8.271,-39.646 3.723,-13.978 7.435,-27.838 10.267,-42.025 2.165,-10.852 12.45,-24.773 4.446,-35.462 -6.071,-8.106 -14.04,-15.637 -24.896,-12.531 -11.648,3.331 -8.305,16.009 -6.17,24.565"
           fill="#008700"
           fill-rule="evenodd"
           id="path1380" />
        <path
           d="m 178.442,220.77 c 1.043,27.208 2.353,54.46 -3.817,81.237 -2.833,12.295 -7.509,24.542 -15.796,34.228 -8.549,9.992 -25.423,5.218 -37.796,6.768 -4.47,0.56 -11.688,2.874 -14.647,6.431 -2.524,3.032 -3.006,5.863 -6.626,3.791 -3.146,-1.8 -6.398,-3.83 -10.088,-1.98 -4.479,2.244 -5.494,11.962 0.93,13.033 8.141,1.358 10.723,-2.621 16.245,-5.388 4.291,-2.15 32.003,-10.332 29.614,-2.407 -1.167,3.868 -11.148,8.992 -14.521,11.02 -2.671,1.606 -13.153,9.243 -15.764,8.98 -7.571,-0.76 -17.875,-0.287 -15.762,10.3 2.438,12.211 12.424,4.361 17.28,-1.11 9.165,-10.325 25.739,-17.699 40.216,-16.766 -0.591,6.197 -16.493,17.476 -21.203,22.194 -4.215,4.222 -12.192,4.583 -12.192,12.247 0,7.601 10.245,8.403 14.313,3.31 3.816,-4.78 5.033,-10.542 9.083,-15.41 4.59,-5.517 9.685,-10.492 14.275,-16.009 3.325,-3.997 8.86,-7.464 13.594,-9.496 4.631,-1.988 14.664,-1.71 17.911,-4.959 2.543,-2.545 -0.477,-13.309 -0.477,-16.785 0,-6.127 0.018,-12.119 1.402,-18.129 3.034,-13.167 6.551,-26.42 9.192,-39.646 2.833,-14.188 6.546,-28.047 10.267,-42.025 1.523,-5.724 2.472,-11.478 4.495,-17.052 2.852,-7.854 0.698,-11.817 -5.212,-17.737 -5.449,-5.459 -12.686,-8.202 -20.204,-6.947 -9.128,1.521 -6.008,12.467 -4.712,18.307"
           fill="#008000"
           fill-rule="evenodd"
           id="path1382" />
        <path
           d="m 51.54,86.97 c 11.731,-1.521 23.8,10.097 33.187,15.739 6.123,3.68 12.477,6.069 18.605,9.976 4.341,2.768 11.641,6.843 16.906,6.779 C 117.995,108.827 99.098,98.707 89.706,95.571 77.183,91.391 64.553,89.142 51.54,86.97"
           fill-rule="evenodd"
           id="path1384" />
        <path
           d="m 125.01,43.963 c 5.938,8.806 21.264,5.014 24.809,-3.823 3.066,-7.643 -4.527,-16.355 -9.048,-23.149 -4.654,-6.995 -22.117,-20.035 -23.394,-4.566 -0.798,9.667 3.414,23.085 7.633,31.538"
           fill="#f0f0f0"
           fill-rule="evenodd"
           id="path1386" />
        <path
           d="m 121.19,3.823 c 6.677,1.085 7.42,13.552 0,13.38 -6.9,-0.161 -6.317,-12.504 0,-13.38"
           fill-rule="evenodd"
           id="path1388" />
        <path
           d="M 90.66,0 C 98.61,0.166 97.618,13.379 90.183,13.379 83.655,13.379 85.106,1.174 90.66,0"
           fill-rule="evenodd"
           id="path1390" />
        <path
           d="m 373.089,304.872 c -10.04,-23.461 -19.015,-49.625 -37.475,-68.118 -19.608,-19.643 -40.407,-34.482 -67.436,-41.383 -13.846,-3.535 -26.675,-8.507 -40.913,-7.17 -5.822,0.547 -15.846,-0.525 -21.153,1.986 -3.814,1.805 -13.525,11.456 -15.267,15.292 -2.509,5.529 -1.295,15.571 -1.803,21.666 -0.505,6.071 3.106,13.738 4.607,19.563 3.675,14.263 10.307,26.594 16.736,39.876 10.413,21.513 29.331,41.023 44.388,59.384 -19.194,0 -38.357,-1.57 -57.526,-2.579 -17.513,-0.922 -39.162,-2.315 -56.018,3.536 -2.837,0.985 -9.154,6.501 -11.942,5.57 -4.776,-1.595 -9.249,-3.659 -14.298,-3.659 -12.854,0 -2.916,15.291 6.261,15.291 7.747,0 13.859,-9.558 22.93,-9.558 9.493,0 19.845,0.376 28.535,4.779 -6.356,0.579 -12.065,4.772 -17.968,6.988 -7.011,2.632 -13.811,5.293 -20.198,9.258 -6.279,3.897 -8.58,8.39 -15.903,10.019 -8.641,1.922 -7.097,9.82 -0.109,12.621 8.094,3.244 8.64,-3.067 12.195,-8.303 3.434,-5.057 10.349,-8.426 16.045,-10.566 13.849,-5.204 28.581,-7.96 43.112,-4.725 -11.306,4.754 -18.778,16.032 -28.624,22.937 -5.878,4.122 -35.92,7.729 -23.645,17.561 4.71,3.773 12.015,2.599 16.965,0.121 3.648,-1.827 3.444,-3.475 4.572,-7.429 0.634,-2.224 4.58,-4.578 6.519,-5.872 10.613,-7.086 21.996,-8.102 33.754,-12.027 11.687,-3.9 24.83,-4.173 36.898,-7.473 12.012,-3.284 24.207,-5.656 36.198,-8.933 14.642,-4 27.907,-3.392 42.997,-2.762 15.692,0.654 19.923,-12.075 10.243,-22.742 -13.342,-14.702 -28.13,-26.643 -43.324,-39.327 21.563,12.153 41.918,25.998 63.828,37.614 7.549,4.003 24.895,7.83 27.805,-3.101 3.571,-13.398 0.909,-24.569 -0.986,-38.335"
           fill="#008000"
           fill-rule="evenodd"
           id="path1392" />
        <path
           d="m 373.089,304.872 c -10.549,-22.889 -20.575,-47.695 -39.477,-65.171 -9.792,-9.054 -19.812,-17.599 -31.388,-24.313 -13.267,-7.693 -25.554,-10.401 -40.545,-14.154 -15.092,-3.779 -24.581,-5.103 -40.07,-4.133 -10.765,0.674 -26.21,5.614 -27.326,18.469 -0.488,5.621 -2.606,13.156 -1.274,18.685 l 6.167,25.594 c 2.541,10.544 10.674,23.161 16.579,32.33 12.241,19.005 24.753,36.254 39.019,53.789 -37.97,0 -75.426,-6.207 -113.117,0.877 -3.796,0.713 -7.93,3.838 -11.385,5.568 -2.783,1.394 -7.655,-3.975 -10.929,-3.428 -12.295,2.051 -7.763,14.187 2.863,14.187 4.319,0 7.48,-4.55 11.182,-6.033 4.347,-1.741 8.388,-2.569 13.09,-2.569 9.606,0 17.33,1.035 26.239,4.779 -11.564,1.053 -27.407,10.09 -37.471,15.849 -5.899,3.375 -8.523,8.787 -15.183,9.619 -7.583,0.948 -6.876,11.021 0.176,12.761 8.09,1.996 8.285,-6.384 12.405,-10.514 4.428,-4.438 12.579,-7.112 18.289,-9.259 12.218,-4.591 26.317,-5.979 38.96,-3.164 -11.332,4.765 -18.719,16.08 -28.624,22.937 -4.541,3.144 -37.969,10.584 -18.13,17.203 3.129,1.044 13.271,1.219 14.611,-2.809 2.203,-6.62 7.203,-9.803 13.06,-13.438 10.525,-6.533 22.835,-7.623 34.35,-11.469 11.651,-3.892 24.506,-4.959 36.431,-8.215 12.537,-3.423 25.609,-8.91 38.627,-9.997 13.617,-1.137 27.612,0.815 40.589,-3.517 14.203,-4.741 -0.021,-23.351 -6.483,-29.284 -10.328,-9.482 -21.113,-18.373 -31.876,-27.357 21.563,12.153 41.918,25.998 63.828,37.614 7.549,4.003 24.895,7.83 27.805,-3.101 3.565,-13.399 0.903,-24.57 -0.992,-38.336"
           fill="#008700"
           fill-rule="evenodd"
           id="path1394" />
        <path
           d="m 373.089,304.872 c -10.59,-25.457 -24.92,-46.934 -45.234,-65.584 -10.025,-9.205 -21.819,-15.586 -33.621,-22.152 -4.184,-2.328 -10.571,-2.801 -15.168,-3.975 l -28.772,-7.346 c -4.477,-1.143 -7.575,-1.213 -12.272,-1.066 -6.813,0.213 -16.84,-1.415 -23.321,0.73 -14.655,4.852 -20.057,18.084 -19.083,32.494 1.86,27.522 20.658,53.967 35.204,76.205 7.264,11.105 15.818,21.313 23.954,31.79 -36.811,0 -73.714,-6.529 -110.247,0.337 -4.123,0.775 -7.347,2.648 -11.125,4.54 -5.45,2.729 -6.531,-0.881 -12.21,-1.054 -11.418,-0.349 -6.303,13.503 2.862,12.424 3.771,-0.444 6.079,-3.772 9.333,-5.076 4.347,-1.741 8.388,-2.569 13.09,-2.569 9.606,0 17.33,1.035 26.239,4.779 -10.886,0.991 -26.311,9.463 -35.815,14.9 -4.843,2.771 -9.853,9.609 -14.755,10.426 -6.543,1.091 -7.76,9.498 -0.953,11.946 7.462,2.685 7.985,-6.017 11.45,-9.558 4.354,-4.449 12.626,-7.131 18.289,-9.259 12.218,-4.591 26.317,-5.979 38.96,-3.164 -11.32,4.76 -18.746,16.058 -28.624,22.937 -5.189,3.613 -10.658,3.426 -16.162,6.183 -2.301,1.152 -7.319,2.794 -4.088,6.029 2.038,2.042 4.733,4.036 7.786,4.036 8.596,0 7.46,-3.592 12.57,-8.71 4.88,-4.888 9.795,-7.693 16.114,-10.405 11.484,-4.93 22.351,-9.021 34.664,-11.265 24.833,-4.523 51.102,-18.363 76.413,-18.363 4.577,0 39.537,1.849 34.61,-11.308 -4.908,-13.108 -14.382,-21.923 -24.51,-31.221 -5.259,-4.827 -10.698,-9.332 -16.22,-13.859 21.563,12.153 41.918,25.998 63.828,37.614 7.549,4.003 24.895,7.83 27.805,-3.101 3.566,-13.398 0.904,-24.569 -0.991,-38.335"
           fill="#008f00"
           fill-rule="evenodd"
           id="path1396" />
        <path
           d="m 373.089,304.872 c -9.816,-21.631 -25.622,-49.125 -46.174,-62.361 -9.736,-6.271 -20.385,-14.801 -31.64,-17.895 l -45.124,-12.407 c -5.65,-1.554 -13.757,-0.041 -19.589,-0.041 -8.297,0 -11.353,-0.449 -18.147,3.954 -7.593,4.922 -9.894,5.051 -11.196,13.749 -1.172,7.822 -1.715,12.231 0.025,19.787 5.893,25.58 18.949,51.282 35.037,72.229 l 18.493,24.08 c -35.046,0 -71.146,-7.012 -105.911,-0.478 -9.111,1.713 -16.13,8.014 -25.067,5.456 -9.316,-2.667 -7.644,11.726 1.213,11.269 3.375,-0.174 6.885,-4.478 10.02,-5.733 4.483,-1.796 8.967,-1.912 13.746,-1.912 8.759,0 15.853,1.38 23.942,4.779 -10.886,0.991 -26.311,9.463 -35.815,14.9 -2.577,1.475 -5.01,3.121 -7.481,4.771 -1.909,1.275 -2.019,4.938 -4.352,5.327 -6.716,1.119 -9.125,5.585 -2.71,9.867 6.283,4.193 6.955,-3.812 10.284,-7.151 4.425,-4.439 12.58,-7.113 18.289,-9.259 12.218,-4.591 26.317,-5.979 38.96,-3.164 -11.382,4.786 -18.596,16.186 -28.624,22.937 -5.539,3.729 -11.662,3.759 -17.384,7.196 -6.013,3.613 6.534,7.914 9.75,7.14 5.236,-1.261 7.715,-8.021 12.045,-10.911 5.739,-3.832 11.45,-7.094 17.793,-9.817 12.1,-5.193 22.022,-8.947 35.044,-10.81 27.017,-3.863 50.979,-16.41 78.695,-17.8 13.261,-0.665 27.168,-6.163 17.33,-20.947 -6.976,-10.482 -16.248,-19.94 -25.979,-27.918 l -6.118,-5.016 c 21.563,12.153 41.918,25.998 63.828,37.614 7.549,4.003 24.895,7.83 27.805,-3.101 3.569,-13.397 0.907,-24.568 -0.988,-38.334"
           fill="#009600"
           fill-rule="evenodd"
           id="path1398" />
        <path
           d="m 373.089,304.872 c -11.467,-22.971 -28.133,-44.268 -49.62,-58.619 -10.588,-7.072 -20.706,-12.026 -32.91,-15.382 -12.806,-3.521 -26.985,-9.806 -40.338,-10.211 l -25.781,-0.782 c -5.739,-0.174 -12.304,5.944 -17.126,8.785 -3.735,2.201 -4.006,13.351 -4.929,17.511 -1.195,5.387 3.915,15.773 5.318,21.164 2.788,10.706 9.729,22.084 15.5,31.605 7.854,12.956 15.715,25.291 24.636,37.519 l 6.936,9.506 c -32.551,0 -67.613,-7.676 -99.866,-1.613 -4.405,0.827 -9.447,1.102 -13.678,2.57 -3.772,1.31 -7.53,5.135 -11.45,5.734 -2.72,0.416 -8.763,-4.56 -10.497,0.955 -0.949,3.02 4.137,7.524 6.679,7.646 3.16,0.151 7.658,-4.214 10.705,-5.435 3.733,-1.496 8.173,-1.256 12.106,-1.256 8.759,0 15.853,1.38 23.942,4.779 -10.044,0.915 -25.042,8.736 -33.837,13.77 -4.136,2.366 -10.174,10.395 -13.906,11.327 -6,1.5 -5.647,9.309 0.513,9.309 4.883,0 6.596,-6.354 11.181,-9.108 5.067,-3.043 10.073,-5.642 15.765,-7.351 12.269,-3.686 24.914,-5.447 37.459,-2.654 -10.852,4.563 -18.409,15.262 -27.635,22.193 -2.598,1.952 -4.258,3.542 -7.493,3.946 -2.055,0.258 -8.056,0.565 -8.763,3.486 -1.449,5.98 8.165,5.841 11.415,5.027 3.24,-0.812 9.185,-8.907 12.797,-11.319 4.898,-3.271 9.605,-5.554 14.648,-8.44 5.562,-3.184 11.494,-5.803 17.435,-8.205 6.133,-2.48 12.49,-1.745 18.694,-3.609 11.656,-3.505 23.189,-8.579 35.057,-11.222 13.653,-3.04 26.479,-5.247 40.438,-6.801 16.115,-1.793 20.612,-10.89 13.029,-24.561 -5.743,-10.353 -18.084,-19.077 -27.068,-26.442 21.563,12.153 41.918,25.998 63.828,37.614 7.549,4.003 24.895,7.83 27.805,-3.101 3.568,-13.398 0.906,-24.569 -0.989,-38.335"
           fill="#009e00"
           fill-rule="evenodd"
           id="path1400" />
        <path
           d="m 373.089,304.872 c -25.781,-46.479 -74.718,-73.984 -127.499,-77.188 -4.539,-0.275 -15.731,-3.147 -19.818,-0.979 -4.201,2.229 -14.887,5.343 -16.338,9.992 -2.092,6.7 -4.822,11.695 -2.983,18.447 1.81,6.647 3.148,13.491 6.036,19.758 11.785,25.58 25.863,48.217 42.288,71.066 -32.069,0 -66.94,-7.802 -98.706,-1.832 -9.875,1.856 -16.836,3.789 -25.796,8.277 -1.941,0.972 -6.677,-2.399 -8.126,1.201 -1.008,2.505 3.009,6.541 4.771,6.69 2.206,0.187 7.717,-4.162 10.495,-4.778 4.184,-0.928 8.141,-0.957 12.405,-0.957 8.348,0 15.203,1.545 22.899,4.779 -9.325,0.85 -23.994,8.137 -32.181,12.821 -6.288,3.599 -25.17,14.363 -13.618,20.151 2.775,1.39 6.493,-5.719 9.75,-7.676 5.067,-3.043 10.073,-5.642 15.765,-7.351 12.269,-3.686 24.914,-5.447 37.459,-2.654 -10.294,4.329 -17.095,14.273 -25.797,20.813 -4.856,3.648 -9.831,4.251 -14.489,7.362 -3.406,2.275 5.686,8.403 9.277,4.797 16.987,-17.057 37.077,-27 60.271,-32.159 11.501,-2.559 22.249,-6.862 33.395,-10.583 12.987,-4.336 26.321,-5.396 39.752,-7.77 12.713,-2.247 21.421,-8.685 14.988,-21.574 -5.376,-10.773 -16.072,-18.923 -24.842,-26.832 21.563,12.153 41.918,25.998 63.828,37.614 7.549,4.003 24.895,7.83 27.805,-3.101 3.566,-13.397 0.904,-24.568 -0.991,-38.334"
           fill="#0da600"
           fill-rule="evenodd"
           id="path1402" />
        <path
           d="m 373.089,304.872 c -26.188,-41.969 -74.313,-64.541 -122.728,-68.952 -5.95,-0.542 -13.5,-2.577 -19.44,-1.771 -2.744,0.373 -16.563,4.849 -17.34,7.182 -4.296,12.91 -5.398,23.727 1,36.543 11.906,23.851 25.226,46.047 40.193,68.094 -25.251,0 -50.395,-2.866 -75.655,-2.866 -12.382,0 -24.159,1.243 -36.301,3.524 -2.646,0.498 -4.909,1.963 -7.312,3.166 -1.083,0.542 -8.082,2.358 -8.588,2.867 -2.263,2.272 -1.368,4.648 0.954,7.646 10.892,-10.404 32.333,-6.214 44.845,-0.956 -8.458,0.771 -24.966,8.07 -32.082,12.821 -3.881,2.591 -23.398,13.865 -12.763,19.194 0.374,0.188 20.417,-12.825 24.561,-14.069 12.269,-3.686 24.914,-5.447 37.459,-2.654 -9.705,4.081 -16.998,13.342 -24.808,20.069 -2.076,1.788 -4.451,3.344 -6.644,4.991 -1.793,1.347 -5.955,-0.325 -6.714,2.654 -0.905,3.551 4.825,4.778 7.156,4.778 2.244,0 9.743,-8.82 11.926,-10.513 4.391,-3.403 9.236,-7.197 14.053,-9.955 11.17,-6.394 21.081,-10.438 33.655,-12.981 11.201,-2.265 21.331,-7.122 32.122,-10.725 11.404,-3.808 23.093,-5.632 34.823,-8.15 9.53,-2.045 23.268,-5.785 20.164,-18.222 -2.998,-12.017 -13.888,-20.445 -23.181,-27.894 21.563,12.153 41.918,25.998 63.828,37.614 7.549,4.003 24.895,7.83 27.805,-3.101 3.569,-13.397 0.907,-24.568 -0.988,-38.334"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1404" />
        <path
           d="m 373.089,304.872 c -28.682,-40.225 -79.232,-55.898 -126.307,-61.614 -9.166,-1.113 -26.78,-3.042 -30.729,7.248 -4.273,11.131 -1.713,21.427 3.028,32.35 9.67,22.277 23.218,42.287 35.693,63.112 -25.251,0 -50.395,-2.866 -75.655,-2.866 -12.382,0 -24.159,1.243 -36.301,3.524 -2.937,0.553 -12.682,4.007 -13.992,6.033 -1.222,1.89 -0.322,4.24 0,6.689 10.519,-9.886 32.042,-4.979 43.891,0 -10.066,0.917 -26.822,9.31 -35.196,14.9 -8.319,5.555 -13.697,8.415 -7.74,16.638 10.175,-16.661 43.205,-20.011 60.111,-16.246 -9.016,3.791 -17.384,12.633 -24.212,19.472 -6.658,6.669 -14.24,5.087 -6.798,12.544 0.144,0.145 22.39,-18.695 25.285,-20.548 9.634,-6.166 19.426,-12.937 30.921,-14.088 11.241,-1.127 22.025,-6.047 32.313,-10.463 10.064,-4.319 20.782,-4.776 31.032,-8.197 7.589,-2.533 25.813,-6.364 23.899,-17.845 -1.95,-11.707 -11.426,-19.286 -19.888,-26.821 21.563,12.153 41.918,25.998 63.828,37.614 7.549,4.003 24.895,7.83 27.805,-3.101 3.569,-13.398 0.907,-24.569 -0.988,-38.335"
           fill="#47b500"
           fill-rule="evenodd"
           id="path1406" />
        <path
           d="m 271,94.616 c 4.325,-5.983 17.261,6.39 11.45,11.468 -5.763,5.037 -15.257,-5.757 -11.45,-11.468"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1408" />
        <path
           d="m 314.88,135.71 c 5.958,-3.817 17.077,7.319 11.45,12.425 -5.707,5.178 -15.448,-6.482 -11.45,-12.425"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1410" />
        <path
           d="m 357.82,230.33 c 4.309,-5.957 17.777,5.961 11.45,11.469 -5.718,4.978 -15.28,-5.721 -11.45,-11.469"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1412" />
        <path
           d="m 257.64,201.66 c 7.069,-5.018 7.635,5.721 7.635,8.123 0,1.884 -13.893,-3.423 -7.635,-8.123"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1414" />
        <path
           d="m 305.34,215.04 c 4.756,-3.655 12.257,3.967 8.109,8.123 -3.766,3.775 -10.856,-4.428 -8.109,-8.123"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1416" />
        <path
           d="m 313.93,256.13 c 4.05,-3.021 11.131,5.105 7.633,8.601 -3.545,3.54 -10.965,-4.252 -7.633,-8.601"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1418" />
        <path
           d="m 184.167,268.556 c 5.885,0.078 5.489,11.1 0.954,11.469 -4.837,0.393 -7.383,-11.384 -0.954,-11.469"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1420" />
        <path
           d="m 181.3,301.05 c 4.541,0.963 7.84,12.426 1.431,12.426 -5.713,0 -5.296,-11.223 -1.431,-12.426"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1422" />
        <path
           d="m 291.98,167.25 c 6.006,-4.015 16.697,6.983 11.45,12.424 -4.362,4.524 -18.599,-7.382 -11.45,-12.424"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1424" />
        <path
           d="m 230.92,108 c 5.326,-2.935 16.91,6.961 11.45,12.423 -6.029,6.032 -14.996,-6.617 -11.45,-12.423"
           fill="#29ad00"
           fill-rule="evenodd"
           id="path1426" />
        <path
           d="m 250,67.855 c 6,-0.552 12.446,10.711 5.726,13.38 -6.248,2.481 -11.868,-10.42 -5.726,-13.38"
           fill="#008700"
           fill-rule="evenodd"
           id="path1428" />
        <path
           d="m 309.16,117.55 c 6.318,-4.413 15.208,12.09 7.635,15.291 -7.118,3.009 -12.514,-11.738 -7.635,-15.291"
           fill="#008700"
           fill-rule="evenodd"
           id="path1430" />
        <path
           d="m 362.59,199.74 c 5.476,-4.794 13.719,10.177 7.634,14.336 -6.331,4.325 -15.156,-11.778 -7.634,-14.336"
           fill="#008700"
           fill-rule="evenodd"
           id="path1432" />
        <path
           d="m 283.4,198.79 c 4.917,-6.114 18.277,3.053 14.312,9.556 -4.3,7.051 -14.942,-3.563 -14.312,-9.556"
           fill="#008700"
           fill-rule="evenodd"
           id="path1434" />
      </g>
      <text
         xml:space="preserve"
         style="font-size:53.6143px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;white-space:pre;inline-size:755.161;fill:#55b9dc;fill-opacity:1;stroke-width:2"
         x="-203.72263"
         y="521.80603"
         id="text9253-5-3"
         transform="matrix(2.586375,0,0,2.586375,321.27267,-270.00778)"><tspan
           x="-203.72263"
           y="521.80603"><tspan
             style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:53.6143px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1">Need some help?</tspan></tspan></text>
    </g>
  </g>
</svg>