~gryc-ueusp/memaker/gryc-mercilessrefactoring

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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns: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="744.09448819"
   height="1052.3622047"
   id="svg6524"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docname="memaker sheet.svg"
   sodipodi:docbase="/home/skunkyjay/MeMaker"
   inkscape:output_extension="org.inkscape.output.svg.inkscape">
  <defs
     id="defs6526">
    <linearGradient
       id="linearGradient8703">
      <stop
         style="stop-color:#a40000;stop-opacity:1;"
         offset="0"
         id="stop8705" />
      <stop
         style="stop-color:#cc0000;stop-opacity:1;"
         offset="1"
         id="stop8707" />
    </linearGradient>
    <linearGradient
       id="linearGradient7724">
      <stop
         style="stop-color:#cc0000;stop-opacity:1;"
         offset="0"
         id="stop7726" />
      <stop
         style="stop-color:#ef2929;stop-opacity:1;"
         offset="1"
         id="stop7728" />
    </linearGradient>
    <linearGradient
       id="linearGradient5700">
      <stop
         style="stop-color:#3465a4;stop-opacity:1;"
         offset="0"
         id="stop5702" />
      <stop
         style="stop-color:#729fcf;stop-opacity:1;"
         offset="1"
         id="stop5704" />
    </linearGradient>
    <linearGradient
       id="linearGradient4719">
      <stop
         style="stop-color:#c17d11;stop-opacity:1;"
         offset="0"
         id="stop4721" />
      <stop
         style="stop-color:#e9b96e;stop-opacity:1;"
         offset="1"
         id="stop4723" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient3964"
       gradientUnits="userSpaceOnUse"
       x1="225.89772"
       y1="255.1237"
       x2="351.57788"
       y2="393.51462"
       gradientTransform="matrix(0.418709,0,0,0.418709,63.0262,380.78415)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient4671"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.418709,0,0,0.418709,60.169057,271.02033)"
       x1="225.89772"
       y1="255.1237"
       x2="351.57788"
       y2="393.51462" />
    <linearGradient
       id="linearGradient3238">
      <stop
         id="stop3240"
         offset="0"
         style="stop-color:#3465a4;stop-opacity:1;" />
      <stop
         id="stop3242"
         offset="1"
         style="stop-color:#204a87;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2642">
      <stop
         style="stop-color:#f0dad4;stop-opacity:1;"
         offset="0"
         id="stop2644" />
      <stop
         style="stop-color:#e4b8ad;stop-opacity:1;"
         offset="1"
         id="stop2646" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient3480"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.418709,0,0,0.418709,-56.857251,278.8031)"
       x1="225.89772"
       y1="255.1237"
       x2="351.57788"
       y2="393.51462" />
    <linearGradient
       id="linearGradient7028">
      <stop
         id="stop7030"
         offset="0"
         style="stop-color:#c17d11;stop-opacity:1;" />
      <stop
         id="stop7032"
         offset="1"
         style="stop-color:#8f5902;stop-opacity:1;" />
    </linearGradient>
    <filter
       id="filter8611"
       height="2.6309301"
       y="-0.81546503"
       width="1.0515813"
       x="-0.025790674"
       inkscape:collect="always">
      <feGaussianBlur
         id="feGaussianBlur8613"
         stdDeviation="4.9300457"
         inkscape:collect="always" />
    </filter>
    <linearGradient
       id="linearGradient3426">
      <stop
         id="stop3428"
         offset="0"
         style="stop-color:#edd400;stop-opacity:1;" />
      <stop
         id="stop3430"
         offset="1"
         style="stop-color:#fce94f;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4104">
      <stop
         id="stop4106"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         id="stop4108"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3238"
       id="linearGradient3916"
       gradientUnits="userSpaceOnUse"
       x1="38.47567"
       y1="626.91315"
       x2="92.617172"
       y2="626.91315"
       gradientTransform="translate(250.51783,-141.42136)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4104"
       id="linearGradient5120"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.4461536,0,0,0.4461536,328.21125,540.81274)"
       x1="280.02328"
       y1="230.75825"
       x2="385.13144"
       y2="230.75825" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient5123"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.4467572,-3.8511094e-2,-5.2147101e-2,0.4706529,342.14216,547.62851)"
       x1="290.828"
       y1="261.19608"
       x2="367.84198"
       y2="261.19608" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4104"
       id="linearGradient5126"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4461536,0,0,0.4461536,-74.812791,540.81274)"
       x1="280.02328"
       y1="230.75825"
       x2="385.13144"
       y2="230.75825" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient5129"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4467572,-3.8511094e-2,5.2147101e-2,0.4706529,-88.743703,547.62851)"
       x1="290.828"
       y1="261.19608"
       x2="367.84198"
       y2="261.19608" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7028"
       id="linearGradient5135"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9294121,0,0,1.9294121,270.81564,330.19914)"
       x1="-5.5809464"
       y1="25.827393"
       x2="54.460823"
       y2="25.827393" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3238"
       id="radialGradient5182"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1,0,0,1.013113,554.84179,156.34637)"
       cx="62.789993"
       cy="77.022499"
       fx="62.789993"
       fy="77.022499"
       r="7.5700922" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3238"
       id="radialGradient5185"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,1.013113,351.12129,156.34637)"
       cx="62.789993"
       cy="77.022499"
       fx="62.789993"
       fy="77.022499"
       r="7.5700922" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3238"
       id="linearGradient5231"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.418709,0,0,0.418709,189.24925,218.56911)"
       x1="219.80411"
       y1="194.32614"
       x2="393.32281"
       y2="270.59265" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient5263"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.418709,0,0,0.399639,-56.976241,376.72087)"
       x1="225.89772"
       y1="255.1237"
       x2="351.57788"
       y2="393.51462" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7028"
       id="linearGradient5280"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.418709,0,0,0.418709,191.86812,140.72289)"
       x1="219.80411"
       y1="194.32614"
       x2="393.32281"
       y2="270.59265" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient5293"
       gradientUnits="userSpaceOnUse"
       x1="157.51729"
       y1="596.83783"
       x2="187.4135"
       y2="596.83783" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient5298"
       gradientUnits="userSpaceOnUse"
       x1="65.700233"
       y1="596.83783"
       x2="95.596695"
       y2="596.83783" />
    <linearGradient
       id="linearGradient4108">
      <stop
         id="stop4110"
         offset="0"
         style="stop-color:#fce94f;stop-opacity:1;" />
      <stop
         id="stop4112"
         offset="1"
         style="stop-color:#edd400;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4136">
      <stop
         id="stop4138"
         offset="0"
         style="stop-color:#555753;stop-opacity:1;" />
      <stop
         id="stop4140"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4108"
       id="linearGradient2881"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9633226,0.268346,-0.268346,0.9633226,561.02281,-89.561889)"
       x1="51.810535"
       y1="99.363754"
       x2="96.457275"
       y2="99.363754" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4136"
       id="linearGradient2883"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9633226,0.268346,-0.268346,0.9633226,561.02281,-89.561889)"
       x1="52.460406"
       y1="82.927666"
       x2="72.511633"
       y2="82.927666" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4108"
       id="linearGradient2885"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9633226,0.268346,-0.268346,0.9633226,561.02281,-89.561889)"
       x1="51.810535"
       y1="99.363754"
       x2="96.457275"
       y2="99.363754" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4136"
       id="linearGradient2887"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9633226,0.268346,-0.268346,0.9633226,561.02281,-89.561889)"
       x1="52.460406"
       y1="82.927666"
       x2="72.511633"
       y2="82.927666" />
    <linearGradient
       id="linearGradient10020">
      <stop
         id="stop10022"
         offset="0"
         style="stop-color:#4e9a06;stop-opacity:1;" />
      <stop
         id="stop10024"
         offset="1"
         style="stop-color:#73d216;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient10068">
      <stop
         id="stop10070"
         offset="0"
         style="stop-color:#2e3436;stop-opacity:1;" />
      <stop
         id="stop10072"
         offset="1"
         style="stop-color:#555753;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient10076">
      <stop
         id="stop10078"
         offset="0"
         style="stop-color:#c4a000;stop-opacity:1;" />
      <stop
         id="stop10080"
         offset="1"
         style="stop-color:#edd400;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       y2="235.75229"
       x2="840.05719"
       y1="235.75229"
       x1="706.82208"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5121"
       xlink:href="#linearGradient4126"
       inkscape:collect="always" />
    <linearGradient
       y2="240.00294"
       x2="821.00409"
       y1="240.00294"
       x1="711.9964"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5119"
       xlink:href="#linearGradient4134"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient4126">
      <stop
         id="stop4128"
         offset="0"
         style="stop-color:#73d216;stop-opacity:1;" />
      <stop
         id="stop4130"
         offset="1"
         style="stop-color:#8ae234;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4134">
      <stop
         id="stop4136"
         offset="0"
         style="stop-color:#4e9a06;stop-opacity:1;" />
      <stop
         id="stop3432"
         offset="1"
         style="stop-color:#73d216;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4134"
       id="linearGradient3468"
       gradientUnits="userSpaceOnUse"
       x1="711.9964"
       y1="240.00294"
       x2="821.00409"
       y2="240.00294" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4126"
       id="linearGradient3470"
       gradientUnits="userSpaceOnUse"
       x1="706.82208"
       y1="235.75229"
       x2="840.05719"
       y2="235.75229" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4719"
       id="linearGradient4725"
       x1="363.71029"
       y1="741.11218"
       x2="376.59035"
       y2="741.11218"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-103.74011,-121.7645)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5700"
       id="linearGradient6707"
       gradientUnits="userSpaceOnUse"
       x1="370.5043"
       y1="775.08268"
       x2="447.1293"
       y2="775.08268" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5700"
       id="linearGradient6709"
       gradientUnits="userSpaceOnUse"
       x1="397.79828"
       y1="775.0827"
       x2="419.8168"
       y2="775.0827" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7724"
       id="linearGradient7730"
       x1="138.27209"
       y1="972.67399"
       x2="196.99685"
       y2="972.67399"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8703"
       id="linearGradient8719"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(98,-141.50649)"
       x1="360.92545"
       y1="667.68758"
       x2="411.21849"
       y2="667.68758" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8703"
       id="linearGradient8721"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1,0,0,1,781.24555,-141.50649)"
       x1="360.92545"
       y1="667.68758"
       x2="411.21849"
       y2="667.68758" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient13599"
       gradientUnits="userSpaceOnUse"
       x1="360.31638"
       y1="687.40533"
       x2="446.63763"
       y2="687.40533" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient13601"
       gradientUnits="userSpaceOnUse"
       x1="361.125"
       y1="663.26013"
       x2="447.125"
       y2="663.26013" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient2930"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9166742,0,0,0.9166742,26.00272,-350.50753)"
       x1="198.50002"
       y1="464.27051"
       x2="277.5137"
       y2="464.27051" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient2932"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9166742,0,0,0.9166742,26.00272,-350.50753)"
       x1="278.5"
       y1="474.86539"
       x2="314.55725"
       y2="474.86539" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient2934"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9166742,0,0,0.9166742,25.759158,-353.8217)"
       x1="394.75327"
       y1="479.13409"
       x2="431.40182"
       y2="479.13409" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient2936"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9166742,0,0,0.9166742,25.773826,-353.62034)"
       x1="434.6268"
       y1="479.07938"
       x2="470.93222"
       y2="479.07938" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient2938"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9166742,0,0,0.9166742,23.666295,-385.11093)"
       x1="467.22562"
       y1="521.74231"
       x2="506.63153"
       y2="521.74231" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient2940"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9166742,0,0,0.9166742,26.00272,-350.50753)"
       x1="318.5"
       y1="464.27051"
       x2="397.5137"
       y2="464.27051" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3426"
       id="linearGradient2942"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9166742,0,0,0.9166742,26.00272,-350.50753)"
       x1="475.44275"
       y1="474.85898"
       x2="511.5"
       y2="474.85898" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient2944"
       gradientUnits="userSpaceOnUse"
       x1="65.700233"
       y1="596.83783"
       x2="95.596695"
       y2="596.83783" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient2946"
       gradientUnits="userSpaceOnUse"
       x1="157.51729"
       y1="596.83783"
       x2="187.4135"
       y2="596.83783" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2642"
       id="linearGradient2948"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.418709,0,0,0.418709,220.10335,-422.07247)"
       x1="225.89772"
       y1="255.1237"
       x2="351.57788"
       y2="393.51462" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10020"
       id="linearGradient2950"
       gradientUnits="userSpaceOnUse"
       x1="49.678246"
       y1="156"
       x2="368.32175"
       y2="156" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10068"
       id="linearGradient2952"
       gradientUnits="userSpaceOnUse"
       x1="61.856845"
       y1="143.8214"
       x2="356.14315"
       y2="143.8214" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10076"
       id="linearGradient2954"
       gradientUnits="userSpaceOnUse"
       x1="74.035435"
       y1="156"
       x2="343.96456"
       y2="156" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10020"
       id="linearGradient2956"
       gradientUnits="userSpaceOnUse"
       x1="74.035439"
       y1="101.19631"
       x2="343.96457"
       y2="101.19631" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10020"
       id="linearGradient2958"
       gradientUnits="userSpaceOnUse"
       x1="74.035439"
       y1="64.660522"
       x2="161.28561"
       y2="64.660522" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10020"
       id="linearGradient2960"
       gradientUnits="userSpaceOnUse"
       x1="255.49654"
       y1="65.878387"
       x2="342.7467"
       y2="65.878387" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10020"
       id="linearGradient2962"
       gradientUnits="userSpaceOnUse"
       x1="159.28561"
       y1="52.48193"
       x2="258.71439"
       y2="52.48193" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     gridtolerance="10000"
     guidetolerance="10"
     objecttolerance="10"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.3535534"
     inkscape:cx="412.67357"
     inkscape:cy="422.25272"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:grid-points="true"
     showgrid="false"
     inkscape:window-width="1280"
     inkscape:window-height="727"
     inkscape:window-x="0"
     inkscape:window-y="47" />
  <metadata
     id="metadata6529">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     style="display:inline">
    <g
       id="g3472"
       transform="translate(8.8284189,55.107649)">
      <g
         id="g5111"
         transform="matrix(0.6403336,0,0,0.6403336,-297.40087,492.3586)">
        <path
           sodipodi:nodetypes="cscsc"
           id="path3442"
           d="M 712.49642,265.64331 C 712.49642,265.64331 738.28825,270.70583 765.29017,258.02111 C 792.29208,245.33639 820.50408,214.90441 820.50408,214.90441 C 820.50408,214.90441 788.16636,208.65503 761.16444,221.33975 C 734.16252,234.02448 712.49642,265.64331 712.49642,265.64331 z "
           style="fill:url(#linearGradient5119);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           id="path3444"
           d="M 739.24229,265.20739 C 737.80903,253.4973 725.67078,239.13545 719.51536,227.31037"
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           id="path3446"
           d="M 762.47125,258.77177 C 761.038,247.06168 748.89974,232.69983 742.74432,220.87475"
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           id="path3448"
           d="M 783.79581,246.78226 C 782.36255,235.07217 770.2243,220.71032 764.06887,208.88524"
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           sodipodi:nodetypes="cc"
           id="path3450"
           d="M 800.40822,234.28157 C 798.92385,223.04269 793.55827,216.56695 788.72541,210.12971"
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           sodipodi:nodetypes="cscscsc"
           id="path3452"
           d="M 712.0252,265.59219 C 712.0252,265.59219 732.47773,235.272 764.36072,222.64001 C 796.24371,210.00802 839.55716,215.06426 839.55716,215.06426 C 839.55716,215.06426 797.84625,207.32131 765.67862,206.09636 C 733.51099,204.87141 710.88662,210.16447 710.88662,210.16447 C 710.88662,210.16447 707.05255,220.23728 707.33719,234.09421 C 707.62184,247.95114 712.0252,265.59219 712.0252,265.59219 z "
           style="fill:url(#linearGradient5121);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
      <g
         id="g3454"
         transform="matrix(-0.6403336,0,0,0.6403336,548.65352,490.71344)"
         style="display:inline">
        <path
           sodipodi:nodetypes="cscsc"
           id="path3456"
           d="M 712.49642,265.64331 C 712.49642,265.64331 738.28825,270.70583 765.29017,258.02111 C 792.29208,245.33639 820.50408,214.90441 820.50408,214.90441 C 820.50408,214.90441 788.16636,208.65503 761.16444,221.33975 C 734.16252,234.02448 712.49642,265.64331 712.49642,265.64331 z "
           style="fill:url(#linearGradient3468);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           id="path3458"
           d="M 739.24229,265.20739 C 737.80903,253.4973 725.67078,239.13545 719.51536,227.31037"
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           id="path3460"
           d="M 762.47125,258.77177 C 761.038,247.06168 748.89974,232.69983 742.74432,220.87475"
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           id="path3462"
           d="M 783.79581,246.78226 C 782.36255,235.07217 770.2243,220.71032 764.06887,208.88524"
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           sodipodi:nodetypes="cc"
           id="path3464"
           d="M 800.40822,234.28157 C 798.92385,223.04269 793.55827,216.56695 788.72541,210.12971"
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           sodipodi:nodetypes="cscscsc"
           id="path3466"
           d="M 712.0252,265.59219 C 712.0252,265.59219 732.47773,235.272 764.36072,222.64001 C 796.24371,210.00802 839.55716,215.06426 839.55716,215.06426 C 839.55716,215.06426 797.84625,207.32131 765.67862,206.09636 C 733.51099,204.87141 710.88662,210.16447 710.88662,210.16447 C 710.88662,210.16447 707.05255,220.23728 707.33719,234.09421 C 707.62184,247.95114 712.0252,265.59219 712.0252,265.59219 z "
           style="fill:url(#linearGradient3470);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.1233716;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
    </g>
    <path
       style="fill:url(#linearGradient4725);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 271.25989,580.59768 C 271.25989,585.5977 256.25989,585.5977 256.25989,590.5977 C 256.25989,596.8038 266.07239,594.0352 266.25989,600.5977 C 266.44739,607.1602 251.25989,602.3477 251.25989,610.5977 C 251.25989,618.8477 261.00989,612.9727 261.25989,620.5977 C 261.50989,628.2227 256.50989,621.2852 256.25989,630.5977 C 256.00989,639.9102 266.63489,633.0977 266.25989,640.5977 C 265.88489,648.0977 263.00989,641.7852 261.25989,650.5977 C 259.50989,659.4102 261.25989,665.5977 261.25989,665.5977 C 261.25989,665.5977 274.00989,660.5977 271.25989,650.5977 C 268.50989,640.5977 257.38489,650.2852 256.25989,640.5977 C 255.13489,630.9102 266.07239,639.0977 266.25989,630.5977 C 266.44739,622.0977 251.50989,629.0352 251.25989,620.5977 C 251.00989,612.1602 261.00989,616.9102 261.25989,610.5977 C 261.50989,604.2852 256.69739,607.4102 256.25989,600.5977 C 255.82239,593.7852 266.38489,597.9727 266.25989,590.5977 C 266.13489,583.22268 261.25989,585.5977 261.25989,580.59768 C 261.25989,570.59768 271.25989,570.59768 271.25989,580.59768 z "
       id="path2779"
       sodipodi:nodetypes="cssssssscsssssssss" />
    <g
       id="g5422"
       transform="translate(7.8978124,0)">
      <path
         id="path3810"
         d="M 89.854398,582.33281 C 74.302348,582.33281 74.601428,582.33281 74.601428,582.33281 C 74.601428,582.33281 65.629093,582.03373 67.124483,595.19316 C 68.619872,608.35258 70.414338,610.44613 77.891283,610.74521 C 85.368232,611.04428 94.340568,611.34336 94.340568,611.34336 L 89.854398,582.33281 z "
         style="fill:url(#linearGradient5298);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path3814"
         d="M 74.003273,590.40791 L 79.087597,602.37103"
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path3816"
         d="M 74.900507,601.17471 L 79.087597,591.60422"
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         style="fill:url(#linearGradient5293);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 163.25946,582.33281 C 178.81151,582.33281 178.51243,582.33281 178.51243,582.33281 C 178.51243,582.33281 187.48477,582.03373 185.98938,595.19316 C 184.49399,608.35258 182.69952,610.44613 175.22257,610.74521 C 167.74563,611.04428 158.77329,611.34336 158.77329,611.34336 L 163.25946,582.33281 z "
         id="path3820" />
      <path
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 179.11059,590.40791 L 174.02626,602.37103"
         id="path3824" />
      <path
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 178.21335,601.17471 L 174.02626,591.60422"
         id="path3826" />
    </g>
    <path
       style="fill:url(#linearGradient3964);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 143.17712,510.33062 C 143.17712,527.24901 140.2164,528.94085 158.82664,543.74445 C 177.43688,558.54805 177.64836,556.22177 185.47312,556.43325 C 193.29788,556.64473 206.40964,548.81997 213.81144,543.53297 C 221.21324,538.24597 229.67243,534.86229 229.03799,511.59949 C 228.40356,488.3367 231.57576,465.28538 188.22236,465.28538 C 144.86896,465.28538 144.02304,482.41526 143.17712,510.33062 z "
       id="path3828"
       inkscape:label="#path2303" />
    <g
       id="g5523"
       transform="translate(-1.567285,0)">
      <path
         d="M 708.07608,266.29375 C 698.94169,265.77508 689.76093,266.30035 681.0297,269.17192 C 680.78676,269.2641 680.54382,269.35627 680.30088,269.44845 L 681.98033,268.13759 C 682.20781,268.06104 682.43529,267.98449 682.66277,267.90794 C 691.52837,265.27674 700.68391,264.98943 709.87575,264.98621 L 708.07608,266.29375 z "
         id="path3832"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 693.17692,269.92677 C 695.76574,269.30866 698.39876,268.76116 701.05454,268.48476 C 701.25007,268.46317 701.44675,268.45992 701.64285,268.44749 L 699.10353,270.3086 C 698.92126,270.31586 698.73872,270.31638 698.5567,270.3304 C 695.84554,270.54327 693.19673,271.16937 690.56985,271.82091 L 693.17692,269.92677 z "
         id="path3834"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       id="g5349"
       transform="translate(-1.0120245,0)">
      <g
         style="stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(0.418709,0,0,0.418709,474.18973,378.2842)"
         inkscape:label="#g2401"
         id="g3838">
        <path
           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 246.53125,265.96875 C 233.03348,266.70504 222.21876,282.65782 222.21875,302.1875 C 222.21875,306.47371 222.7642,310.5889 223.71875,314.40625 C 230.06947,311.84823 237.93387,310.3125 246.4375,310.3125 C 255.82006,310.3125 264.40927,312.1948 271.0625,315.25 C 272.15878,311.19382 272.78125,306.7965 272.78125,302.1875 C 272.78125,282.18911 261.44968,265.96875 247.5,265.96875 C 247.17305,265.96875 246.8552,265.95108 246.53125,265.96875 z "
           id="path3840" />
        <path
           sodipodi:type="arc"
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252737;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path3842"
           sodipodi:cx="251.25"
           sodipodi:cy="293.96933"
           sodipodi:rx="3.0357144"
           sodipodi:ry="3.0357144"
           d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
           transform="matrix(1.10605,0,0,1.219672,-27.18064,-63.8626)" />
      </g>
      <g
         style="stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(-0.418709,0,0,0.418709,717.93816,378.2842)"
         id="g3844"
         inkscape:label="#g2401">
        <path
           id="path3846"
           d="M 246.53125,265.96875 C 233.03348,266.70504 222.21876,282.65782 222.21875,302.1875 C 222.21875,306.47371 222.7642,310.5889 223.71875,314.40625 C 230.06947,311.84823 237.93387,310.3125 246.4375,310.3125 C 255.82006,310.3125 264.40927,312.1948 271.0625,315.25 C 272.15878,311.19382 272.78125,306.7965 272.78125,302.1875 C 272.78125,282.18911 261.44968,265.96875 247.5,265.96875 C 247.17305,265.96875 246.8552,265.95108 246.53125,265.96875 z "
           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           transform="matrix(1.10605,0,0,1.219672,-27.18064,-63.8626)"
           d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
           sodipodi:ry="3.0357144"
           sodipodi:rx="3.0357144"
           sodipodi:cy="293.96933"
           sodipodi:cx="251.25"
           id="path3848"
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252737;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           sodipodi:type="arc" />
      </g>
    </g>
    <g
       id="g5463"
       transform="translate(-1.30301,0)">
      <path
         id="path3854"
         d="M 330.52621,207.2322 C 324.07214,207.37363 317.24282,208.28819 310.46743,210.00615 C 303.97902,211.65135 298.21802,213.88274 293.40504,216.48305 C 294.80052,213.63365 296.49521,211.12779 298.35104,209.07714 C 294.78986,209.60646 290.86107,211.15024 287.16366,213.66985 C 286.52565,214.10463 285.91933,214.56458 285.33182,215.03066 C 284.91483,214.99239 284.48587,214.97367 284.04951,214.9914 C 279.15456,215.19039 273.18588,218.85726 268.74048,224.90957 C 266.55561,227.88422 265.02159,231.04194 264.18701,234.04266 C 264.476,234.17114 264.7613,234.31036 265.03751,234.46137 L 263.1664,235.57357 C 267.26952,238.10825 269.90501,242.04535 269.90501,246.47309 C 269.90501,248.42448 269.38966,250.28411 268.46569,251.96864 C 270.4799,255.09476 271.95884,258.8411 272.71821,262.95975 C 275.73093,259.28595 278.73629,254.55586 281.35407,249.16853 C 282.39823,247.01967 283.31796,244.8788 284.11494,242.7963 C 284.50164,242.86343 284.88882,242.92752 285.27947,242.99257 C 285.51261,241.98066 285.71216,241.00344 285.88137,240.06161 C 285.88356,240.05948 285.89227,240.05065 285.89445,240.04852 C 286.32674,239.53371 286.7422,238.99511 287.15058,238.43911 C 287.19106,238.38399 287.22832,238.32425 287.26834,238.26901 C 287.27128,238.26897 287.28071,238.26887 287.28142,238.26901 C 293.99088,236.15858 301.9638,234.89216 310.53286,234.78849 C 310.72219,234.7862 310.9056,234.78964 311.09551,234.78849 C 311.2869,234.78733 311.47924,234.78849 311.67122,234.78849 C 325.55293,234.78849 337.95711,237.84167 346.12312,242.61311 C 346.29703,243.15246 346.47206,243.69865 346.65959,244.2487 C 346.71952,244.24167 346.78292,244.24268 346.84278,244.23561 C 347.77983,246.70867 348.9054,249.26297 350.20554,251.8378 C 352.55312,256.487 355.19406,260.63117 357.86006,264.01961 C 358.3001,259.20008 359.5195,254.76216 361.31441,251.00038 L 354.36647,239.60364 C 357.69239,235.05446 364.17803,231.63895 372.00457,230.49672 C 367.90144,227.47141 360.26406,225.33659 351.35699,225.04042 C 353.96699,223.11325 356.90593,221.31504 360.09754,219.72805 C 362.7792,218.39461 365.46828,217.30393 368.10535,216.4438 C 359.85244,213.64458 348.24021,211.89034 335.36755,211.89034 C 335.26981,211.89034 335.16418,211.89014 335.0666,211.89034 C 334.6778,211.89114 334.28848,211.88637 333.90205,211.89034 C 333.5001,211.89446 333.09752,211.89592 332.69827,211.90342 C 335.37096,210.2795 338.19036,208.88338 341.04628,207.72942 C 338.00297,207.37392 334.78817,207.19711 331.46831,207.2322 C 331.41575,207.23276 331.35082,207.23154 331.29821,207.2322 C 331.24601,207.23286 331.19344,207.23145 331.14119,207.2322 C 331.03751,207.23369 330.93104,207.23031 330.82716,207.2322 C 330.7249,207.23406 330.62866,207.22996 330.52621,207.2322 z "
         style="fill:url(#linearGradient5280);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 274.73715,241.64658 C 266.46583,246.74797 274.3084,241.18701 276.22127,239.70371 L 280.26185,238.0983 C 277.21842,240.2832 274.47967,242.8566 271.04334,244.3303 L 274.73715,241.64658 z "
         id="path3856"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 274.77898,244.52049 C 276.28873,243.5775 277.71031,242.49845 279.1334,241.43077 L 283.15159,239.83765 C 281.74905,240.84547 280.36149,241.87405 278.96895,242.89526 L 274.77898,244.52049 z "
         id="path3858"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 270.57126,251.66086 C 271.6024,250.52046 272.81824,249.56989 273.99293,248.58197 L 278.06406,246.93295 C 276.93755,247.87859 275.68745,248.74921 274.78627,249.91495 L 270.57126,251.66086 z "
         id="path3860"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 351.50438,243.76138 C 352.4293,243.42912 353.39507,242.98366 354.35122,242.64518 C 354.35387,242.59955 354.93869,242.40339 354.94043,242.40267 L 351.43105,245.15855 C 351.36134,245.18802 350.90816,245.38483 350.82995,245.41269 C 349.83192,245.76966 348.86138,246.3423 347.81056,246.4451 L 351.50438,243.76138 z "
         id="path3862"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 355.26804,247.46185 C 348.42251,251.64524 351.80769,249.4606 353.30798,248.41153 L 357.40037,246.79035 C 355.55969,248.08359 353.85917,249.4 351.71078,250.30732 L 355.26804,247.46185 z "
         id="path3864"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       id="g5527"
       transform="translate(1.1999502,0)">
      <path
         id="path4447"
         d="M 615.45171,297.83576 C 615.45172,297.83577 628.23868,311.65723 628.95368,311.87311 C 628.95612,311.87354 628.96468,311.87311 628.96674,311.87311 C 629.49436,311.87311 635.40434,310.39756 635.40434,310.39756 C 635.40433,310.39755 644.26495,306.38497 651.3351,300.26455 C 652.00565,299.68406 652.49083,299.20822 652.82371,298.81511 L 646.02049,298.8804 C 645.46141,299.07862 645.10643,299.20685 645.10643,299.20685 L 615.45171,297.83576 z "
         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <g
         style="stroke-width:4.78633785;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(0.417856,0,0,0.417856,509.82555,147.02892)"
         id="g4449">
        <path
           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.78633785;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path4451"
           d="M 239.43625,352.66918 C 264.18967,359.39042 289.90432,361.24505 315.44518,361.81786 C 327.86598,361.82156 340.42768,362.21654 352.76644,360.44991 C 355.03249,360.12546 357.42227,359.7275 359.55333,358.83812 C 360.23363,358.5542 362.1212,357.38878 361.47991,357.75231 C 358.89246,359.21903 356.26604,360.6159 353.65911,362.04769 C 353.8354,361.84963 353.9989,361.64088 354.1688,361.43748 L 364.17852,357.38256 C 363.97903,357.54136 363.68036,357.57312 363.58004,357.85895 C 346.43888,368.70131 329.36686,367.97574 308.85511,366.57929 C 282.60167,365.78028 256.53041,363.4757 230.64717,359.05482 L 239.43625,352.66918 z " />
        <path
           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.78633785;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 244.5625,357.21875 C 254.87365,372.36888 266.42415,386.66809 281.9375,396.1875 C 296.40829,399.30017 322.37629,380.88483 344.15625,363.59375 L 340.90625,363.40625 C 322.56849,378.41102 302.87094,393.07383 290.03125,390.90625 C 276.01612,383.73268 264.51536,371.90031 255.03125,358.53125 L 252.03125,358.375 C 252.03125,358.375 249.02541,357.91812 244.5625,357.21875 z "
           id="path4453" />
      </g>
    </g>
    <path
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="path4493"
       d="M 552.00575,265.63785 C 562.52638,265.84871 573.054,265.95244 583.56953,265.50722 L 581.81725,266.7888 C 571.20273,267.00662 560.58608,266.88695 549.97177,267.11562 L 552.00575,265.63785 z " />
    <path
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 546.31645,298.80441 C 546.31645,298.80441 545.25101,304.55779 551.0044,304.55779 C 556.75779,304.55779 580.1975,304.55779 580.1975,304.55779 C 580.1975,304.55779 587.01633,305.19706 587.22942,301.14838 C 587.44251,297.0997 587.12288,299.12404 587.12288,299.12404"
       id="path4495"
       sodipodi:nodetypes="cscsc" />
    <path
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="path4499"
       d="M 547.58786,224.2552 C 561.10498,225.56771 574.70808,223.09892 588.05413,221.13511 L 586.2811,222.46062 C 572.77302,224.17722 559.14514,226.66641 545.48718,225.71234 L 547.58786,224.2552 z " />
    <path
       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="path4521"
       d="M 681.32952,292.93984 C 682.57245,294.06535 684.02953,294.75492 685.61541,295.26014 C 687.89117,295.75752 690.06051,295.29054 692.2464,294.64407 C 694.75347,293.60869 697.37666,292.90722 699.89449,291.90486 C 701.48874,290.9819 702.8524,291.08559 704.43448,291.84581 C 705.77929,292.56938 707.23063,293.04384 708.68304,293.49558 L 705.70383,295.54373 C 704.23721,295.04843 702.75451,294.57964 701.39274,293.82741 C 699.84497,293.18076 698.5733,293.28926 697.06029,294.12222 C 694.53477,295.0931 691.92841,295.84072 689.41021,296.83718 C 687.17892,297.46993 684.94299,297.88063 682.6463,297.30121 C 681.13883,296.77308 679.55101,295.92795 678.35902,295.09804 L 681.32952,292.93984 z " />
    <g
       id="g5500"
       transform="translate(0.9822722,0)">
      <path
         id="path4608"
         d="M 614.11518,220.25136 L 630.15135,233.25708 L 637.7275,226.56482 L 645.80872,221.13525 L 650.35441,218.8624 L 644.41976,217.72598 L 629.39374,218.98867 L 619.03967,219.62002 L 614.11518,220.25136 z "
         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path4533"
         d="M 653.78775,215.80122 C 646.87665,216.3181 639.97354,216.97649 633.069,217.58247 C 626.45697,218.01492 619.8477,218.09772 613.22525,218.05122 C 613.21194,218.05089 613.1448,218.05155 613.1315,218.05122 C 612.39889,218.2098 611.67658,218.3781 610.944,218.55122 C 611.55963,219.27321 612.18438,219.97584 612.78775,220.70747 C 612.81051,220.73507 612.82751,220.7736 612.85025,220.80122 C 616.41032,223.60184 619.88372,226.57192 623.28775,229.58247 C 625.84682,231.96622 627.35424,233.83746 629.194,233.76997 C 629.19598,233.77033 629.24756,233.7701 629.2565,233.76997 C 629.265,233.76994 629.28674,233.76979 629.28775,233.76997 C 629.73416,233.73597 630.18759,233.61791 630.694,233.33247 L 630.97525,233.45747 C 631.24985,233.15963 631.47498,232.87119 631.7565,232.58247 C 631.87319,232.48541 632.01021,232.37992 632.1315,232.26997 C 632.13843,232.26301 632.15606,232.24579 632.16275,232.23872 C 632.2019,232.19582 632.24601,232.15524 632.28775,232.11372 C 632.34187,232.06274 632.38892,231.97975 632.444,231.92622 C 632.44761,231.92623 632.47076,231.9263 632.47525,231.92622 C 632.48267,231.91805 632.50158,231.90034 632.5065,231.89497 C 632.51641,231.88377 632.5542,231.84857 632.569,231.83247 C 632.57577,231.8253 632.59533,231.80612 632.60025,231.80122 C 632.60688,231.79397 632.62487,231.77722 632.6315,231.76997 C 632.73267,231.66854 632.8395,231.56742 632.944,231.45747 C 632.94408,231.45266 632.94396,231.43541 632.944,231.42622 C 632.9521,231.41735 633.00114,231.36951 633.0065,231.36372 C 633.01539,231.36366 633.03561,231.36352 633.03775,231.36372 C 633.0431,231.35791 633.0609,231.34132 633.069,231.33247 C 633.07548,231.32523 633.09377,231.30846 633.10025,231.30122 C 633.26378,231.14673 633.46602,231.01558 633.6315,230.86372 C 635.13698,229.61993 636.63919,228.36207 638.16275,227.14497 C 638.34441,226.99986 638.54342,226.88356 638.72525,226.73872 C 638.7656,226.7099 638.81087,226.64612 638.85025,226.61372 C 638.85689,226.60858 638.87476,226.58725 638.8815,226.58247 C 638.89,226.58244 638.90828,226.58253 638.91275,226.58247 C 643.38872,223.40976 648.29033,220.8489 653.1315,218.39497 C 653.13391,218.39215 653.15198,218.37546 653.16275,218.36372 C 653.27122,218.35889 653.36678,218.36839 653.47525,218.36372 L 654.10025,217.83247 C 654.59331,217.58377 655.10901,217.36094 655.60025,217.11372 C 656.97096,216.38117 657.36279,216.19618 657.694,216.01997 C 656.50877,215.9669 655.34681,215.87055 654.16275,215.80122 C 654.07092,215.80804 653.97333,215.79436 653.8815,215.80122 C 653.86827,215.80133 653.80097,215.80113 653.78775,215.80122 z M 648.10025,218.61372 C 647.48013,219.11125 646.87835,219.6187 646.2565,220.11372 C 646.2311,220.12755 646.18815,220.13111 646.16275,220.14497 C 640.20395,223.39502 634.41102,226.98886 629.444,231.80122 C 628.56974,230.8616 626.59993,229.86613 624.97525,228.42622 C 621.88627,225.75784 618.78677,223.10167 615.6315,220.51997 C 620.43397,220.46529 625.24124,220.35268 630.03775,220.05122 C 636.06386,219.56639 642.06784,218.98979 648.10025,218.61372 z M 629.8815,232.92622 L 630.10025,233.05122 C 630.09198,233.06005 630.07223,233.07889 630.069,233.08247 C 630.00278,233.11658 629.91659,233.17348 629.85025,233.20747 C 629.84131,233.20756 629.78971,233.20777 629.78775,233.20747 C 629.78781,233.19782 629.78781,233.17811 629.78775,233.17622 C 629.81852,233.09655 629.86248,233.00005 629.8815,232.92622 z "
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         transform="translate(532.11699,67.32466)"
         d="M 98.303575 165.57646 A 0.69196427 0.3125 0 1 1  96.919646,165.57646 A 0.69196427 0.3125 0 1 1  98.303575 165.57646 z"
         sodipodi:ry="0.3125"
         sodipodi:rx="0.69196427"
         sodipodi:cy="165.57646"
         sodipodi:cx="97.61161"
         id="path4606"
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         sodipodi:type="arc" />
      <path
         d="M 620.80728,224.14411 C 624.03578,224.58621 627.37274,224.46243 630.63992,224.41743 L 628.29196,225.18025 C 624.97645,225.12847 621.64717,225.19544 618.34264,224.94492 L 620.80728,224.14411 z "
         id="path4624"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 634.33088,224.52366 C 636.34448,224.58083 638.36035,224.5953 640.36918,224.42877 L 638.07042,225.19385 C 636.00584,225.31619 633.93743,225.26894 631.87083,225.32298 L 634.33088,224.52366 z "
         id="path4626"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       id="g5452">
      <path
         id="path4635"
         d="M 66.232104,457.37212 C 24.853489,457.87361 24.002306,474.14446 23.169603,500.37212 C 23.169603,516.51996 20.215613,518.11774 38.825853,532.24712 C 43.51272,535.80551 47.026128,538.33785 49.794603,540.12212 L 51.044603,546.96587 C 51.112176,547.21758 52.263353,551.24488 57.107103,551.59087 C 62.107104,551.94801 73.888354,551.59087 73.888354,551.59087 C 73.888354,551.59087 79.236574,551.59534 79.950854,547.30962 C 80.270624,545.391 80.755784,542.32754 81.169604,539.52837 C 85.879454,537.17614 90.417534,534.36195 93.794604,532.05962 C 101.1964,527.01341 109.67905,523.79417 109.04461,501.59087 C 108.41018,479.38758 111.58551,457.37212 68.232104,457.37212 C 67.554704,457.37212 66.888904,457.36416 66.232104,457.37212 z "
         style="fill:url(#linearGradient5263);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path4649"
         d="M 48.535675,533.38162 L 51.035675,546.95305 C 51.035675,546.95305 52.107103,551.23876 57.107103,551.59591 C 62.107104,551.95305 73.892814,551.59591 73.892814,551.59591 C 73.892814,551.59591 79.249964,551.59591 79.964244,547.31019 C 80.678534,543.02448 82.107104,533.02448 82.107104,533.02448"
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <path
       style="fill:url(#linearGradient4671);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 183.36849,355.52233 C 141.98987,356.04774 141.13869,373.0744 140.30599,400.55358 C 140.30599,405.1797 138.89698,420.5703 149.91382,434.80634 C 158.85007,446.35382 171.15386,446.68394 182.47296,446.94911 C 201.74701,445.80006 211.01555,443.11004 217.81764,434.62957 C 222.89252,428.30249 225.90705,415.7138 226.18099,401.83483 C 226.65223,378.56818 228.72189,355.52233 185.36849,355.52233 C 184.69109,355.52233 184.02529,355.51399 183.36849,355.52233 z "
       id="path4669"
       sodipodi:nodetypes="ccscsssc" />
    <g
       id="g5393"
       transform="translate(-0.8407847,0)">
      <path
         transform="translate(585.65631,639.62485)"
         d="M 93.691649 126.93618 A 13.384521 13.005714 0 1 1  66.922608,126.93618 A 13.384521 13.005714 0 1 1  93.691649 126.93618 z"
         sodipodi:ry="13.005714"
         sodipodi:rx="13.384521"
         sodipodi:cy="126.93618"
         sodipodi:cx="80.307129"
         id="path4696"
         style="fill:#ffffff;fill-opacity:0.39772728;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         sodipodi:type="arc" />
      <path
         transform="translate(622.27434,639.62485)"
         sodipodi:type="arc"
         style="fill:#ffffff;fill-opacity:0.39772728;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path4698"
         sodipodi:cx="80.307129"
         sodipodi:cy="126.93618"
         sodipodi:rx="13.384521"
         sodipodi:ry="13.005714"
         d="M 93.691649 126.93618 A 13.384521 13.005714 0 1 1  66.922608,126.93618 A 13.384521 13.005714 0 1 1  93.691649 126.93618 z" />
      <path
         transform="translate(583.95168,639.37231)"
         sodipodi:open="true"
         sodipodi:end="5.2601839"
         sodipodi:start="4.2380834"
         d="M 94.814823,125.20286 A 11.364216,10.606602 0 0 1 105.92365,125.584"
         sodipodi:ry="10.606602"
         sodipodi:rx="11.364216"
         sodipodi:cy="134.6386"
         sodipodi:cx="100.0051"
         id="path4711"
         style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         sodipodi:type="arc" />
    </g>
    <g
       id="g5383"
       transform="translate(0.6077862,0)">
      <rect
         ry="2.8571429"
         y="696.37451"
         x="647.46674"
         height="16.785715"
         width="30"
         id="rect4734"
         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <rect
         ry="0"
         y="704.44458"
         x="677.71527"
         height="1.3778807"
         width="10.395738"
         id="rect4736"
         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <rect
         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="rect4756"
         width="30"
         height="16.785715"
         x="688.18103"
         y="696.37451"
         ry="2.8571429" />
    </g>
    <path
       style="opacity:1;fill:#8f5902;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 61.311205,296.44735 C 35.465095,296.94665 25.816795,304.09025 21.998715,316.2911 C 21.995905,316.30008 22.001525,316.31337 21.998715,316.32235 C 21.977895,316.38955 21.956695,316.44234 21.936215,316.50985 C 21.932175,316.52307 21.908995,316.52787 21.904965,316.5411 C 21.861475,316.68505 21.821895,316.83327 21.779965,316.9786 C 21.777315,316.98772 21.782615,317.00073 21.779965,317.00985 C 21.737385,317.15787 21.695965,317.32916 21.654965,317.4786 C 21.611745,317.63527 21.571485,317.78911 21.529965,317.94735 C 21.446355,318.26811 21.356845,318.58897 21.279965,318.9161 C 21.260855,318.99678 21.236185,319.05378 21.217465,319.13485 C 21.215245,319.14451 21.219685,319.15643 21.217465,319.1661 C 21.182055,319.32079 21.157715,319.47876 21.123715,319.63485 C 21.121595,319.64461 21.125835,319.65634 21.123715,319.6661 C 21.107935,319.73836 21.076705,319.81229 21.061215,319.88485 C 21.059145,319.89465 21.063295,319.90629 21.061215,319.9161 C 21.045765,319.9887 21.013875,320.06195 20.998715,320.13485 C 20.996685,320.1447 21.000745,320.15625 20.998715,320.1661 C 20.983695,320.23859 20.982205,320.31206 20.967465,320.38485 C 20.965385,320.3952 20.969545,320.40574 20.967465,320.4161 C 20.952675,320.48938 20.919475,320.56127 20.904965,320.63485 C 20.903025,320.64479 20.906905,320.65615 20.904965,320.6661 C 20.873955,320.82524 20.840935,320.97432 20.811215,321.13485 C 20.809365,321.14488 20.813075,321.15606 20.811215,321.1661 C 20.783065,321.31868 20.744475,321.48102 20.717465,321.63485 C 20.714275,321.65307 20.720655,321.67912 20.717465,321.69735 C 20.706205,321.76143 20.697285,321.82055 20.686215,321.88485 C 20.682585,321.90612 20.689835,321.92606 20.686215,321.94735 C 20.675055,322.01264 20.634685,322.06934 20.623715,322.13485 C 20.620325,322.15527 20.627095,322.17691 20.623715,322.19735 C 20.612585,322.26428 20.603405,322.34894 20.592465,322.4161 C 20.589375,322.43524 20.595545,322.45944 20.592465,322.4786 C 20.567765,322.6326 20.522395,322.76089 20.498715,322.9161 C 20.495565,322.93679 20.501855,322.95788 20.498715,322.9786 C 20.488345,323.04642 20.477645,323.1293 20.467465,323.19735 C 20.464595,323.21674 20.470325,323.24044 20.467465,323.25985 C 20.457695,323.32564 20.445815,323.38134 20.436215,323.44735 C 20.433075,323.46919 20.439345,323.48799 20.436215,323.50985 C 20.398115,323.77628 20.346565,324.05247 20.311215,324.32235 C 20.303355,324.38191 20.287705,324.45012 20.279965,324.50985 C 20.276155,324.53956 20.283755,324.57385 20.279965,324.6036 C 20.272755,324.65986 20.255815,324.70344 20.248715,324.75985 C 20.243745,324.79961 20.253635,324.84502 20.248715,324.88485 C 20.242475,324.93511 20.223625,324.99073 20.217465,325.0411 C 20.213405,325.07469 20.221495,325.10121 20.217465,325.13485 C 20.210175,325.19516 20.193395,325.26187 20.186215,325.32235 C 20.182685,325.35243 20.189715,325.38598 20.186215,325.4161 C 20.179535,325.47306 20.161545,325.51524 20.154965,325.57235 C 20.150365,325.61261 20.159515,325.65702 20.154965,325.69735 C 20.149185,325.74823 20.129415,325.8026 20.123715,325.8536 C 20.119235,325.89402 20.128145,325.9381 20.123715,325.9786 C 20.118085,326.02969 20.098015,326.08365 20.092465,326.13485 C 20.088105,326.17544 20.096785,326.21919 20.092465,326.25985 C 20.086985,326.31114 20.066625,326.36469 20.061215,326.4161 C 20.057655,326.45039 20.064755,326.47551 20.061215,326.50985 C 20.055195,326.56774 20.035885,326.60806 20.029965,326.6661 C 20.025825,326.70702 20.034055,326.75011 20.029965,326.7911 C 20.024765,326.8428 20.003845,326.89553 19.998715,326.94735 C 19.994685,326.98844 20.002705,327.03119 19.998715,327.07235 C 19.975995,327.30719 19.957445,327.55391 19.936215,327.7911 C 19.932025,327.83798 19.940355,327.90038 19.936215,327.94735 C 19.932465,327.98961 19.908675,328.03001 19.904965,328.07235 C 19.900435,328.12451 19.909435,328.17633 19.904965,328.2286 C 19.901315,328.27103 19.877325,328.3111 19.873715,328.3536 C 19.869305,328.40596 19.878065,328.45738 19.873715,328.50985 C 19.846405,328.83985 19.804805,329.17544 19.779965,329.50985 C 19.776015,329.56303 19.783855,329.61281 19.779965,329.6661 C 19.706965,330.6664 19.647575,331.68951 19.592465,332.7286 C 19.588735,332.79903 19.596135,332.87674 19.592465,332.94735 C 19.585905,333.0736 19.567565,333.19554 19.561215,333.32235 C 19.557485,333.39699 19.564885,333.46627 19.561215,333.5411 C 22.652135,330.68372 25.734795,324.86997 27.592455,317.7911 C 27.993405,316.26325 28.314855,314.75106 28.561205,313.2911 C 37.182145,310.06763 48.621685,308.1036 61.154955,308.1036 C 75.369075,308.1036 88.147045,310.61275 97.029955,314.63485 C 97.032865,314.63477 97.057365,314.63518 97.061205,314.63485 C 97.264435,315.67013 97.500615,316.72664 97.779955,317.7911 C 99.454505,324.1722 102.12857,329.54696 104.90496,332.63485 C 104.8942,332.22535 104.88709,331.82315 104.87371,331.4161 C 104.87167,331.35384 104.87582,331.2908 104.87371,331.2286 C 104.86378,330.93664 104.85405,330.64416 104.84246,330.3536 C 104.84159,330.33168 104.84334,330.31301 104.84246,330.2911 C 104.83285,330.05288 104.82207,329.80956 104.81121,329.57235 C 104.80771,329.49581 104.7836,329.43003 104.77996,329.3536 C 104.77947,329.34333 104.78045,329.33262 104.77996,329.32235 C 104.76763,329.06447 104.76273,328.7977 104.74871,328.5411 C 104.7466,328.50256 104.75086,328.45461 104.74871,328.4161 C 104.74074,328.27328 104.72599,328.15225 104.71746,328.00985 C 104.71681,327.99905 104.71811,327.9894 104.71746,327.9786 C 104.70822,327.82528 104.69614,327.66266 104.68621,327.50985 C 104.68551,327.49915 104.68691,327.48929 104.68621,327.4786 C 104.67693,327.33652 104.66487,327.18274 104.65496,327.0411 C 104.65347,327.01978 104.65647,326.99991 104.65496,326.9786 C 104.65113,326.92451 104.62763,326.87637 104.62371,326.82235 C 104.62135,326.78977 104.62611,326.76115 104.62371,326.7286 C 104.62056,326.68581 104.62693,326.64635 104.62371,326.6036 C 104.6209,326.56624 104.62657,326.51592 104.62371,326.4786 C 104.62075,326.44006 104.59547,326.3921 104.59246,326.3536 C 104.58656,326.27785 104.59856,326.21046 104.59246,326.13485 C 104.58026,325.98364 104.57424,325.848 104.56121,325.69735 C 104.54725,325.53594 104.51366,325.35809 104.49871,325.19735 C 104.4928,325.13396 104.50478,325.07313 104.49871,325.00985 C 104.4967,324.98888 104.50073,324.96831 104.49871,324.94735 C 104.49356,324.89416 104.47272,324.84422 104.46746,324.7911 C 104.46436,324.75971 104.4706,324.72871 104.46746,324.69735 C 104.46365,324.65939 104.44008,324.61027 104.43621,324.57235 C 104.42288,324.44182 104.41901,324.29615 104.40496,324.1661 C 104.40273,324.14549 104.40721,324.1242 104.40496,324.1036 C 104.398,324.03972 104.38084,323.97986 104.37371,323.9161 C 104.37256,323.90582 104.37487,323.89513 104.37371,323.88485 C 104.35589,323.72623 104.33017,323.57398 104.31121,323.4161 C 104.30368,323.35342 104.28767,323.29116 104.27996,323.2286 C 104.26699,323.12341 104.26221,323.02096 104.24871,322.9161 C 104.24275,322.86977 104.25477,322.83736 104.24871,322.7911 C 104.24449,322.75885 104.22173,322.72957 104.21746,322.69735 C 104.21206,322.65673 104.22295,322.61292 104.21746,322.57235 C 104.21174,322.52993 104.19202,322.48971 104.18621,322.44735 C 104.1721,322.34479 104.16961,322.23707 104.15496,322.13485 C 104.14601,322.07225 104.13287,322.00982 104.12371,321.94735 C 104.12223,321.93727 104.1252,321.92617 104.12371,321.9161 C 104.10092,321.76128 104.08529,321.60137 104.06121,321.44735 C 104.05146,321.38509 104.00868,321.32198 103.99871,321.25985 C 103.99548,321.23967 104.00197,321.21752 103.99871,321.19735 C 103.98926,321.1389 103.97711,321.09944 103.96746,321.0411 C 103.95064,320.939 103.95363,320.83032 103.93621,320.7286 C 103.92916,320.68762 103.91211,320.64452 103.90496,320.6036 C 103.89251,320.53207 103.88646,320.48744 103.87371,320.4161 C 103.86453,320.36474 103.8518,320.31112 103.84246,320.25985 C 103.83869,320.23917 103.84626,320.21802 103.84246,320.19735 C 103.84073,320.18795 103.84419,320.17549 103.84246,320.1661 C 103.81798,320.03325 103.7743,319.89203 103.74871,319.75985 C 103.73295,319.67847 103.73364,319.59097 103.71746,319.50985 C 103.70576,319.45134 103.66689,319.41197 103.65496,319.3536 C 103.65094,319.3339 103.659,319.31079 103.65496,319.2911 C 103.64466,319.2411 103.63418,319.18475 103.62371,319.13485 C 103.60286,319.03521 103.58274,318.92158 103.56121,318.82235 C 103.55262,318.78297 103.53866,318.73666 103.52996,318.69735 C 103.51958,318.65021 103.50925,318.61939 103.49871,318.57235 C 103.49378,318.55037 103.50368,318.53181 103.49871,318.50985 C 103.48774,318.46129 103.4786,318.40206 103.46746,318.3536 C 103.46264,318.33264 103.44106,318.31204 103.43621,318.2911 C 100.49499,305.64904 91.669705,296.44735 64.279955,296.44735 C 63.263855,296.44735 62.281155,296.42861 61.311205,296.44735 z "
       id="path4888" />
    <path
       style="opacity:1;fill:#8f5902;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 170.26861,287.05033 C 167.23834,287.30966 164.83044,289.51602 164.67486,292.20658 C 163.9002,289.51841 161.52299,287.58158 158.73736,287.58158 C 156.02911,287.58158 153.73138,289.41475 152.89361,291.98783 C 152.5471,291.90321 152.17232,291.86283 151.79986,291.86283 C 149.29064,291.86283 147.26861,293.88486 147.26861,296.39408 C 147.26861,296.48414 147.2666,296.60832 147.26861,296.70658 C 146.50207,296.1816 145.52946,295.89408 144.48736,295.89408 C 141.97814,295.89408 139.92486,297.72617 139.92486,299.95658 C 139.92486,300.28766 139.96523,300.58607 140.04986,300.89408 C 139.7321,300.76066 139.40381,300.70658 139.04986,300.70658 C 137.30736,300.70658 135.89362,302.45212 135.89362,304.61283 C 135.89362,305.40284 136.06859,306.15372 136.39362,306.76908 C 136.35639,306.76742 136.30619,306.76908 136.26862,306.76908 C 134.66551,306.76908 133.36237,308.29342 133.36237,310.17533 C 133.36237,311.25431 133.78434,312.24159 134.45612,312.86283 C 132.98362,313.11205 131.86237,314.64022 131.86237,316.48783 C 131.86237,318.33544 132.98362,319.8636 134.45612,320.11283 C 134.44572,320.18084 134.43371,320.26411 134.42487,320.33158 C 134.42413,320.33716 134.42592,320.3567 134.42487,320.36283 C 134.41713,320.402 134.39965,320.45245 134.39362,320.48783 C 134.39364,320.49054 134.39349,320.51612 134.39362,320.51908 C 134.39346,320.52292 134.39356,320.5464 134.39362,320.55033 C 134.39433,320.56233 134.39411,320.6013 134.39362,320.61283 C 134.39367,320.61557 134.39349,320.64103 134.39362,320.64408 C 134.38709,320.6661 134.36888,320.7158 134.36237,320.73783 C 134.3625,320.74088 134.36232,320.76634 134.36237,320.76908 C 134.36108,320.79983 134.36363,320.86329 134.36237,320.89408 C 134.36249,320.89719 134.36236,320.92259 134.36237,320.92533 C 134.35583,320.94745 134.33765,320.99695 134.33112,321.01908 C 134.33113,321.02182 134.331,321.04722 134.33112,321.05033 C 134.33094,321.05434 134.33106,321.07771 134.33112,321.08158 C 134.33188,321.09286 134.33164,321.13205 134.33112,321.14408 C 134.33125,321.14703 134.3311,321.17263 134.33112,321.17533 C 134.32459,321.20392 134.30638,321.27172 134.29987,321.30033 C 134.29989,321.30303 134.29974,321.32863 134.29987,321.33158 C 134.29972,321.33543 134.29982,321.35891 134.29987,321.36283 C 134.30053,321.37476 134.30032,321.41375 134.29987,321.42533 C 134.29992,321.42807 134.29975,321.45354 134.29987,321.45658 C 134.29333,321.47858 134.27514,321.5283 134.26862,321.55033 C 134.26874,321.55337 134.26857,321.57884 134.26862,321.58158 C 134.26743,321.61246 134.26979,321.67566 134.26862,321.70658 C 134.26873,321.70969 134.26862,321.73509 134.26862,321.73783 C 134.26207,321.75994 134.24391,321.80946 134.23737,321.83158 C 134.23737,321.83431 134.23726,321.85973 134.23737,321.86283 C 134.23621,321.89375 134.2385,321.95687 134.23737,321.98783 C 134.23748,321.99093 134.23737,322.01635 134.23737,322.01908 C 134.23082,322.04118 134.21266,322.09071 134.20612,322.11283 C 134.20612,322.11556 134.20601,322.14098 134.20612,322.14408 C 134.20499,322.17504 134.20722,322.23808 134.20612,322.26908 C 134.20623,322.27218 134.20612,322.2976 134.20612,322.30033 C 134.19957,322.32243 134.18141,322.37197 134.17487,322.39408 C 134.17487,322.39681 134.17476,322.42223 134.17487,322.42533 C 134.17472,322.42937 134.17482,322.45272 134.17487,322.45658 C 134.17554,322.46772 134.17532,322.50696 134.17487,322.51908 C 134.17492,322.52182 134.17475,322.5473 134.17487,322.55033 C 134.16832,322.57232 134.15015,322.62207 134.14362,322.64408 C 134.14374,322.64711 134.14357,322.67259 134.14362,322.67533 C 134.14255,322.70638 134.14467,322.76924 134.14362,322.80033 C 134.14373,322.80343 134.14362,322.82885 134.14362,322.83158 C 134.13706,322.85367 134.11892,322.90322 134.11237,322.92533 C 134.11237,322.92806 134.11226,322.95348 134.11237,322.95658 C 134.11132,322.98767 134.11339,323.05045 134.11237,323.08158 C 134.08965,323.31642 134.0711,323.56314 134.04987,323.80033 C 134.04996,323.80663 134.04996,323.82844 134.04987,323.83158 C 134.05012,323.85793 134.0496,323.89895 134.04987,323.92533 C 134.04978,323.92848 134.04978,323.95029 134.04987,323.95658 C 134.04964,323.95922 134.04968,323.98133 134.04987,323.98783 C 134.04428,323.99305 134.02436,324.01387 134.01862,324.01908 C 134.01881,324.02234 134.01856,324.04756 134.01862,324.05033 C 134.0188,324.05683 134.01885,324.07894 134.01862,324.08158 C 134.01834,324.08484 134.01853,324.10665 134.01862,324.11283 C 134.01889,324.13885 134.01833,324.18053 134.01862,324.20658 C 134.01871,324.21276 134.0189,324.23457 134.01862,324.23783 C 134.01839,324.24048 134.01844,324.26258 134.01862,324.26908 C 134.01304,324.2743 133.99311,324.29513 133.98737,324.30033 C 133.98756,324.30359 133.98731,324.32881 133.98737,324.33158 C 133.98755,324.33807 133.9876,324.36017 133.98737,324.36283 C 133.98709,324.36611 133.98728,324.3879 133.98737,324.39408 C 133.98764,324.42009 133.98709,324.4618 133.98737,324.48783 C 133.98746,324.49401 133.98764,324.5158 133.98737,324.51908 C 133.96006,324.84908 133.91845,325.18467 133.89362,325.51908 C 133.89337,325.5224 133.89354,325.54417 133.89362,325.55033 C 133.89386,325.57629 133.89337,325.6181 133.89362,325.64408 C 133.8937,325.65024 133.89386,325.672 133.89362,325.67533 C 133.82061,326.67563 133.76123,327.69874 133.70612,328.73783 C 133.70239,328.80826 133.70979,328.88597 133.70612,328.95658 C 133.69956,329.08283 133.68122,329.20477 133.67487,329.33158 C 133.6716,329.39689 133.67596,329.45467 133.67487,329.51908 C 136.75971,326.65576 139.85208,320.86537 141.70611,313.80033 C 142.10706,312.27248 142.42851,310.76029 142.67486,309.30033 C 151.2958,306.07686 162.73534,304.11283 175.26861,304.11283 C 189.48273,304.11283 202.2607,306.62198 211.14361,310.64408 C 211.14652,310.644 211.17102,310.64441 211.17486,310.64408 C 211.37809,311.67936 211.61427,312.73587 211.89361,313.80033 C 213.56816,320.18143 216.24222,325.55619 219.01861,328.64408 C 219.00785,328.23458 219.00074,327.83238 218.98736,327.42533 C 218.98532,327.36307 218.98947,327.30003 218.98736,327.23783 C 218.97743,326.94587 218.9677,326.65339 218.95611,326.36283 C 218.95589,326.35735 218.95608,326.33676 218.95611,326.33158 C 218.95614,326.32641 218.95633,326.30581 218.95611,326.30033 C 218.9465,326.06211 218.93572,325.81879 218.92486,325.58158 C 218.92136,325.50504 218.89725,325.43926 218.89361,325.36283 C 218.89336,325.3577 218.89349,325.33683 218.89361,325.33158 C 218.88128,325.0737 218.87638,324.80693 218.86236,324.55033 C 218.86182,324.51988 218.86292,324.45576 218.86236,324.42533 C 218.85439,324.28251 218.83964,324.16148 218.83111,324.01908 C 218.83127,324.01397 218.83144,323.99323 218.83111,323.98783 C 218.82187,323.83451 218.80979,323.67189 218.79986,323.51908 C 218.79988,323.51648 218.79977,323.4904 218.79986,323.48783 C 218.79058,323.34575 218.77852,323.19197 218.76861,323.05033 C 218.76843,323.04766 218.76857,323.02558 218.76861,323.01908 C 218.76865,323.01258 218.7688,322.99049 218.76861,322.98783 C 218.76837,322.98445 218.76842,322.96272 218.76861,322.95658 C 218.76204,322.93451 218.74394,322.88489 218.73736,322.86283 C 218.73755,322.85669 218.73761,322.83495 218.73736,322.83158 C 218.73706,322.81969 218.73691,322.78055 218.73736,322.76908 C 218.7374,322.7652 218.73746,322.74179 218.73736,322.73783 C 218.73716,322.73516 218.73729,322.71307 218.73736,322.70658 C 218.73757,322.68581 218.73717,322.66484 218.73736,322.64408 C 218.73743,322.63759 218.73756,322.6155 218.73736,322.61283 C 218.73664,322.58268 218.7381,322.51795 218.73736,322.48783 C 218.73751,322.48457 218.73735,322.45936 218.73736,322.45658 C 218.73171,322.44553 218.71176,322.40513 218.70611,322.39408 C 218.70612,322.3913 218.70596,322.36609 218.70611,322.36283 C 218.70316,322.32496 218.70461,322.2736 218.70611,322.23783 C 218.70701,322.21091 218.7084,322.17243 218.70611,322.14408 C 218.69391,321.99287 218.68789,321.85723 218.67486,321.70658 C 218.67455,321.69124 218.67403,321.65981 218.67486,321.64408 C 218.67506,321.63882 218.67485,321.61809 218.67486,321.61283 C 218.67458,321.60757 218.67553,321.58681 218.67486,321.58158 C 218.92993,321.64852 219.2103,321.67533 219.48736,321.67533 C 221.16017,321.67533 222.51861,320.37219 222.51861,318.76908 C 222.51861,317.24111 221.27016,315.977 219.70611,315.86283 C 220.49196,315.36077 220.98736,314.52559 220.98736,313.58158 C 220.98736,312.04817 219.62892,310.80033 217.95611,310.80033 C 217.91691,310.80033 217.86638,310.801 217.83111,310.80033 C 217.80456,310.80017 217.7662,310.79832 217.73736,310.80033 C 217.34635,310.82763 216.9806,310.9299 216.64361,311.08158 C 216.42919,310.44762 216.21139,309.81769 215.95611,309.20658 C 216.41876,308.59843 216.70611,307.79093 216.70611,306.89408 C 216.70611,305.01217 215.45827,303.48783 213.92486,303.48783 C 213.84399,303.48783 213.75219,303.48577 213.67486,303.48783 C 213.66867,303.48773 213.64685,303.48758 213.64361,303.48783 C 213.64052,303.48773 213.61509,303.48784 213.61236,303.48783 C 213.33135,303.5273 213.04967,303.6332 212.79986,303.76908 C 212.25088,303.06284 211.63879,302.4211 210.98736,301.76908 C 210.98736,301.76908 211.01861,301.73783 211.01861,301.73783 C 211.26111,301.12057 211.39361,300.42537 211.39361,299.70658 C 211.39361,296.91856 209.37158,294.64409 206.86236,294.64408 C 205.4472,294.64408 204.13589,295.33016 203.29986,296.45658 C 203.48592,295.84678 203.58111,295.19518 203.58111,294.51908 C 203.58111,291.10376 201.03013,288.33159 197.89361,288.33158 C 195.99209,288.33158 194.30021,289.3308 193.26861,290.89408 C 192.28813,289.34852 190.64965,288.33158 188.79986,288.33158 C 187.02032,288.33158 185.44655,289.25931 184.45611,290.70658 C 183.54542,288.9815 181.81169,287.83158 179.83111,287.83158 C 178.35368,287.83158 177.01181,288.47358 176.04986,289.51908 C 174.94331,288.04424 173.02362,287.05033 170.86236,287.05033 C 170.83568,287.05033 170.82646,287.05004 170.79986,287.05033 C 170.67204,287.05175 170.55078,287.04218 170.42486,287.05033 C 170.37646,287.05347 170.31671,287.04622 170.26861,287.05033 z "
       id="path4951" />
    <path
       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 48.524728,220.87105 C 49.001788,223.74346 48.126478,227.38391 46.087228,231.05854 C 45.119658,231.27986 44.195468,231.51911 43.305978,231.77729 C 42.780058,229.30155 41.478738,227.30926 39.493478,226.30854 C 39.423548,226.2733 39.376788,226.2472 39.305978,226.21479 C 38.962508,226.0576 38.605348,225.96297 38.243478,225.87104 C 38.962808,227.83164 39.033518,230.52158 38.462228,233.52729 C 37.526598,233.94143 36.635048,234.37004 35.805978,234.83979 C 34.562718,232.45478 32.670738,230.81348 30.368478,230.43354 C 30.343158,230.42657 30.294178,230.40915 30.274728,230.40229 C 30.252618,230.39429 30.203878,230.37701 30.180978,230.37104 C 30.177658,230.37116 30.152508,230.371 30.149728,230.37104 C 29.774978,230.32362 29.397538,230.35067 29.024728,230.37104 C 30.336628,232.07899 31.220338,234.70822 31.555978,237.87104 C 31.440348,237.97447 31.324948,238.10965 31.212228,238.21479 C 31.206288,238.22033 31.186898,238.20925 31.180978,238.21479 C 28.629318,238.10635 26.331078,238.51363 24.805988,239.46479 C 24.752798,239.49797 24.700448,239.52442 24.649738,239.55854 C 24.403778,239.72403 24.181788,239.90368 23.993488,240.08979 C 25.454208,240.02914 27.158778,240.20727 28.993478,240.58979 C 28.485728,241.23095 27.989248,241.89919 27.555978,242.58979 C 26.174638,242.77176 24.952698,243.16729 24.024738,243.74604 C 23.971538,243.77922 23.919198,243.80567 23.868488,243.83979 C 23.622528,244.00528 23.431788,244.18493 23.243488,244.37104 C 24.215438,244.33069 25.302008,244.3978 26.462238,244.55854 C 25.762668,245.94867 25.168688,247.43757 24.680988,248.99604 C 24.681338,248.99882 24.680898,249.02464 24.680988,249.02729 C 24.660168,249.09449 24.638968,249.14728 24.618488,249.21479 C 24.616778,249.21592 24.620108,249.24488 24.618488,249.24604 C 24.617458,249.24746 24.587738,249.24439 24.587238,249.24604 C 24.543748,249.38999 24.504168,249.53821 24.462238,249.68354 C 24.462568,249.68631 24.462148,249.71215 24.462238,249.71479 C 24.419658,249.86281 24.378238,250.0341 24.337238,250.18354 C 24.294018,250.34021 24.253758,250.49405 24.212238,250.65229 C 24.128628,250.97305 24.039118,251.29391 23.962238,251.62104 C 23.943128,251.70172 23.918458,251.75872 23.899738,251.83979 C 23.900008,251.84249 23.899668,251.86841 23.899738,251.87104 C 23.864328,252.02573 23.839988,252.1837 23.805988,252.33979 C 23.806248,252.34248 23.805918,252.36842 23.805988,252.37104 C 23.790208,252.4433 23.758978,252.51723 23.743488,252.58979 C 23.743738,252.59247 23.743418,252.61842 23.743488,252.62104 C 23.728038,252.69364 23.696148,252.76689 23.680988,252.83979 C 23.681238,252.84247 23.680918,252.86842 23.680988,252.87104 C 23.665968,252.94353 23.664478,253.017 23.649738,253.08979 C 23.649998,253.0924 23.649668,253.11843 23.649738,253.12104 C 23.634948,253.19432 23.601748,253.26621 23.587238,253.33979 C 23.587478,253.34245 23.587168,253.36842 23.587238,253.37104 C 23.556228,253.53018 23.523208,253.67926 23.493488,253.83979 C 23.493718,253.84244 23.493428,253.86842 23.493488,253.87104 C 23.465338,254.02362 23.426748,254.18596 23.399738,254.33979 C 23.399928,254.35037 23.399538,254.39171 23.399738,254.40229 C 23.388478,254.46637 23.379558,254.52549 23.368488,254.58979 C 23.368328,254.59241 23.368428,254.61844 23.368488,254.62104 C 23.368538,254.62364 23.368638,254.64967 23.368488,254.65229 C 23.365748,254.66434 23.372628,254.70315 23.368488,254.71479 C 23.362278,254.73011 23.343428,254.76195 23.337238,254.77729 C 23.331728,254.79284 23.308728,254.82341 23.305988,254.83979 C 23.306198,254.85023 23.305768,254.89185 23.305988,254.90229 C 23.294858,254.96922 23.285678,255.05388 23.274738,255.12104 C 23.274928,255.13156 23.274538,255.17302 23.274738,255.18354 C 23.250038,255.33754 23.204668,255.46583 23.180988,255.62104 C 23.181078,255.62625 23.180588,255.64707 23.180988,255.65229 C 23.181028,255.6549 23.181118,255.68094 23.180988,255.68354 C 23.170618,255.75136 23.159918,255.83424 23.149738,255.90229 C 23.149908,255.91279 23.149558,255.95428 23.149738,255.96479 C 23.139968,256.03058 23.128088,256.08628 23.118488,256.15229 C 23.118348,256.15494 23.118438,256.18095 23.118488,256.18354 C 23.118528,256.18613 23.118618,256.21214 23.118488,256.21479 C 23.080388,256.48122 23.028838,256.75741 22.993488,257.02729 C 22.987588,257.07196 23.001518,257.13637 22.993488,257.18354 C 22.992298,257.19124 22.963198,257.20732 22.962238,257.21479 C 22.962068,257.21863 22.962178,257.24211 22.962238,257.24604 C 22.962948,257.25804 22.962718,257.29701 22.962238,257.30854 C 22.961328,257.31557 22.963398,257.3331 22.962238,257.33979 C 22.956808,257.36555 22.967628,257.40775 22.962238,257.43354 C 22.961078,257.44024 22.931868,257.45774 22.930988,257.46479 C 22.929698,257.49554 22.932248,257.559 22.930988,257.58979 C 22.930208,257.59607 22.932108,257.61461 22.930988,257.62104 C 22.925498,257.64718 22.936448,257.68862 22.930988,257.71479 C 22.929868,257.72123 22.900508,257.73974 22.899738,257.74604 C 22.899558,257.75005 22.899668,257.77342 22.899738,257.77729 C 22.900488,257.78857 22.900248,257.82776 22.899738,257.83979 C 22.898818,257.84733 22.900908,257.86333 22.899738,257.87104 C 22.894308,257.9024 22.905128,257.96464 22.899738,257.99604 C 22.898578,258.00377 22.869378,258.01973 22.868488,258.02729 C 22.868328,258.03114 22.868428,258.05462 22.868488,258.05854 C 22.869138,258.07047 22.868928,258.10946 22.868488,258.12104 C 22.867648,258.12816 22.869628,258.14557 22.868488,258.15229 C 22.863028,258.178 22.873918,258.22029 22.868488,258.24604 C 22.867348,258.25277 22.838058,258.27015 22.837238,258.27729 C 22.836038,258.30817 22.838398,258.37137 22.837238,258.40229 C 22.836508,258.40865 22.838338,258.42708 22.837238,258.43354 C 22.831718,258.45964 22.842728,258.50116 22.837238,258.52729 C 22.836138,258.53376 22.806698,258.55216 22.805988,258.55854 C 22.804818,258.58946 22.807118,258.65258 22.805988,258.68354 C 22.805278,258.68993 22.807078,258.70833 22.805988,258.71479 C 22.800468,258.74088 22.811488,258.78243 22.805988,258.80854 C 22.804888,258.81502 22.775428,258.83339 22.774738,258.83979 C 22.773608,258.87075 22.775838,258.93379 22.774738,258.96479 C 22.774048,258.9712 22.775828,258.98957 22.774738,258.99604 C 22.769208,259.02211 22.780248,259.06369 22.774738,259.08979 C 22.773648,259.09627 22.744158,259.11461 22.743488,259.12104 C 22.743328,259.12508 22.743428,259.14843 22.743488,259.15229 C 22.744148,259.16343 22.743938,259.20267 22.743488,259.21479 C 22.742728,259.22203 22.744598,259.23928 22.743488,259.24604 C 22.742108,259.25245 22.745008,259.27108 22.743488,259.27729 C 22.740328,259.28958 22.746218,259.32694 22.743488,259.33979 C 22.742378,259.34656 22.712978,259.36378 22.712238,259.37104 C 22.711158,259.40209 22.713278,259.46495 22.712238,259.49604 C 22.711588,259.5025 22.713318,259.5208 22.712238,259.52729 C 22.706688,259.55334 22.717758,259.59496 22.712238,259.62104 C 22.711158,259.62754 22.681628,259.64581 22.680988,259.65229 C 22.679938,259.68338 22.682008,259.74616 22.680988,259.77729 C 22.658268,260.01213 22.639718,260.25885 22.618488,260.49604 C 22.617958,260.5019 22.618668,260.52101 22.618488,260.52729 C 22.618738,260.55364 22.618218,260.59466 22.618488,260.62104 C 22.618308,260.62733 22.618998,260.64642 22.618488,260.65229 C 22.618018,260.65757 22.619498,260.67831 22.618488,260.68354 C 22.616838,260.68871 22.620208,260.70962 22.618488,260.71479 C 22.616838,260.71997 22.619888,260.74084 22.618488,260.74604 C 22.617468,260.75128 22.587698,260.772 22.587238,260.77729 C 22.586668,260.78381 22.587428,260.80203 22.587238,260.80854 C 22.587508,260.83456 22.586948,260.87624 22.587238,260.90229 C 22.587038,260.90881 22.587788,260.92701 22.587238,260.93354 C 22.586778,260.93884 22.588248,260.95955 22.587238,260.96479 C 22.585828,260.96998 22.588878,260.99087 22.587238,260.99604 C 22.585588,261.00121 22.588638,261.02209 22.587238,261.02729 C 22.586228,261.03254 22.556438,261.05323 22.555988,261.05854 C 22.555428,261.06508 22.556178,261.08327 22.555988,261.08979 C 22.556248,261.1158 22.555698,261.15751 22.555988,261.18354 C 22.555798,261.19007 22.556528,261.20823 22.555988,261.21479 C 22.528678,261.54479 22.487078,261.88038 22.462238,262.21479 C 22.461738,262.22144 22.462408,262.23949 22.462238,262.24604 C 22.462468,262.272 22.461978,262.31381 22.462238,262.33979 C 22.462068,262.34636 22.462718,262.36438 22.462238,262.37104 C 22.389238,263.37134 22.329848,264.39445 22.274738,265.43354 C 22.271008,265.50397 22.278408,265.58168 22.274738,265.65229 C 22.268178,265.77854 22.249838,265.90048 22.243488,266.02729 C 22.239758,266.10193 22.247158,266.17121 22.243488,266.24604 C 25.334408,263.38866 28.417068,257.57491 30.274728,250.49604 C 30.675668,248.96819 30.997128,247.456 31.243478,245.99604 C 39.864408,242.77257 51.303958,240.80854 63.837228,240.80854 C 78.051348,240.80854 90.829318,243.31769 99.712228,247.33979 C 99.715138,247.33971 99.739638,247.34012 99.743478,247.33979 C 99.946708,248.37507 100.18289,249.43158 100.46223,250.49604 C 102.13678,256.87714 104.81084,262.2519 107.58723,265.33979 C 107.57647,264.93029 107.56936,264.52809 107.55598,264.12104 C 107.55394,264.05878 107.55809,263.99574 107.55598,263.93354 C 107.54605,263.64158 107.53632,263.3491 107.52473,263.05854 C 107.52451,263.05306 107.5247,263.03247 107.52473,263.02729 C 107.52476,263.02212 107.52495,263.00152 107.52473,262.99604 C 107.51512,262.75782 107.50434,262.5145 107.49348,262.27729 C 107.49173,262.23902 107.5004,262.18786 107.49348,262.15229 C 107.48852,262.1255 107.4636,262.0872 107.46223,262.05854 C 107.46199,262.0534 107.46211,262.03253 107.46223,262.02729 C 107.4499,261.76941 107.445,261.50264 107.43098,261.24604 C 107.43044,261.21559 107.43154,261.15147 107.43098,261.12104 C 107.42301,260.97822 107.40826,260.85719 107.39973,260.71479 C 107.39941,260.70939 107.39957,260.68865 107.39973,260.68354 C 107.39049,260.53022 107.37841,260.3676 107.36848,260.21479 C 107.3685,260.21219 107.36839,260.18611 107.36848,260.18354 C 107.3592,260.04146 107.34714,259.88768 107.33723,259.74604 C 107.33686,259.74071 107.33718,259.71998 107.33723,259.71479 C 107.33728,259.7096 107.33761,259.68887 107.33723,259.68354 C 107.33675,259.67678 107.33825,259.65889 107.33723,259.65229 C 107.33443,259.63933 107.34065,259.60256 107.33723,259.58979 C 107.33559,259.58338 107.33864,259.56502 107.33723,259.55854 C 107.3362,259.55195 107.30647,259.53404 107.30598,259.52729 C 107.30568,259.5154 107.30553,259.47626 107.30598,259.46479 C 107.30602,259.46091 107.30608,259.4375 107.30598,259.43354 C 107.30559,259.42819 107.30611,259.40755 107.30598,259.40229 C 107.30619,259.38152 107.30579,259.36055 107.30598,259.33979 C 107.30584,259.33454 107.30638,259.31388 107.30598,259.30854 C 107.30526,259.27839 107.30673,259.21366 107.30598,259.18354 C 107.305,259.17846 107.3074,259.15755 107.30598,259.15229 C 107.30262,259.14155 107.30934,259.10052 107.30598,259.08979 C 107.30314,259.07928 107.27548,259.06816 107.27473,259.05854 C 107.27178,259.02066 107.27323,258.96931 107.27473,258.93354 C 107.27563,258.90662 107.27702,258.86814 107.27473,258.83979 C 107.26253,258.68858 107.25651,258.55294 107.24348,258.40229 C 107.22952,258.24088 107.19593,258.06303 107.18098,257.90229 C 107.1795,257.88644 107.18078,257.8554 107.18098,257.83979 C 107.18159,257.82425 107.18038,257.79283 107.18098,257.77729 C 107.18116,257.7617 107.1825,257.73061 107.18098,257.71479 C 107.18048,257.70955 107.18092,257.68874 107.18098,257.68354 C 107.18123,257.67835 107.18092,257.65749 107.18098,257.65229 C 107.18034,257.64564 107.18205,257.6276 107.18098,257.62104 C 107.17546,257.59506 107.18653,257.55326 107.18098,257.52729 C 107.1799,257.52074 107.15039,257.50268 107.14973,257.49604 C 107.14933,257.4843 107.14915,257.44524 107.14973,257.43354 C 107.14978,257.42964 107.14987,257.4062 107.14973,257.40229 C 107.14261,257.36694 107.12187,257.31047 107.11848,257.27729 C 107.10515,257.14676 107.10128,257.00109 107.08723,256.87104 C 107.08713,256.86845 107.08719,256.8424 107.08723,256.83979 C 107.08751,256.83455 107.08716,256.81375 107.08723,256.80854 C 107.08027,256.74466 107.06311,256.6848 107.05598,256.62104 C 107.05602,256.61843 107.05584,256.59241 107.05598,256.58979 C 107.03816,256.43117 107.01244,256.27892 106.99348,256.12104 C 106.98784,256.07403 107.00159,256.01163 106.99348,255.96479 C 106.99229,255.95698 106.96319,255.94136 106.96223,255.93354 C 106.94926,255.82835 106.94448,255.7259 106.93098,255.62104 C 106.93024,255.61525 106.93123,255.5952 106.93098,255.58979 C 106.93108,255.58465 106.93067,255.56351 106.93098,255.55854 C 106.93128,255.55357 106.93089,255.53242 106.93098,255.52729 C 106.93072,255.52189 106.93174,255.50182 106.93098,255.49604 C 106.92995,255.49209 106.93238,255.46868 106.93098,255.46479 C 106.92937,255.46093 106.93267,255.43738 106.93098,255.43354 C 106.92818,255.42576 106.9008,255.41035 106.89973,255.40229 C 106.8995,255.39713 106.89964,255.37627 106.89973,255.37104 C 106.90029,255.36051 106.89918,255.31906 106.89973,255.30854 C 106.89981,255.30332 106.89997,255.28245 106.89973,255.27729 C 106.89902,255.27199 106.90083,255.25128 106.89973,255.24604 C 106.89424,255.22524 106.90524,255.20432 106.89973,255.18354 C 106.89862,255.1783 106.86921,255.15759 106.86848,255.15229 C 106.85437,255.04973 106.85188,254.94201 106.83723,254.83979 C 106.82828,254.77719 106.81514,254.71476 106.80598,254.65229 C 106.80603,254.64967 106.80579,254.62369 106.80598,254.62104 C 106.78319,254.46622 106.76756,254.30631 106.74348,254.15229 C 106.74093,254.1406 106.74763,254.10152 106.74348,254.08979 C 106.73401,254.0663 106.72058,254.01948 106.71223,253.99604 C 106.71009,253.98825 106.68223,253.97256 106.68098,253.96479 C 106.68119,253.95433 106.68078,253.91275 106.68098,253.90229 C 106.67153,253.84384 106.65938,253.80438 106.64973,253.74604 C 106.63291,253.64394 106.6359,253.53526 106.61848,253.43354 C 106.6104,253.39728 106.59349,253.34435 106.58723,253.30854 C 106.57478,253.23701 106.56873,253.19238 106.55598,253.12104 C 106.5468,253.06968 106.53407,253.01606 106.52473,252.96479 C 106.52457,252.96219 106.52467,252.93615 106.52473,252.93354 C 106.5252,252.92831 106.52461,252.9075 106.52473,252.90229 C 106.52478,252.89965 106.52451,252.87377 106.52473,252.87104 C 106.50025,252.73819 106.45657,252.59697 106.43098,252.46479 C 106.41522,252.38341 106.41591,252.29591 106.39973,252.21479 C 106.3988,252.21127 106.40083,252.18694 106.39973,252.18354 C 106.39425,252.17071 106.37482,252.13327 106.36848,252.12104 C 106.36541,252.11485 106.37123,252.0962 106.36848,252.08979 C 106.36625,252.08301 106.33872,252.06584 106.33723,252.05854 C 106.33748,252.04805 106.33698,252.00653 106.33723,251.99604 C 106.32693,251.94604 106.31645,251.88969 106.30598,251.83979 C 106.28513,251.74015 106.26501,251.62652 106.24348,251.52729 C 106.23489,251.48791 106.22093,251.4416 106.21223,251.40229 C 106.20185,251.35515 106.19152,251.32433 106.18098,251.27729 C 106.18077,251.27464 106.1809,251.24863 106.18098,251.24604 C 106.18106,251.24345 106.18119,251.21744 106.18098,251.21479 C 106.17001,251.16623 106.16087,251.107 106.14973,251.05854 C 106.14867,251.05593 106.15112,251.02989 106.14973,251.02729 C 106.14643,251.0221 106.15251,251.00124 106.14973,250.99604 C 106.14867,250.99343 106.11909,250.99866 106.11848,250.99604 C 105.94139,250.23486 105.74725,249.48102 105.52473,248.74604 C 106.5224,248.74229 107.39873,248.84759 108.14973,249.02729 C 108.38397,246.84553 106.8305,245.45585 104.18098,245.15229 C 103.43199,243.50822 102.51871,241.93997 101.39973,240.49604 C 102.50793,240.6025 103.48151,240.83784 104.30598,241.18354 C 104.25876,240.83607 104.19958,240.4848 104.08723,240.15229 C 104.07739,240.11866 104.06428,240.06023 104.05598,240.02729 C 104.04861,239.99926 104.03448,239.95897 104.02473,239.93354 C 103.21238,237.81519 101.14382,236.49333 98.462228,235.99604 C 100.98172,235.66516 103.23747,235.80659 104.93098,236.43354 C 104.84011,236.07141 104.74342,235.71497 104.58723,235.37104 C 104.55503,235.30014 104.49726,235.22231 104.46223,235.15229 C 102.62241,231.47576 97.450458,230.19927 91.962228,231.68354 C 93.378378,229.59277 94.940938,228.00116 96.524728,227.15229 C 96.193278,226.98042 95.854578,226.82567 95.493478,226.71479 C 95.419038,226.69194 95.350398,226.67244 95.274728,226.65229 C 94.650438,226.48606 94.005298,226.40561 93.368478,226.43354 C 93.303298,226.4364 93.246178,226.42873 93.180978,226.43354 C 93.169148,226.43381 93.130038,226.43403 93.118478,226.43354 C 93.114588,226.43352 93.091168,226.43341 93.087228,226.43354 C 93.083298,226.43365 93.059878,226.4336 93.055978,226.43354 C 93.044368,226.43297 93.005268,226.43308 92.993478,226.43354 C 90.434628,226.69709 87.870628,228.46358 85.899728,231.18354 C 84.418688,230.79633 82.841448,230.46463 81.149728,230.18354 C 82.335508,228.6729 83.596488,227.52154 84.868478,226.83979 C 84.537028,226.66792 84.198328,226.51317 83.837228,226.40229 C 83.762788,226.37944 83.694138,226.35994 83.618478,226.33979 C 80.828238,225.59681 77.815898,226.87511 75.399728,229.46479 C 75.044078,229.43496 74.700828,229.42816 74.337228,229.40229 C 75.356718,226.42367 76.791898,224.05049 78.430978,222.68355 C 78.071658,222.58207 77.682008,222.50056 77.305978,222.4648 C 77.276898,222.46204 77.238788,222.46404 77.212228,222.4648 C 77.177008,222.46628 77.126318,222.46704 77.087228,222.4648 C 73.909198,222.28303 70.954268,224.53316 69.118478,228.12104 C 68.440118,225.75796 66.837428,223.86348 64.368478,222.9023 C 64.280308,222.86797 64.176528,222.84012 64.087228,222.80855 C 63.654108,222.65546 63.199798,222.55433 62.743478,222.4648 C 63.573428,224.21185 63.730608,226.55158 63.212228,229.18354 C 61.529188,229.22562 59.914408,229.30297 58.368478,229.40229 C 57.775368,226.32826 57.854938,223.5857 58.587228,221.5898 C 58.225348,221.68173 57.868188,221.80761 57.524728,221.9648 C 57.453908,221.99721 57.375898,222.02331 57.305978,222.05855 C 55.002188,223.21984 53.599598,225.67462 53.274728,228.71479 C 53.100228,226.03369 51.988188,223.60156 49.962228,221.87105 C 49.896498,221.81122 49.810558,221.71002 49.743478,221.6523 C 49.363308,221.34835 48.943028,221.11042 48.524728,220.87105 z "
       id="path4955" />
    <g
       id="g5342"
       transform="translate(-1.012047,0)">
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(497.44782,412.4014)"
         id="g5076">
        <path
           sodipodi:type="arc"
           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path5078"
           sodipodi:cx="82.327431"
           sodipodi:cy="126.05229"
           sodipodi:rx="10.606602"
           sodipodi:ry="11.111678"
           d="M 92.934032 126.05229 A 10.606602 11.111678 0 1 1  71.720829,126.05229 A 10.606602 11.111678 0 1 1  92.934032 126.05229 z"
           transform="translate(-2.146575,-0.757614)" />
        <path
           sodipodi:type="arc"
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path5080"
           sodipodi:cx="79.486382"
           sodipodi:cy="125.98916"
           sodipodi:rx="1.1995561"
           sodipodi:ry="1.1995561"
           d="M 80.685938 125.98916 A 1.1995561 1.1995561 0 1 1  78.286825,125.98916 A 1.1995561 1.1995561 0 1 1  80.685938 125.98916 z"
           transform="translate(1.894036,0.378807)" />
      </g>
      <path
         sodipodi:type="arc"
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path5084"
         sodipodi:cx="82.327431"
         sodipodi:cy="126.05229"
         sodipodi:rx="10.606602"
         sodipodi:ry="11.111678"
         d="M 92.934032 126.05229 A 10.606602 11.111678 0 1 1  71.720829,126.05229 A 10.606602 11.111678 0 1 1  92.934032 126.05229 z"
         transform="matrix(-1,0,0,1,696.82669,411.64379)" />
      <path
         sodipodi:type="arc"
         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path5086"
         sodipodi:cx="79.486382"
         sodipodi:cy="125.98916"
         sodipodi:rx="1.1995561"
         sodipodi:ry="1.1995561"
         d="M 80.685938 125.98916 A 1.1995561 1.1995561 0 1 1  78.286825,125.98916 A 1.1995561 1.1995561 0 1 1  80.685938 125.98916 z"
         transform="matrix(-1,0,0,1,692.78608,412.78021)" />
    </g>
    <g
       id="g5456">
      <path
         transform="matrix(0.387457,0,0,0.363478,161.52155,195.56817)"
         d="M 40.357144,82.362177 L 34.15267,82.451177 L 31.197348,89.481699 L 26.125511,85.906804 L 19.602168,89.85752 L 17.600236,83.984218 L 10.000568,83.34609 L 11.833211,77.417783 L 6.0600325,72.434554 L 11.027244,68.715653 L 9.2857129,61.290747 L 15.490186,61.201746 L 18.445509,54.171225 L 23.517346,57.74612 L 30.040689,53.795403 L 32.042621,59.668706 L 39.642289,60.306833 L 37.809645,66.235141 L 43.582824,71.21837 L 38.615613,74.937271 L 40.357144,82.362177 z "
         inkscape:randomized="0"
         inkscape:rounded="0"
         inkscape:flatsided="false"
         sodipodi:arg2="0.85012402"
         sodipodi:arg1="0.59591801"
         sodipodi:r2="14.140603"
         sodipodi:r1="18.771248"
         sodipodi:cy="71.826462"
         sodipodi:cx="24.821428"
         sodipodi:sides="10"
         id="path5356"
         style="fill:#eeeeec;fill-opacity:1;stroke:#000000;stroke-width:5.32941052;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         sodipodi:type="star" />
      <path
         id="path5303"
         d="M 179.89772,225.3758 C 175.37227,225.46511 169.36647,225.78205 161.39772,226.40705 C 145.75347,227.63405 136.58011,247.52204 134.17897,254.15705 C 134.17569,254.16611 134.18222,254.17929 134.17897,254.1883 C 133.35615,254.66087 132.55055,255.12621 131.77272,255.6258 C 131.77319,255.62868 131.7726,255.65438 131.77272,255.65705 C 130.05134,259.35678 129.58432,263.06262 130.67897,266.34455 C 130.68272,266.3441 130.70732,266.34466 130.71022,266.34455 C 141.76091,258.86965 157.8146,254.15705 175.67897,254.15705 C 192.60272,254.15705 207.89819,258.38835 218.86647,265.1883 C 220.21585,262.15487 220.15954,258.70072 218.89772,255.1883 C 218.89437,255.18592 218.86926,255.1596 218.86647,255.15705 C 217.87549,254.54314 216.86373,253.94625 215.80397,253.3758 C 213.90092,240.78182 202.03248,227.70197 191.24147,225.8758 C 189.12428,225.51751 185.71616,225.26097 179.89772,225.3758 z "
         style="fill:#8f5902;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path5270"
         d="M 173.36647,244.15705 C 156.99651,244.53299 142.28407,248.87453 131.77272,255.6258 C 131.76889,255.63399 131.77652,255.64886 131.77272,255.65705 C 130.05134,259.35678 129.58432,263.06262 130.67897,266.34455 C 130.68018,266.34818 130.709,266.34092 130.71022,266.34455 C 141.76091,258.86965 157.8146,254.15705 175.67897,254.15705 C 192.60272,254.15705 207.89819,258.38835 218.86647,265.1883 C 220.21585,262.15487 220.15954,258.70072 218.89772,255.1883 C 218.89332,255.17605 218.8709,255.1693 218.86647,255.15705 C 207.89942,248.36298 192.59784,244.15705 175.67897,244.15705 C 175.02824,244.15705 174.38725,244.14465 173.74147,244.15705 C 173.61483,244.15948 173.4929,244.15415 173.36647,244.15705 z "
         style="fill:#8f5902;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path5328"
         d="M 144.26379,236.22905 L 160.33522,229.97905 L 166.22808,236.40762 L 179.26379,229.97905 L 186.40665,236.22905 L 195.69237,230.87191 L 202.47808,237.30048 L 206.58522,235.51476 L 211.76379,242.30048 L 206.94237,237.47905 L 202.29951,239.44333 L 195.33522,233.90762 L 186.76379,240.15762 L 178.72808,232.83619 L 165.51379,239.97905 L 158.01379,233.55048 L 141.0495,240.87191 L 144.26379,236.22905 z "
         style="fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         style="fill:#946018;fill-opacity:0;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 179.89773,225.37581 C 175.37228,225.46512 169.36648,225.78206 161.39773,226.40706 C 145.75348,227.63406 136.58012,247.52205 134.17898,254.15706 C 134.1757,254.16612 134.18223,254.1793 134.17898,254.18831 C 133.35616,254.66088 132.55056,255.12622 131.77273,255.62581 C 131.7732,255.62869 131.77261,255.65439 131.77273,255.65706 C 130.05135,259.35679 129.58433,263.06263 130.67898,266.34456 C 130.68273,266.34411 130.70733,266.34467 130.71023,266.34456 C 141.76092,258.86966 157.81461,254.15706 175.67898,254.15706 C 192.60273,254.15706 207.8982,258.38836 218.86648,265.18831 C 220.21586,262.15488 220.15955,258.70073 218.89773,255.18831 C 218.89438,255.18593 218.86927,255.15961 218.86648,255.15706 C 217.8755,254.54315 216.86374,253.94626 215.80398,253.37581 C 213.90093,240.78183 202.03249,227.70198 191.24148,225.87581 C 189.12429,225.51752 185.71617,225.26098 179.89773,225.37581 z "
         id="path5330" />
    </g>
    <g
       id="g5334"
       transform="translate(-1.0120095,0)">
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(499.44113,459.9933)"
         id="g5496">
        <path
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 77.4375,106.34375 C 71.940543,106.88821 67.593754,113.48246 67.59375,121.5 C 67.593749,122.54402 67.700413,123.54615 67.84375,124.53125 L 88.5625,124.53125 C 88.70331,123.554 88.78125,122.53682 88.78125,121.5 C 88.781247,113.12649 84.028357,106.34375 78.1875,106.34375 C 78.050601,106.34375 77.916891,106.33635 77.78125,106.34375 C 77.670866,106.34977 77.547001,106.3329 77.4375,106.34375 z "
           id="path5498" />
        <path
           sodipodi:type="arc"
           style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252642;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path5500"
           sodipodi:cx="251.25"
           sodipodi:cy="293.96933"
           sodipodi:rx="3.0357144"
           sodipodi:ry="3.0357144"
           d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
           transform="matrix(0.463113,0,0,0.510688,-36.82643,-31.77107)" />
      </g>
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(-1,0,0,1,692.68673,459.9933)"
         id="g5502">
        <path
           id="path5504"
           d="M 77.4375,106.34375 C 71.940543,106.88821 67.593754,113.48246 67.59375,121.5 C 67.593749,122.54402 67.700413,123.54615 67.84375,124.53125 L 88.5625,124.53125 C 88.70331,123.554 88.78125,122.53682 88.78125,121.5 C 88.781247,113.12649 84.028357,106.34375 78.1875,106.34375 C 78.050601,106.34375 77.916891,106.33635 77.78125,106.34375 C 77.670866,106.34977 77.547001,106.3329 77.4375,106.34375 z "
           style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           transform="matrix(0.463113,0,0,0.510688,-36.82643,-31.77107)"
           d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
           sodipodi:ry="3.0357144"
           sodipodi:rx="3.0357144"
           sodipodi:cy="293.96933"
           sodipodi:cx="251.25"
           id="path5506"
           style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252642;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           sodipodi:type="arc" />
      </g>
    </g>
    <g
       id="g5326"
       transform="translate(0.8776405,0)">
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(489.96673,476.3616)"
         id="g3027">
        <path
           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 85.25,129.9375 C 81.430848,130.11359 77.910137,131.31094 75.03125,133.1875 C 75.173042,134.91048 75.634343,136.55806 76.34375,138.09375 C 79.716844,137.15579 83.369587,136.65625 87.15625,136.65625 C 90.334837,136.65625 93.381838,137.01709 96.28125,137.6875 C 96.282449,137.68448 96.311303,137.69052 96.3125,137.6875 C 96.888284,136.23499 97.230867,134.69607 97.3125,133.09375 C 94.210917,131.1146 90.385957,129.9375 86.25,129.9375 C 86.169141,129.9375 86.080618,129.93661 86,129.9375 C 85.807272,129.93963 85.628769,129.93031 85.4375,129.9375 C 85.376732,129.93978 85.310621,129.9347 85.25,129.9375 z "
           id="path3012" />
        <path
           sodipodi:type="arc"
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path3025"
           sodipodi:cx="87.76786"
           sodipodi:cy="133.88005"
           sodipodi:rx="1.3392857"
           sodipodi:ry="1.5178572"
           d="M 89.107146 133.88005 A 1.3392857 1.5178572 0 1 1  86.428575,133.88005 A 1.3392857 1.5178572 0 1 1  89.107146 133.88005 z" />
      </g>
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(-1,0,0,1,698.38183,476.3616)"
         id="g3031">
        <path
           id="path3033"
           d="M 85.25,129.9375 C 81.430848,130.11359 77.910137,131.31094 75.03125,133.1875 C 75.173042,134.91048 75.634343,136.55806 76.34375,138.09375 C 79.716844,137.15579 83.369587,136.65625 87.15625,136.65625 C 90.334837,136.65625 93.381838,137.01709 96.28125,137.6875 C 96.282449,137.68448 96.311303,137.69052 96.3125,137.6875 C 96.888284,136.23499 97.230867,134.69607 97.3125,133.09375 C 94.210917,131.1146 90.385957,129.9375 86.25,129.9375 C 86.169141,129.9375 86.080618,129.93661 86,129.9375 C 85.807272,129.93963 85.628769,129.93031 85.4375,129.9375 C 85.376732,129.93978 85.310621,129.9347 85.25,129.9375 z "
           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 89.107146 133.88005 A 1.3392857 1.5178572 0 1 1  86.428575,133.88005 A 1.3392857 1.5178572 0 1 1  89.107146 133.88005 z"
           sodipodi:ry="1.5178572"
           sodipodi:rx="1.3392857"
           sodipodi:cy="133.88005"
           sodipodi:cx="87.76786"
           id="path3035"
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           sodipodi:type="arc" />
      </g>
    </g>
    <g
       id="g5436"
       transform="translate(4.0393678,113.82555)">
      <path
         id="path3181"
         d="M 77.859074,747.93146 C 74.774403,747.75642 71.239162,749.9772 69.227613,753.64572 C 66.751862,758.16082 67.514952,763.15082 70.928151,764.79356 C 74.341348,766.4363 79.115455,764.11131 81.591205,759.59621 C 82.751712,757.47977 83.212953,755.24537 83.011308,753.31211 C 82.814784,754.51183 82.346484,755.79115 81.655385,757.05154 C 79.522294,760.94171 75.825168,763.13799 73.378663,761.96051 C 70.93216,760.78302 70.661722,756.67718 72.794811,752.78701 C 74.10107,750.40474 76.020425,748.65905 77.859074,747.93146 z "
         style="fill:#fce94f;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         style="fill:#fce94f;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 182.97168,747.93146 C 186.05635,747.75642 189.59159,749.9772 191.60314,753.64572 C 194.07889,758.16082 193.3158,763.15082 189.9026,764.79356 C 186.48941,766.4363 181.7153,764.11131 179.23955,759.59621 C 178.07904,757.47977 177.6178,755.24537 177.81945,753.31211 C 178.01597,754.51183 178.48427,755.79115 179.17537,757.05154 C 181.30846,760.94171 185.00559,763.13799 187.45209,761.96051 C 189.89859,760.78302 190.16903,756.67718 188.03594,752.78701 C 186.72968,750.40474 184.81033,748.65905 182.97168,747.93146 z "
         id="path3186" />
    </g>
    <g
       id="g5471"
       transform="translate(1.315845,0)">
      <path
         id="path3315"
         d="M 311.02913,259.86667 C 311.23327,263.67697 311.03629,267.65373 310.49788,271.67917 C 310.29637,271.90612 310.10179,272.13012 309.90413,272.36667 C 309.8658,272.41254 309.84861,272.44548 309.81038,272.49167 C 309.59925,272.74672 309.39592,273.0061 309.18538,273.27292 C 307.20184,275.78655 305.4254,278.62456 303.87288,281.61667 C 302.54273,279.24547 301.07505,276.99869 299.46663,274.96042 C 299.25609,274.6936 299.05276,274.40297 298.84163,274.14792 C 298.8034,274.10173 298.78621,274.06879 298.74788,274.02292 C 298.17288,273.33478 297.57307,272.68543 296.99788,272.08542 C 299.0205,276.19667 300.52539,280.66872 301.37288,284.99167 C 297.87694,281.7706 293.67634,279.79536 289.06038,279.49167 C 288.74252,279.47076 288.43889,279.43379 288.12288,279.42917 C 288.11573,279.42906 288.09835,279.4295 288.09163,279.42917 C 288.0882,279.42932 288.06321,279.42916 288.06038,279.42917 C 288.05504,279.42352 288.03447,279.40356 288.02913,279.39792 C 288.0263,279.39792 288.00131,279.39777 287.99788,279.39792 C 287.99115,279.39764 287.97379,279.39795 287.96663,279.39792 C 287.10742,279.39381 286.21302,279.47399 285.37288,279.58542 C 288.01448,281.31831 290.32542,283.82644 292.15413,286.89792 C 287.27836,285.19572 282.23195,285.11687 277.62288,286.99167 C 277.3278,287.11169 277.03417,287.20155 276.74788,287.33542 C 276.7408,287.33547 276.71819,287.3356 276.71663,287.33542 C 276.68241,287.35085 276.62552,287.38166 276.59163,287.39792 C 275.81693,287.76951 275.07998,288.21197 274.37288,288.67917 C 277.4705,289.07962 280.60313,290.31865 283.56038,292.24167 C 283.27776,292.45383 282.98983,292.64994 282.71663,292.86667 C 282.29963,292.8284 281.87174,292.81768 281.43538,292.83542 C 278.92825,292.93734 276.15692,293.96569 273.43538,295.74167 C 273.42874,295.746 273.41077,295.73732 273.40413,295.74167 C 273.17286,295.73584 272.94732,295.73949 272.71663,295.74167 C 272.53103,295.74342 272.33941,295.73443 272.15413,295.74167 C 272.05165,295.74567 271.94397,295.73593 271.84163,295.74167 C 269.76076,295.85835 267.71639,296.3472 265.74788,297.14792 C 265.45281,297.26794 265.19042,297.3578 264.90413,297.49167 C 264.85228,297.51591 264.79953,297.52939 264.74788,297.55417 C 263.97317,297.92576 263.20498,298.36822 262.49788,298.83542 C 264.347,299.07447 266.19864,299.59905 268.02913,300.39792 C 267.37105,301.13344 266.73065,301.9142 266.12288,302.74167 C 263.93801,305.71632 262.39495,308.8972 261.56038,311.89792 C 261.84936,312.0264 262.12791,312.15316 262.40413,312.30417 L 260.56038,313.42917 C 264.66348,315.96385 267.27913,319.87644 267.27913,324.30417 C 267.27913,326.25557 266.7656,328.11964 265.84163,329.80417 C 267.85584,332.93028 269.33225,336.68552 270.09163,340.80417 C 273.10434,337.13037 276.1301,332.41026 278.74788,327.02292 C 279.79204,324.87406 280.7009,322.73043 281.49788,320.64792 C 281.88458,320.71506 282.26348,320.77038 282.65413,320.83542 C 282.88727,319.82351 283.07868,318.83975 283.24788,317.89792 C 283.25006,317.89579 283.27695,317.90005 283.27913,317.89792 C 283.71142,317.38311 284.12075,316.82893 284.52913,316.27292 C 284.56962,316.2178 284.6141,316.17191 284.65413,316.11667 C 291.36359,314.00624 299.33507,312.75159 307.90413,312.64792 C 308.09346,312.64563 308.27672,312.64908 308.46663,312.64792 C 308.65803,312.64676 308.8684,312.64792 309.06038,312.64792 C 322.94209,312.64792 335.33187,315.68898 343.49788,320.46042 C 343.67179,320.99976 343.8416,321.53537 344.02913,322.08542 C 344.08157,322.07927 344.16357,322.09006 344.21663,322.08542 C 345.15368,324.55847 346.29149,327.10435 347.59163,329.67917 C 349.9392,334.32837 352.58188,338.47822 355.24788,341.86667 C 355.68792,337.04714 356.89046,332.5972 358.68538,328.83542 L 351.74788,317.46042 C 355.07379,312.91124 361.54634,309.47764 369.37288,308.33542 C 367.01635,306.5979 363.50694,305.1496 359.24788,304.17917 C 361.82818,302.69645 364.52606,301.74171 367.18538,301.39792 C 366.47828,300.93072 365.71009,300.48826 364.93538,300.11667 C 364.89019,300.09499 364.82467,300.07333 364.77913,300.05417 C 364.49284,299.9203 364.23045,299.83044 363.93538,299.71042 C 361.69503,298.79913 359.34237,298.32658 356.96663,298.30417 C 356.66672,298.30134 356.36166,298.29743 356.06038,298.30417 C 356.52588,298.0578 356.98958,297.82263 357.46663,297.58542 C 360.14829,296.25198 362.86081,295.16429 365.49788,294.30417 C 362.17737,293.17792 358.30055,292.20215 354.02913,291.46042 C 354.45304,291.37514 354.88708,291.29639 355.31038,291.24167 C 354.60328,290.77447 353.86633,290.33202 353.09163,289.96042 C 353.05773,289.94416 353.00085,289.91336 352.96663,289.89792 C 352.95955,289.89786 352.93693,289.89774 352.93538,289.89792 C 352.64909,289.76405 352.35546,289.67419 352.06038,289.55417 C 347.45131,287.67937 342.40488,287.75822 337.52913,289.46042 C 339.35784,286.38894 341.66878,283.88081 344.31038,282.14792 C 343.47024,282.03649 342.57582,281.95631 341.71663,281.96042 C 341.70947,281.96045 341.6921,281.96014 341.68538,281.96042 C 341.6819,281.96035 341.65698,281.96039 341.65413,281.96042 C 341.6431,281.96609 341.60251,281.98622 341.59163,281.99167 C 341.5849,281.992 341.56753,281.99156 341.56038,281.99167 C 341.24437,281.99629 340.94074,282.03326 340.62288,282.05417 C 337.34121,282.27007 334.25571,283.33278 331.49788,285.08542 C 330.62213,285.06488 329.73384,285.07599 328.84163,285.08542 C 329.72639,281.55098 331.04618,277.97983 332.68538,274.64792 C 332.11019,275.24793 331.51037,275.89728 330.93538,276.58542 C 330.89704,276.63129 330.87986,276.66423 330.84163,276.71042 C 330.63049,276.96547 330.42717,277.2561 330.21663,277.52292 C 328.6082,279.56119 327.14053,281.80797 325.81038,284.17917 C 324.25786,281.18706 322.48142,278.34905 320.49788,275.83542 C 320.28734,275.5686 320.08401,275.30922 319.87288,275.05417 C 319.87005,275.05139 319.84497,275.02612 319.84163,275.02292 C 319.82503,275.00039 319.7978,274.95541 319.77913,274.92917 C 319.20413,274.24103 318.60431,273.59169 318.02913,272.99167 C 318.34534,273.6344 318.64515,274.27105 318.93538,274.92917 C 318.35443,274.17996 317.70326,273.46673 317.06038,272.80417 C 317.19567,274.4232 317.16061,276.08705 316.99788,277.77292 C 316.39898,273.2836 315.31723,269.0305 313.71663,265.17917 C 313.51094,264.68422 313.31056,264.21479 313.09163,263.74167 C 313.05198,263.656 313.03806,263.57677 312.99788,263.49167 C 312.39509,262.21519 311.72155,260.97969 311.02913,259.86667 z M 310.21663,273.61667 C 309.48368,278.15882 308.30856,282.72615 306.71663,287.17917 C 307.17901,282.79165 308.38357,278.07731 310.21663,273.61667 z "
         style="fill:url(#linearGradient5231);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 348.88552,321.6076 C 349.81044,321.27533 350.77621,320.82987 351.73236,320.4914 C 351.73501,320.44576 352.31983,320.2496 352.32157,320.24889 L 348.81219,323.00477 C 348.74248,323.03424 348.2893,323.23105 348.21109,323.2589 C 347.21306,323.61587 346.24251,324.18852 345.1917,324.29132 L 348.88552,321.6076 z "
         id="path3317"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 352.64918,325.30806 C 345.80364,329.49145 349.18883,327.30682 350.68912,326.25774 L 354.78151,324.63656 C 352.94082,325.9298 351.24031,327.24622 349.09192,328.15354 L 352.64918,325.30806 z "
         id="path3319"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 277.06809,321.80667 C 276.10105,321.39109 275.11236,321.02533 274.13347,320.63762 L 272.05359,319.002 C 272.99923,319.38853 273.95187,319.77922 274.92258,320.09047 L 277.06809,321.80667 z "
         id="path3321"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 276.97338,325.80351 C 275.87853,327.7991 272.2495,324.00479 270.88771,322.83886 C 270.39282,322.41316 269.89802,321.98848 269.38957,321.57913 L 271.82913,322.5626 C 272.30693,322.97507 272.78742,323.38443 273.26159,323.80116 C 277.1713,327.17097 271.82194,323.62585 274.43117,324.75049 L 276.97338,325.80351 z "
         id="path3323"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 270.5664,328.19931 C 270.04567,327.62849 269.42781,327.15856 268.82974,326.67336 L 271.27611,327.66064 C 271.89483,328.16832 272.5166,328.67287 273.08183,329.24123 L 270.5664,328.19931 z "
         id="path3325"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 269.9012,310.9618 C 274.13431,312.47359 278.60375,313.25142 283.03529,313.94044 L 285.00104,315.41926 C 280.64567,314.63527 276.26202,313.88108 272.016,312.62023 L 269.9012,310.9618 z "
         id="path3327"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <path
       style="fill:#693500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
       d="M 670.20603,426.12401 C 670.20604,426.124 662.40369,426.62813 661.39353,432.43651 C 660.38338,438.24489 658.61228,450.37401 658.61228,450.37401 C 658.61229,450.37401 667.68049,460.73378 679.54978,462.24901 C 691.41907,463.76425 704.51999,453.38018 707.08103,451.40526 C 709.55565,449.49699 705.58103,433.71776 705.58103,433.71776 C 705.58103,433.71776 705.56692,425.87148 691.42478,426.12401 C 682.9174,426.27592 680.367,425.90858 680.36228,425.90526 L 670.20603,426.12401 z M 680.29978,429.90526 C 680.30128,429.90638 682.43299,430.16508 689.08103,430.06151 C 700.27774,429.88708 700.54978,435.65527 700.54978,435.65526 C 700.54978,435.65526 703.73972,444.60689 701.64353,447.84276 C 700.21769,450.04382 689.07201,456.04562 679.67478,454.99901 C 670.27755,453.95239 663.08104,446.81152 663.08103,446.81151 C 663.08103,446.81151 664.46877,438.4173 665.26853,434.40526 C 666.0433,430.51859 671.90422,430.08577 672.26853,430.06151 C 672.26853,430.06151 680.2975,429.90307 680.29978,429.90526 z "
       id="path3625"
       sodipodi:nodetypes="cscsscssccscsscscs" />
    <g
       id="g5533">
      <path
         id="path1930"
         d="M 586.82867,433.47637 C 585.32392,433.57942 583.57829,434.32204 581.67242,436.13262 C 574.60135,442.85015 571.79006,446.01927 567.54742,446.72637 C 567.18282,446.78714 566.8982,446.88876 566.73492,446.97637 C 566.70678,446.99248 566.66318,447.02206 566.64117,447.03887 C 566.63091,447.04736 566.61868,447.06147 566.60992,447.07012 C 566.6059,447.07448 566.58231,447.09697 566.57867,447.10137 C 566.5721,447.11025 566.55254,447.1236 566.54742,447.13262 C 566.54521,447.13717 566.54927,447.15929 566.54742,447.16387 C 566.54293,447.17771 566.51753,447.21225 566.51617,447.22637 C 566.51606,447.23111 566.51594,447.25285 566.51617,447.25762 C 566.5173,447.26721 566.54495,447.27917 566.54742,447.28887 C 566.54898,447.29374 566.54552,447.31522 566.54742,447.32012 C 566.55408,447.33489 566.56912,447.36765 566.57867,447.38262 C 566.58217,447.38763 566.6061,447.40884 566.60992,447.41387 C 567.43887,448.42847 574.53244,449.82944 578.14117,448.16387 C 582.72891,446.04645 586.9765,442.85535 592.26617,441.78887 C 592.27592,441.79082 592.28768,441.78691 592.29742,441.78887 C 597.58709,442.85535 601.83468,446.04645 606.42242,448.16387 C 609.88752,449.76315 616.56854,448.53626 617.82867,447.53887 C 617.87233,447.50278 617.9248,447.4492 617.95367,447.41387 C 617.95748,447.40884 617.98142,447.38763 617.98492,447.38262 C 617.99447,447.36765 618.00951,447.33489 618.01617,447.32012 C 618.01806,447.31522 618.0146,447.29374 618.01617,447.28887 C 618.0174,447.28402 618.01527,447.26244 618.01617,447.25762 C 618.0164,447.25285 618.01628,447.23111 618.01617,447.22637 C 618.01572,447.22166 618.01697,447.1998 618.01617,447.19512 C 618.01502,447.19047 618.01767,447.16848 618.01617,447.16387 C 618.01432,447.15929 618.01837,447.13717 618.01617,447.13262 C 618.01105,447.1236 617.99149,447.11025 617.98492,447.10137 C 617.98127,447.09697 617.95768,447.07448 617.95367,447.07012 C 617.94929,447.0658 617.92717,447.04316 617.92242,447.03887 C 617.7738,446.92539 617.46364,446.80095 617.01617,446.72637 C 612.77353,446.01927 609.96224,442.85015 602.89117,436.13262 C 597.82265,431.31753 594.04151,434.15233 592.29742,436.13262 C 592.2927,436.12724 592.27092,436.13802 592.26617,436.13262 C 591.17789,434.89696 589.32568,433.30536 586.82867,433.47637 z "
         style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path2914"
         d="M 580.68866,440.35137 C 579.20546,440.78355 577.77643,441.4359 576.37616,442.07012 C 575.68396,442.38364 575.01508,442.73827 574.34491,443.10137 L 574.34491,443.13262 L 573.93866,443.32012 L 573.40741,443.60137 C 573.23034,443.70191 573.05261,443.81192 572.87616,443.91387 C 571.19991,444.8824 569.54222,445.9038 567.81366,446.75762 C 567.52012,446.90262 567.30896,447.01206 567.12616,447.10137 L 567.18866,447.38262 C 571.994,445.08132 577.91516,441.88288 578.50116,441.66387 C 578.50403,441.66387 578.52904,441.66371 578.53241,441.66387 L 580.68866,440.35137 z M 604.40741,441.10137 L 606.56366,442.41387 C 606.56703,442.41371 606.59204,442.41387 606.59491,442.41387 C 607.14592,442.6198 612.41091,445.44476 617.03241,447.69512 L 617.28241,447.47637 C 614.37116,446.03835 611.64206,444.15781 608.68866,442.82012 C 607.28838,442.1859 605.89061,441.53355 604.40741,441.10137 z M 597.78241,441.91387 C 598.80753,443.06964 600.01639,444.07574 601.18866,445.07012 C 601.4108,445.25855 601.64785,445.45102 601.87616,445.63262 C 601.88609,445.64052 601.89747,445.65599 601.90741,445.66387 L 606.25116,448.22637 C 603.11658,445.79551 600.22967,443.63345 599.90741,443.32012 L 597.78241,441.91387 z M 604.84491,443.32012 C 606.08853,444.23666 607.45979,444.9671 608.81366,445.69512 C 610.71614,446.71813 612.77009,447.48602 614.78241,448.32012 L 615.43866,448.22637 C 611.50303,446.30423 607.63579,444.51894 607.21991,444.25762 C 607.21702,444.25767 607.19211,444.25729 607.18866,444.25762 L 604.84491,443.32012 z M 583.65741,443.60137 L 581.31366,444.53887 C 580.86333,444.82196 576.35421,446.87775 572.09491,448.97637 L 572.21991,449.00762 L 572.90741,448.97637 C 575.181,447.99743 577.52675,447.13889 579.68866,445.97637 C 581.04254,445.24835 582.41378,444.51792 583.65741,443.60137 z M 574.87616,446.07012 L 572.50116,447.00762 C 572.28622,447.14284 571.12498,447.691 569.53241,448.44512 L 570.46991,448.66387 L 570.50116,448.66387 C 570.62714,448.59857 570.75123,448.5123 570.87616,448.44512 C 572.23004,447.7171 573.63253,446.98667 574.87616,446.07012 z "
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
    </g>
    <path
       style="fill:#693500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 542.06405,341.9181 C 542.06405,341.9181 541.54353,358.34978 541.7203,367.01185 C 541.89156,375.40322 544.73137,378.98378 544.9078,379.19935 L 561.68905,394.2306 C 564.72942,397.17345 572.14765,403.39287 581.1578,404.5431 C 593.02709,406.05834 606.12801,395.67427 608.68905,393.69935 C 608.78571,393.62481 608.86145,393.53321 608.93905,393.4181 C 608.9497,393.41307 608.95902,393.39219 608.9703,393.38685 C 608.97788,393.37495 608.99416,393.36788 609.00155,393.3556 C 610.69449,392.55089 618.62858,388.63885 623.18905,383.44935 C 623.18906,383.44934 629.01227,375.67391 629.18905,367.01185 C 629.36582,358.34978 628.8453,341.9181 628.8453,341.9181 L 625.12655,342.07435 L 625.6578,365.6056 C 625.71583,366.04677 626.59536,373.22052 622.31405,379.0431 C 619.06225,383.46555 611.85633,388.16689 609.4703,389.6681 C 609.27948,384.38258 607.18905,376.01185 607.18905,376.01185 C 607.17485,375.55186 606.733,368.17346 593.0328,368.4181 C 584.52542,368.57001 581.97502,368.20267 581.9703,368.19935 L 571.81405,368.4181 C 571.81406,368.41809 564.01171,368.92222 563.00155,374.7306 C 562.34639,378.49778 561.38735,384.92934 560.7828,388.9806 C 558.01394,386.73096 551.96231,381.71665 548.62655,377.9806 C 544.34524,373.18554 545.19352,366.04577 545.25155,365.6056 L 545.7828,342.07435 L 542.06405,341.9181 z M 581.56405,372.19935 C 581.78381,372.19523 581.90752,372.19908 581.9078,372.19935 C 581.9093,372.20047 584.04101,372.45917 590.68905,372.3556 C 601.53587,372.18662 602.13125,377.61119 602.1578,377.94935 C 602.1578,377.94935 605.34774,386.90098 603.25155,390.13685 C 601.82571,392.33791 590.68003,398.33971 581.2828,397.2931 C 571.88557,396.24648 564.68906,389.10561 564.68905,389.1056 C 564.68905,389.1056 566.07679,380.71139 566.87655,376.69935 C 567.65132,372.81268 573.51224,372.37986 573.87655,372.3556 C 573.87655,372.3556 580.02573,372.22821 581.56405,372.19935 z "
       id="path2947" />
    <g
       id="g5300"
       transform="translate(3.7507012,0)">
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(578.57628,520.74206)"
         id="g3253">
        <path
           id="path3255"
           d="M 130.33995,105.45183 C 130.16416,106.07881 129.92633,106.71627 129.64569,107.35331 C 129.55799,107.5524 129.46303,107.79191 129.36773,107.98521 C 127.59521,111.58042 124.54,114.15628 121.63237,114.74223 C 121.62543,114.74364 121.61195,114.72573 121.60502,114.72712 C 121.65956,114.22044 121.68295,113.70759 121.62621,113.20336 C 124.88827,112.41278 128.29121,109.48779 130.33995,105.45183 z "
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 71.869425,105.45183 C 72.045218,106.07881 72.283045,106.71627 72.563684,107.35331 C 72.651385,107.5524 72.746342,107.79191 72.841649,107.98521 C 74.614169,111.58042 77.669376,114.15628 80.577011,114.74223 C 80.583946,114.74364 80.597424,114.72573 80.60436,114.72712 C 80.549821,114.22044 80.526431,113.70759 80.583165,113.20336 C 77.321105,112.41278 73.918165,109.48779 71.869425,105.45183 z "
           id="path3257" />
        <path
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 68.980016,110.65941 C 69.195424,111.27391 69.473409,111.89492 69.794091,112.51277 C 69.894306,112.70586 70.00434,112.93883 70.111778,113.12566 C 72.109903,116.60054 75.323118,118.97638 78.262196,119.37577 C 78.269206,119.37673 78.281516,119.358 78.288525,119.35894 C 78.201794,118.85677 78.145755,118.34646 78.170226,117.83963 C 74.864399,117.25863 71.2819,114.55655 68.980016,110.65941 z "
           id="path3259" />
        <path
           id="path3261"
           d="M 133.22936,110.65941 C 133.01395,111.27391 132.73597,111.89492 132.41529,112.51277 C 132.31507,112.70586 132.20504,112.93883 132.0976,113.12566 C 130.09947,116.60054 126.88626,118.97638 123.94718,119.37577 C 123.94017,119.37673 123.92786,119.358 123.92085,119.35894 C 124.00758,118.85677 124.06362,118.34646 124.03915,117.83963 C 127.34498,117.25863 130.92748,114.55655 133.22936,110.65941 z "
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
      <g
         style="stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(0.418709,0,0,0.418709,557.82641,517.91057)"
         inkscape:label="#g2437"
         id="g3263">
        <g
           style="stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none"
           id="g3265"
           inkscape:label="#g2401">
          <path
             id="path3267"
             d="M 246.53125,265.96875 C 233.03348,266.70504 222.21876,282.65782 222.21875,302.1875 C 222.21875,306.47371 222.7642,310.5889 223.71875,314.40625 C 230.06947,311.84823 237.93387,310.3125 246.4375,310.3125 C 255.82006,310.3125 264.40927,312.1948 271.0625,315.25 C 272.15878,311.19382 272.78125,306.7965 272.78125,302.1875 C 272.78125,282.18911 261.44968,265.96875 247.5,265.96875 C 247.17305,265.96875 246.8552,265.95108 246.53125,265.96875 z "
             style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             transform="matrix(1.10605,0,0,1.219672,-27.18064,-63.8626)"
             d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
             sodipodi:ry="3.0357144"
             sodipodi:rx="3.0357144"
             sodipodi:cy="293.96933"
             sodipodi:cx="251.25"
             id="path3269"
             style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252737;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             sodipodi:type="arc" />
        </g>
        <g
           style="stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none"
           inkscape:label="#g2401"
           id="g3271"
           transform="matrix(-1,0,0,1,582.1428,0)">
          <path
             style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4.77658701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             d="M 246.53125,265.96875 C 233.03348,266.70504 222.21876,282.65782 222.21875,302.1875 C 222.21875,306.47371 222.7642,310.5889 223.71875,314.40625 C 230.06947,311.84823 237.93387,310.3125 246.4375,310.3125 C 255.82006,310.3125 264.40927,312.1948 271.0625,315.25 C 272.15878,311.19382 272.78125,306.7965 272.78125,302.1875 C 272.78125,282.18911 261.44968,265.96875 247.5,265.96875 C 247.17305,265.96875 246.8552,265.95108 246.53125,265.96875 z "
             id="path3273" />
          <path
             sodipodi:type="arc"
             style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252737;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path3275"
             sodipodi:cx="251.25"
             sodipodi:cy="293.96933"
             sodipodi:rx="3.0357144"
             sodipodi:ry="3.0357144"
             d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
             transform="matrix(1.10605,0,0,1.219672,-27.18064,-63.8626)" />
        </g>
      </g>
    </g>
    <g
       id="g5507"
       transform="translate(-2.8082831,0)">
      <path
         d="M 614.25617,258.84876 C 627.33672,263.56388 641.99323,264.53853 655.22505,260.09716 C 657.44491,259.36359 659.45156,258.30632 661.23911,256.83572 L 663.70033,256.64703 C 661.80119,258.1842 659.67272,259.27493 657.32201,260.02969 C 642.51269,264.92959 626.58656,264.38334 611.81942,259.56618 L 614.25617,258.84876 z "
         id="path3343"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 661.07635,257.04478 C 664.88664,255.79657 663.16189,257.62863 662.20302,259.75475 L 659.69297,260.03539 C 660.82951,257.62871 660.39476,256.50581 663.52077,256.25054 L 661.07635,257.04478 z "
         id="path3345"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 661.07635,256.79478 C 666.19449,255.85988 660.00766,257.21879 658.31479,257.28494 C 658.31258,257.2876 657.75003,257.29109 657.7435,257.29116 L 660.1488,256.50681 C 660.15578,256.50668 660.71419,256.50006 660.71675,256.49594 C 662.93941,256.34291 656.35345,257.20109 663.52077,256.00054 L 661.07635,256.79478 z "
         id="path3347"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 661.70587,256.34502 C 661.79706,256.40597 661.90193,256.43837 662.00697,256.46625 C 662.14217,256.48284 662.27771,256.50043 662.41182,256.52622 C 662.5758,256.55897 662.68667,256.66314 662.79207,256.78389 C 662.83604,256.83411 662.85007,256.89865 662.87067,256.96021 L 662.55894,257.01845 C 662.53855,256.96017 662.52403,256.90006 662.48223,256.85227 C 662.37745,256.73829 662.26896,256.64292 662.10894,256.6193 C 661.97419,256.59639 661.83922,256.57587 661.70372,256.55855 C 661.59071,256.52249 661.46117,256.49146 661.38855,256.39528 L 661.70587,256.34502 z "
         id="path3349"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 664.39963,256.22464 C 663.97195,256.57344 663.45028,256.79344 662.96376,257.0513 C 662.43858,257.48847 661.7986,257.72408 661.18755,258.01181 C 661.14326,258.03165 661.09896,258.05148 661.05466,258.07132 L 659.79589,258.189 C 659.84071,258.17109 659.88554,258.15319 659.93037,258.13529 C 660.53688,257.84758 661.18385,257.62234 661.70566,257.1903 C 662.1751,256.92237 662.68313,256.69849 663.12765,256.40079 L 664.39963,256.22464 z "
         id="path3351"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 663.02095,256.25923 C 662.63101,256.67462 662.15537,256.93661 661.71179,257.2437 C 661.23295,257.76433 660.64944,258.04492 660.09232,258.38757 C 660.05193,258.4112 660.01154,258.43482 659.97115,258.45844 L 658.82346,258.59859 C 658.86432,258.57726 658.9052,258.55594 658.94607,258.53463 C 659.49906,258.19199 660.08894,257.92375 660.56471,257.40924 C 660.99272,257.09016 661.45592,256.82354 661.86121,256.46901 L 663.02095,256.25923 z "
         id="path3353"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 662.22413,256.34448 C 661.92181,256.82739 661.50576,257.17635 661.12988,257.56337 C 660.76067,258.16671 660.24238,258.55477 659.76197,258.99861 C 659.7269,259.0296 659.69184,259.06058 659.65678,259.09156 L 658.5578,259.45084 C 658.59377,259.42202 658.62976,259.3932 658.66574,259.3644 C 659.1421,258.92136 659.66903,258.54419 660.03641,257.94744 C 660.39469,257.55167 660.79764,257.20057 661.12679,256.7744 L 662.22413,256.34448 z "
         id="path3355"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 663.67721,256.00923 C 663.28727,256.42462 662.81163,256.68661 662.36805,256.9937 C 661.88921,257.51433 661.3057,257.79492 660.74858,258.13757 C 660.70819,258.1612 660.6678,258.18482 660.62741,258.20844 L 659.47972,258.34859 C 659.52058,258.32726 659.56146,258.30594 659.60233,258.28463 C 660.15532,257.94199 660.7452,257.67375 661.22097,257.15924 C 661.64898,256.84016 662.11218,256.57354 662.51747,256.21901 L 663.67721,256.00923 z "
         id="path3357"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 664.32565,255.85298 C 663.93571,256.26837 663.46007,256.53036 663.01649,256.83745 C 662.53765,257.35808 661.95414,257.63867 661.39702,257.98132 C 661.35663,258.00495 661.31624,258.02857 661.27585,258.05219 L 660.12816,258.19234 C 660.16902,258.17101 660.2099,258.14969 660.25077,258.12838 C 660.80376,257.78574 661.39364,257.5175 661.86941,257.00299 C 662.29742,256.68391 662.76062,256.41729 663.16591,256.06276 L 664.32565,255.85298 z "
         id="path3359"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       id="g5486"
       transform="translate(-2.0919,0)">
      <path
         id="path3391"
         d="M 437.33819,332.11322 C 428.39634,332.39522 418.69533,335.85584 413.08819,347.55072 C 400.71382,373.36011 412.02569,422.86322 412.02569,422.86322 L 415.55694,364.36322 C 415.55694,364.36322 445.44846,354.90925 454.80694,345.20697 C 464.16942,354.90797 494.02569,364.36322 494.02569,364.36322 L 497.55694,422.86322 C 497.55694,422.86322 508.86881,373.36011 496.49444,347.55072 C 486.41473,326.52732 463.08299,332.12506 454.77569,334.92572 C 451.08327,333.68344 444.45036,331.88892 437.33819,332.11322 z "
         style="fill:#8f5902;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(353.15069,256.86322)"
         id="g3393">
        <path
           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path3395"
           d="M 65.965964,105.9579 C 77.334697,104.77259 66.664128,106.99408 63.8409,107.79278 C 63.583232,107.85522 63.323546,107.90748 63.064784,107.96486 L 57.747013,107.32434 C 58.039164,107.27448 58.324148,107.18958 58.622004,107.17499 C 62.981605,106.24621 66.733455,104.39896 71.349836,105.09711 L 65.965964,105.9579 z " />
        <path
           d="M 137.75589,105.9579 C 126.38715,104.77259 137.05772,106.99408 139.88095,107.79278 C 140.13862,107.85522 140.3983,107.90748 140.65707,107.96486 L 145.97484,107.32434 C 145.68269,107.27448 145.3977,107.18958 145.09985,107.17499 C 140.74024,106.24621 136.98839,104.39896 132.37201,105.09711 L 137.75589,105.9579 z "
           id="path3397"
           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
    </g>
    <g
       id="g5406"
       transform="translate(-1.87683,0)">
      <path
         id="path4636"
         d="M 413.44219,438.50072 C 413.1257,441.8384 412.76614,445.16643 412.38813,448.496 L 416.12494,443.77671 C 415.86449,446.52342 415.60533,449.25784 415.30327,451.99907 L 419.50394,446.6741 C 417.94107,463.15613 415.65785,479.52716 412.5499,495.79636 C 412.15972,497.7325 411.73153,499.67028 411.26931,501.59058 L 403.49152,510.82843 C 404.46994,508.54459 405.18359,506.17183 405.91973,503.80099 C 406.29003,502.45694 406.65537,501.10691 407.00048,499.7498 L 400.11251,507.93105 C 401.09093,505.64721 401.80458,503.27445 402.54072,500.90361 C 403.11393,498.8231 403.6754,496.73528 404.18616,494.62456 L 397.39855,502.65372 C 398.37697,500.36987 399.12184,497.99844 399.85798,495.6276 C 404.06115,480.37187 406.73171,464.23231 405.57384,448.39155 L 413.44219,438.50072 z "
         style="fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 404.52086,496.27212 C 405.43078,493.99158 406.44823,491.75591 407.38834,489.48758 L 403.95789,492.07641 C 403.07838,494.40411 402.12621,496.71626 400.92601,498.89894 L 404.52086,496.27212 z "
         id="path4638"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 407.81074,500.36533 C 408.72066,498.0848 409.73811,495.84913 410.67822,493.5808 L 407.24776,496.16962 C 406.36826,498.49733 405.41608,500.80947 404.21588,502.99215 L 407.81074,500.36533 z "
         id="path4640"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         style="fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 495.7103,438.50072 C 496.02679,441.8384 496.38635,445.16643 496.76436,448.496 L 493.02755,443.77671 C 493.288,446.52342 493.54716,449.25784 493.84922,451.99907 L 489.64855,446.6741 C 491.21142,463.15613 493.49464,479.52716 496.60259,495.79636 C 496.99277,497.7325 497.42096,499.67028 497.88318,501.59058 L 505.66097,510.82843 C 504.68255,508.54459 503.9689,506.17183 503.23276,503.80099 C 502.86246,502.45694 502.49712,501.10691 502.15201,499.7498 L 509.03998,507.93105 C 508.06156,505.64721 507.34791,503.27445 506.61177,500.90361 C 506.03856,498.8231 505.47709,496.73528 504.96633,494.62456 L 511.75394,502.65372 C 510.77552,500.36987 510.03065,497.99844 509.29451,495.6276 C 505.09134,480.37187 502.42078,464.23231 503.57865,448.39155 L 495.7103,438.50072 z "
         id="path4644" />
      <path
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path4646"
         d="M 504.63163,496.27212 C 503.72171,493.99158 502.70426,491.75591 501.76415,489.48758 L 505.1946,492.07641 C 506.07411,494.40411 507.02628,496.71626 508.22648,498.89894 L 504.63163,496.27212 z " />
      <path
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path4648"
         d="M 501.34175,500.36533 C 500.43183,498.0848 499.41438,495.84913 498.47427,493.5808 L 501.90473,496.16962 C 502.78423,498.49733 503.73641,500.80947 504.93661,502.99215 L 501.34175,500.36533 z " />
    </g>
    <g
       id="g5492">
      <path
         id="path4652"
         d="M 394.12129,209.55143 C 394.11964,209.55248 394.12271,209.58149 394.12129,209.58268 C 394.12106,209.58456 394.12127,209.61191 394.12129,209.61393 C 394.12229,209.61652 394.12004,209.64245 394.12129,209.64518 C 395.11648,211.82358 398.43379,219.95768 398.43379,219.95768 C 398.43379,219.95768 393.6825,218.69013 388.65254,218.17643 C 384.72364,217.77518 375.94422,221.44142 375.27754,221.86393 C 375.27427,221.86652 375.24841,221.89305 375.24629,221.89518 C 385.90077,222.7365 394.66237,227.43863 395.62129,228.17643 C 395.64231,228.19347 395.67299,228.22722 395.68379,228.23893 C 395.68508,228.2416 395.68366,228.26814 395.68379,228.27018 C 395.67996,228.26985 395.65678,228.27092 395.65254,228.27018 C 395.63856,228.26675 395.60775,228.24581 395.59004,228.23893 C 394.82593,227.91739 391.05468,224.97094 385.40254,228.17643 C 379.79711,231.35543 378.92568,233.70861 378.84004,233.98893 C 378.83876,233.99365 378.84004,234.02018 378.84004,234.02018 C 378.84004,234.02018 389.88784,231.70054 396.77754,234.17643 C 403.66724,236.65232 407.30879,239.92643 407.30879,239.92643 L 413.12129,230.86393 C 413.12129,230.86393 409.37019,222.82206 405.90254,218.36393 C 401.98479,213.32714 395.0022,209.5599 394.18379,209.55143 C 394.17775,209.5519 394.15768,209.55042 394.15254,209.55143 C 394.15043,209.55221 394.12317,209.55052 394.12129,209.55143 z M 511.15254,209.55143 C 510.05493,209.74361 503.31443,213.45519 499.49629,218.36393 C 496.02864,222.82206 492.27753,230.86393 492.27754,230.86393 L 498.09004,239.92643 C 498.09004,239.92643 501.73159,236.65232 508.62129,234.17643 C 515.51099,231.70054 526.59004,234.02018 526.59004,234.02018 C 526.59004,234.02018 526.56007,233.99365 526.55879,233.98893 C 526.47315,233.70861 525.63297,231.35543 520.02754,228.17643 C 514.42211,224.99743 510.64708,227.87763 509.84004,228.23893 C 509.81478,228.24956 509.76493,228.2656 509.74629,228.27018 C 509.74246,228.27051 509.71845,228.27028 509.71504,228.27018 C 509.71517,228.26814 509.71375,228.2416 509.71504,228.23893 C 509.71864,228.23503 509.74155,228.21219 509.74629,228.20768 C 510.45151,227.59603 519.31748,222.75076 530.15254,221.89518 C 530.1483,221.89092 530.13008,221.87002 530.12129,221.86393 C 529.45461,221.44142 520.67518,217.77518 516.74629,218.17643 C 511.71633,218.69013 506.99628,219.95768 506.99629,219.95768 C 506.99629,219.95768 510.28235,211.82358 511.27754,209.64518 C 511.28003,209.63973 511.30729,209.61882 511.30879,209.61393 C 511.3088,209.61191 511.30902,209.58456 511.30879,209.58268 C 511.30785,209.58122 511.27872,209.58401 511.27754,209.58268 C 511.27612,209.58149 511.27919,209.55248 511.27754,209.55143 C 511.2752,209.55079 511.24886,209.55194 511.24629,209.55143 C 511.2342,209.5505 511.19942,209.55021 511.18379,209.55143 C 511.1751,209.55257 511.16208,209.54976 511.15254,209.55143 z M 436.15254,232.61393 C 435.87633,232.61668 435.58661,232.63642 435.30879,232.64518 C 426.36694,232.92718 416.66593,236.3878 411.05879,248.08268 C 398.68442,273.89207 409.99629,323.39518 409.99629,323.39518 L 413.52754,264.89518 C 413.52754,264.89518 443.41906,255.44121 452.77754,245.73893 C 462.14002,255.43993 491.99629,264.89518 491.99629,264.89518 L 495.52754,323.39518 C 495.52754,323.39518 506.83941,273.89207 494.46504,248.08268 C 484.38533,227.05928 461.05359,232.65702 452.74629,235.45768 C 449.1981,234.26392 442.9473,232.54618 436.15254,232.61393 z "
         style="fill:#8f5902;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(351.12129,157.39518)"
         id="g4654">
        <path
           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
           id="path4656"
           d="M 65.965964,105.9579 C 77.334697,104.77259 66.664128,106.99408 63.8409,107.79278 C 63.583232,107.85522 63.323546,107.90748 63.064784,107.96486 L 57.747013,107.32434 C 58.039164,107.27448 58.324148,107.18958 58.622004,107.17499 C 62.981605,106.24621 66.733455,104.39896 71.349836,105.09711 L 65.965964,105.9579 z " />
        <path
           d="M 137.75589,105.9579 C 126.38715,104.77259 137.05772,106.99408 139.88095,107.79278 C 140.13862,107.85522 140.3983,107.90748 140.65707,107.96486 L 145.97484,107.32434 C 145.68269,107.27448 145.3977,107.18958 145.09985,107.17499 C 140.74024,106.24621 136.98839,104.39896 132.37201,105.09711 L 137.75589,105.9579 z "
           id="path4658"
           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
      </g>
      <path
         id="path4660"
         d="M 408.75794,235.02162 C 407.60101,236.28077 406.59091,237.57327 405.72621,238.80151 C 406.16267,239.90671 406.85476,240.97406 407.7962,241.89232 C 409.00379,243.07018 410.43541,243.82717 411.88254,244.16318 C 411.88803,244.15866 411.89236,244.15202 411.89785,244.14749 C 413.15271,243.11213 414.43901,241.90865 415.68468,240.5529 C 417.01366,239.10649 418.15768,237.65053 419.09636,236.25555 C 418.68712,234.95527 417.92342,233.70286 416.82706,232.63349 C 415.86248,231.69266 414.75127,231.0003 413.60635,230.5945 C 413.60096,230.59858 413.59644,230.60611 413.59105,230.61019 C 412.0158,231.80183 410.34851,233.2905 408.75794,235.02162 z "
         style="fill:url(#radialGradient5185);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         style="fill:url(#radialGradient5182);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 497.20513,235.02162 C 498.36205,236.28077 499.37216,237.57327 500.23686,238.80151 C 499.8004,239.90671 499.10831,240.97406 498.16687,241.89232 C 496.95928,243.07018 495.52766,243.82717 494.08052,244.16318 C 494.07503,244.15866 494.07071,244.15202 494.06522,244.14749 C 492.81036,243.11213 491.52406,241.90865 490.27839,240.5529 C 488.94941,239.10649 487.80538,237.65053 486.86671,236.25555 C 487.27594,234.95527 488.03965,233.70286 489.13601,232.63349 C 490.10059,231.69266 491.21179,231.0003 492.35671,230.5945 C 492.36211,230.59858 492.36662,230.60611 492.37202,230.61019 C 493.94727,231.80183 495.61456,233.2905 497.20513,235.02162 z "
         id="path4662" />
    </g>
    <g
       id="g5398"
       transform="translate(-5.8538479,0)">
      <path
         id="path4706"
         d="M 417.26806,520.9548 C 417.02438,524.29859 416.82478,527.64003 416.64312,530.98606 L 413.74427,525.71044 C 413.54374,528.46217 413.34397,531.20157 413.18538,533.95484 L 409.93,528.00475 C 408.72665,544.51693 408.25209,561.0396 408.60769,577.59918 C 408.67005,579.57326 408.76959,581.55529 408.90562,583.52575 L 415.03666,593.92971 C 414.45218,591.51483 414.14357,589.05637 413.81247,586.59604 C 413.67113,585.2091 413.53569,583.81708 413.42136,582.42146 L 418.85094,591.63541 C 418.26645,589.22053 417.95784,586.76207 417.62675,584.30175 C 417.40796,582.15484 417.20197,580.00268 417.04979,577.83637 L 422.40573,586.88364 C 421.82125,584.46876 421.48164,582.00641 421.15054,579.54609 C 419.54625,563.80346 419.60034,547.44453 423.37967,532.01771 L 417.26806,520.9548 z "
         style="fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 416.44543,579.4052 C 415.92794,577.00499 415.29695,574.63112 414.74766,572.23792 L 417.69917,575.3618 C 418.17881,577.80346 418.7327,580.24187 419.55271,582.59392 L 416.44543,579.4052 z "
         id="path4708"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 412.51993,582.89348 C 412.00244,580.49328 411.37145,578.1194 410.82216,575.7262 L 413.77366,578.85008 C 414.25331,581.29174 414.8072,583.73015 415.62721,586.08221 L 412.51993,582.89348 z "
         id="path4710"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         style="fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 500.22654,520.94574 C 500.44048,524.29156 500.61036,527.63465 500.76226,530.98217 L 503.7079,525.73253 C 503.88396,528.48594 504.05935,531.227 504.19345,533.98157 L 507.50162,528.06067 C 508.55808,544.5829 508.88568,561.10914 508.38283,577.66491 C 508.30293,579.63836 508.18576,581.61942 508.03221,583.5886 L 501.80889,593.93762 C 502.41483,591.52804 502.74529,589.07242 503.09825,586.61513 C 503.25192,585.22951 503.39974,583.83874 503.52647,582.44419 L 498.01517,591.60949 C 498.6211,589.19991 498.95156,586.74429 499.30453,584.28701 C 499.54239,582.14213 499.76752,579.99188 499.93896,577.82702 L 494.50277,586.8263 C 495.1087,584.41671 495.4702,581.95747 495.82317,579.5002 C 497.56739,563.77246 497.65878,547.41369 494.0168,531.95386 L 500.22654,520.94574 z "
         id="path4714" />
      <path
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path4716"
         d="M 500.52934,579.40116 C 501.06816,577.00565 501.72023,574.63748 502.29078,572.24926 L 499.31162,575.34677 C 498.81027,577.78406 498.23472,580.21746 497.39383,582.56212 L 500.52934,579.40116 z " />
      <path
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path4718"
         d="M 504.42367,582.92421 C 504.96248,580.5287 505.61456,578.16053 506.18511,575.77231 L 503.20594,578.86982 C 502.7046,581.30712 502.12905,583.74051 501.28815,586.08518 L 504.42367,582.92421 z " />
    </g>
    <g
       id="g5357"
       transform="translate(2.9787612,0)">
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(579.34822,381.92449)"
         id="g4865">
        <path
           id="path4867"
           d="M 130.33995,105.45183 C 130.16416,106.07881 129.92633,106.71627 129.64569,107.35331 C 129.55799,107.5524 129.46303,107.79191 129.36773,107.98521 C 127.59521,111.58042 124.54,114.15628 121.63237,114.74223 C 121.62543,114.74364 121.61195,114.72573 121.60502,114.72712 C 121.65956,114.22044 121.68295,113.70759 121.62621,113.20336 C 124.88827,112.41278 128.29121,109.48779 130.33995,105.45183 z "
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 71.869425,105.45183 C 72.045218,106.07881 72.283045,106.71627 72.563684,107.35331 C 72.651385,107.5524 72.746342,107.79191 72.841649,107.98521 C 74.614169,111.58042 77.669376,114.15628 80.577011,114.74223 C 80.583946,114.74364 80.597424,114.72573 80.60436,114.72712 C 80.549821,114.22044 80.526431,113.70759 80.583165,113.20336 C 77.321105,112.41278 73.918165,109.48779 71.869425,105.45183 z "
           id="path4869" />
        <path
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 68.980016,110.65941 C 69.195424,111.27391 69.473409,111.89492 69.794091,112.51277 C 69.894306,112.70586 70.00434,112.93883 70.111778,113.12566 C 72.109903,116.60054 75.323118,118.97638 78.262196,119.37577 C 78.269206,119.37673 78.281516,119.358 78.288525,119.35894 C 78.201794,118.85677 78.145755,118.34646 78.170226,117.83963 C 74.864399,117.25863 71.2819,114.55655 68.980016,110.65941 z "
           id="path4871" />
        <path
           id="path4873"
           d="M 133.22936,110.65941 C 133.01395,111.27391 132.73597,111.89492 132.41529,112.51277 C 132.31507,112.70586 132.20504,112.93883 132.0976,113.12566 C 130.09947,116.60054 126.88626,118.97638 123.94718,119.37577 C 123.94017,119.37673 123.92786,119.358 123.92085,119.35894 C 124.00758,118.85677 124.06362,118.34646 124.03915,117.83963 C 127.34498,117.25863 130.92748,114.55655 133.22936,110.65941 z "
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(582.04392,377.92569)"
         id="g4903">
        <path
           sodipodi:type="arc"
           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path4905"
           sodipodi:cx="82.327431"
           sodipodi:cy="126.05229"
           sodipodi:rx="10.606602"
           sodipodi:ry="11.111678"
           d="M 92.934032 126.05229 A 10.606602 11.111678 0 1 1  71.720829,126.05229 A 10.606602 11.111678 0 1 1  92.934032 126.05229 z"
           transform="translate(-2.146575,-0.757614)" />
        <path
           sodipodi:type="arc"
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path4907"
           sodipodi:cx="79.486382"
           sodipodi:cy="125.98916"
           sodipodi:rx="1.1995561"
           sodipodi:ry="1.1995561"
           d="M 80.685938 125.98916 A 1.1995561 1.1995561 0 1 1  78.286825,125.98916 A 1.1995561 1.1995561 0 1 1  80.685938 125.98916 z"
           transform="translate(1.894036,0.378807)" />
      </g>
      <path
         sodipodi:type="arc"
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path4911"
         sodipodi:cx="82.327431"
         sodipodi:cy="126.05229"
         sodipodi:rx="10.606602"
         sodipodi:ry="11.111678"
         d="M 92.934032 126.05229 A 10.606602 11.111678 0 1 1  71.720829,126.05229 A 10.606602 11.111678 0 1 1  92.934032 126.05229 z"
         transform="matrix(-1,0,0,1,781.42279,377.16808)" />
      <path
         sodipodi:type="arc"
         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path4913"
         sodipodi:cx="79.486382"
         sodipodi:cy="125.98916"
         sodipodi:rx="1.1995561"
         sodipodi:ry="1.1995561"
         d="M 80.685938 125.98916 A 1.1995561 1.1995561 0 1 1  78.286825,125.98916 A 1.1995561 1.1995561 0 1 1  80.685938 125.98916 z"
         transform="matrix(-1,0,0,1,777.38218,378.3045)" />
    </g>
    <g
       id="g5369"
       transform="translate(1.5364212,0)">
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(580.79056,419.70288)"
         id="g4915">
        <path
           id="path4917"
           d="M 130.33995,105.45183 C 130.16416,106.07881 129.92633,106.71627 129.64569,107.35331 C 129.55799,107.5524 129.46303,107.79191 129.36773,107.98521 C 127.59521,111.58042 124.54,114.15628 121.63237,114.74223 C 121.62543,114.74364 121.61195,114.72573 121.60502,114.72712 C 121.65956,114.22044 121.68295,113.70759 121.62621,113.20336 C 124.88827,112.41278 128.29121,109.48779 130.33995,105.45183 z "
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 71.869425,105.45183 C 72.045218,106.07881 72.283045,106.71627 72.563684,107.35331 C 72.651385,107.5524 72.746342,107.79191 72.841649,107.98521 C 74.614169,111.58042 77.669376,114.15628 80.577011,114.74223 C 80.583946,114.74364 80.597424,114.72573 80.60436,114.72712 C 80.549821,114.22044 80.526431,113.70759 80.583165,113.20336 C 77.321105,112.41278 73.918165,109.48779 71.869425,105.45183 z "
           id="path4919" />
        <path
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 68.980016,110.65941 C 69.195424,111.27391 69.473409,111.89492 69.794091,112.51277 C 69.894306,112.70586 70.00434,112.93883 70.111778,113.12566 C 72.109903,116.60054 75.323118,118.97638 78.262196,119.37577 C 78.269206,119.37673 78.281516,119.358 78.288525,119.35894 C 78.201794,118.85677 78.145755,118.34646 78.170226,117.83963 C 74.864399,117.25863 71.2819,114.55655 68.980016,110.65941 z "
           id="path4921" />
        <path
           id="path4923"
           d="M 133.22936,110.65941 C 133.01395,111.27391 132.73597,111.89492 132.41529,112.51277 C 132.31507,112.70586 132.20504,112.93883 132.0976,113.12566 C 130.09947,116.60054 126.88626,118.97638 123.94718,119.37577 C 123.94017,119.37673 123.92786,119.358 123.92085,119.35894 C 124.00758,118.85677 124.06362,118.34646 124.03915,117.83963 C 127.34498,117.25863 130.92748,114.55655 133.22936,110.65941 z "
           style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(585.77246,422.93098)"
         id="g4925">
        <g
           style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
           id="g4927">
          <path
             id="path4929"
             d="M 77.4375,106.34375 C 71.940543,106.88821 67.593754,113.48246 67.59375,121.5 C 67.593749,122.54402 67.700413,123.54615 67.84375,124.53125 L 88.5625,124.53125 C 88.70331,123.554 88.78125,122.53682 88.78125,121.5 C 88.781247,113.12649 84.028357,106.34375 78.1875,106.34375 C 78.050601,106.34375 77.916891,106.33635 77.78125,106.34375 C 77.670866,106.34977 77.547001,106.3329 77.4375,106.34375 z "
             style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             transform="matrix(0.463113,0,0,0.510688,-36.82643,-31.77107)"
             d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
             sodipodi:ry="3.0357144"
             sodipodi:rx="3.0357144"
             sodipodi:cy="293.96933"
             sodipodi:cx="251.25"
             id="path4931"
             style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252642;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             sodipodi:type="arc" />
        </g>
        <g
           style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
           id="g4933"
           transform="matrix(-1,0,0,1,193.2456,0)">
          <path
             style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             d="M 77.4375,106.34375 C 71.940543,106.88821 67.593754,113.48246 67.59375,121.5 C 67.593749,122.54402 67.700413,123.54615 67.84375,124.53125 L 88.5625,124.53125 C 88.70331,123.554 88.78125,122.53682 88.78125,121.5 C 88.781247,113.12649 84.028357,106.34375 78.1875,106.34375 C 78.050601,106.34375 77.916891,106.33635 77.78125,106.34375 C 77.670866,106.34977 77.547001,106.3329 77.4375,106.34375 z "
             id="path4935" />
          <path
             sodipodi:type="arc"
             style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252642;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path4937"
             sodipodi:cx="251.25"
             sodipodi:cy="293.96933"
             sodipodi:rx="3.0357144"
             sodipodi:ry="3.0357144"
             d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
             transform="matrix(0.463113,0,0,0.510688,-36.82643,-31.77107)" />
        </g>
      </g>
    </g>
    <g
       id="g5444"
       transform="translate(4.6917225,113.82555)">
      <rect
         style="fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="rect3536"
         width="6.6521416"
         height="6.0864835"
         x="467.80936"
         y="536.29578"
         rx="0"
         ry="3.0432417"
         transform="matrix(0.8224137,0.5688898,-0.5688898,0.8224137,0,0)" />
      <rect
         style="fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
         id="rect3538"
         width="6.6522369"
         height="6.0865788"
         x="254.37462"
         y="683.94183"
         rx="0"
         ry="3.0432894"
         transform="matrix(-0.8224137,0.5688898,0.5688898,0.8224137,0,0)" />
    </g>
    <g
       id="g5440"
       transform="translate(3.3429439,113.82555)">
      <path
         sodipodi:type="star"
         style="fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.71912807;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         id="path2635"
         sodipodi:sides="5"
         sodipodi:cx="560.17657"
         sodipodi:cy="315.42023"
         sodipodi:r1="1.6441094"
         sodipodi:r2="0.87188309"
         sodipodi:arg1="1.2178059"
         sodipodi:arg2="1.8461245"
         inkscape:flatsided="false"
         inkscape:rounded="0"
         inkscape:randomized="0"
         d="M 560.74495,316.96297 L 559.93954,316.25927 L 558.88498,316.43752 L 559.30535,315.45407 L 558.80995,314.50621 L 559.87516,314.6021 L 560.62355,313.83804 L 560.86152,314.88075 L 561.81944,315.3564 L 560.90131,315.90494 L 560.74495,316.96297 z "
         transform="matrix(2.074104,-1.852799,1.852799,2.074104,-1664.5467,1117.3269)" />
      <path
         sodipodi:type="star"
         style="fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.71912807;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
         id="path3540"
         sodipodi:sides="5"
         sodipodi:cx="560.17657"
         sodipodi:cy="315.42023"
         sodipodi:r1="1.6441094"
         sodipodi:r2="0.87188309"
         sodipodi:arg1="1.2178059"
         sodipodi:arg2="1.8461245"
         inkscape:flatsided="false"
         inkscape:rounded="0"
         inkscape:randomized="0"
         d="M 560.74495,316.96297 L 559.93954,316.25927 L 558.88498,316.43752 L 559.30535,315.45407 L 558.80995,314.50621 L 559.87516,314.6021 L 560.62355,313.83804 L 560.86152,314.88075 L 561.81944,315.3564 L 560.90131,315.90494 L 560.74495,316.96297 z "
         transform="matrix(-2.074104,-1.852799,-1.852799,2.074104,1926.7703,1117.3269)" />
    </g>
    <g
       id="g5314"
       transform="translate(3.2997042,0)">
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(286.81883,47.739939)"
         id="g5439">
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 360.27091,559.50875 C 371.68556,558.45796 375.60728,558.09454 387.49452,558.09454"
           id="path3482"
           sodipodi:nodetypes="cc" />
        <path
           sodipodi:type="arc"
           style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path5437"
           sodipodi:cx="369.28653"
           sodipodi:cy="561.80682"
           sodipodi:rx="2.2980971"
           sodipodi:ry="2.2980971"
           d="M 371.58463 561.80682 A 2.2980971 2.2980971 0 1 1  366.98843,561.80682 A 2.2980971 2.2980971 0 1 1  371.58463 561.80682 z"
           transform="translate(5,-1)" />
      </g>
      <g
         style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(-1,0,0,1,1073.4451,47.833292)"
         id="g5443">
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 360.27091,559.50875 C 371.68556,558.45796 375.60728,558.09454 387.49452,558.09454"
           id="path5445"
           sodipodi:nodetypes="cc" />
        <path
           sodipodi:type="arc"
           style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           id="path5447"
           sodipodi:cx="369.28653"
           sodipodi:cy="561.80682"
           sodipodi:rx="2.2980971"
           sodipodi:ry="2.2980971"
           d="M 371.58463 561.80682 A 2.2980971 2.2980971 0 1 1  366.98843,561.80682 A 2.2980971 2.2980971 0 1 1  371.58463 561.80682 z"
           transform="translate(5,-1)" />
      </g>
    </g>
    <g
       id="g5388">
      <rect
         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="rect9918"
         width="32.449947"
         height="12.860348"
         x="687.35773"
         y="725.91608"
         ry="5.8097377"
         rx="5.8097377" />
      <rect
         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="rect9933"
         width="32.449947"
         height="12.860348"
         x="647.05566"
         y="725.99292"
         ry="5.8097377"
         rx="5.8097377" />
      <path
         sodipodi:nodetypes="cc"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 679.78849,732.30273 L 686.50703,732.30273"
         id="path9941" />
    </g>
    <g
       id="g5322"
       transform="translate(1.9051505,0)">
      <path
         transform="matrix(1.7827769,0,0,1.8693628,-84.84316,-415.25068)"
         d="M 371.58463 561.80682 A 2.2980971 2.2980971 0 1 1  366.98843,561.80682 A 2.2980971 2.2980971 0 1 1  371.58463 561.80682 z"
         sodipodi:ry="2.2980971"
         sodipodi:rx="2.2980971"
         sodipodi:cy="561.80682"
         sodipodi:cx="369.28653"
         id="path2502"
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.09555626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         sodipodi:type="arc" />
      <path
         transform="matrix(-1.7827769,0,0,1.8693628,1271.1367,-415.07617)"
         d="M 371.58463 561.80682 A 2.2980971 2.2980971 0 1 1  366.98843,561.80682 A 2.2980971 2.2980971 0 1 1  371.58463 561.80682 z"
         sodipodi:ry="2.2980971"
         sodipodi:rx="2.2980971"
         sodipodi:cy="561.80682"
         sodipodi:cx="369.28653"
         id="path2508"
         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.09555626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         sodipodi:type="arc" />
    </g>
    <g
       id="g5518"
       transform="translate(-1.5765702,0)">
      <path
         sodipodi:nodetypes="ccscsc"
         id="path2163"
         d="M 686.56128,215.12403 L 703.07289,215.87788 C 703.07289,215.87788 703.45989,222.56828 702.04092,230.201 C 700.62196,237.83371 697.39703,246.40873 697.39703,246.40873 C 697.39703,246.40873 691.85016,243.29911 689.14122,235.47793 C 686.43227,227.65676 686.56128,215.12403 686.56128,215.12403 z "
         style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cscscsc"
         id="path4106"
         d="M 687.91274,226.95898 C 687.91274,226.95898 691.17412,225.68155 694.80034,225.47023 C 698.42657,225.2589 702.41764,226.11368 702.41764,226.11368 C 702.41764,226.11368 702.25736,230.67187 701.56811,233.50713 C 699.72441,241.09124 697.65392,246.64982 697.65392,246.64982 C 697.65392,246.64982 692.10705,243.54019 689.39811,235.71902 C 686.68918,227.89784 687.91274,226.95898 687.91274,226.95898 z "
         style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="ccscsc"
         id="path3135"
         d="M 686.81817,215.09859 L 703.3298,215.85244 C 703.3298,215.85244 703.71679,222.54284 702.29782,230.17556 C 700.87885,237.80827 697.65392,246.38329 697.65392,246.38329 C 697.65392,246.38329 692.10705,243.27366 689.39811,235.45249 C 686.68916,227.63132 686.81817,215.09859 686.81817,215.09859 z "
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       id="g5480">
      <path
         sodipodi:nodetypes="ccsccccccsccsccsccsccscccsc"
         id="path6991"
         d="M 272.10534,410.57053 L 284.47823,381.55823 C 284.47823,381.55823 293.11791,377.39838 309.224,378.14502 C 325.33009,378.89166 348.90258,384.54479 348.90258,384.54479 L 361.27546,412.27712 L 359.99551,398.19764 L 364.68867,399.05093 L 359.14221,387.53135 L 366.82193,392.65117 C 366.82193,392.65117 365.96862,388.8113 363.83537,385.39809 C 361.70211,381.98489 358.2889,378.99833 358.2889,378.99833 L 374.9283,373.87851 C 374.9283,373.87851 371.19511,370.67863 366.82193,369.612 C 362.44875,368.54537 357.4356,369.612 357.4356,369.612 L 372.3684,361.50562 C 372.3684,361.50562 362.23543,354.6792 351.88914,353.82589 C 341.54283,352.97259 330.98322,358.09241 330.98322,358.09241 L 342.5028,348.70608 C 342.5028,348.70608 324.37012,346.14618 310.93061,349.55938 C 297.49108,352.97259 288.74474,362.35892 288.74474,362.35892 L 293.01125,352.54594 C 293.01125,352.54594 287.35812,353.50591 283.19826,357.23911 C 279.03841,360.9723 276.37185,367.47874 276.37185,367.47874 L 276.37185,359.79901 L 261.0124,375.58511 C 261.0124,375.58511 264.63893,379.21165 267.41217,387.95801 C 270.18541,396.70435 272.10534,410.57053 272.10534,410.57053 z "
         style="fill:url(#linearGradient5135);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 269.99721,400.63279 C 271.5549,399.65987 273.0216,398.54656 274.48987,397.44499 L 278.63562,395.8013 C 277.18856,396.84111 275.75695,397.90234 274.32019,398.95597 L 269.99721,400.63279 z "
         id="path6995"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 268.955,396.46392 C 270.51268,395.49099 271.97938,394.37769 273.44766,393.27611 L 277.5934,391.63242 C 276.14634,392.67223 274.71473,393.73347 273.27798,394.78709 L 268.955,396.46392 z "
         id="path6997"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         d="M 268.955,391.25282 C 270.51268,390.2799 271.97938,389.16659 273.44766,388.06502 L 277.5934,386.42133 C 276.14634,387.46114 274.71473,388.52237 273.27798,389.576 L 268.955,391.25282 z "
         id="path6999"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <path
       style="fill:#693500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
       d="M 644.29259,334.07144 C 644.29259,334.07144 643.77206,350.50312 643.94884,359.16519 C 644.12009,367.55656 646.9599,371.13712 647.13634,371.35269 L 649.04259,373.07144 C 648.43126,373.57989 648.01134,374.43938 648.01134,375.41519 C 648.01134,376.97648 649.05529,378.25894 650.32384,378.25894 C 650.43053,378.25894 650.53335,378.24519 650.63634,378.22769 C 650.89845,378.79127 651.42123,379.20784 652.01134,379.35269 C 652.29052,380.62352 653.25296,381.56819 654.41759,381.60269 C 654.5567,382.04426 654.83307,382.41029 655.19884,382.66519 C 655.12396,382.97084 655.10509,383.29731 655.10509,383.63394 C 655.10509,385.43918 656.26638,386.91519 657.73009,386.91519 C 657.74153,386.91519 657.74994,386.91537 657.76134,386.91519 C 657.87252,388.08025 658.51501,389.01367 659.35509,389.29019 C 659.50243,391.90559 661.23842,393.97769 663.38634,393.97769 C 663.94679,393.97769 664.4925,393.82458 664.98009,393.57144 C 665.29492,393.86604 665.67162,394.09167 666.07384,394.25894 C 665.96076,394.804 665.88634,395.36458 665.88634,395.94644 C 665.88634,400.14241 669.00065,403.54019 672.85509,403.54019 C 673.84128,403.54019 674.78546,403.31726 675.63634,402.91519 C 675.61007,403.2033 675.60509,403.4944 675.60509,403.79019 C 675.60509,408.52286 679.04783,412.38394 683.29259,412.38394 C 684.38694,412.38394 685.41238,412.12525 686.35509,411.66519 C 687.31908,412.23628 688.47557,412.54019 689.73009,412.54019 C 693.04783,412.54019 695.76134,410.20007 695.76134,407.32144 C 695.76134,406.52532 695.56701,405.7779 695.19884,405.10269 C 697.33731,403.96621 698.82234,402.03673 699.07384,399.79019 C 699.25623,399.81096 699.44804,399.82144 699.63634,399.82144 C 700.84543,399.82144 701.9405,399.38527 702.76134,398.66519 C 703.67807,399.39755 704.8495,399.82144 706.10509,399.82144 C 709.0813,399.82144 711.48009,397.37769 711.48009,394.35269 C 711.48009,394.12818 711.47469,393.88265 711.44884,393.66519 C 713.03784,393.23362 714.23618,391.89473 714.44884,390.25894 C 715.93204,390.05492 717.11541,388.74536 717.29259,387.13394 C 717.29229,387.13203 717.2925,387.10966 717.29259,387.10269 C 717.29608,387.10263 717.31714,387.10272 717.32384,387.10269 C 717.85849,387.0157 718.36232,386.7968 718.76134,386.44644 C 719.08747,386.53371 719.43738,386.57144 719.79259,386.57144 C 721.7442,386.57144 723.32384,385.14039 723.32384,383.38394 C 723.32384,383.08205 723.28625,382.78572 723.19884,382.50894 C 723.48432,382.62081 723.80701,382.66519 724.13634,382.66519 C 725.45368,382.66519 726.51134,381.69745 726.51134,380.47769 C 726.51134,380.1251 726.42018,379.77351 726.26134,379.47769 C 727.47503,379.41847 728.44884,378.47183 728.44884,377.29019 C 728.44884,376.86543 728.38221,376.43991 728.16759,376.10269 C 728.25588,376.11801 728.35545,376.13394 728.44884,376.13394 C 729.42465,376.13394 730.2301,375.17991 730.23009,374.00894 C 730.23009,373.50465 730.07012,373.02778 729.82384,372.66519 C 729.65274,372.42251 729.41488,372.20613 729.16759,372.07144 C 729.15042,372.0625 729.12247,372.0484 729.10509,372.04019 C 729.09974,372.03455 729.0792,372.01455 729.07384,372.00894 C 729.0721,372.0093 729.04961,372.00905 729.04259,372.00894 C 728.80827,371.6179 728.45922,371.34175 728.04259,371.29019 C 729.61315,368.21496 731.3228,363.80996 731.41759,359.16519 C 731.59436,350.50312 731.07384,334.07144 731.07384,334.07144 L 727.35509,334.22769 L 727.88634,357.75894 C 727.94437,358.20011 728.8239,365.37386 724.54259,371.19644 C 721.29079,375.61889 714.08487,380.32023 711.69884,381.82144 C 711.50802,376.53592 709.41759,368.16519 709.41759,368.16519 C 709.40339,367.7052 708.96154,360.3268 695.26134,360.57144 C 686.75396,360.72335 684.20356,360.35601 684.19884,360.35269 L 674.04259,360.57144 C 674.0426,360.57143 666.24025,361.07556 665.23009,366.88394 C 664.57493,370.65112 663.61588,377.08268 663.01134,381.13394 C 660.24248,378.8843 654.19085,373.86999 650.85509,370.13394 C 646.57378,365.33888 647.42206,358.19911 647.48009,357.75894 L 648.01134,334.22769 L 644.29259,334.07144 z M 683.01134,364.35269 C 683.3267,364.34644 683.6003,364.3563 683.79259,364.35269 C 684.01235,364.34857 684.13606,364.35242 684.13634,364.35269 C 684.13784,364.35381 686.26955,364.61251 692.91759,364.50894 C 703.76441,364.33996 704.35979,369.76453 704.38634,370.10269 C 704.38634,370.10269 707.57628,379.05432 705.48009,382.29019 C 705.46338,382.31598 705.43695,382.35712 705.41759,382.38394 C 703.71779,384.66492 692.76174,390.4767 683.51134,389.44644 C 674.11411,388.39982 666.9176,381.25895 666.91759,381.25894 C 666.91759,381.25894 668.30533,372.86473 669.10509,368.85269 C 669.87986,364.96602 675.74078,364.5332 676.10509,364.50894 C 676.10509,364.50894 680.80379,364.39641 683.01134,364.35269 z "
       id="path2940" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 20,195.36218 C 30,195.36218 710,195.36218 720,195.36218"
       id="path2554"
       sodipodi:nodetypes="cc" />
    <text
       xml:space="preserve"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="119.27087"
       y="186.32642"
       id="text2560"><tspan
         sodipodi:role="line"
         id="tspan2562"
         x="119.27087"
         y="186.32642">This work is released under a Creative Commons Attribution-Share Alike 2.5 Licence</tspan></text>
    <g
       id="g5414"
       transform="translate(0.21822,0)">
      <path
         style="fill:url(#linearGradient3916);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 304.22455,535.74167 L 322.39712,536.29236 C 322.39712,536.29236 323.9115,526.51772 327.90395,514.81569 C 331.89641,503.11366 338.36694,489.48424 338.36694,489.48424 L 327.90395,501.59928 C 327.90395,501.59928 330.45087,487.96987 333.96148,474.34044 C 337.47208,460.71101 341.94639,447.0816 341.94639,447.0816 C 341.94639,447.0816 338.0916,445.49838 334.51216,442.40078 C 330.93272,439.30318 327.62861,434.69121 327.62861,434.69121 L 321.57109,449.83502 L 319.91904,437.99531 C 319.91904,437.99531 311.03926,438.54599 304.77524,437.99531 C 298.51121,437.44462 294.86293,435.79258 294.86293,435.79258 L 299.2684,458.92129 L 290.18212,440.47339 C 290.18212,440.47339 295.9643,464.01512 299.54374,483.15138 C 303.12318,502.28764 304.49989,517.01843 304.49989,517.01843 L 293.76156,503.25133 C 293.76156,503.25133 297.75402,513.57666 300.36977,521.69924 C 302.98552,529.82182 304.22455,535.74167 304.22455,535.74167 z "
         id="path2161"
         sodipodi:nodetypes="ccsccscscccscccsccsc" />
      <path
         style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path3133"
         d="M 309.09104,479.43806 C 309.20423,481.60429 312.70954,519.64215 313.07459,523.31043 C 313.46226,526.1585 315.35311,534.77056 315.8794,535.91461 L 313.52391,535.67126 C 313.0198,534.50112 311.44074,526.56573 311.08057,523.69213 L 309.09104,479.43806 z "
         sodipodi:nodetypes="cccccc" />
      <path
         style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path2640"
         d="M 310.9827,460.1293 C 311.09589,457.96308 309.09437,450.7635 309.45942,447.09522 C 309.84709,444.24714 308.43384,438.66385 308.96013,437.5198 L 306.60464,437.76314 C 306.10053,438.93329 307.82557,443.56458 307.4654,446.43818 L 310.9827,460.1293 z "
         sodipodi:nodetypes="cccccc" />
      <path
         style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path3137"
         d="M 312.69432,449.25329 C 312.58113,447.08706 313.48128,446.22035 313.11623,442.55207 C 312.72857,439.70399 313.59113,439.07685 313.06484,437.93281 L 315.42033,438.17615 C 315.92444,439.3463 314.75009,440.1228 315.11025,442.9964 L 312.69432,449.25329 z "
         sodipodi:nodetypes="cccccc" />
      <path
         style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path3139"
         d="M 317.71151,518.33263 C 317.8247,520.49886 319.12728,523.29297 319.49233,526.96125 C 319.88,529.80933 318.46675,535.39262 318.99304,536.53667 L 316.63754,536.29332 C 316.13343,535.12318 317.85848,530.49189 317.49831,527.61829 L 317.71151,518.33263 z "
         sodipodi:nodetypes="cccccc" />
      <path
         style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="path3141"
         d="M 308.70467,522.76748 C 308.62248,524.34045 307.67664,526.36933 307.41156,529.03298 C 307.13007,531.10105 308.15627,535.15525 307.77411,535.98598 L 309.48451,535.80928 C 309.85056,534.9596 308.59795,531.59668 308.85948,529.51008 L 308.70467,522.76748 z "
         sodipodi:nodetypes="cccccc" />
    </g>
    <text
       xml:space="preserve"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="128.70447"
       y="170.16396"
       id="text3636"><tspan
         sodipodi:role="line"
         x="128.70447"
         y="170.16396"
         id="tspan3644">Contributors: &quot;kebes,&quot; &quot;encompass,&quot; and &quot;Locke Dragon&quot; from ubuntuforums.org</tspan></text>
    <path
       style="fill:url(#linearGradient3480);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 23.293674,408.34957 C 24.793674,423.26796 32.833094,432.01382 36.693194,435.5134 C 44.252944,442.3671 58.014914,445.24072 65.839664,445.4522 C 73.664424,445.66368 87.965974,442.78374 97.177984,433.30192 C 101.22747,429.13383 109.03898,420.13124 109.15454,409.61844 C 109.41033,386.34841 111.69231,363.30433 68.338904,363.30433 C 24.985514,363.30433 24.139594,380.43421 23.293674,408.34957 z "
       id="path3478"
       inkscape:label="#path2303"
       sodipodi:nodetypes="csssssc" />
    <g
       id="g5430"
       transform="translate(7.7555146,-2.0000001)">
      <path
         style="fill:url(#linearGradient5129);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 89.495846,660.98349 C 89.495846,660.98349 88.112725,663.0124 82.874681,663.50517 C 80.255661,663.75154 76.226761,663.72543 72.709767,663.3158 C 69.192775,662.90616 62.846097,660.99991 60.708624,659.93303 C 52.176959,655.6746 53.054512,652.25556 53.054512,652.25556 L 68.874788,656.20944 L 89.495846,660.98349 z "
         id="path2823"
         sodipodi:nodetypes="csssccc" />
      <path
         style="fill:url(#linearGradient5126);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 93.8464,624.60458 C 93.8464,624.60458 85.881147,623.94653 70.042695,632.53499 C 54.204243,641.12345 53.467409,644.19395 52.080429,648.64659 C 51.482419,650.5664 52.132986,653.6109 53.02222,654.37004 C 54.709594,655.81056 57.677637,657.02278 72.400705,658.80739 C 87.123774,660.592 89.988756,662.92815 89.988756,662.92815 C 89.988756,662.92815 95.618443,657.26483 96.622288,644.88407 C 97.626134,632.50331 93.8464,624.60458 93.8464,624.60458 z "
         id="path2825"
         sodipodi:nodetypes="csssscsc" />
      <path
         style="fill:url(#linearGradient5123);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 163.90261,660.98349 C 163.90261,660.98349 165.28573,663.0124 170.52378,663.50517 C 173.1428,663.75154 177.1717,663.72543 180.68869,663.3158 C 184.20569,662.90616 190.55236,660.99991 192.68984,659.93303 C 201.2215,655.6746 200.34395,652.25556 200.34395,652.25556 L 184.52367,656.20944 L 163.90261,660.98349 z "
         id="path3843"
         sodipodi:nodetypes="csssccc" />
      <path
         style="fill:url(#linearGradient5120);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         d="M 159.55206,624.60458 C 159.55206,624.60458 167.51731,623.94653 183.35577,632.53499 C 199.19422,641.12345 199.93105,644.19395 201.31803,648.64659 C 201.91604,650.5664 201.26547,653.6109 200.37624,654.37004 C 198.68887,655.81056 195.72082,657.02278 180.99775,658.80739 C 166.27469,660.592 163.4097,662.92815 163.4097,662.92815 C 163.4097,662.92815 157.78002,657.26483 156.77617,644.88407 C 155.77233,632.50331 159.55206,624.60458 159.55206,624.60458 z "
         id="path3845"
         sodipodi:nodetypes="csssscsc" />
    </g>
    <g
       id="g2871"
       transform="translate(-505.35691,741.027)"
       style="stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      <g
         id="g2854"
         style="stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
        <path
           style="fill:url(#linearGradient2881);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 624.2461,41.063696 C 624.2461,41.063696 617.00084,23.424065 609.13756,9.6096389 C 604.35994,1.2161919 601.45587,-1.8733832 598.03916,-5.0460786 C 596.86271,-6.1385035 594.21549,-7.2469715 592.96373,-6.4599043 C 591.71197,-5.6728369 590.60299,-2.5038324 591.14672,2.2495959 C 592.30113,12.341942 592.78706,16.261087 596.75969,30.322364 C 601.57378,47.361995 605.01406,55.501194 605.01406,55.501194 C 605.01406,55.501194 608.78356,49.869281 613.5093,45.506892 C 618.23503,41.144503 624.2461,41.063696 624.2461,41.063696 z "
           id="path2807"
           sodipodi:nodetypes="cssssscsc" />
        <path
           style="fill:url(#linearGradient2883);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 607.26152,6.7556125 C 599.85083,-5.395929 606.14277,4.5892562 597.99826,-5.0526011 C 596.96228,-6.2790442 594.17459,-7.253494 592.92283,-6.4664268 C 591.67107,-5.6793594 591.19629,-2.5404955 591.10582,2.2430734 C 590.92976,11.551794 590.83638,2.1360663 591.77657,6.736894 C 594.74404,21.258391 591.49787,19.944954 596.1778,13.955478 C 605.8134,1.6236249 611.72914,14.081309 607.26152,6.7556125 z "
           id="path2809"
           sodipodi:nodetypes="cssssss" />
        <path
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 624.23169,41.600809 C 624.23169,41.600809 616.98644,23.961179 609.12315,10.146753 C 604.34553,1.7533061 601.44147,-1.336269 598.02475,-4.5089644 C 596.84831,-5.6013893 594.20108,-6.7098573 592.94933,-5.9227901 C 591.69757,-5.1357227 590.58859,-1.9667182 591.13231,2.7867101 C 592.28673,12.879056 592.77265,16.798201 596.74529,30.859478 C 601.55938,47.89911 604.99965,56.038308 604.99965,56.038308 C 604.99965,56.038308 608.76916,50.406395 613.49489,46.044006 C 618.22062,41.681617 624.23169,41.600809 624.23169,41.600809 z "
           id="path4124"
           sodipodi:nodetypes="cssssscsc" />
      </g>
      <g
         transform="matrix(-1,0,0,1,1279.6233,0)"
         id="g2859"
         style="stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline">
        <path
           style="fill:url(#linearGradient2885);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 624.2461,41.063696 C 624.2461,41.063696 617.00084,23.424065 609.13756,9.6096389 C 604.35994,1.2161919 601.45587,-1.8733832 598.03916,-5.0460786 C 596.86271,-6.1385035 594.21549,-7.2469715 592.96373,-6.4599043 C 591.71197,-5.6728369 590.60299,-2.5038324 591.14672,2.2495959 C 592.30113,12.341942 592.78706,16.261087 596.75969,30.322364 C 601.57378,47.361995 605.01406,55.501194 605.01406,55.501194 C 605.01406,55.501194 608.78356,49.869281 613.5093,45.506892 C 618.23503,41.144503 624.2461,41.063696 624.2461,41.063696 z "
           id="path2861"
           sodipodi:nodetypes="cssssscsc" />
        <path
           style="fill:url(#linearGradient2887);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 607.26152,6.7556125 C 599.85083,-5.395929 606.14277,4.5892562 597.99826,-5.0526011 C 596.96228,-6.2790442 594.17459,-7.253494 592.92283,-6.4664268 C 591.67107,-5.6793594 591.19629,-2.5404955 591.10582,2.2430734 C 590.92976,11.551794 590.83638,2.1360663 591.77657,6.736894 C 594.74404,21.258391 591.49787,19.944954 596.1778,13.955478 C 605.8134,1.6236249 611.72914,14.081309 607.26152,6.7556125 z "
           id="path2863"
           sodipodi:nodetypes="cssssss" />
        <path
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 624.23169,41.600809 C 624.23169,41.600809 616.98644,23.961179 609.12315,10.146753 C 604.34553,1.7533061 601.44147,-1.336269 598.02475,-4.5089644 C 596.84831,-5.6013893 594.20108,-6.7098573 592.94933,-5.9227901 C 591.69757,-5.1357227 590.58859,-1.9667182 591.13231,2.7867101 C 592.28673,12.879056 592.77265,16.798201 596.74529,30.859478 C 601.55938,47.89911 604.99965,56.038308 604.99965,56.038308 C 604.99965,56.038308 608.76916,50.406395 613.49489,46.044006 C 618.22062,41.681617 624.23169,41.600809 624.23169,41.600809 z "
           id="path2865"
           sodipodi:nodetypes="cssssscsc" />
      </g>
    </g>
    <g
       id="g2860"
       transform="translate(1.4995221,0)">
      <g
         transform="translate(2.4658356,11.738102)"
         id="g2828">
        <path
           sodipodi:type="arc"
           style="opacity:0.34649999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8611)"
           id="path7632"
           sodipodi:cx="360.87698"
           sodipodi:cy="485.6666"
           sodipodi:rx="189.65614"
           sodipodi:ry="4.5456862"
           d="M 550.53313 485.6666 A 189.65614 4.5456862 0 1 1  171.22084,485.6666 A 189.65614 4.5456862 0 1 1  550.53313 485.6666 z"
           transform="matrix(0.91819,0,0,0.5725032,40.693612,-166.42781)" />
        <text
           xml:space="preserve"
           style="font-size:79.6340332px;font-style:normal;font-weight:normal;opacity:0.98999999;fill:url(#linearGradient2930);fill-opacity:1;stroke:#000000;stroke-width:2.75002265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Gear Proportion"
           x="209.57086"
           y="103.69577"
           id="text2164"><tspan
             sodipodi:role="line"
             id="tspan2166"
             x="209.57086"
             y="103.69577"
             style="fill:url(#linearGradient2930);fill-opacity:1;stroke:#000000;stroke-width:2.75002265;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">m</tspan></text>
        <text
           xml:space="preserve"
           style="font-size:57.35674667px;font-style:normal;font-weight:normal;opacity:0.98999999;fill:url(#linearGradient2932);fill-opacity:1;stroke:#000000;stroke-width:2.75002265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Gear Proportion"
           x="282.72751"
           y="105.40192"
           id="text2168"><tspan
             sodipodi:role="line"
             id="tspan2170"
             x="282.72751"
             y="105.40192"
             style="fill:url(#linearGradient2932);fill-opacity:1;stroke-width:2.75002265">e</tspan></text>
        <text
           xml:space="preserve"
           style="font-size:58.49079514px;font-style:normal;font-weight:normal;opacity:0.98999999;fill:url(#linearGradient2934);fill-opacity:1;stroke:#000000;stroke-width:2.75002265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Gear Proportion"
           x="389.05142"
           y="106.40827"
           id="text2176"
           transform="scale(1.0094554,0.9906332)"><tspan
             sodipodi:role="line"
             id="tspan2178"
             x="389.05142"
             y="106.40827"
             style="fill:url(#linearGradient2934);fill-opacity:1;stroke-width:2.75002265">a</tspan></text>
        <text
           xml:space="preserve"
           style="font-size:58.00177002px;font-style:normal;font-weight:normal;opacity:0.98999999;fill:url(#linearGradient2936);fill-opacity:1;stroke:#000000;stroke-width:2.75002265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Gear Proportion"
           x="425.56003"
           y="106.38377"
           id="text2180"
           transform="scale(1.0088809,0.9911973)"><tspan
             sodipodi:role="line"
             id="tspan2182"
             x="425.56003"
             y="106.38377"
             style="fill:url(#linearGradient2936);fill-opacity:1;stroke-width:2.75002265">k</tspan></text>
        <text
           xml:space="preserve"
           style="font-size:63.16691971px;font-style:normal;font-weight:normal;opacity:0.98999999;fill:url(#linearGradient2938);fill-opacity:1;stroke:#000000;stroke-width:2.75002265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Gear Proportion"
           x="453.39664"
           y="115.85741"
           id="text2184"
           transform="scale(1.0987237,0.9101469)"><tspan
             sodipodi:role="line"
             id="tspan2186"
             x="453.39664"
             y="115.85741"
             style="fill:url(#linearGradient2938);fill-opacity:1;stroke-width:2.75002265">r</tspan></text>
        <text
           xml:space="preserve"
           style="font-size:79.6340332px;font-style:normal;font-weight:normal;opacity:0.98999999;fill:url(#linearGradient2940);fill-opacity:1;stroke:#000000;stroke-width:2.75002265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Gear Proportion"
           x="319.57178"
           y="103.69577"
           id="text2188"><tspan
             sodipodi:role="line"
             id="tspan2190"
             x="319.57178"
             y="103.69577"
             style="fill:url(#linearGradient2940);fill-opacity:1;stroke-width:2.75002265">m</tspan></text>
        <text
           xml:space="preserve"
           style="font-size:57.35674667px;font-style:normal;font-weight:normal;opacity:0.98999999;fill:url(#linearGradient2942);fill-opacity:1;stroke:#000000;stroke-width:2.75002265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Gear Proportion"
           x="463.25983"
           y="105.39604"
           id="text2192"><tspan
             sodipodi:role="line"
             id="tspan2194"
             x="463.25983"
             y="105.39604"
             style="fill:url(#linearGradient2942);fill-opacity:1;stroke-width:2.75002265">e</tspan></text>
      </g>
      <g
         transform="translate(-225.78396,381.54292)"
         id="g5695">
        <g
           id="g5653"
           transform="translate(216.55834,-893.01392)">
          <path
             style="fill:url(#linearGradient2944);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             d="M 89.854398,582.33281 C 74.302348,582.33281 74.601428,582.33281 74.601428,582.33281 C 74.601428,582.33281 65.629093,582.03373 67.124483,595.19316 C 68.619872,608.35258 70.414338,610.44613 77.891283,610.74521 C 85.368232,611.04428 94.340568,611.34336 94.340568,611.34336 L 89.854398,582.33281 z "
             id="path5655" />
          <path
             style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             d="M 74.003273,590.40791 L 79.087597,602.37103"
             id="path5657" />
          <path
             style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             d="M 74.900507,601.17471 L 79.087597,591.60422"
             id="path5659" />
          <path
             id="path5661"
             d="M 163.25946,582.33281 C 178.81151,582.33281 178.51243,582.33281 178.51243,582.33281 C 178.51243,582.33281 187.48477,582.03373 185.98938,595.19316 C 184.49399,608.35258 182.69952,610.44613 175.22257,610.74521 C 167.74563,611.04428 158.77329,611.34336 158.77329,611.34336 L 163.25946,582.33281 z "
             style="fill:url(#linearGradient2946);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             id="path5663"
             d="M 179.11059,590.40791 L 174.02626,602.37103"
             style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             id="path5665"
             d="M 178.21335,601.17471 L 174.02626,591.60422"
             style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        </g>
        <path
           style="fill:url(#linearGradient2948);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
           d="M 300.25427,-292.526 C 300.25427,-275.60761 297.29355,-273.91577 315.90379,-259.11217 C 334.51403,-244.30857 334.72551,-246.63485 342.55027,-246.42337 C 350.37503,-246.21189 363.48679,-254.03665 370.88859,-259.32365 C 378.29039,-264.61065 386.74958,-267.99433 386.11514,-291.25713 C 385.48071,-314.51992 388.65291,-337.57124 345.29951,-337.57124 C 301.94611,-337.57124 301.10019,-320.44136 300.25427,-292.526 z "
           id="path5561"
           inkscape:label="#path2303" />
        <path
           id="path5611"
           d="M 342.19393,-339.10594 C 316.34782,-338.60664 306.69952,-331.46304 302.88144,-319.26219 C 302.87863,-319.25321 302.88425,-319.23992 302.88144,-319.23094 C 302.86062,-319.16374 302.83942,-319.11095 302.81894,-319.04344 C 302.8149,-319.03022 302.79172,-319.02542 302.78769,-319.01219 C 302.7442,-318.86824 302.70462,-318.72002 302.66269,-318.57469 C 302.66004,-318.56557 302.66534,-318.55256 302.66269,-318.54344 C 302.62011,-318.39542 302.57869,-318.22413 302.53769,-318.07469 C 302.49447,-317.91802 302.45421,-317.76418 302.41269,-317.60594 C 302.32908,-317.28518 302.23957,-316.96432 302.16269,-316.63719 C 302.14358,-316.55651 302.11891,-316.49951 302.10019,-316.41844 C 302.09797,-316.40878 302.10241,-316.39686 302.10019,-316.38719 C 302.06478,-316.2325 302.04044,-316.07453 302.00644,-315.91844 C 302.00432,-315.90868 302.00856,-315.89695 302.00644,-315.88719 C 301.99066,-315.81493 301.95943,-315.741 301.94394,-315.66844 C 301.94187,-315.65864 301.94602,-315.647 301.94394,-315.63719 C 301.92849,-315.56459 301.8966,-315.49134 301.88144,-315.41844 C 301.87941,-315.40859 301.88347,-315.39704 301.88144,-315.38719 C 301.86642,-315.3147 301.86493,-315.24123 301.85019,-315.16844 C 301.84811,-315.15809 301.85227,-315.14755 301.85019,-315.13719 C 301.8354,-315.06391 301.8022,-314.99202 301.78769,-314.91844 C 301.78575,-314.9085 301.78963,-314.89714 301.78769,-314.88719 C 301.75668,-314.72805 301.72366,-314.57897 301.69394,-314.41844 C 301.69209,-314.40841 301.6958,-314.39723 301.69394,-314.38719 C 301.66579,-314.23461 301.6272,-314.07227 301.60019,-313.91844 C 301.597,-313.90022 301.60338,-313.87417 301.60019,-313.85594 C 301.58893,-313.79186 301.58001,-313.73274 301.56894,-313.66844 C 301.56531,-313.64717 301.57256,-313.62723 301.56894,-313.60594 C 301.55778,-313.54065 301.51741,-313.48395 301.50644,-313.41844 C 301.50305,-313.39802 301.50982,-313.37638 301.50644,-313.35594 C 301.49531,-313.28901 301.48613,-313.20435 301.47519,-313.13719 C 301.4721,-313.11805 301.47827,-313.09385 301.47519,-313.07469 C 301.45049,-312.92069 301.40512,-312.7924 301.38144,-312.63719 C 301.37829,-312.6165 301.38458,-312.59541 301.38144,-312.57469 C 301.37107,-312.50687 301.36037,-312.42399 301.35019,-312.35594 C 301.34732,-312.33655 301.35305,-312.31285 301.35019,-312.29344 C 301.34042,-312.22765 301.32854,-312.17195 301.31894,-312.10594 C 301.3158,-312.0841 301.32207,-312.0653 301.31894,-312.04344 C 301.28084,-311.77701 301.22929,-311.50082 301.19394,-311.23094 C 301.18608,-311.17138 301.17043,-311.10317 301.16269,-311.04344 C 301.15888,-311.01373 301.16648,-310.97944 301.16269,-310.94969 C 301.15548,-310.89343 301.13854,-310.84985 301.13144,-310.79344 C 301.12647,-310.75368 301.13636,-310.70827 301.13144,-310.66844 C 301.1252,-310.61818 301.10635,-310.56256 301.10019,-310.51219 C 301.09613,-310.4786 301.10422,-310.45208 301.10019,-310.41844 C 301.0929,-310.35813 301.07612,-310.29142 301.06894,-310.23094 C 301.06541,-310.20086 301.07244,-310.16731 301.06894,-310.13719 C 301.06226,-310.08023 301.04427,-310.03805 301.03769,-309.98094 C 301.03309,-309.94068 301.04224,-309.89627 301.03769,-309.85594 C 301.03191,-309.80506 301.01214,-309.75069 301.00644,-309.69969 C 301.00196,-309.65927 301.01087,-309.61519 301.00644,-309.57469 C 301.00081,-309.5236 300.98074,-309.46964 300.97519,-309.41844 C 300.97083,-309.37785 300.97951,-309.3341 300.97519,-309.29344 C 300.96971,-309.24215 300.94935,-309.1886 300.94394,-309.13719 C 300.94038,-309.1029 300.94748,-309.07778 300.94394,-309.04344 C 300.93792,-308.98555 300.91861,-308.94523 300.91269,-308.88719 C 300.90855,-308.84627 300.91678,-308.80318 300.91269,-308.76219 C 300.90749,-308.71049 300.88657,-308.65776 300.88144,-308.60594 C 300.87741,-308.56485 300.88543,-308.5221 300.88144,-308.48094 C 300.85872,-308.2461 300.84017,-307.99938 300.81894,-307.76219 C 300.81475,-307.71531 300.82308,-307.65291 300.81894,-307.60594 C 300.81519,-307.56368 300.7914,-307.52328 300.78769,-307.48094 C 300.78316,-307.42878 300.79216,-307.37696 300.78769,-307.32469 C 300.78404,-307.28226 300.76005,-307.24219 300.75644,-307.19969 C 300.75203,-307.14733 300.76079,-307.09591 300.75644,-307.04344 C 300.72913,-306.71344 300.68753,-306.37785 300.66269,-306.04344 C 300.65874,-305.99026 300.66658,-305.94048 300.66269,-305.88719 C 300.58969,-304.88689 300.5303,-303.86378 300.47519,-302.82469 C 300.47146,-302.75426 300.47886,-302.67655 300.47519,-302.60594 C 300.46863,-302.47969 300.45029,-302.35775 300.44394,-302.23094 C 300.44021,-302.1563 300.44761,-302.08702 300.44394,-302.01219 C 303.53486,-304.86957 306.61752,-310.68332 308.47518,-317.76219 C 308.87613,-319.29004 309.19758,-320.80223 309.44393,-322.26219 C 318.06487,-325.48566 329.50441,-327.44969 342.03768,-327.44969 C 356.2518,-327.44969 369.02977,-324.94054 377.91268,-320.91844 C 377.91559,-320.91852 377.94009,-320.91811 377.94393,-320.91844 C 378.14716,-319.88316 378.38334,-318.82665 378.66268,-317.76219 C 380.33723,-311.38109 383.0113,-306.00633 385.78769,-302.91844 C 385.77693,-303.32794 385.76982,-303.73014 385.75644,-304.13719 C 385.7544,-304.19945 385.75855,-304.26249 385.75644,-304.32469 C 385.74651,-304.61665 385.73678,-304.90913 385.72519,-305.19969 C 385.72432,-305.22161 385.72607,-305.24028 385.72519,-305.26219 C 385.71558,-305.50041 385.7048,-305.74373 385.69394,-305.98094 C 385.69044,-306.05748 385.66633,-306.12326 385.66269,-306.19969 C 385.6622,-306.20996 385.66318,-306.22067 385.66269,-306.23094 C 385.65036,-306.48882 385.64546,-306.75559 385.63144,-307.01219 C 385.62933,-307.05073 385.63359,-307.09868 385.63144,-307.13719 C 385.62347,-307.28001 385.60872,-307.40104 385.60019,-307.54344 C 385.59954,-307.55424 385.60084,-307.56389 385.60019,-307.57469 C 385.59095,-307.72801 385.57887,-307.89063 385.56894,-308.04344 C 385.56824,-308.05414 385.56964,-308.064 385.56894,-308.07469 C 385.55966,-308.21677 385.5476,-308.37055 385.53769,-308.51219 C 385.5362,-308.53351 385.5392,-308.55338 385.53769,-308.57469 C 385.53386,-308.62878 385.51036,-308.67692 385.50644,-308.73094 C 385.50408,-308.76352 385.50884,-308.79214 385.50644,-308.82469 C 385.50329,-308.86748 385.50966,-308.90694 385.50644,-308.94969 C 385.50363,-308.98705 385.5093,-309.03737 385.50644,-309.07469 C 385.50348,-309.11323 385.4782,-309.16119 385.47519,-309.19969 C 385.46929,-309.27544 385.48129,-309.34283 385.47519,-309.41844 C 385.46299,-309.56965 385.45697,-309.70529 385.44394,-309.85594 C 385.42998,-310.01735 385.39639,-310.1952 385.38144,-310.35594 C 385.37553,-310.41933 385.38751,-310.48016 385.38144,-310.54344 C 385.37943,-310.56441 385.38346,-310.58498 385.38144,-310.60594 C 385.37629,-310.65913 385.35545,-310.70907 385.35019,-310.76219 C 385.34709,-310.79358 385.35333,-310.82458 385.35019,-310.85594 C 385.34638,-310.8939 385.32281,-310.94302 385.31894,-310.98094 C 385.30561,-311.11147 385.30174,-311.25714 385.28769,-311.38719 C 385.28546,-311.4078 385.28994,-311.42909 385.28769,-311.44969 C 385.28073,-311.51357 385.26357,-311.57343 385.25644,-311.63719 C 385.25529,-311.64747 385.2576,-311.65816 385.25644,-311.66844 C 385.23862,-311.82706 385.2129,-311.97931 385.19394,-312.13719 C 385.18641,-312.19987 385.1704,-312.26213 385.16269,-312.32469 C 385.14972,-312.42988 385.14494,-312.53233 385.13144,-312.63719 C 385.12548,-312.68352 385.1375,-312.71593 385.13144,-312.76219 C 385.12722,-312.79444 385.10446,-312.82372 385.10019,-312.85594 C 385.09479,-312.89656 385.10568,-312.94037 385.10019,-312.98094 C 385.09447,-313.02336 385.07475,-313.06358 385.06894,-313.10594 C 385.05483,-313.2085 385.05234,-313.31622 385.03769,-313.41844 C 385.02874,-313.48104 385.0156,-313.54347 385.00644,-313.60594 C 385.00496,-313.61602 385.00793,-313.62712 385.00644,-313.63719 C 384.98365,-313.79201 384.96802,-313.95192 384.94394,-314.10594 C 384.93419,-314.1682 384.89141,-314.23131 384.88144,-314.29344 C 384.87821,-314.31362 384.8847,-314.33577 384.88144,-314.35594 C 384.87199,-314.41439 384.85984,-314.45385 384.85019,-314.51219 C 384.83337,-314.61429 384.83636,-314.72297 384.81894,-314.82469 C 384.81189,-314.86567 384.79484,-314.90877 384.78769,-314.94969 C 384.77524,-315.02122 384.76919,-315.06585 384.75644,-315.13719 C 384.74726,-315.18855 384.73453,-315.24217 384.72519,-315.29344 C 384.72142,-315.31412 384.72899,-315.33527 384.72519,-315.35594 C 384.72346,-315.36534 384.72692,-315.3778 384.72519,-315.38719 C 384.70071,-315.52004 384.65703,-315.66126 384.63144,-315.79344 C 384.61568,-315.87482 384.61637,-315.96232 384.60019,-316.04344 C 384.58849,-316.10195 384.54962,-316.14132 384.53769,-316.19969 C 384.53367,-316.21939 384.54173,-316.2425 384.53769,-316.26219 C 384.52739,-316.31219 384.51691,-316.36854 384.50644,-316.41844 C 384.48559,-316.51808 384.46547,-316.63171 384.44394,-316.73094 C 384.43535,-316.77032 384.42139,-316.81663 384.41269,-316.85594 C 384.40231,-316.90308 384.39198,-316.9339 384.38144,-316.98094 C 384.37651,-317.00292 384.38641,-317.02148 384.38144,-317.04344 C 384.37047,-317.092 384.36133,-317.15123 384.35019,-317.19969 C 384.34537,-317.22065 384.32379,-317.24125 384.31894,-317.26219 C 381.37772,-329.90425 372.55243,-339.10594 345.16268,-339.10594 C 344.14658,-339.10594 343.16388,-339.12468 342.19393,-339.10594 z "
           style="opacity:1;fill:#8f5902;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <g
           id="g5613"
           transform="translate(-252.94866,-879.77232)">
          <g
             id="g5615"
             transform="translate(499.44113,459.9933)"
             style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none">
            <path
               id="path5617"
               d="M 77.4375,106.34375 C 71.940543,106.88821 67.593754,113.48246 67.59375,121.5 C 67.593749,122.54402 67.700413,123.54615 67.84375,124.53125 L 88.5625,124.53125 C 88.70331,123.554 88.78125,122.53682 88.78125,121.5 C 88.781247,113.12649 84.028357,106.34375 78.1875,106.34375 C 78.050601,106.34375 77.916891,106.33635 77.78125,106.34375 C 77.670866,106.34977 77.547001,106.3329 77.4375,106.34375 z "
               style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
            <path
               transform="matrix(0.463113,0,0,0.510688,-36.82643,-31.77107)"
               d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
               sodipodi:ry="3.0357144"
               sodipodi:rx="3.0357144"
               sodipodi:cy="293.96933"
               sodipodi:cx="251.25"
               id="path5619"
               style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252642;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
               sodipodi:type="arc" />
          </g>
          <g
             id="g5621"
             transform="matrix(-1,0,0,1,692.68673,459.9933)"
             style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none">
            <path
               style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
               d="M 77.4375,106.34375 C 71.940543,106.88821 67.593754,113.48246 67.59375,121.5 C 67.593749,122.54402 67.700413,123.54615 67.84375,124.53125 L 88.5625,124.53125 C 88.70331,123.554 88.78125,122.53682 88.78125,121.5 C 88.781247,113.12649 84.028357,106.34375 78.1875,106.34375 C 78.050601,106.34375 77.916891,106.33635 77.78125,106.34375 C 77.670866,106.34977 77.547001,106.3329 77.4375,106.34375 z "
               id="path5623" />
            <path
               sodipodi:type="arc"
               style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.11252642;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
               id="path5625"
               sodipodi:cx="251.25"
               sodipodi:cy="293.96933"
               sodipodi:rx="3.0357144"
               sodipodi:ry="3.0357144"
               d="M 254.28571 293.96933 A 3.0357144 3.0357144 0 1 1  248.21429,293.96933 A 3.0357144 3.0357144 0 1 1  254.28571 293.96933 z"
               transform="matrix(0.463113,0,0,0.510688,-36.82643,-31.77107)" />
          </g>
        </g>
        <g
           id="g5641"
           transform="translate(-291.20373,-494.03413)">
          <path
             style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             d="M 614.11518,220.25136 L 630.15135,233.25708 L 637.7275,226.56482 L 645.80872,221.13525 L 650.35441,218.8624 L 644.41976,217.72598 L 629.39374,218.98867 L 619.03967,219.62002 L 614.11518,220.25136 z "
             id="path5643" />
          <path
             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             d="M 653.78775,215.80122 C 646.87665,216.3181 639.97354,216.97649 633.069,217.58247 C 626.45697,218.01492 619.8477,218.09772 613.22525,218.05122 C 613.21194,218.05089 613.1448,218.05155 613.1315,218.05122 C 612.39889,218.2098 611.67658,218.3781 610.944,218.55122 C 611.55963,219.27321 612.18438,219.97584 612.78775,220.70747 C 612.81051,220.73507 612.82751,220.7736 612.85025,220.80122 C 616.41032,223.60184 619.88372,226.57192 623.28775,229.58247 C 625.84682,231.96622 627.35424,233.83746 629.194,233.76997 C 629.19598,233.77033 629.24756,233.7701 629.2565,233.76997 C 629.265,233.76994 629.28674,233.76979 629.28775,233.76997 C 629.73416,233.73597 630.18759,233.61791 630.694,233.33247 L 630.97525,233.45747 C 631.24985,233.15963 631.47498,232.87119 631.7565,232.58247 C 631.87319,232.48541 632.01021,232.37992 632.1315,232.26997 C 632.13843,232.26301 632.15606,232.24579 632.16275,232.23872 C 632.2019,232.19582 632.24601,232.15524 632.28775,232.11372 C 632.34187,232.06274 632.38892,231.97975 632.444,231.92622 C 632.44761,231.92623 632.47076,231.9263 632.47525,231.92622 C 632.48267,231.91805 632.50158,231.90034 632.5065,231.89497 C 632.51641,231.88377 632.5542,231.84857 632.569,231.83247 C 632.57577,231.8253 632.59533,231.80612 632.60025,231.80122 C 632.60688,231.79397 632.62487,231.77722 632.6315,231.76997 C 632.73267,231.66854 632.8395,231.56742 632.944,231.45747 C 632.94408,231.45266 632.94396,231.43541 632.944,231.42622 C 632.9521,231.41735 633.00114,231.36951 633.0065,231.36372 C 633.01539,231.36366 633.03561,231.36352 633.03775,231.36372 C 633.0431,231.35791 633.0609,231.34132 633.069,231.33247 C 633.07548,231.32523 633.09377,231.30846 633.10025,231.30122 C 633.26378,231.14673 633.46602,231.01558 633.6315,230.86372 C 635.13698,229.61993 636.63919,228.36207 638.16275,227.14497 C 638.34441,226.99986 638.54342,226.88356 638.72525,226.73872 C 638.7656,226.7099 638.81087,226.64612 638.85025,226.61372 C 638.85689,226.60858 638.87476,226.58725 638.8815,226.58247 C 638.89,226.58244 638.90828,226.58253 638.91275,226.58247 C 643.38872,223.40976 648.29033,220.8489 653.1315,218.39497 C 653.13391,218.39215 653.15198,218.37546 653.16275,218.36372 C 653.27122,218.35889 653.36678,218.36839 653.47525,218.36372 L 654.10025,217.83247 C 654.59331,217.58377 655.10901,217.36094 655.60025,217.11372 C 656.97096,216.38117 657.36279,216.19618 657.694,216.01997 C 656.50877,215.9669 655.34681,215.87055 654.16275,215.80122 C 654.07092,215.80804 653.97333,215.79436 653.8815,215.80122 C 653.86827,215.80133 653.80097,215.80113 653.78775,215.80122 z M 648.10025,218.61372 C 647.48013,219.11125 646.87835,219.6187 646.2565,220.11372 C 646.2311,220.12755 646.18815,220.13111 646.16275,220.14497 C 640.20395,223.39502 634.41102,226.98886 629.444,231.80122 C 628.56974,230.8616 626.59993,229.86613 624.97525,228.42622 C 621.88627,225.75784 618.78677,223.10167 615.6315,220.51997 C 620.43397,220.46529 625.24124,220.35268 630.03775,220.05122 C 636.06386,219.56639 642.06784,218.98979 648.10025,218.61372 z M 629.8815,232.92622 L 630.10025,233.05122 C 630.09198,233.06005 630.07223,233.07889 630.069,233.08247 C 630.00278,233.11658 629.91659,233.17348 629.85025,233.20747 C 629.84131,233.20756 629.78971,233.20777 629.78775,233.20747 C 629.78781,233.19782 629.78781,233.17811 629.78775,233.17622 C 629.81852,233.09655 629.86248,233.00005 629.8815,232.92622 z "
             id="path5645" />
          <path
             sodipodi:type="arc"
             style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path5647"
             sodipodi:cx="97.61161"
             sodipodi:cy="165.57646"
             sodipodi:rx="0.69196427"
             sodipodi:ry="0.3125"
             d="M 98.303575 165.57646 A 0.69196427 0.3125 0 1 1  96.919646,165.57646 A 0.69196427 0.3125 0 1 1  98.303575 165.57646 z"
             transform="translate(532.11699,67.32466)" />
          <path
             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path5649"
             d="M 620.80728,224.14411 C 624.03578,224.58621 627.37274,224.46243 630.63992,224.41743 L 628.29196,225.18025 C 624.97645,225.12847 621.64717,225.19544 618.34264,224.94492 L 620.80728,224.14411 z " />
          <path
             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="path5651"
             d="M 634.33088,224.52366 C 636.34448,224.58083 638.36035,224.5953 640.36918,224.42877 L 638.07042,225.19385 C 636.00584,225.31619 633.93743,225.26894 631.87083,225.32298 L 634.33088,224.52366 z " />
        </g>
        <g
           style="display:inline"
           id="g5573"
           transform="translate(-340.3164,-1033.6604)">
          <rect
             style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="rect5575"
             width="32.449947"
             height="12.860348"
             x="687.35773"
             y="725.91608"
             ry="5.8097377"
             rx="5.8097377" />
          <rect
             style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             id="rect5577"
             width="32.449947"
             height="12.860348"
             x="647.05566"
             y="725.99292"
             ry="5.8097377"
             rx="5.8097377" />
          <path
             sodipodi:nodetypes="cc"
             style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
             d="M 679.78849,732.30273 L 686.50703,732.30273"
             id="path5579" />
        </g>
      </g>
      <g
         style="stroke:#000000;stroke-width:5.71318388;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         transform="matrix(0.3263598,0,0,0.3754974,563.48564,30.206735)"
         id="g2855">
        <path
           style="fill:url(#linearGradient2950);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 62.856845,192.53579 L 50.678245,143.8214 L 62.856845,95.107017 L 87.214035,58.571227 L 135.92843,34.214034 L 208.99999,22.035438 L 282.07158,34.214034 L 330.78597,58.571227 L 355.14315,95.107017 L 367.32176,143.8214 L 355.14315,192.53579 L 367.32176,229.07158 L 330.78597,265.60737 L 318.60736,265.60737 L 306.42877,277.78596 L 257.71438,277.78596 L 245.53579,289.96456 L 172.46421,289.96456 L 160.28562,277.78596 L 111.57122,277.78596 L 99.392635,265.60737 L 87.214035,265.60737 L 50.678245,229.07158 L 62.856845,192.53579 z "
           id="path2857"
           sodipodi:nodetypes="cccccccccccccccccccccccc" />
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 245.53579,289.96456 L 257.71438,229.07158 L 245.53579,216.89298 L 172.46421,216.89298 L 160.28562,229.07158 L 172.46421,289.96456 L 245.53579,289.96456 z "
           id="path3131"
           sodipodi:nodetypes="ccccccc" />
        <path
           style="fill:url(#linearGradient2952);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 62.856845,119.46421 L 75.035435,192.53579 L 148.10701,216.89298 L 172.46421,204.71438 L 245.53579,204.71438 L 269.89298,216.89298 L 342.96456,192.53579 L 355.14315,119.46421 L 342.96456,95.107017 L 318.60736,70.749824 L 99.392635,70.749824 L 75.035435,95.107017 L 62.856845,119.46421 z "
           id="path5075"
           sodipodi:nodetypes="ccccccccccccc" />
        <path
           style="fill:url(#linearGradient2954);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 87.214035,119.46421 C 87.214035,119.46421 75.035435,137.7321 75.035435,156 C 75.035435,174.26789 87.214035,192.53579 87.214035,192.53579 L 111.57122,204.71438 L 148.10701,216.89298 L 172.46421,192.53579 L 245.53579,192.53579 L 269.89298,216.89298 L 306.42877,204.71438 L 330.78597,192.53579 C 330.78597,192.53579 342.96456,174.26789 342.96456,156 C 342.96456,137.7321 330.78597,119.46421 330.78597,119.46421 L 282.07158,119.46421 L 257.71438,95.107017 L 160.28562,95.107017 L 135.92843,119.46421 L 87.214035,119.46421 z "
           id="path2158"
           sodipodi:nodetypes="csccccccccscccccc" />
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 172.46421,216.89298 L 184.6428,241.25017 L 233.3572,241.25017"
           id="path6046"
           sodipodi:nodetypes="ccc" />
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 245.53579,216.89298 L 233.3572,241.25017"
           id="path6048"
           sodipodi:nodetypes="cc" />
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 184.6428,241.25017 L 172.46421,289.96456"
           id="path6050"
           sodipodi:nodetypes="cc" />
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 233.3572,241.25017 L 245.53579,289.96456"
           id="path6052"
           sodipodi:nodetypes="cc" />
        <g
           id="g6064"
           style="stroke:#000000;stroke-width:2.34558392;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(2.4357193,0,0,2.4357193,-290.32245,-238.58653)">
          <path
             sodipodi:nodetypes="ccccc"
             id="path5073"
             d="M 150,202 L 155,197 L 146,184 L 141,193 L 150,202 z "
             style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34558392;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             id="path6056"
             d="M 155,197 C 156.66667,197 158.33333,197 160,197"
             style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34558392;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             id="path6058"
             d="M 175,192 L 165,202"
             style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34558392;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             id="path6062"
             d="M 160,197 L 165,202"
             style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34558392;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        </g>
        <g
           id="g6070"
           transform="matrix(-2.4357193,0,0,2.4357193,709.54031,-239.80439)"
           style="stroke:#000000;stroke-width:2.34558392;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
          <path
             sodipodi:nodetypes="ccccc"
             id="path6072"
             d="M 150,202 L 155,197 L 146,184 L 141,193 L 150,202 z "
             style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34558392;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             id="path6074"
             d="M 155,197 C 156.66667,197 158.33333,197 160,197"
             style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34558392;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             id="path6076"
             d="M 175,192 L 165,202"
             style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34558392;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
          <path
             id="path6078"
             d="M 160,197 L 165,202"
             style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34558392;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        </g>
        <path
           style="fill:url(#linearGradient2956);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 75.035435,119.46421 L 135.92843,119.46421 L 160.28562,95.107017 L 257.71438,95.107017 L 282.07158,119.46421 L 342.96456,119.46421 L 342.96456,107.28561 L 282.07158,107.28561 L 257.71438,82.92842 L 160.28562,82.92842 L 135.92843,107.28561 L 75.035435,107.28561 L 75.035435,119.46421 z "
           id="path6080"
           sodipodi:nodetypes="ccccccccccccc" />
        <path
           style="fill:url(#linearGradient2958);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 148.10701,70.749824 L 111.57122,70.749824 L 99.392635,82.92842 L 75.035435,82.92842 L 99.392635,46.392631 L 160.28562,46.392631 L 148.10701,70.749824 z "
           id="path6084"
           sodipodi:nodetypes="ccccccc" />
        <path
           style="fill:url(#linearGradient2960);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 269.89298,70.749824 L 305.21091,71.967683 L 317.3895,84.14628 L 341.74671,84.14628 L 317.3895,47.61049 L 256.49653,47.61049 L 269.89298,70.749824 z "
           id="path6086"
           sodipodi:nodetypes="ccccccc" />
        <path
           style="fill:url(#linearGradient2962);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 160.28562,70.749824 L 257.71438,70.749824 L 245.53579,46.392631 L 208.99999,34.214034 L 172.46421,46.392631 L 160.28562,70.749824 z "
           id="path6082"
           sodipodi:nodetypes="cccccc" />
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 148.10701,265.60737 L 160.28562,277.78596"
           id="path6090" />
        <path
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5.71318388;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 269.89298,265.60737 L 257.71438,277.78596"
           id="path6092" />
      </g>
    </g>
    <g
       id="g6697"
       transform="matrix(0.7354997,0.2087673,-0.2087673,0.7354997,28.951259,261.66209)">
      <path
         sodipodi:nodetypes="cssssssssc"
         id="path4727"
         d="M 408.81679,775.08268 C 408.81679,775.08268 420.06679,762.58268 428.81679,760.08268 C 437.56679,757.58268 440.06679,758.83268 443.81679,765.08268 C 447.56679,771.33268 447.56679,778.83268 443.81679,785.08268 C 440.06679,791.33268 442.56679,796.33268 428.81679,790.08268 C 415.06679,783.83268 402.56679,766.33268 388.81679,760.08268 C 375.06679,753.83268 377.56679,758.83268 373.81679,765.08268 C 370.06679,771.33268 370.06679,778.83268 373.81679,785.08268 C 377.56679,791.33268 380.06679,792.58268 388.81679,790.08268 C 397.56679,787.58268 408.81679,775.08268 408.81679,775.08268 z "
         style="fill:url(#linearGradient6707);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.61590266;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path5726"
         d="M 400.25,778.86218 C 400.096,778.92885 395.75,779.97075 395.75,782.61218"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.61590266;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path5724"
         d="M 399.75,771.86218 C 399.42627,771.50415 394.94831,768.81049 393.25,767.11218"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.61590266;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cc"
         id="path5722"
         d="M 399,774.36218 C 399.03205,774.04593 395.58064,777.11738 391.40381,776.2335"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.61590266;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cc"
         id="path5718"
         d="M 417,775.86218 C 418.02926,775.70442 422.34012,776.18627 424.97487,773.85437"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.61590266;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cc"
         id="path5716"
         d="M 415.75,771.11218 C 416.41074,771.10734 422.16508,769.0979 422.88649,767.65507"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.61590266;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cc"
         id="path5720"
         d="M 416.75,779.36218 C 417.44642,778.7455 422.409,782.02332 422.94715,783.09962"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.61590266;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cssssssss"
         id="path4729"
         d="M 408.81679,764.58268 C 412.69179,764.20768 413.44179,764.70768 416.06679,767.33268 C 418.69179,769.95768 419.19179,771.70768 419.31679,775.08268 C 419.44179,778.45768 419.19179,778.20768 416.56679,780.83268 C 413.94179,783.45768 412.69179,785.27018 408.81679,785.58268 C 404.94179,785.89518 403.69179,784.70768 401.06679,782.08268 C 398.44179,779.45768 398.44179,778.39518 398.31679,775.08268 C 398.19179,771.77018 397.94179,771.45768 400.56679,768.83268 C 403.19179,766.20768 404.94179,764.95768 408.81679,764.58268 z "
         style="fill:url(#linearGradient6709);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.61590266;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       id="g6745"
       style="fill-opacity:1.0;fill:url(#linearGradient7730)">
      <path
         sodipodi:nodetypes="cssssssssc"
         id="path6713"
         d="M 167.63447,972.674 C 167.63447,972.674 178.51843,965.82888 185.47597,965.81685 C 192.43351,965.80481 194.0113,967.2461 195.46463,972.62585 C 196.91796,978.00561 195.3522,983.52185 191.28928,987.33585 C 187.22636,991.14984 188.02128,995.34926 179.21295,987.88184 C 170.40463,980.41441 164.86431,964.93358 156.05598,957.46615 C 147.24766,949.99873 148.04257,954.19815 143.97965,958.01214 C 139.91673,961.82614 138.35098,967.34239 139.8043,972.72214 C 141.25763,978.10189 142.83542,979.54318 149.79296,979.53115 C 156.7505,979.51911 167.63447,972.674 167.63447,972.674 z "
         style="fill:url(#linearGradient7730);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         id="path6715"
         d="M 160.54456,973.66535 C 160.41737,973.68224 157.00338,973.54125 156.45193,975.48402"
         style="fill:url(#linearGradient7730);fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1.0" />
      <path
         id="path6717"
         d="M 161.63818,968.41247 C 161.47482,968.08155 158.74363,965.16552 157.84908,963.56186"
         style="fill:url(#linearGradient7730);fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1.0" />
      <path
         sodipodi:nodetypes="cc"
         id="path6719"
         d="M 160.56464,970.09464 C 160.65423,969.86873 157.4745,971.40724 154.58697,969.88516"
         style="fill:url(#linearGradient7730);fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1.0" />
      <path
         sodipodi:nodetypes="cc"
         id="path6721"
         d="M 173.49048,974.9557 C 174.28044,975.05455 177.35048,976.30892 179.77516,975.14385"
         style="fill:url(#linearGradient7730);fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1.0" />
      <path
         sodipodi:nodetypes="cc"
         id="path6723"
         d="M 173.56275,971.20112 C 174.04974,971.3355 178.70156,971.05888 179.53337,970.14828"
         style="fill:url(#linearGradient7730);fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1.0" />
      <path
         sodipodi:nodetypes="cc"
         id="path6725"
         d="M 172.57592,977.47776 C 173.21688,977.16958 176.18255,980.61644 176.35367,981.52041"
         style="fill:url(#linearGradient7730);fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1.0" />
      <path
         sodipodi:nodetypes="cssssssss"
         id="path6727"
         d="M 169.82652,964.95125 C 172.75487,965.48441 173.20211,966.00874 174.58479,968.48744 C 175.96746,970.96614 175.96987,972.35765 175.35721,974.86605 C 174.74456,977.37446 174.61288,977.13839 172.13418,978.52107 C 169.65548,979.90374 168.35771,980.97587 165.44241,980.39674 C 162.52711,979.81761 161.85565,978.68325 160.47297,976.20455 C 159.0903,973.72585 159.31212,972.94438 159.91172,970.48194 C 160.51132,968.0195 160.39269,967.73747 162.87139,966.35479 C 165.35009,964.97212 166.89817,964.41809 169.82652,964.95125 z "
         style="fill:url(#linearGradient7730);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       id="g8715"
       transform="matrix(0.7552204,0,0,0.7552204,-15.42491,368.54842)"
       style="stroke:#000000;stroke-width:2.64823365;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      <path
         sodipodi:nodetypes="cssssss"
         id="path7732"
         d="M 466.5,532.35569 C 474,525.10569 482.625,532.35569 492,521.85569 C 501.375,511.35569 499,487.48069 502.5,491.35569 C 506,495.23069 512.375,520.60569 506,537.35569 C 499.625,554.10569 493,556.98069 482,560.35569 C 471,563.73069 464,558.60569 461,552.35569 C 458,546.10569 459,539.60569 466.5,532.35569 z "
         style="fill:url(#linearGradient8719);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.64823365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cssssss"
         id="path8711"
         d="M 412.74554,532.35569 C 405.24554,525.10569 396.62054,532.35569 387.24554,521.85569 C 377.87054,511.35569 380.24554,487.48069 376.74554,491.35569 C 373.24554,495.23069 366.87054,520.60569 373.24554,537.35569 C 379.62054,554.10569 386.24554,556.98069 397.24554,560.35569 C 408.24554,563.73069 415.24554,558.60569 418.24554,552.35569 C 421.24554,546.10569 420.24554,539.60569 412.74554,532.35569 z "
         style="fill:url(#linearGradient8721);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.64823365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
    </g>
    <g
       id="g13593"
       transform="matrix(0.9365538,0,0,0.9365538,-62.074089,68.006131)">
      <path
         sodipodi:nodetypes="cssscsssc"
         id="path12605"
         d="M 360.92357,675.18379 C 360.92357,675.18379 367.10326,681.6291 375.28685,686.33613 C 383.47044,691.04317 395.65744,693.11762 406.17357,693.55879 C 422.4392,694.23067 431.65368,692.54374 439.37279,687.34395 L 445.54857,683.18379 C 445.54857,683.18379 450.34726,686.05421 439.79857,692.93379 C 431.89232,698.09004 428.21507,698.00973 409.92357,699.55879 C 401.09109,700.30679 379.14232,694.77754 368.17357,688.80879 C 357.20482,682.84004 360.92357,675.18379 360.92357,675.18379 z "
         style="fill:url(#linearGradient13599);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         sodipodi:nodetypes="csssccsssc"
         id="path10665"
         d="M 361.125,673.36218 C 361.125,673.36218 366.42969,667.04187 374.61328,662.33484 C 382.79687,657.6278 393.85938,654.53405 404.375,654.98718 C 414.89063,655.4403 425.48438,658.6903 433.07422,664.07702 C 440.66406,669.46374 445.25,676.98718 445.25,676.98718 L 447.125,677.11218 C 447.125,677.11218 445.92369,666.49176 435.375,659.61218 C 427.46875,654.45593 415.0415,650.16124 405,649.48718 C 396.15581,648.89349 385.21875,651.64343 374.25,657.61218 C 363.28125,663.58093 361.125,673.36218 361.125,673.36218 z "
         style="fill:url(#linearGradient13601);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cssss"
         id="path9694"
         d="M 360.139,679.78562 C 358.139,668.66062 382.639,655.16062 404.139,655.28562 C 425.639,655.41062 444.139,669.16062 446.139,680.28562 C 448.139,691.41062 433.639,699.91062 412.139,699.78562 C 390.639,699.66062 362.139,690.91062 360.139,679.78562 z "
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.13548875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         sodipodi:nodetypes="cssss"
         id="path9692"
         d="M 361,673.86218 C 359,662.73718 383.5,649.23718 405,649.36218 C 426.5,649.48718 445,663.23718 447,674.36218 C 449,685.48718 434.5,693.98718 413,693.86218 C 391.5,693.73718 363,684.98718 361,673.86218 z "
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.13548875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
  </g>
</svg>