summaryrefslogtreecommitdiff
path: root/svg/text.svg
blob: fc4d48d5336d0c585d871c6fe323857cd9542fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="1600" height="900" id="svg2" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docname="text.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0" style="display: inline;" inkscape:export-filename="/home/lapo/Dropbox/Icons/mango/test 64x64/text-x-generic.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
  <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="1" inkscape:cx="207.4448" inkscape:cy="650.06958" inkscape:document-units="px" inkscape:current-layer="g8324" showgrid="false" inkscape:window-width="1227" inkscape:window-height="933" inkscape:window-x="82" inkscape:window-y="70" borderlayer="true" inkscape:showpageshadow="false" inkscape:snap-nodes="false" inkscape:snap-bbox="true">
    <inkscape:grid enabled="true" visible="true" empspacing="4" id="grid12524" type="xygrid" color="#0000ff" opacity="0.07843137"/>
  </sodipodi:namedview>
  <defs id="defs4">
    <linearGradient inkscape:collect="always" id="linearGradient9676">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop9678"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop9680"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient13137">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop13139"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop13141"/>
    </linearGradient>
    <linearGradient id="linearGradient11443">
      <stop id="stop11445" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="0.82124048" id="stop11447"/>
      <stop id="stop11449" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient11409">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop11411"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop11413"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient11389">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop11391"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop11393"/>
    </linearGradient>
    <linearGradient id="linearGradient11317">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="0" id="stop11319"/>
      <stop id="stop11325" offset="0.90857679" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="1" id="stop11321"/>
    </linearGradient>
    <linearGradient id="linearGradient11274">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0.0000000" id="stop11276"/>
      <stop style="stop-color: rgb(238, 238, 236); stop-opacity: 1;" offset="0.15517241" id="stop11278"/>
      <stop style="stop-color: rgb(238, 238, 236); stop-opacity: 1;" offset="0.63108921" id="stop11280"/>
      <stop id="stop11282" offset="0.81554461" style="stop-color: rgb(186, 189, 182); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(136, 138, 133); stop-opacity: 1;" offset="1" id="stop11284"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient11246">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop11248"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop11250"/>
    </linearGradient>
    <linearGradient id="linearGradient17844">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0.199029;" offset="0.0000000" id="stop17846"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1.0000000" id="stop17848"/>
    </linearGradient>
    <linearGradient id="linearGradient3-paper-sheet-orig-08">
      <stop id="stop6-paper-sheet-orig-1" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop7-paper-sheet-orig-2" offset="1" style="stop-color: rgb(211, 215, 207); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient id="linearGradient10-paper-sheet-orig-3" inkscape:collect="always">
      <stop id="stop15-paper-sheet-orig-7" offset="0" style="stop-color: rgb(85, 87, 83); stop-opacity: 1;"/>
      <stop id="stop16-paper-sheet-orig-8" offset="1" style="stop-color: rgb(186, 189, 182); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient4-paper-sheet-orig-7">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop8-paper-sheet-orig-2"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop9-paper-sheet-orig-2"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient16-paper-sheet-orig-9">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop24-paper-sheet-orig-7"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop25-paper-sheet-orig-5"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient17-paper-sheet-orig-0-8">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop26-paper-sheet-orig-2-4"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop27-paper-sheet-orig-3-8"/>
    </linearGradient>
    <filter inkscape:collect="always" id="filter1-paper-sheet-orig-3" x="-0.05577689" width="1.1115538" y="-0.50199205" height="2.0039842">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.41832669" id="feGaussianBlur1-paper-sheet-orig-2"/>
    </filter>
    <linearGradient inkscape:collect="always" id="linearGradient20-paper-sheet-orig-4-3">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop28-paper-sheet-orig-7-0"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop29-paper-sheet-orig-7-8"/>
    </linearGradient>
    <filter height="4.3292036" y="-1.6646018" width="1.1849558" x="-0.092477873" id="filter3913-4" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur3915-1" stdDeviation="1.3871681" inkscape:collect="always"/>
    </filter>
    <filter height="2.9168141" y="-0.9584071" width="1.1064897" x="-0.053244837" id="filter3871-0" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur3873-5" stdDeviation="0.79867257" inkscape:collect="always"/>
    </filter>
    <linearGradient inkscape:collect="always" id="linearGradient12-paper-sheet-orig-2">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop17-paper-sheet-orig-1"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop18-paper-sheet-orig-0"/>
    </linearGradient>
    <linearGradient id="linearGradient13-paper-sheet-orig-2-5">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop19-paper-sheet-orig-8-2"/>
      <stop id="stop20-paper-sheet-orig-9-5" offset="0.47533694" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop21-paper-sheet-orig-7-4"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient15-paper-sheet-orig-5-1">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0.412955;" offset="0" id="stop22-paper-sheet-orig-1-6"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop23-paper-sheet-orig-6-9"/>
    </linearGradient>
    <linearGradient id="linearGradient13-paper-sheet-orig-7-4">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop19-paper-sheet-orig-0-5"/>
      <stop id="stop20-paper-sheet-orig-0-7" offset="0.47533694" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop21-paper-sheet-orig-6-9"/>
    </linearGradient>
    <linearGradient id="linearGradient26-paper-sheet-orig-0-7" inkscape:collect="always">
      <stop id="stop30-paper-sheet-orig-8-4" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 0.554054;"/>
      <stop id="stop31-paper-sheet-orig-8-9" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <filter height="5.7794738" y="-2.3897369" width="1.3258733" x="-0.1629366" id="filter0-paper-sheet-orig-7" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur0-paper-sheet-orig-1" stdDeviation="11.948684" inkscape:collect="always"/>
    </filter>
    <filter height="3.1879859" y="-1.0939929" width="1.1869527" x="-0.093476363" id="filter10-paper-sheet-orig-1" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur10-paper-sheet-orig-2" stdDeviation="8.257079" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient0-paper-sheet-orig-1" inkscape:collect="always">
      <stop id="stop0-paper-sheet-orig-6" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop1-paper-sheet-orig-5" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <filter id="filter9-paper-sheet-orig-1" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur9-paper-sheet-orig-5" stdDeviation="2.43" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient3-paper-sheet-orig-0-6">
      <stop id="stop6-paper-sheet-orig-2-3" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop7-paper-sheet-orig-8-4" offset="1" style="stop-color: rgb(211, 215, 207); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient id="linearGradient28-paper-sheet-orig-4" inkscape:collect="always">
      <stop id="stop34-paper-sheet-orig-3" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop35-paper-sheet-orig-7" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <clipPath id="clipPath0-paper-sheet-orig-3" clipPathUnits="userSpaceOnUse">
      <path id="path0-paper-sheet-orig-9" d="M 36,19 C 35.437344,19 35,19.437344 35,20 L 35,237 C 35,237.56266 35.437344,238 36,238 L 220,238 C 220.56266,238 221,237.56266 221,237 L 221,66 C 221,52.442308 210.14182,40.704328 204.71875,35.28125 C 199.29568,29.858173 187.5577,19 174,19 L 36,19 z" style="opacity: 1; fill: url(#linearGradient6013) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none;"/>
    </clipPath>
    <filter id="filter3-paper-sheet-orig-9" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur3-paper-sheet-orig-2" stdDeviation="2.025" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient33-paper-sheet-orig-5" inkscape:collect="always">
      <stop id="stop46-paper-sheet-orig-9" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop47-paper-sheet-orig-5" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient35-paper-sheet-orig-7" inkscape:collect="always">
      <stop id="stop50-paper-sheet-orig-2" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop51-paper-sheet-orig-1" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient1-paper-sheet-orig-2" inkscape:collect="always">
      <stop id="stop2-paper-sheet-orig-4" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop3-paper-sheet-orig-9" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient27-paper-sheet-orig-9-1" inkscape:collect="always">
      <stop id="stop32-paper-sheet-orig-0-1" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop33-paper-sheet-orig-2-5" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <filter height="1.2302682" y="-0.1151341" width="1.2118762" x="-0.10593809" id="filter2-paper-sheet-orig-2-4" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur2-paper-sheet-orig-8-8" stdDeviation="3.0222701" inkscape:collect="always"/>
    </filter>
    <mask id="mask0-paper-sheet-orig-6-5" maskUnits="userSpaceOnUse">
      <path sodipodi:nodetypes="cccccccscc" style="opacity: 1; fill: rgb(255, 255, 255); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 36,-31 C 35.437344,-31 35,-30.562656 35,-30 L 35,187 C 35,187.56266 35.437344,188 36,188 L 220,188 C 220.56266,188 221,187.56266 221,187 L 221,16 C 221,2.442308 208.14182,-7.295672 202.71875,-12.71875 C 197.29568,-18.141827 187.5577,-31 174,-31 L 36,-31 z" id="path1-paper-sheet-orig-9-2"/>
    </mask>
    <filter height="1.4827586" y="-0.24137931" width="1.4827586" x="-0.24137931" id="filter4-paper-sheet-orig-9-1" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur4-paper-sheet-orig-8-1" stdDeviation="4.7270115" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient29-paper-sheet-orig-1-7" inkscape:collect="always">
      <stop id="stop36-paper-sheet-orig-8-4" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop37-paper-sheet-orig-2-7" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <filter id="filter5-paper-sheet-orig-2-0" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur5-paper-sheet-orig-4-6" stdDeviation="0.27169794" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient30-paper-sheet-orig-8-5" inkscape:collect="always">
      <stop id="stop38-paper-sheet-orig-1-4" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop39-paper-sheet-orig-9-6" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <filter height="1.262069" y="-0.13103448" width="1.262069" x="-0.13103448" id="filter6-paper-sheet-orig-2-6" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur6-paper-sheet-orig-2-0" stdDeviation="2.566092" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient31-paper-sheet-orig-8-3" inkscape:collect="always">
      <stop id="stop40-paper-sheet-orig-4-4" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop41-paper-sheet-orig-4-6" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient32-paper-sheet-orig-9-6">
      <stop id="stop42-paper-sheet-orig-3-0" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(230, 230, 230); stop-opacity: 1;" offset="0.44760558" id="stop43-paper-sheet-orig-9-9"/>
      <stop id="stop44-paper-sheet-orig-1-3" offset="0.81267858" style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"/>
      <stop id="stop45-paper-sheet-orig-5-0" offset="1" style="stop-color: rgb(219, 219, 219); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient id="linearGradient34-paper-sheet-orig-3-6" inkscape:collect="always">
      <stop id="stop48-paper-sheet-orig-9-5" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop49-paper-sheet-orig-3-8" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <filter id="filter7-paper-sheet-orig-3-4" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur7-paper-sheet-orig-5-2" stdDeviation="0.30732727" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient36-paper-sheet-orig-4-8" inkscape:collect="always">
      <stop id="stop52-paper-sheet-orig-3-3" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop53-paper-sheet-orig-9-1" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <filter height="1.2034857" y="-0.10174286" width="1.0632914" x="-0.031645697" id="filter8-paper-sheet-orig-5-7" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur8-paper-sheet-orig-3-0" stdDeviation="0.35931052" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient3176-0-8" inkscape:collect="always">
      <stop id="stop3178-7-8" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop3180-3-8" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient26121-3-8-2" inkscape:collect="always">
      <stop id="stop26123-4-7-8" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop26125-3-9-9" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient26113-9-3-1" inkscape:collect="always">
      <stop id="stop26115-7-7-9" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop26117-3-7-8" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient3962-1-1-9-5">
      <stop style="stop-color: rgb(211, 233, 255); stop-opacity: 1;" offset="0.0000000" id="stop3964-5-0-1-9"/>
      <stop style="stop-color: rgb(243, 249, 255); stop-opacity: 1;" offset="0.15517241" id="stop4134-0-8-0-8"/>
      <stop style="stop-color: rgb(55, 100, 151); stop-opacity: 1;" offset="0.63108921" id="stop4346-9-1-1-2"/>
      <stop id="stop6610-2-9-0" offset="0.81554461" style="stop-color: rgb(39, 62, 93); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(82, 110, 165); stop-opacity: 1;" offset="1" id="stop3966-7-2-7-7"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient10586-8-2-5-1">
      <stop style="stop-color: rgb(172, 197, 237); stop-opacity: 1;" offset="0" id="stop10588-8-7-5-8"/>
      <stop style="stop-color: rgb(25, 59, 110); stop-opacity: 1;" offset="1" id="stop10590-3-6-5-8"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient6868-5-7-5">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop6870-84-7-0"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop6872-0-5-0"/>
    </linearGradient>
    <linearGradient id="linearGradient5911-7-2-0">
      <stop style="stop-color: rgb(246, 246, 245); stop-opacity: 1;" offset="0" id="stop5913-2-5-5"/>
      <stop id="stop5921-5-7-3" offset="0.38095239" style="stop-color: rgb(236, 236, 233); stop-opacity: 1;"/>
      <stop id="stop5919-6-6-1" offset="0.76190478" style="stop-color: rgb(197, 197, 190); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="1" id="stop5915-2-8-8"/>
    </linearGradient>
    <linearGradient id="linearGradient6070-954-9-1">
      <stop id="stop6072-23-5-6" offset="0" style="stop-color: rgb(246, 246, 245); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(236, 236, 233); stop-opacity: 1;" offset="0.49916622" id="stop6074-8-2-5"/>
      <stop style="stop-color: rgb(154, 154, 141); stop-opacity: 1;" offset="0.76190478" id="stop6076-5-8-9"/>
      <stop id="stop6078-20-7-1" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient id="linearGradient6082-6-5-4">
      <stop id="stop6084-1-0-1" offset="0" style="stop-color: rgb(246, 246, 245); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(236, 236, 233); stop-opacity: 1;" offset="0.53798574" id="stop6086-7-9-0"/>
      <stop style="stop-color: rgb(151, 151, 138); stop-opacity: 1;" offset="0.85428226" id="stop6088-8-2-4"/>
      <stop id="stop6090-1-5-1" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient10599-4-0-8">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop10601-9-3-6-7"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop10603-3-0-1"/>
    </linearGradient>
    <filter inkscape:collect="always" id="filter10631-9-5-7">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.5906498" id="feGaussianBlur10633-6-0-3"/>
    </filter>
    <radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.19945, 0, 0, 0.443797, -4.9563, 21.6411)" r="20.203051" fy="38.908627" fx="24.849752" cy="38.908627" cx="24.849752" id="radialGradient26127-5-4-5-0" xlink:href="#linearGradient26121-3-6-9-3" inkscape:collect="always"/>
    <linearGradient id="linearGradient26121-3-6-9-3" inkscape:collect="always">
      <stop id="stop26123-4-5-5-4" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop26125-3-2-8-9" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.37, 0, 24.5124)" r="20.203051" fy="38.908627" fx="24.849752" cy="38.908627" cx="24.849752" id="radialGradient26119-5-4-5-6" xlink:href="#linearGradient26113-9-9-8-7" inkscape:collect="always"/>
    <linearGradient id="linearGradient26113-9-9-8-7" inkscape:collect="always">
      <stop id="stop26115-7-9-8-2" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop26117-3-9-8-9" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <radialGradient r="29.993349" fy="15.716079" fx="18.247644" cy="15.716079" cx="18.247644" gradientTransform="matrix(0.453235, 0, 0, 0.45197, 115.886, 33.5572)" gradientUnits="userSpaceOnUse" id="radialGradient26129-8-9-5-2" xlink:href="#linearGradient3962-1-1-2-0-5" inkscape:collect="always"/>
    <linearGradient id="linearGradient3962-1-1-2-0-5">
      <stop style="stop-color: rgb(211, 233, 255); stop-opacity: 1;" offset="0.0000000" id="stop3964-5-0-5-6-6"/>
      <stop style="stop-color: rgb(243, 249, 255); stop-opacity: 1;" offset="0.15517241" id="stop4134-0-8-5-7-2"/>
      <stop style="stop-color: rgb(55, 100, 151); stop-opacity: 1;" offset="0.63108921" id="stop4346-9-1-4-2-6"/>
      <stop id="stop6610-2-92-7-9" offset="0.81554461" style="stop-color: rgb(39, 62, 93); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(82, 110, 165); stop-opacity: 1;" offset="1" id="stop3966-7-2-4-6-3"/>
    </linearGradient>
    <linearGradient y2="46.077827" x2="144.42656" y1="-41.407383" x1="145.16281" gradientTransform="matrix(0.0848895, 0, 0, 0.0852283, 116.416, 34.3219)" gradientUnits="userSpaceOnUse" id="linearGradient26131-4-7-7-6" xlink:href="#linearGradient10586-8-2-0-0-9" inkscape:collect="always"/>
    <linearGradient inkscape:collect="always" id="linearGradient10586-8-2-0-0-9">
      <stop style="stop-color: rgb(172, 197, 237); stop-opacity: 1;" offset="0" id="stop10588-8-7-7-2-6"/>
      <stop style="stop-color: rgb(25, 59, 110); stop-opacity: 1;" offset="1" id="stop10590-3-6-1-9-1"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26137-8-4-5-3" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <linearGradient inkscape:collect="always" id="linearGradient6868-5-1-2-2">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop6870-84-0-0-4"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop6872-0-2-8-8"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26135-2-0-6-1" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26133-2-9-8-0" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26143-9-8-2-6" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26141-8-8-8-8" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26139-2-6-5-4" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26149-6-8-5-2" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26147-8-3-7-1" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26145-9-0-2-9" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26155-1-40-0-4" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26153-3-2-9-7" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26151-3-0-7-6" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26161-6-0-0-3" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26159-2-29-4-3" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26157-2-9-7-3" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26167-9-6-8-7" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26165-0-6-4-4" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0.656735, 2.13614)" gradientUnits="userSpaceOnUse" id="radialGradient26163-4-6-5-8" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26173-1-0-9-2" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26171-8-7-3-0" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26169-7-8-2-0" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26179-4-6-3-0" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26177-2-7-0-1" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26175-3-8-1-4" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26185-6-5-1-6" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26183-9-8-2-3" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26181-9-56-3-2" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26191-6-8-2-8" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26189-7-78-9-6" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26187-9-7-5-6" xlink:href="#linearGradient6868-5-1-2-2" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26197-1-8-2-4" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <linearGradient id="linearGradient5911-7-9-7-5">
      <stop style="stop-color: rgb(246, 246, 245); stop-opacity: 1;" offset="0" id="stop5913-2-4-3-7"/>
      <stop id="stop5921-5-6-1-7" offset="0.38095239" style="stop-color: rgb(236, 236, 233); stop-opacity: 1;"/>
      <stop id="stop5919-6-2-2-1" offset="0.76190478" style="stop-color: rgb(197, 197, 190); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="1" id="stop5915-2-6-3-7"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26195-0-2-8-3" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.656409" fx="23.931307" cy="14.656409" cx="23.931307" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26193-41-2-7-5" xlink:href="#linearGradient6070-954-1-3-1" inkscape:collect="always"/>
    <linearGradient id="linearGradient6070-954-1-3-1">
      <stop id="stop6072-23-2-0-2" offset="0" style="stop-color: rgb(246, 246, 245); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(236, 236, 233); stop-opacity: 1;" offset="0.49916622" id="stop6074-8-4-7-1"/>
      <stop style="stop-color: rgb(154, 154, 141); stop-opacity: 1;" offset="0.76190478" id="stop6076-5-5-2-8"/>
      <stop id="stop6078-20-3-0-0" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26203-1-5-9-4" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26201-4-11-6-3" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26199-8-1-9-6" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26209-8-1-7-3" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26207-8-9-2-7" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26205-3-0-4-4" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26215-3-0-8-8" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26213-6-8-5-6" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26211-4-0-7-2" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26221-2-5-2-7" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26219-3-6-7-0" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26217-1-5-8-0" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26227-4-2-5-8" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26225-6-6-0-1" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="17.350956" fx="24.735497" cy="17.350956" cx="24.735497" gradientTransform="matrix(1.38067, 0, 0, 1.28624, -9.41958, -3.29356)" gradientUnits="userSpaceOnUse" id="radialGradient26223-1-5-3-0" xlink:href="#linearGradient6082-6-0-7-9" inkscape:collect="always"/>
    <linearGradient id="linearGradient6082-6-0-7-9">
      <stop id="stop6084-1-3-1-1" offset="0" style="stop-color: rgb(246, 246, 245); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(236, 236, 233); stop-opacity: 1;" offset="0.53798574" id="stop6086-7-5-0-0"/>
      <stop style="stop-color: rgb(151, 151, 138); stop-opacity: 1;" offset="0.85428226" id="stop6088-8-1-2-6"/>
      <stop id="stop6090-1-9-9-4" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26233-4-3-4-6" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26231-1-3-5-9" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26229-1-8-1-1" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26239-9-5-7-6" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26237-5-8-3-0" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26235-5-9-0-9" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26245-3-9-0-9" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26243-3-2-6-9" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26241-2-6-9-2" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26251-7-4-2-7" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26249-3-8-6-9" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26247-3-9-8-6" xlink:href="#linearGradient5911-7-9-7-5" inkscape:collect="always"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient10599-4-9-5-8" id="radialGradient33818-7" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.96261, 0, 0, 1.09426, -74.6625, -21.1211)" cx="77.5625" cy="152.51079" fx="77.5625" fy="152.51079" r="13.03125"/>
    <linearGradient inkscape:collect="always" id="linearGradient10599-4-9-5-8">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop10601-9-3-0-7-4"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop10603-3-6-3-6"/>
    </linearGradient>
    <filter inkscape:collect="always" id="filter10631-9-1-2-6">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.5906498" id="feGaussianBlur10633-6-2-6-9"/>
    </filter>
    <radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.60539, -2.53957e-08, 1.92822e-08, 1.21892, -73.8387, 49.6923)" r="92.503242" fy="0.56299913" fx="121.75325" cy="0.56299913" cx="121.75325" id="radialGradient18-paper-sheet-orig-7" xlink:href="#linearGradient2-paper-sheet-orig-5" inkscape:collect="always"/>
    <linearGradient id="linearGradient2-paper-sheet-orig-5" inkscape:collect="always">
      <stop id="stop4-paper-sheet-orig-9" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop5-paper-sheet-orig-5" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.19945, 0, 0, 0.443797, -4.9563, 21.6411)" r="20.203051" fy="38.908627" fx="24.849752" cy="38.908627" cx="24.849752" id="radialGradient26127-5-1" xlink:href="#linearGradient26121-3-9" inkscape:collect="always"/>
    <linearGradient id="linearGradient26121-3-9" inkscape:collect="always">
      <stop id="stop26123-4-6" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop26125-3-0" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.37, 0, 24.5124)" r="20.203051" fy="38.908627" fx="24.849752" cy="38.908627" cx="24.849752" id="radialGradient26119-5-0" xlink:href="#linearGradient26113-9-6" inkscape:collect="always"/>
    <linearGradient id="linearGradient26113-9-6" inkscape:collect="always">
      <stop id="stop26115-7-4" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop26117-3-1" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <radialGradient r="29.993349" fy="15.716079" fx="18.247644" cy="15.716079" cx="18.247644" gradientTransform="matrix(0.453235, 0, 0, 0.45197, 115.886, 33.5572)" gradientUnits="userSpaceOnUse" id="radialGradient26129-8-7" xlink:href="#linearGradient3962-1-1-23" inkscape:collect="always"/>
    <linearGradient id="linearGradient3962-1-1-23">
      <stop style="stop-color: rgb(211, 233, 255); stop-opacity: 1;" offset="0.0000000" id="stop3964-5-0-2"/>
      <stop style="stop-color: rgb(243, 249, 255); stop-opacity: 1;" offset="0.15517241" id="stop4134-0-8-1"/>
      <stop style="stop-color: rgb(55, 100, 151); stop-opacity: 1;" offset="0.63108921" id="stop4346-9-1-2"/>
      <stop id="stop6610-2-7" offset="0.81554461" style="stop-color: rgb(39, 62, 93); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(82, 110, 165); stop-opacity: 1;" offset="1" id="stop3966-7-2-1"/>
    </linearGradient>
    <linearGradient y2="46.077827" x2="144.42656" y1="-41.407383" x1="145.16281" gradientTransform="matrix(0.0848895, 0, 0, 0.0852283, 116.416, 34.3219)" gradientUnits="userSpaceOnUse" id="linearGradient26131-4-1" xlink:href="#linearGradient10586-8-2-7" inkscape:collect="always"/>
    <linearGradient inkscape:collect="always" id="linearGradient10586-8-2-7">
      <stop style="stop-color: rgb(172, 197, 237); stop-opacity: 1;" offset="0" id="stop10588-8-7-8"/>
      <stop style="stop-color: rgb(25, 59, 110); stop-opacity: 1;" offset="1" id="stop10590-3-6-9"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient6868-5-5">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop6870-84-74"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop6872-0-3"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26133-2-5" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26139-2-1" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26145-9-2" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26151-3-4" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26157-2-6" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0.656735, 2.13614)" gradientUnits="userSpaceOnUse" id="radialGradient26163-4-8" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26169-7-85" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26175-3-81" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26181-9-54" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="22.999987" fx="24.881451" cy="22.999987" cx="24.881451" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" gradientUnits="userSpaceOnUse" id="radialGradient26187-9-3" xlink:href="#linearGradient6868-5-5" inkscape:collect="always"/>
    <linearGradient id="linearGradient5911-7-1">
      <stop style="stop-color: rgb(246, 246, 245); stop-opacity: 1;" offset="0" id="stop5913-2-1"/>
      <stop id="stop5921-5-5" offset="0.38095239" style="stop-color: rgb(236, 236, 233); stop-opacity: 1;"/>
      <stop id="stop5919-6-4" offset="0.76190478" style="stop-color: rgb(197, 197, 190); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="1" id="stop5915-2-5"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="14.656409" fx="23.931307" cy="14.656409" cx="23.931307" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26193-41-0" xlink:href="#linearGradient6070-954-2" inkscape:collect="always"/>
    <linearGradient id="linearGradient6070-954-2">
      <stop id="stop6072-23-6" offset="0" style="stop-color: rgb(246, 246, 245); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(236, 236, 233); stop-opacity: 1;" offset="0.49916622" id="stop6074-8-5"/>
      <stop style="stop-color: rgb(154, 154, 141); stop-opacity: 1;" offset="0.76190478" id="stop6076-5-1"/>
      <stop id="stop6078-20-9" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26199-8-13" xlink:href="#linearGradient5911-7-1" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26205-3-7" xlink:href="#linearGradient5911-7-1" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26211-4-3" xlink:href="#linearGradient5911-7-1" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26217-1-9" xlink:href="#linearGradient5911-7-1" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="17.350956" fx="24.735497" cy="17.350956" cx="24.735497" gradientTransform="matrix(1.38067, 0, 0, 1.28624, -9.41958, -3.29356)" gradientUnits="userSpaceOnUse" id="radialGradient26223-1-2" xlink:href="#linearGradient6082-6-00" inkscape:collect="always"/>
    <linearGradient id="linearGradient6082-6-00">
      <stop id="stop6084-1-5" offset="0" style="stop-color: rgb(246, 246, 245); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(236, 236, 233); stop-opacity: 1;" offset="0.53798574" id="stop6086-7-7"/>
      <stop style="stop-color: rgb(151, 151, 138); stop-opacity: 1;" offset="0.85428226" id="stop6088-8-4"/>
      <stop id="stop6090-1-0" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
    </linearGradient>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26229-1-5" xlink:href="#linearGradient5911-7-1" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26235-5-6" xlink:href="#linearGradient5911-7-1" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26241-2-1" xlink:href="#linearGradient5911-7-1" inkscape:collect="always"/>
    <radialGradient r="19.18985" fy="14.213541" fx="24.137535" cy="14.213541" cx="24.137535" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" gradientUnits="userSpaceOnUse" id="radialGradient26247-3-2" xlink:href="#linearGradient5911-7-1" inkscape:collect="always"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient10599-4-1" id="radialGradient29539-9" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.96261, 0, 0, 1.09426, -74.6625, -21.1211)" cx="77.5625" cy="152.51079" fx="77.5625" fy="152.51079" r="13.03125"/>
    <linearGradient inkscape:collect="always" id="linearGradient10599-4-1">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop10601-9-3-68"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop10603-3-2"/>
    </linearGradient>
    <filter inkscape:collect="always" id="filter10631-9-19">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.5906498" id="feGaussianBlur10633-6-00"/>
    </filter>
    <linearGradient id="linearGradient4114-0-9" inkscape:collect="always">
      <stop id="stop4116-2-4" offset="0" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"/>
      <stop id="stop4118-3-7" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <filter height="1.273482" y="-0.13674098" width="1.1011883" x="-0.050594162" id="filter34615-9" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur34617-7" stdDeviation="0.85179702" inkscape:collect="always"/>
    </filter>
    <linearGradient id="linearGradient3962-0-2">
      <stop id="stop3964-8-7" offset="0.0000000" style="stop-color: rgb(211, 233, 255); stop-opacity: 1;"/>
      <stop id="stop4134-4-4" offset="0.15517241" style="stop-color: rgb(211, 233, 255); stop-opacity: 1;"/>
      <stop id="stop4346-0-9" offset="0.63108921" style="stop-color: rgb(64, 116, 174); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(59, 94, 141); stop-opacity: 1;" offset="0.81554461" id="stop6610-7-8"/>
      <stop id="stop3966-3-8" offset="1" style="stop-color: rgb(82, 110, 165); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient id="linearGradient6598-7">
      <stop style="stop-color: rgb(56, 106, 181); stop-opacity: 1;" offset="0" id="stop6606-5"/>
      <stop id="stop6608-0" offset="0.75" style="stop-color: rgb(67, 102, 153); stop-opacity: 1;"/>
      <stop id="stop6602-7" offset="1" style="stop-color: rgb(42, 62, 92); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient id="linearGradient6694-3" inkscape:collect="always">
      <stop id="stop6696-5" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop6698-0" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient28860-5-0" inkscape:collect="always">
      <stop id="stop28862-7-6" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop28864-3-0" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <filter height="1.2238944" y="-0.11194715" width="1.127791" x="-0.063895531" id="filter28868-5-7" inkscape:collect="always">
      <feGaussianBlur id="feGaussianBlur28870-6-4" stdDeviation="3.7621822" inkscape:collect="always"/>
    </filter>
    <radialGradient r="92.503242" fy="0.56299913" fx="121.75325" cy="0.56299913" cx="121.75325" gradientTransform="matrix(1.60539, -2.53957e-08, 1.92822e-08, 1.21892, 326.161, 49.6923)" gradientUnits="userSpaceOnUse" id="radialGradient13700-4" xlink:href="#linearGradient2-paper-sheet-orig-5" inkscape:collect="always"/>
    <linearGradient id="linearGradient3519-9-3">
      <stop id="stop3521-8-8" offset="0.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop3523-3-6" offset="1.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient3531-9-1">
      <stop id="stop3533-3-6" offset="0.0000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 0.0927835;"/>
      <stop id="stop3535-7-3" offset="1.0000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient3519-9-8">
      <stop id="stop3521-8-80" offset="0.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop3523-3-4" offset="1.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient id="linearGradient3531-9-8">
      <stop id="stop3533-3-4" offset="0.0000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 0.149;"/>
      <stop id="stop3535-7-2" offset="1.0000000" style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient17145-9">
      <stop style="stop-color: rgb(127, 141, 146); stop-opacity: 1;" offset="0" id="stop17147-32"/>
      <stop style="stop-color: rgb(116, 131, 136); stop-opacity: 0;" offset="1" id="stop17149-8"/>
    </linearGradient>
    <linearGradient id="linearGradient3519-9-8-4">
      <stop id="stop3521-8-80-9" offset="0.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop3523-3-4-7" offset="1.0000000" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient17844" id="linearGradient17839" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-0.419663, 0, 0, 0.938943, 330.911, 124.967)" x1="57.643562" y1="8.6012535" x2="39.081673" y2="20.9233"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3519-9-8-4" id="linearGradient17842" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.41192, 0, 0, 0.921619, 301.081, 125.079)" x1="57.643562" y1="8.6012535" x2="34.242393" y2="21.033955"/>
    <linearGradient inkscape:collect="always" id="linearGradient2065-5">
      <stop style="stop-color: rgb(85, 87, 83);" offset="0" id="stop2067-7"/>
      <stop style="stop-color: rgb(252, 175, 62);" offset="1" id="stop2069-6"/>
    </linearGradient>
    <linearGradient id="linearGradient4928-0">
      <stop id="stop4930-5" offset="0" style="stop-color: rgb(252, 233, 79); stop-opacity: 1;"/>
      <stop id="stop4932-4" offset="1" style="stop-color: rgb(252, 233, 79); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient4616-1">
      <stop style="stop-color: rgb(46, 52, 54); stop-opacity: 1;" offset="0" id="stop4618-9"/>
      <stop style="stop-color: rgb(46, 52, 54); stop-opacity: 0;" offset="1" id="stop4620-2"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient2065-5" id="linearGradient6367-9" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.22885, 0, 0, 0.20994, -28.2475, 265.56)" x1="-11.986486" y1="5.9776669" x2="-11.986486" y2="29.726542"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4928-0" id="radialGradient6369-6" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.22885, 0, 0, 0.201237, -31.2876, 265.391)" cx="-6.0070167" cy="32.837029" fx="-6.0070167" fy="32.837029" r="9.90625"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4616-1" id="linearGradient6371-7" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.22885, 0, 0, 0.45994, -36.4861, 256.81)" x1="25.355263" y1="34.006802" x2="25.355263" y2="32.409008"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient2065-5" id="linearGradient6916-96" gradientUnits="userSpaceOnUse" gradientTransform="translate(138.477, -54.4383)" x1="-11.986486" y1="13.122552" x2="-11.986486" y2="29.726542"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4928-0" id="radialGradient6918-8" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, -1.48718e-08, 1.42553e-08, 0.958546, 125.193, -52.8623)" cx="-6.0070167" cy="32.837029" fx="-6.0070167" fy="32.837029" r="9.90625"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient2065-5" id="linearGradient8441-9" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.0869951, 0, 0, 0.164367, 330.068, 525.626)" x1="-11.986486" y1="5.9776669" x2="-11.986486" y2="29.726542"/>
    <clipPath clipPathUnits="userSpaceOnUse" id="clipPath4719-3">
      <rect style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none;" id="rect4721-9" width="92" height="56" x="84" y="428"/>
    </clipPath>
    <filter inkscape:collect="always" id="filter4709-1" x="-0.30265486" width="1.6053097" y="-0.30265486" height="1.6053097">
      <feGaussianBlur inkscape:collect="always" stdDeviation="3.5333828" id="feGaussianBlur4711-29"/>
    </filter>
    <filter inkscape:collect="always" id="filter4608-6">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.84057318" id="feGaussianBlur4610-1"/>
    </filter>
    <filter inkscape:collect="always" id="filter4616-8" x="-0.11114702" width="1.222294" y="-0.20272098" height="1.405442">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.83939158" id="feGaussianBlur4618-0"/>
    </filter>
    <linearGradient inkscape:collect="always" id="linearGradient4610-7">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop4612-57"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop4614-0"/>
    </linearGradient>
    <clipPath clipPathUnits="userSpaceOnUse" id="clipPath4396-4">
      <path style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 79.40625,432.78125 C 84.35836,435.9375 89.50398,435.14129 93.21875,439.0625 C 93.42728,439.28262 93.63418,439.47585 93.84375,439.6875 C 92.93148,439.7007 90.48202,439.04279 88.03125,439.46875 C 85.99126,439.8233 84.0052,438.91442 81.59375,440.5 C 84.40235,439.32304 86.65247,440.08343 88.90625,439.78125 C 90.66327,439.54567 93.76577,440.38699 95.75,441.53125 C 98.94912,444.45129 101.81811,446.53467 102.40625,448.5625 C 103.15781,451.15375 103.33687,458.73953 103.375,461.875 C 103.03523,461.60098 102.71438,461.3105 102.40625,461 C 101.71719,460.28679 101.05859,459.52221 100.25,458.9375 C 99.47302,458.37407 98.66733,457.85646 98.03125,457.125 C 97.36639,456.2281 96.58416,455.42794 95.84375,454.59375 C 95.13783,453.87137 94.38729,453.19704 93.71875,452.4375 C 93.10321,451.68009 92.38261,451.01431 91.53125,450.53125 C 90.75544,450.05853 89.94845,449.52798 89,449.5625 C 88.52549,449.4834 88.04113,449.37123 87.6875,449.03125 C 87.08981,448.5895 86.36318,448.31788 85.625,448.25 L 85.75,448.3125 C 86.6609,448.55731 87.43179,449.134 88.15625,449.71875 C 88.98089,450.12973 90.02647,450.0599 90.6875,450.78125 C 91.39206,451.52533 92.44815,451.92482 92.96875,452.84375 C 93.17817,453.19398 93.41849,453.50833 93.6875,453.8125 C 92.98419,454.09146 92.30842,455.07451 91.8125,455.40625 C 90.51443,456.27461 87.20331,452.65873 84.3125,453 C 86.39794,452.9531 90.06767,455.50843 90.78125,455.71875 C 91.33961,455.88334 89.11486,457.82232 87.40625,458.75 C 88.92369,458.31862 91.38352,456.23277 91.84375,456.125 C 92.42146,455.98973 93.00588,454.17774 94.28125,454.4375 C 94.54812,454.71982 94.82109,455.01005 95.0625,455.3125 C 95.75553,456.09282 96.44827,456.85279 97.03125,457.71875 C 97.88287,458.78052 98.98599,459.59662 99.90625,460.59375 C 100.65335,461.37405 101.30131,462.2395 102,463.0625 C 102.93323,464.18737 103.87928,465.31263 104.8125,466.4375 C 105.23394,467.31017 105.84424,468.04786 106.46875,468.78125 C 107.13438,469.54124 107.77832,470.33906 108.28125,471.21875 C 108.88034,472.11013 109.39475,473.06016 109.78125,474.0625 C 110.08952,475.01078 110.2652,475.98395 110.40625,476.96875 C 110.59676,478.00577 110.75497,479.06785 110.65625,480.125 C 110.51047,481.6965 110.34974,483.27119 110.21875,484.84375 C 110.19705,485.62805 110.0974,486.4651 110.46875,487.1875 C 111.3545,487.74815 112.41276,487.87925 113.4375,487.9375 C 114.30341,487.9139 115.16398,487.71289 115.90625,487.25 C 116.22529,487.08769 116.54017,486.75522 116.375,486.375 C 116.18833,485.35755 115.97205,484.34358 115.875,483.3125 C 115.7406,482.15979 115.61526,481.00148 115.53125,479.84375 C 115.43225,478.74866 115.38278,477.66118 115.34375,476.5625 C 115.37595,475.56052 115.42045,474.52659 115.71875,473.5625 C 116.04346,472.62027 116.37069,471.37903 116.96875,470.59375 C 117.81959,469.55094 119.08495,469.07751 120.0625,468.15625 C 120.88665,467.43887 121.75113,466.76643 122.53125,466 C 123.29014,465.28697 124.16481,463.82901 124.84375,463.03125 C 125.60615,462.22479 126.33367,462.13271 127.0625,461.40625 C 127.25219,461.27652 127.45016,461.14839 127.65625,461.03125 C 128.1854,460.76333 128.69732,460.45533 129.375,460.40625 C 130.07529,460.44595 130.76899,460.21617 131.46875,460.31255 C 132.16882,460.36845 132.49808,461.04151 133.25,460.9688 C 133.91535,460.84559 134.60216,460.84859 135.28125,460.9063 C 135.06584,460.8228 134.83521,460.75185 134.59375,460.7188 C 134.10394,460.6284 133.61007,460.7946 133.125,460.7501 C 132.49293,460.6961 132.2941,460.19371 131.75,460.03135 C 131.08758,459.91547 130.39056,460.13263 129.71875,460.09385 C 129.18055,460.02015 128.66347,460.13935 128.125,460.12515 C 128.88909,459.00185 129.56823,457.67791 130.375,456.75015 C 131.7148,455.50543 133.36196,454.26793 134.40625,453.7814 C 135.79814,453.13291 136.79084,453.93959 138.625,453.0314 C 136.58522,453.89206 135.34448,452.75414 132.9375,454.1564 C 131.61116,454.91882 130.72504,455.34296 129.96875,455.87515 C 128.38064,454.53009 129.26424,449.81349 127.875,447.0939 C 127.9577,446.9981 128,446.88658 128,446.75015 C 129.54418,446.09187 131.85538,446.12436 133.34375,446.4064 C 135.15316,446.74925 134.48657,447.10361 135.40625,447.1564 C 136.21455,447.2028 137.61963,447.9899 138.75,448.43765 C 139.97261,448.92193 140.28834,448.41655 142.59375,449.6564 C 140.93851,448.53589 139.24462,448.52417 139,448.25015 C 139.7457,445.82071 142.79609,445.36279 144.0625,443.06265 C 142.29815,445.65534 140.00951,445.4025 138.78125,448.1564 C 137.55471,447.81233 136.33864,447.26342 135.71875,446.87515 C 137.21668,445.00035 134.03224,439.68551 133.9375,437.87515 C 133.82691,440.28824 136.76825,443.7222 135.1875,446.68765 C 132.01969,445.42898 129.43726,445.89879 127.75,446.2814 C 127.6872,446.2389 127.60897,446.201 127.53125,446.1877 C 126.14638,444.14657 126.57841,442.64204 125.03125,440.40645 C 125.89106,442.44162 126.062,444.62099 126.90625,446.3752 C 126.92635,446.4171 126.94935,446.4579 126.96875,446.5002 C 126.93015,446.5751 126.90625,446.66022 126.90625,446.7502 C 126.90625,446.97661 127.05374,447.16714 127.25,447.2502 C 128.17516,449.97097 127.83242,453.38256 128.0625,455.90645 C 125.72301,452.06722 122.90632,452.00418 121.28125,445.65645 C 122.63031,453.42587 128.70949,454.12013 127.15625,459.0002 C 125.96704,460.23945 124.03903,462.33617 123.125,463.2502 C 122.36215,463.92888 121.52919,464.51855 120.6875,465.09395 C 119.81107,465.74784 119.89061,466.22714 118.96875,466.8127 C 118.28142,467.27533 116.72067,467.77458 116.125,468.2502 C 115.34586,468.87231 114.91464,469.71992 114.25,470.5627 C 113.89583,471.04187 113.01042,471.17728 112.6875,471.8127 C 112.35856,470.48031 111.40128,468.00387 109.59375,466.96895 C 108.70034,466.45741 107.6989,465.53025 106.96875,464.7502 C 106.80631,464.58034 106.64739,464.43292 106.46875,464.28145 C 105.22725,461.28078 105.09367,457.57239 104.8125,454.21895 C 104.9095,454.12675 104.98679,454.02819 105.09375,453.9377 C 105.63043,453.53271 106.12516,453.07838 107.03125,452.8127 C 108.03486,452.61597 108.67377,453.14805 109.71875,453.0002 C 110.73409,452.81748 111.5708,451.93567 112.5625,451.6252 C 113.39629,451.29982 114.63748,451.48697 115.625,451.3127 C 114.47692,451.3687 113.35991,451.16471 112.25,451.5002 C 111.33064,451.66213 110.78388,452.61675 109.90625,452.65645 C 108.89865,452.77515 108.27577,452.24957 107.3125,452.4377 C 106.50907,452.55171 105.85335,452.83495 105.09375,453.0002 C 104.99775,452.9391 104.68085,453.0498 104.6875,452.9377 C 104.6259,452.37193 104.55937,451.81025 104.46875,451.28145 C 104.40875,447.38473 108.74221,448.7113 109.625,448.03145 C 110.20633,447.58377 113.47953,444.982 116.375,444.3752 C 112.93983,444.99484 109.47572,447.61125 109.8125,446.78145 C 110.24289,445.72102 110.57285,438.86344 112.65625,436.40645 C 109.42367,439.54423 110.71881,447.00403 108.375,447.71895 C 107.22567,448.06953 104.42684,447.70835 103.9375,449.09395 C 103.83261,448.7951 103.72546,448.52137 103.59375,448.2502 C 102.74532,446.50345 100.38568,444.58122 97.875,442.40645 C 97.62781,441.18314 99.58358,440.79292 99.78125,440.28145 C 99.93421,439.88568 102.20287,437.89262 102.78125,436.59395 C 101.69946,438.02017 99.60214,439.81693 99.5,439.3127 C 99.36947,438.6683 97.26817,435.23573 97.53125,433.40645 C 96.89752,435.91966 100.0437,439.1175 99.0625,440.1877 C 98.65818,440.6287 97.49423,441.18837 97.25,441.84395 C 96.03685,440.77819 94.83072,439.66356 93.71875,438.4377 C 90.4677,434.85365 87.97325,436.40596 79.40625,432.78145 L 79.40625,432.78125 z" id="path4398-9"/>
    </clipPath>
    <filter inkscape:collect="always" id="filter4412-3">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.5940625" id="feGaussianBlur4414-08"/>
    </filter>
    <linearGradient id="linearGradient7289-5">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop7291-9"/>
      <stop id="stop7297-3" offset="0.5" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="1" id="stop7293-5"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" id="linearGradient4621-8">
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0" id="stop4623-2"/>
      <stop style="stop-color: rgb(0, 0, 0); stop-opacity: 0;" offset="1" id="stop4625-3"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4616-1" id="linearGradient34968" gradientUnits="userSpaceOnUse" gradientTransform="translate(102.477, -54.4383)" x1="25.355263" y1="34.006802" x2="25.355263" y2="32.409008"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient2065-5" id="linearGradient35202" gradientUnits="userSpaceOnUse" gradientTransform="translate(138.477, -54.4383)" x1="-11.986486" y1="13.122552" x2="-11.986486" y2="29.726542"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4928-0" id="radialGradient35204" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, -1.48718e-08, 1.42553e-08, 0.958546, 125.193, -52.8623)" cx="-6.0070167" cy="32.837029" fx="-6.0070167" fy="32.837029" r="9.90625"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4616-1" id="linearGradient35206" gradientUnits="userSpaceOnUse" gradientTransform="translate(102.477, -54.4383)" x1="25.355263" y1="34.006802" x2="25.355263" y2="32.409008"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient2065-5" id="linearGradient35208" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.62654, 0, 0, 2.66667, 161.483, 363.696)" x1="-11.986486" y1="11.500009" x2="-11.986486" y2="28.976542"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4616-1" id="linearGradient35210" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.70588, 0, 0, 3.49999, 65.0589, 335.863)" x1="25.355263" y1="33.357342" x2="25.355263" y2="31.76339"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4610-7" id="linearGradient35212" gradientUnits="userSpaceOnUse" gradientTransform="translate(0, -25.6369)" x1="145" y1="481.125" x2="149.75" y2="492.875"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient7289-5" id="linearGradient35214" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.02174, 0, 0, 1.03125, -2.82609, -48.0119)" x1="110" y1="533" x2="58.687363" y2="371.81738"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4621-8" id="radialGradient35216" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.20934, 0, 0, 0.190247, -287.214, 357.397)" cx="130" cy="536.62244" fx="130" fy="536.62244" r="46"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6582" id="linearGradient6588" x1="181.99336" y1="769.75" x2="185" y2="782.75" gradientUnits="userSpaceOnUse" gradientTransform="translate(0, 12)"/>
    <linearGradient inkscape:collect="always" id="linearGradient6582">
      <stop style="stop-color: rgb(114, 159, 207); stop-opacity: 1;" offset="0" id="stop6584"/>
      <stop style="stop-color: rgb(114, 159, 207); stop-opacity: 0;" offset="1" id="stop6586"/>
    </linearGradient>
    <filter inkscape:collect="always" id="filter6920">
      <feGaussianBlur inkscape:collect="always" stdDeviation="1.0452761" id="feGaussianBlur6922"/>
    </filter>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5635" id="linearGradient6479" gradientUnits="userSpaceOnUse" gradientTransform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1409.61)" x1="65.712654" y1="403.20453" x2="75.836227" y2="386.17438"/>
    <linearGradient id="linearGradient5635">
      <stop id="stop5637" offset="0" style="stop-color: rgb(114, 159, 207); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(114, 159, 207); stop-opacity: 0.886905;" offset="0.5" id="stop6496"/>
      <stop id="stop5639" offset="1" style="stop-color: rgb(114, 159, 207); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5635" id="linearGradient6487" gradientUnits="userSpaceOnUse" gradientTransform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1409.61)" x1="75.211121" y1="382.73276" x2="79.066124" y2="396.7692"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5635" id="linearGradient6489" gradientUnits="userSpaceOnUse" gradientTransform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1409.61)" x1="68.846146" y1="403.70074" x2="80.923706" y2="384.40115"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5635" id="linearGradient6492" gradientUnits="userSpaceOnUse" gradientTransform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1409.61)" x1="80.030281" y1="381.58017" x2="84.20182" y2="394.28671"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5635" id="linearGradient6494" gradientUnits="userSpaceOnUse" gradientTransform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1409.61)" x1="81.862167" y1="401.52859" x2="84.851028" y2="385.99707"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5635" id="linearGradient6462" gradientUnits="userSpaceOnUse" x1="84.754616" y1="384.19565" x2="86.97216" y2="390.20837" gradientTransform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1409.61)"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6625" id="linearGradient6631" x1="72.115753" y1="375.90176" x2="72.115753" y2="389.50372" gradientUnits="userSpaceOnUse"/>
    <linearGradient id="linearGradient6625">
      <stop style="stop-color: rgb(233, 185, 110); stop-opacity: 1;" offset="0" id="stop6627"/>
      <stop style="stop-color: rgb(233, 185, 110); stop-opacity: 0;" offset="1" id="stop6629"/>
    </linearGradient>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6524" id="radialGradient6989" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.04818, -0.465624, 0.112284, 0.417653, -126.859, 263.971)" cx="78.965324" cy="384.21252" fx="78.965324" fy="384.21252" r="8.0924559"/>
    <linearGradient inkscape:collect="always" id="linearGradient6524">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop6526"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop6528"/>
    </linearGradient>
    <filter inkscape:collect="always" id="filter7025" x="-0.04652489" width="1.0930498" y="-0.14551346" height="1.2910269">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.31390401" id="feGaussianBlur7027"/>
    </filter>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6498" id="linearGradient6485" gradientUnits="userSpaceOnUse" x1="75.209518" y1="386.5" x2="91.407234" y2="397.91855"/>
    <linearGradient id="linearGradient6498">
      <stop style="stop-color: rgb(52, 101, 164); stop-opacity: 1;" offset="0" id="stop6500"/>
      <stop id="stop6502" offset="0.47533783" style="stop-color: rgb(158, 189, 222); stop-opacity: 1;"/>
      <stop style="stop-color: rgb(114, 159, 207); stop-opacity: 0;" offset="1" id="stop6504"/>
    </linearGradient>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6524" id="radialGradient6530" cx="78.965324" cy="384.21252" fx="78.965324" fy="384.21252" r="8.0924559" gradientTransform="matrix(2.04818, -0.465624, 0.112284, 0.417653, -126.859, 263.971)" gradientUnits="userSpaceOnUse"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6539" id="radialGradient6547" cx="197.375" cy="775.5" fx="197.375" fy="775.5" r="2.375" gradientUnits="userSpaceOnUse"/>
    <linearGradient inkscape:collect="always" id="linearGradient6539">
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="0" id="stop6541"/>
      <stop style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" offset="1" id="stop6543"/>
    </linearGradient>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6539" id="radialGradient6545" cx="218.25" cy="775.5" fx="218.25" fy="775.5" r="2.125" gradientUnits="userSpaceOnUse"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6539" id="radialGradient6549" cx="166.25" cy="786.875" fx="166.25" fy="786.875" r="3.375" gradientUnits="userSpaceOnUse"/>
    <filter inkscape:collect="always" id="filter7361" x="-0.072051823" width="1.1441036" y="-0.2253527" height="1.4507054">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.48613453" id="feGaussianBlur7363"/>
    </filter>
    <filter inkscape:collect="always" id="filter6620">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.18519411" id="feGaussianBlur6622"/>
    </filter>
    <filter inkscape:collect="always" id="filter7183">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.15156158" id="feGaussianBlur7185"/>
    </filter>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6341" id="linearGradient4664" gradientUnits="userSpaceOnUse" gradientTransform="translate(-1)" x1="81.5" y1="370" x2="83.5" y2="369.5"/>
    <linearGradient id="linearGradient6341">
      <stop id="stop6343" offset="0" style="stop-color: rgb(114, 159, 207); stop-opacity: 1;"/>
      <stop id="stop6345" offset="1" style="stop-color: rgb(114, 159, 207); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6333" id="linearGradient4666" gradientUnits="userSpaceOnUse" gradientTransform="translate(-1)" x1="81.5" y1="368.5" x2="83" y2="368"/>
    <linearGradient id="linearGradient6333">
      <stop id="stop6335" offset="0" style="stop-color: rgb(32, 74, 135); stop-opacity: 1;"/>
      <stop id="stop6337" offset="1" style="stop-color: rgb(32, 74, 135); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5659" id="linearGradient4668" gradientUnits="userSpaceOnUse" x1="74.875" y1="389.75" x2="74.875" y2="382.375"/>
    <linearGradient id="linearGradient5659">
      <stop id="stop5661" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop5663" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5635" id="linearGradient4670" gradientUnits="userSpaceOnUse" x1="79.5" y1="388.22964" x2="79.5" y2="396.5032"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6128" id="linearGradient7758" gradientUnits="userSpaceOnUse" gradientTransform="translate(0, 40)" x1="134.3282" y1="369.99536" x2="135.03529" y2="369.33243"/>
    <linearGradient id="linearGradient6128" inkscape:collect="always">
      <stop id="stop6130" offset="0" style="stop-color: rgb(136, 138, 133); stop-opacity: 1;"/>
      <stop id="stop6132" offset="1" style="stop-color: rgb(136, 138, 133); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6113" id="linearGradient7760" gradientUnits="userSpaceOnUse" gradientTransform="translate(0, 40)" x1="130.30652" y1="366.59238" x2="131.41138" y2="366.30511"/>
    <linearGradient id="linearGradient6113" inkscape:collect="always">
      <stop id="stop6115" offset="0" style="stop-color: rgb(114, 159, 207); stop-opacity: 1;"/>
      <stop id="stop6117" offset="1" style="stop-color: rgb(114, 159, 207); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6104" id="linearGradient7762" gradientUnits="userSpaceOnUse" gradientTransform="translate(0, 40)" x1="130.41701" y1="367.12271" x2="131.80913" y2="366.72495"/>
    <linearGradient id="linearGradient6104" inkscape:collect="always">
      <stop id="stop6106" offset="0" style="stop-color: rgb(32, 74, 135); stop-opacity: 1;"/>
      <stop id="stop6108" offset="1" style="stop-color: rgb(32, 74, 135); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5157" id="linearGradient7764" gradientUnits="userSpaceOnUse" gradientTransform="translate(233, 366)" x1="131" y1="379.5" x2="131" y2="383"/>
    <linearGradient id="linearGradient5157" inkscape:collect="always">
      <stop id="stop5159" offset="0" style="stop-color: rgb(114, 159, 207); stop-opacity: 1;"/>
      <stop id="stop5161" offset="1" style="stop-color: rgb(114, 159, 207); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6476" id="linearGradient8076" gradientUnits="userSpaceOnUse" gradientTransform="translate(204, 30)" x1="-28.461048" y1="364.55945" x2="-27.594538" y2="364.14117"/>
    <linearGradient inkscape:collect="always" id="linearGradient6476">
      <stop style="stop-color: rgb(114, 159, 207); stop-opacity: 1;" offset="0" id="stop6478"/>
      <stop style="stop-color: rgb(114, 159, 207); stop-opacity: 0;" offset="1" id="stop6480"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6482" id="linearGradient8078" gradientUnits="userSpaceOnUse" gradientTransform="translate(204, 30)" x1="-28.5625" y1="363.71875" x2="-28.000788" y2="363.18213"/>
    <linearGradient inkscape:collect="always" id="linearGradient6482">
      <stop style="stop-color: rgb(32, 74, 135); stop-opacity: 1;" offset="0" id="stop6484"/>
      <stop style="stop-color: rgb(32, 74, 135); stop-opacity: 0;" offset="1" id="stop6486"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5312" id="linearGradient8080" gradientUnits="userSpaceOnUse" gradientTransform="translate(183, 417)" x1="175" y1="373" x2="175" y2="375.65924"/>
    <linearGradient id="linearGradient5312" inkscape:collect="always">
      <stop id="stop5314" offset="0" style="stop-color: rgb(114, 159, 207); stop-opacity: 1;"/>
      <stop id="stop5316" offset="1" style="stop-color: rgb(114, 159, 207); stop-opacity: 0;"/>
    </linearGradient>
    <radialGradient r="8.0924559" fy="384.21252" fx="78.965324" cy="384.21252" cx="78.965324" gradientTransform="matrix(2.04818, -0.465624, 0.112284, 0.417653, -126.859, 263.971)" gradientUnits="userSpaceOnUse" id="radialGradient36072" xlink:href="#linearGradient6524" inkscape:collect="always"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient6085" id="linearGradient9425" gradientUnits="userSpaceOnUse" gradientTransform="translate(733, 218.99)" x1="10" y1="305" x2="11" y2="304"/>
    <linearGradient id="linearGradient6085" inkscape:collect="always">
      <stop id="stop6087" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop6089" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient5852" id="linearGradient4166" gradientUnits="userSpaceOnUse" x1="-24.6875" y1="307.4375" x2="-22.875" y2="305"/>
    <linearGradient id="linearGradient5852" inkscape:collect="always">
      <stop id="stop5854" offset="0" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"/>
      <stop id="stop5856" offset="1" style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"/>
    </linearGradient>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10776" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10780" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10782" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10784" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10786" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10790" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10792" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10794" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10796" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10804" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10812" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6694-3" id="radialGradient10850" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.01877, 0, 0, 0.9597, -0.21847, 2.42838)" cx="23.604723" cy="17.963018" fx="23.604723" fy="17.963018" r="19.277534"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6598-7" id="radialGradient10866" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11911, 0, 0, 1.04257, -1.66921, 0.696486)" cx="23.72484" cy="19.374041" fx="23.72484" fy="19.374041" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6598-7" id="radialGradient10868" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11911, 0, 0, 1.04257, -1.66921, 0.696486)" cx="23.72484" cy="19.374041" fx="23.72484" fy="19.374041" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6598-7" id="radialGradient10870" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11911, 0, 0, 1.04257, -1.66921, 0.696486)" cx="23.72484" cy="19.374041" fx="23.72484" fy="19.374041" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6598-7" id="radialGradient10872" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11911, 0, 0, 1.04257, -1.66921, 0.696486)" cx="23.72484" cy="19.374041" fx="23.72484" fy="19.374041" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6598-7" id="radialGradient10876" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11911, 0, 0, 1.04257, -1.66921, 0.696486)" cx="23.72484" cy="19.374041" fx="23.72484" fy="19.374041" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6598-7" id="radialGradient10878" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11911, 0, 0, 1.04257, -1.66921, 0.696486)" cx="23.72484" cy="19.374041" fx="23.72484" fy="19.374041" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6598-7" id="radialGradient10880" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11911, 0, 0, 1.04257, -1.66921, 0.696486)" cx="23.72484" cy="19.374041" fx="23.72484" fy="19.374041" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6598-7" id="radialGradient10882" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.11911, 0, 0, 1.04257, -1.66921, 0.696486)" cx="23.72484" cy="19.374041" fx="23.72484" fy="19.374041" r="19.18985"/>
    <clipPath clipPathUnits="userSpaceOnUse" id="clipPath11206">
      <path style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none;" d="M -243.9375,104.8125 C -250.95923,104.8125 -257.73917,105.79632 -264.1875,107.59375 L -264.65625,106.8125 L -268.34375,107.375 L -270.09375,109.125 L -273,109.53125 L -275.5625,110.71875 L -276.8125,111.34375 L -277.5625,112.34375 L -277,112.4375 C -278.53104,113.18734 -280.02954,113.99522 -281.5,114.84375 L -281.59375,114.65625 L -281.75,115 C -283.19999,115.8443 -284.64491,116.71997 -286.03125,117.65625 L -286.1875,117.5625 L -288.5,117.21875 L -289.75,120.375 C -289.97912,120.55106 -290.21047,120.72763 -290.4375,120.90625 C -291.00375,121.0135 -292.45256,121.27881 -292.96875,121.40625 C -300.86062,128.6764 -316.79544,144.37193 -320.5,174 C -320.42804,174.3369 -319.7625,175.4663 -319.125,176.53125 C -319.17908,177.70175 -319.21875,178.87863 -319.21875,180.0625 C -319.21875,205.33875 -306.74165,227.69302 -287.625,241.34375 L -287.65625,241.46875 C -287.68394,241.49083 -287.72767,241.59481 -287.5625,242.15625 C -287.34027,242.90523 -278.3213,247.89325 -277.75,247.46875 C -277.68226,247.4173 -277.68955,247.42477 -277.625,247.375 C -267.48371,252.46005 -256.05551,255.34375 -243.9375,255.34375 C -202.3596,255.34375 -168.62501,221.63371 -168.625,180.0625 C -168.625,176.18652 -168.93479,172.37441 -169.5,168.65625 L -168.75,167.8125 C -168.75001,165.22639 -171.70264,152.49117 -178,141.6875 C -184.29737,130.88738 -195.34376,121 -195.34375,121 L -195.96875,122.0625 C -196.62402,121.52061 -197.2951,120.9886 -197.96875,120.46875 L -197.375,119.8125 L -199.28125,119.46875 C -211.77392,110.25532 -227.22318,104.8125 -243.9375,104.8125 z" id="path11208"/>
    </clipPath>
    <clipPath clipPathUnits="userSpaceOnUse" id="clipPath11385">
      <path id="path11387" d="M -278.63862,180.0711 C -278.63862,221.64232 -312.34944,255.34271 -353.92734,255.34271 C -395.50905,255.34271 -429.21796,221.64194 -429.21796,180.0711 C -429.21796,138.50179 -395.50905,104.80484 -353.92734,104.80484 C -312.34944,104.80484 -278.63862,138.50179 -278.63862,180.0711 L -278.63862,180.0711 z" style="opacity: 1; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline;"/>
    </clipPath>
    <filter inkscape:collect="always" id="filter11433">
      <feGaussianBlur inkscape:collect="always" stdDeviation="3.6522887" id="feGaussianBlur11435"/>
    </filter>
    <filter inkscape:collect="always" id="filter13133">
      <feGaussianBlur inkscape:collect="always" stdDeviation="3.0240625" id="feGaussianBlur13135"/>
    </filter>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient13137" id="linearGradient13262" gradientUnits="userSpaceOnUse" gradientTransform="translate(-389)" x1="137.17871" y1="226.12724" x2="137.17871" y2="55.714504"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4114-0-9" id="radialGradient13264" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.64137, 0, 0, 0.607307, 0.0395667, 0.0619518)" cx="15.115514" cy="63.965389" fx="15.115514" fy="63.965389" r="12.289036"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4114-0-9" id="radialGradient13266" gradientUnits="userSpaceOnUse" gradientTransform="scale(1.64399, 0.608276)" cx="15.115514" cy="63.965389" fx="15.115514" fy="63.965389" r="12.289036"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3962-0-2" id="radialGradient13268" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.58754, 0, 0, 3.58655, -483.939, 93.5472)" cx="18.247644" cy="15.716079" fx="18.247644" fy="15.716079" r="29.993349"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11443" id="radialGradient13270" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.02822, -6.64974e-08, 6.64791e-08, 1.02794, 11.1161, -4.86595)" cx="-393.92831" cy="174.24374" fx="-393.92831" fy="174.24374" r="75.289673"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11246" id="radialGradient13272" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.03295, 0, 0, 0.961908, 8.5381, 7.47752)" cx="-259.125" cy="152.67899" fx="-259.125" fy="152.67899" r="75.873161"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient28860-5-0" id="radialGradient13274" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.570765, -61.5833, 47.7142)" cx="186.5" cy="271.14932" fx="186.5" fy="271.14932" r="70.65625"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11274" id="radialGradient13276" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.36936, 0, 0, 1.27518, 184.623, -39.2447)" cx="-418.625" cy="149.45743" fx="-418.625" fy="149.45743" r="75.873161"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11389" id="radialGradient13278" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.05964, 0, 0, 0.998879, 22.4523, 1.70413)" cx="-376.48489" cy="150.05486" fx="-376.48489" fy="150.05486" r="75.483063"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11317" id="radialGradient13280" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.04195, 0, 0, 0.970288, 136.554, 5.46397)" cx="-394.625" cy="176.62453" fx="-394.625" fy="176.62453" r="75.873161"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11409" id="radialGradient13282" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.710153, -11, 40.9332)" cx="-393.92828" cy="151.57378" fx="-393.92828" fy="151.57378" r="53.539669"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient13137" id="linearGradient13301" gradientUnits="userSpaceOnUse" gradientTransform="translate(1)" x1="137.17871" y1="226.12724" x2="137.17871" y2="55.714504"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4114-0-9" id="radialGradient13303" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.64137, 0, 0, 0.607307, 0.0395667, 0.0619518)" cx="15.115514" cy="63.965389" fx="15.115514" fy="63.965389" r="12.289036"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4114-0-9" id="radialGradient13305" gradientUnits="userSpaceOnUse" gradientTransform="scale(1.64399, 0.608276)" cx="15.115514" cy="63.965389" fx="15.115514" fy="63.965389" r="12.289036"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3962-0-2" id="radialGradient13307" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.58754, 0, 0, 3.58655, -483.939, 93.5472)" cx="18.247644" cy="15.716079" fx="18.247644" fy="15.716079" r="29.993349"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11443" id="radialGradient13309" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.02822, -6.64974e-08, 6.64791e-08, 1.02794, 11.1161, -4.86595)" cx="-393.92831" cy="174.24374" fx="-393.92831" fy="174.24374" r="75.289673"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11246" id="radialGradient13311" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.03295, 0, 0, 0.961908, 8.5381, 7.47752)" cx="-259.125" cy="152.67899" fx="-259.125" fy="152.67899" r="75.873161"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient28860-5-0" id="radialGradient13313" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.570765, -61.5833, 47.7142)" cx="186.5" cy="271.14932" fx="186.5" fy="271.14932" r="70.65625"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11274" id="radialGradient13315" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.36936, 0, 0, 1.27518, 184.623, -39.2447)" cx="-418.625" cy="149.45743" fx="-418.625" fy="149.45743" r="75.873161"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11389" id="radialGradient13317" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.05964, 0, 0, 0.998879, 22.4523, 1.70413)" cx="-376.48489" cy="150.05486" fx="-376.48489" fy="150.05486" r="75.483063"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11317" id="radialGradient13319" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.04195, 0, 0, 0.970288, 136.554, 5.46397)" cx="-394.625" cy="176.62453" fx="-394.625" fy="176.62453" r="75.873161"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient11409" id="radialGradient13321" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.710153, -11, 40.9332)" cx="-393.92828" cy="151.57378" fx="-393.92828" fy="151.57378" r="53.539669"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient26121-3-8-2" id="radialGradient6052" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.00851, 0, 0, 0.373148, -0.211403, 24.39)" cx="24.849752" cy="38.908627" fx="24.849752" fy="38.908627" r="20.203051"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient26113-9-3-1" id="radialGradient6054" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.37, 0, 24.5124)" cx="24.849752" cy="38.908627" fx="24.849752" fy="38.908627" r="20.203051"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3962-1-1-9-5" id="radialGradient6056" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.453235, 0, 0, 0.45197, 115.886, 33.4688)" cx="18.247644" cy="15.716079" fx="18.247644" fy="15.716079" r="29.993349"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient10586-8-2-5-1" id="linearGradient6058" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.0848895, 0, 0, 0.0852283, 116.416, 34.2336)" x1="145.16281" y1="-41.407383" x2="144.42656" y2="46.077827"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6060" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6062" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6064" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6066" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6068" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6070" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6072" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6074" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6076" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6078" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6080" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6082" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6084" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6086" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6088" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6090" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0.656735, 2.13614)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6092" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6094" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6096" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6098" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6100" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6102" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6104" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6106" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6108" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6110" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6112" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6114" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6116" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-7-5" id="radialGradient6118" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6070-954-9-1" id="radialGradient6120" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="23.931307" cy="14.656409" fx="23.931307" fy="14.656409" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6122" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6124" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6126" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6128" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6130" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6132" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6134" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6136" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6138" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6140" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6142" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6144" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6146" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6148" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6082-6-5-4" id="radialGradient6150" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.38067, 0, 0, 1.28624, -9.41958, -3.29356)" cx="24.735497" cy="17.350956" fx="24.735497" fy="17.350956" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6152" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6154" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6156" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6158" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6160" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6162" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6164" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6166" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6168" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6170" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6172" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6174" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6176" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-2-0" id="radialGradient6178" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient10599-4-0-8" id="radialGradient6180" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.96261, 0, 0, 1.09426, -74.6625, -21.1211)" cx="77.5625" cy="152.51079" fx="77.5625" fy="152.51079" r="13.03125"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6952" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6954" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6956" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6958" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6960" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6962" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6964" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6966" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6968" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6970" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6972" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6974" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6976" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6978" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6980" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6982" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6984" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6986" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6988" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-5" id="radialGradient6990" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient6992" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient6994" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient6996" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient6998" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7000" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7002" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7004" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7006" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7008" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7010" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7012" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7014" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7016" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7018" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7020" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7022" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7024" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7026" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7028" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-1" id="radialGradient7030" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient26121-3-6-9-3" id="radialGradient7168" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.19945, 0, 0, 0.443797, -4.9563, 21.6411)" cx="24.849752" cy="38.908627" fx="24.849752" fy="38.908627" r="20.203051"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient26113-9-9-8-7" id="radialGradient7170" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.37, 0, 24.5124)" cx="24.849752" cy="38.908627" fx="24.849752" fy="38.908627" r="20.203051"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3962-1-1-2-0-5" id="radialGradient7172" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.453235, 0, 0, 0.45197, 115.886, 33.5572)" cx="18.247644" cy="15.716079" fx="18.247644" fy="15.716079" r="29.993349"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient10586-8-2-0-0-9" id="linearGradient7174" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.0848895, 0, 0, 0.0852283, 116.416, 34.3219)" x1="145.16281" y1="-41.407383" x2="144.42656" y2="46.077827"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7176" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7178" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7180" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7182" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7184" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7186" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7188" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7190" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7192" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7194" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7196" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7198" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7200" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7202" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7204" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7206" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0.656735, 2.13614)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7208" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7210" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7212" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7214" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7216" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7218" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7220" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7222" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7224" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7226" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7228" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7230" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7232" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6868-5-1-2-2" id="radialGradient7234" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.931606, 0, 1.57305)" cx="24.881451" cy="22.999987" fx="24.881451" fy="22.999987" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6070-954-1-3-1" id="radialGradient7236" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="23.931307" cy="14.656409" fx="23.931307" fy="14.656409" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7238" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7240" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7242" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7244" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7246" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7248" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7250" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7252" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7254" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7256" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7258" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7260" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7262" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7264" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient6082-6-0-7-9" id="radialGradient7266" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.38067, 0, 0, 1.28624, -9.41958, -3.29356)" cx="24.735497" cy="17.350956" fx="24.735497" fy="17.350956" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7268" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7270" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7272" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7274" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7276" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7278" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7280" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7282" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7284" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7286" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7288" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7290" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7292" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient5911-7-9-7-5" id="radialGradient7294" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.70047, 0, 0, 1.58417, -16.9077, -7.70222)" cx="24.137535" cy="14.213541" fx="24.137535" fy="14.213541" r="19.18985"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient10599-4-9-5-8" id="radialGradient7296" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.96261, 0, 0, 1.09426, -74.6625, -21.1211)" cx="77.5625" cy="152.51079" fx="77.5625" fy="152.51079" r="13.03125"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient0-paper-sheet-orig-1" id="linearGradient7682" gradientUnits="userSpaceOnUse" x1="84" y1="200.5" x2="-104.06974" y2="-127.99076"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3-paper-sheet-orig-0-6" id="radialGradient7684" gradientUnits="userSpaceOnUse" gradientTransform="matrix(25.3062, 2.17939e-06, -1.07308e-06, 12.4602, 2199.23, -911.49)" cx="-80.660522" cy="88.982887" fx="-80.660522" fy="88.982887" r="18.000002"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient28-paper-sheet-orig-4" id="radialGradient7686" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.59674, -0.285292, 0.176907, 2.23031, -355.116, -121.578)" cx="128.59172" cy="116.46977" fx="128.59172" fy="116.46977" r="92.902176"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient33-paper-sheet-orig-5" id="radialGradient7688" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0, 2.74107, -1.87992, 0, 120.779, -78.8035)" cx="36" cy="45.296875" fx="36" fy="45.296875" r="84.203125"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient35-paper-sheet-orig-7" id="radialGradient7690" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.66303, 0, 0, 0.340371, -84.7016, 148.57)" cx="127.75" cy="261.27338" fx="127.75" fy="261.27338" r="92.25"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient1-paper-sheet-orig-2" id="radialGradient7692" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0, 1.0485, -3.87807, 0, 165.487, 13.8549)" cx="20.479548" cy="31.230524" fx="20.479548" fy="31.230524" r="93"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient35-paper-sheet-orig-7" id="radialGradient7694" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.57088, 0, 0, 1.11586, -53.057, 0.954809)" cx="127.75" cy="236.25" fx="127.75" fy="236.25" r="92.25"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient27-paper-sheet-orig-9-1" id="radialGradient7912" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.04422, 0, 0, 0.96082, -12.7447, 6.34946)" cx="210.95667" cy="38.580303" fx="210.95667" fy="38.580303" r="34.234375"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient29-paper-sheet-orig-1-7" id="radialGradient7914" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1, 0, 0, 0.98931, 0, 0.472637)" cx="196.35764" cy="44.213333" fx="196.35764" fy="44.213333" r="23.76296"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient30-paper-sheet-orig-8-5" id="linearGradient7916" gradientUnits="userSpaceOnUse" gradientTransform="translate(-1.5, 2.52145)" x1="190.97945" y1="52.972717" x2="196.44823" y2="39.563599"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient31-paper-sheet-orig-8-3" id="radialGradient7918" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.44729, 0, 0, 1.44729, -85.751, -21.5289)" cx="190.875" cy="49.25" fx="190.875" fy="49.25" r="23.5"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient32-paper-sheet-orig-9-6" id="radialGradient7920" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.597198, -0.450905, 1.70446, 2.25746, -0.540251, 29.1578)" cx="192.25" cy="45.75" fx="192.25" fy="45.75" r="23.5"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient34-paper-sheet-orig-3-6" id="radialGradient7922" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.11516, 0, 0, 2.92788, -207.435, -53.6174)" cx="186.76546" cy="27.786123" fx="186.76546" fy="27.786123" r="8.9714146"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient36-paper-sheet-orig-4-8" id="radialGradient7924" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.997333, 0.0729916, -0.11677, 1.59551, 5.19968, -29.5236)" cx="208.68414" cy="39.762138" fx="208.68414" fy="39.762138" r="13.625"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3176-0-8" id="linearGradient7926" gradientUnits="userSpaceOnUse" x1="189.2542" y1="23.661938" x2="189.2542" y2="43.888237"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3-paper-sheet-orig-08" id="radialGradient7940" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.854, 0, 0, 1.86639, 442.334, 21.2596)" cx="-30.249996" cy="35.357208" fx="-30.249996" fy="35.357208" r="18.000002"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient10-paper-sheet-orig-3" id="linearGradient7942" gradientUnits="userSpaceOnUse" gradientTransform="translate(356, 50)" x1="-40.278805" y1="70.736046" x2="-52.75" y2="3.8729248"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4-paper-sheet-orig-7" id="radialGradient7944" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.23437, 0, 0, 1.52429, -8.93747, -6.07875)" cx="4" cy="5.2999997" fx="4" fy="5.2999997" r="17"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient12-paper-sheet-orig-2" id="linearGradient7946" gradientUnits="userSpaceOnUse" x1="-26.753757" y1="11.566258" x2="-24.75" y2="9.687501"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient13-paper-sheet-orig-7-4" id="radialGradient7948" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.407336, -0.279828, 0.751029, 1.09325, 370.815, 41.5621)" cx="-26.305403" cy="10.108011" fx="-26.305403" fy="10.108011" r="7.0421038"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient26-paper-sheet-orig-0-7" id="linearGradient7950" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.922306, 0, 0, 0.918575, 393.553, 51.3257)" x1="-19.031248" y1="12.617871" x2="-28.789402" y2="14.069944"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3-paper-sheet-orig-08" id="radialGradient8051" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.62697, 0, 0, 1.27316, 402.248, 105.684)" cx="-30.249996" cy="35.357208" fx="-30.249996" fy="35.357208" r="18.000002"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient10-paper-sheet-orig-3" id="linearGradient8053" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.657442, 0, 0, 0.65795, 342.67, 126.191)" x1="-42.660057" y1="62.991943" x2="-54.260529" y2="1.1415967"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4-paper-sheet-orig-7" id="radialGradient8055" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.10351, 0, 0, 1.31213, -4.41403, -4.9543)" cx="4" cy="5.2999997" fx="4" fy="5.2999997" r="17"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient12-paper-sheet-orig-2" id="linearGradient8057" gradientUnits="userSpaceOnUse" x1="-26.753757" y1="11.566258" x2="-25" y2="9.812501"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient13-paper-sheet-orig-2-5" id="radialGradient8156" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.262642, -0.18058, 0.484247, 0.705503, 336.012, 120.974)" cx="-26.305403" cy="10.108011" fx="-26.305403" fy="10.108011" r="7.0421038"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient15-paper-sheet-orig-5-1" id="linearGradient8158" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.594683, 0, 0, 0.592781, 350.673, 127.274)" x1="-18.618725" y1="10.211342" x2="-30.558546" y2="12.189651"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3-paper-sheet-orig-08" id="radialGradient8168" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.94095, 0, 0, 0.730906, 375.508, 168.164)" cx="-30.314398" cy="34.277431" fx="-30.314398" fy="34.277431" r="18.000002"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient10-paper-sheet-orig-3" id="linearGradient8170" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.485754, 0, 0, 0.488975, 331.488, 175.793)" x1="-43.860779" y1="61.854836" x2="-54.529251" y2="-0.087501168"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4-paper-sheet-orig-7" id="radialGradient8172" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.46139, 0, 0, 1.40943, -5.84554, -5.46996)" cx="4" cy="5.2999997" fx="4" fy="5.2999997" r="17"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient20-paper-sheet-orig-4-3" id="linearGradient8174" gradientUnits="userSpaceOnUse" gradientTransform="translate(343, 207)" x1="-23.4375" y1="-24.875" x2="-26.453966" y2="-24.144068"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient4-paper-sheet-orig-7" id="radialGradient8257" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.79816, -0.0210592, 0.0167913, 1.62912, -3.28162, -6.55011)" cx="4" cy="5.2999997" fx="4" fy="5.2999997" r="17"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient17-paper-sheet-orig-0-8" id="linearGradient8261" gradientUnits="userSpaceOnUse" gradientTransform="translate(302, 218.99)" x1="12.59375" y1="4.59375" x2="9.40625" y2="4.8125"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient16-paper-sheet-orig-9" id="linearGradient8315" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.766205, 0, 0, 0.750993, 699.584, 220.125)" x1="14.958019" y1="5.0490041" x2="17.11025" y2="3.8396702"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient3-paper-sheet-orig-08" id="radialGradient8319" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.48717, 0, 0, 0.548905, 755.14, 213.489)" cx="-30.314398" cy="39.271858" fx="-30.314398" fy="39.271858" r="18.000002"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient10-paper-sheet-orig-3" id="linearGradient8321" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.372187, 0, 0, 0.367216, 721.412, 219.218)" x1="-46.226273" y1="55.166615" x2="-53.849915" y2="-0.54635042"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3519-9-3" id="linearGradient8627" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.74776, 0, 0, 8.63628, 811.735, 620.045)" x1="57.643562" y1="8.6012535" x2="34.242393" y2="21.033955"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3531-9-1" id="linearGradient8629" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-3.74776, 0, 0, 8.63628, 1080.29, 620.045)" x1="57.643562" y1="8.6012535" x2="39.081673" y2="20.9233"/>
    <filter inkscape:collect="always" id="filter9493">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.2943598" id="feGaussianBlur9495"/>
    </filter>
    <clipPath clipPathUnits="userSpaceOnUse" id="clipPath9637">
      <path style="opacity: 1; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0.5; stroke-opacity: 1;" d="M 824.0625,32 L 824.0625,288 L 1080,288 L 1080,32 L 824.0625,32 z M 947.125,50.0625 C 948.246,50.0625 949.15617,50.97232 949.15625,52.09375 C 949.15625,53.215187 948.24593,54.124996 947.125,54.125 C 946.0033,54.125 945.09367,53.215184 945.09375,52.09375 C 945.09375,50.972321 946.00323,50.0625 947.125,50.0625 z M 941.125,60.25 C 942.246,60.25 943.15617,61.159811 943.15625,62.28125 C 943.15625,63.402687 942.24593,64.312499 941.125,64.3125 C 940.0033,64.312492 939.09367,63.402682 939.09375,62.28125 C 939.09375,61.159813 940.00323,60.250001 941.125,60.25 z M 947.125,60.25 C 948.246,60.25 949.15617,61.159811 949.15625,62.28125 C 949.15625,63.402687 948.24593,64.312499 947.125,64.3125 C 946.0033,64.312492 945.09367,63.402682 945.09375,62.28125 C 945.09375,61.159813 946.00323,60.250001 947.125,60.25 z M 953.125,60.25 C 954.2468,60.25 955.15697,61.159811 955.15625,62.28125 C 955.15625,63.402687 954.24683,64.312491 953.125,64.3125 C 952.0033,64.3125 951.09377,63.402682 951.09375,62.28125 C 951.09375,61.159813 952.00333,60.250001 953.125,60.25 z M 937.125,70.25 C 938.246,70.249992 939.15617,71.159809 939.15625,72.28125 C 939.15625,73.402679 938.24593,74.312495 937.125,74.3125 C 936.0033,74.312492 935.09367,73.40268 935.09375,72.28125 C 935.09375,71.159813 936.00323,70.249993 937.125,70.25 z M 947.125,70.25 C 948.246,70.249992 949.15617,71.159809 949.15625,72.28125 C 949.15625,73.402679 948.24593,74.312495 947.125,74.3125 C 946.0033,74.312492 945.09367,73.40268 945.09375,72.28125 C 945.09375,71.159813 946.00323,70.249993 947.125,70.25 z M 957.125,70.25 C 958.2468,70.25 959.15627,71.159809 959.15625,72.28125 C 959.15625,73.402687 958.24683,74.312487 957.125,74.3125 C 956.0033,74.3125 955.09377,73.402672 955.09375,72.28125 C 955.09375,71.159813 956.00333,70.249985 957.125,70.25 z M 933.125,80.25 C 934.246,80.249992 935.15617,81.159814 935.15625,82.28125 C 935.15625,83.402679 934.24603,84.312501 933.125,84.3125 C 932.0033,84.312492 931.09367,83.402685 931.09375,82.28125 C 931.09375,81.159813 932.00323,80.24999 933.125,80.25 z M 947.125,80.25 C 948.246,80.249992 949.15617,81.159814 949.15625,82.28125 C 949.15625,83.402679 948.24593,84.312501 947.125,84.3125 C 946.0033,84.312492 945.09367,83.402685 945.09375,82.28125 C 945.09375,81.159813 946.00323,80.24999 947.125,80.25 z M 961.125,80.25 C 962.246,80.25 963.15617,81.159814 963.15625,82.28125 C 963.15625,83.402687 962.24603,84.312493 961.125,84.3125 C 960.0033,84.3125 959.09367,83.402677 959.09375,82.28125 C 959.09375,81.159813 960.00323,80.249982 961.125,80.25 z M 929.125,90.25 C 930.2468,90.249992 931.15617,91.159818 931.15625,92.28125 C 931.15625,93.402679 930.24673,94.312506 929.125,94.3125 C 928.0033,94.312492 927.09377,93.402681 927.09375,92.28125 C 927.09375,91.159813 928.00323,90.249994 929.125,90.25 z M 947.125,90.25 C 948.246,90.249992 949.15617,91.159818 949.15625,92.28125 C 949.15625,93.402679 948.24593,94.312506 947.125,94.3125 C 946.0033,94.312492 945.09367,93.402681 945.09375,92.28125 C 945.09375,91.159813 946.00323,90.249994 947.125,90.25 z M 965.125,90.25 C 966.246,90.25 967.15617,91.159818 967.15625,92.28125 C 967.15625,93.402687 966.24593,94.312498 965.125,94.3125 C 964.0033,94.3125 963.09367,93.402673 963.09375,92.28125 C 963.09375,91.159813 964.00323,90.249986 965.125,90.25 z M 925.125,100.25 C 926.2468,100.25 927.15617,101.15981 927.15625,102.28125 C 927.15625,103.40268 926.24683,104.3125 925.125,104.3125 C 924.0041,104.3125 923.09377,103.40269 923.09375,102.28125 C 923.09375,101.15981 924.00403,100.25 925.125,100.25 z M 947.125,100.25 C 948.246,100.25 949.15617,101.15981 949.15625,102.28125 C 949.15625,103.40268 948.24593,104.3125 947.125,104.3125 C 946.0033,104.3125 945.09367,103.40269 945.09375,102.28125 C 945.09375,101.15981 946.00323,100.25 947.125,100.25 z M 969.125,100.25 C 970.2468,100.25 971.15617,101.15981 971.15625,102.28125 C 971.15625,103.40269 970.24673,104.3125 969.125,104.3125 C 968.0041,104.3125 967.09367,103.40268 967.09375,102.28125 C 967.09375,101.15981 968.00403,100.25 969.125,100.25 z M 921.125,110.25 C 922.2468,110.25 923.15617,111.15983 923.15625,112.28125 C 923.15625,113.40268 922.24683,114.3125 921.125,114.3125 C 920.0041,114.3125 919.09377,113.40269 919.09375,112.28125 C 919.09375,111.15981 920.00403,110.25 921.125,110.25 z M 947.125,110.25 C 948.246,110.25 949.15617,111.15983 949.15625,112.28125 C 949.15625,113.40268 948.24593,114.3125 947.125,114.3125 C 946.0033,114.3125 945.09367,113.40269 945.09375,112.28125 C 945.09375,111.15981 946.00323,110.25 947.125,110.25 z M 973.125,110.25 C 974.2468,110.25 975.15617,111.15983 975.15625,112.28125 C 975.15625,113.40269 974.24673,114.3125 973.125,114.3125 C 972.0041,114.3125 971.09367,113.40268 971.09375,112.28125 C 971.09375,111.15981 972.00403,110.25 973.125,110.25 z M 917.125,120.25 C 918.2468,120.25 919.15627,121.15981 919.15625,122.28125 C 919.15625,123.40268 918.24683,124.3125 917.125,124.3125 C 916.0041,124.3125 915.09377,123.40269 915.09375,122.28125 C 915.09375,121.15981 916.00403,120.25 917.125,120.25 z M 947.125,120.25 C 948.246,120.25 949.15617,121.15981 949.15625,122.28125 C 949.15625,123.40268 948.24593,124.3125 947.125,124.3125 C 946.0033,124.3125 945.09367,123.40269 945.09375,122.28125 C 945.09375,121.15981 946.00323,120.25 947.125,120.25 z M 977.125,120.25 C 978.2468,120.25 979.15617,121.15981 979.15625,122.28125 C 979.15625,123.40269 978.24673,124.3125 977.125,124.3125 C 976.0041,124.3125 975.09367,123.40268 975.09375,122.28125 C 975.09375,121.15981 976.00403,120.25 977.125,120.25 z M 913.125,130.25 C 914.2464,130.25 915.15627,131.15981 915.15625,132.28125 C 915.15625,133.40268 914.24643,134.3125 913.125,134.3125 C 912.0036,134.3125 911.09377,133.40269 911.09375,132.28125 C 911.09375,131.15981 912.00363,130.25 913.125,130.25 z M 947.125,130.25 C 948.246,130.25 949.15617,131.15981 949.15625,132.28125 C 949.15625,133.40268 948.24593,134.3125 947.125,134.3125 C 946.0033,134.3125 945.09367,133.40268 945.09375,132.28125 C 945.09375,131.15981 946.00323,130.25 947.125,130.25 z M 981.125,130.25 C 982.2465,130.25 983.15617,131.15981 983.15625,132.28125 C 983.15625,133.40269 982.24643,134.3125 981.125,134.3125 C 980.0036,134.3125 979.09367,133.40268 979.09375,132.28125 C 979.09375,131.15981 980.00363,130.25 981.125,130.25 z M 909.125,140.25 C 910.2464,140.25 911.15627,141.15981 911.15625,142.28125 C 911.15625,143.40268 910.24653,144.3125 909.125,144.3125 C 908.0036,144.3125 907.09377,143.40269 907.09375,142.28125 C 907.09375,141.15981 908.00363,140.25 909.125,140.25 z M 947.125,140.25 C 948.2464,140.25 949.15617,141.15979 949.15625,142.28125 C 949.15625,143.40268 948.24643,144.31248 947.125,144.3125 C 946.0036,144.3125 945.09367,143.40267 945.09375,142.28125 C 945.09375,141.15981 946.00363,140.24998 947.125,140.25 z M 985.125,140.25 C 986.2465,140.25 987.15617,141.15979 987.15625,142.28125 C 987.15625,143.40269 986.24643,144.31248 985.125,144.3125 C 984.0036,144.3125 983.09367,143.40266 983.09375,142.28125 C 983.09375,141.15981 984.00363,140.24998 985.125,140.25 z M 905.125,150.25 C 906.2464,150.25 907.15627,151.15981 907.15625,152.28125 C 907.15625,153.40268 906.24653,154.3125 905.125,154.3125 C 904.0036,154.3125 903.09377,153.40269 903.09375,152.28125 C 903.09375,151.15981 904.00363,150.25 905.125,150.25 z M 947.125,150.25 C 948.2464,150.25 949.15627,151.15982 949.15625,152.28125 C 949.15625,153.40268 948.24643,154.3125 947.125,154.3125 C 946.0036,154.3125 945.09377,153.4027 945.09375,152.28125 C 945.09375,151.15981 946.00363,150.25001 947.125,150.25 z M 989.125,150.25 C 990.2465,150.25 991.15617,151.15983 991.15625,152.28125 C 991.15625,153.40269 990.24643,154.3125 989.125,154.3125 C 988.0036,154.3125 987.09367,153.4027 987.09375,152.28125 C 987.09375,151.15981 988.00363,150.25002 989.125,150.25 z M 901.125,160.25 C 902.2464,160.25 903.15627,161.15981 903.15625,162.28125 C 903.15625,163.40268 902.24653,164.3125 901.125,164.3125 C 900.0036,164.3125 899.09377,163.40269 899.09375,162.28125 C 899.09375,161.15981 900.00363,160.25 901.125,160.25 z M 947.125,160.25 C 948.2464,160.25 949.15627,161.15981 949.15625,162.28125 C 949.15625,163.40268 948.24643,164.3125 947.125,164.3125 C 946.0036,164.3125 945.09377,163.40269 945.09375,162.28125 C 945.09375,161.15981 946.00363,160.25 947.125,160.25 z M 993.125,160.25 C 994.2465,160.25 995.15617,161.15981 995.15625,162.28125 C 995.15625,163.40269 994.24643,164.3125 993.125,164.3125 C 992.0036,164.3125 991.09367,163.40268 991.09375,162.28125 C 991.09375,161.15981 992.00363,160.25 993.125,160.25 z M 897.125,170.25 C 898.2464,170.25 899.15627,171.15981 899.15625,172.28125 C 899.15625,173.40268 898.24653,174.3125 897.125,174.3125 C 896.0036,174.3125 895.09377,173.40269 895.09375,172.28125 C 895.09375,171.15981 896.00363,170.25 897.125,170.25 z M 947.125,170.25 C 948.2464,170.25 949.15627,171.15981 949.15625,172.28125 C 949.15625,173.40268 948.24643,174.3125 947.125,174.3125 C 946.0036,174.3125 945.09377,173.40269 945.09375,172.28125 C 945.09375,171.15981 946.00363,170.25 947.125,170.25 z M 997.125,170.25 C 998.2465,170.25 999.15617,171.15981 999.15625,172.28125 C 999.15625,173.40269 998.24643,174.3125 997.125,174.3125 C 996.0036,174.3125 995.09367,173.40268 995.09375,172.28125 C 995.09375,171.15981 996.00363,170.25 997.125,170.25 z M 893.125,180.25 C 894.2464,180.25 895.15627,181.15981 895.15625,182.28125 C 895.15625,183.40268 894.24653,184.3125 893.125,184.3125 C 892.0036,184.3125 891.09377,183.40269 891.09375,182.28125 C 891.09375,181.15981 892.00363,180.25 893.125,180.25 z M 947.125,180.25 C 948.2464,180.25 949.15627,181.15981 949.15625,182.28125 C 949.15625,183.40268 948.24643,184.31249 947.125,184.3125 C 946.0036,184.3125 945.09377,183.40268 945.09375,182.28125 C 945.09375,181.15981 946.00363,180.25 947.125,180.25 z M 1001.125,180.25 C 1002.2464,180.25 1003.1562,181.15981 1003.1562,182.28125 C 1003.1562,183.40269 1002.2464,184.31248 1001.125,184.3125 C 1000.0036,184.3125 999.09367,183.40266 999.09375,182.28125 C 999.09375,181.15981 1000.0036,180.25 1001.125,180.25 z M 889.125,190.25 C 890.2464,190.25 891.15627,191.15981 891.15625,192.28125 C 891.15625,193.40268 890.24653,194.3125 889.125,194.3125 C 888.0036,194.3125 887.09377,193.40269 887.09375,192.28125 C 887.09375,191.15981 888.00363,190.25 889.125,190.25 z M 947.125,190.25 C 948.2464,190.25 949.15627,191.15982 949.15625,192.28125 C 949.15625,193.40268 948.24643,194.31251 947.125,194.3125 C 946.0036,194.3125 945.09377,193.4027 945.09375,192.28125 C 945.09375,191.15981 946.00363,190.25001 947.125,190.25 z M 1005.125,190.25 C 1006.2464,190.25 1007.1562,191.15983 1007.1562,192.28125 C 1007.1562,193.40269 1006.2464,194.31252 1005.125,194.3125 C 1004.0036,194.3125 1003.0937,193.4027 1003.0938,192.28125 C 1003.0938,191.15981 1004.0036,190.25002 1005.125,190.25 z M 885.125,200.25 C 886.2464,200.25 887.15627,201.15981 887.15625,202.28125 C 887.15625,203.40268 886.24653,204.3125 885.125,204.3125 C 884.0036,204.3125 883.09377,203.40269 883.09375,202.28125 C 883.09375,201.15981 884.00363,200.25 885.125,200.25 z M 947.125,200.25 C 948.2464,200.25 949.15627,201.15981 949.15625,202.28125 C 949.15625,203.40268 948.24643,204.3125 947.125,204.3125 C 946.0036,204.3125 945.09377,203.40269 945.09375,202.28125 C 945.09375,201.15981 946.00363,200.25 947.125,200.25 z M 1009.125,200.25 C 1010.2464,200.25 1011.1562,201.15981 1011.1562,202.28125 C 1011.1562,203.40269 1010.2464,204.3125 1009.125,204.3125 C 1008.0036,204.3125 1007.0937,203.40268 1007.0938,202.28125 C 1007.0938,201.15981 1008.0036,200.25 1009.125,200.25 z M 881.125,210.25 C 882.2464,210.25 883.15627,211.15981 883.15625,212.28125 C 883.15625,213.40268 882.24653,214.3125 881.125,214.3125 C 880.0036,214.3125 879.09377,213.40269 879.09375,212.28125 C 879.09375,211.15981 880.00363,210.25 881.125,210.25 z M 947.125,210.25 C 948.2464,210.25 949.15627,211.15981 949.15625,212.28125 C 949.15625,213.40268 948.24643,214.3125 947.125,214.3125 C 946.0036,214.3125 945.09377,213.40269 945.09375,212.28125 C 945.09375,211.15981 946.00363,210.25 947.125,210.25 z M 1013.125,210.25 C 1014.2464,210.25 1015.1562,211.15981 1015.1562,212.28125 C 1015.1562,213.40269 1014.2464,214.3125 1013.125,214.3125 C 1012.0036,214.3125 1011.0937,213.40268 1011.0938,212.28125 C 1011.0938,211.15981 1012.0036,210.25 1013.125,210.25 z M 877.125,220.25 C 878.2464,220.25 879.15627,221.15981 879.15625,222.28125 C 879.15625,223.40268 878.24653,224.3125 877.125,224.3125 C 876.0036,224.3125 875.09377,223.40269 875.09375,222.28125 C 875.09375,221.15981 876.00363,220.25 877.125,220.25 z M 947.125,220.25 C 948.2464,220.25 949.15627,221.15981 949.15625,222.28125 C 949.15625,223.40268 948.24643,224.3125 947.125,224.3125 C 946.0036,224.3125 945.09377,223.40269 945.09375,222.28125 C 945.09375,221.15981 946.00363,220.25 947.125,220.25 z M 1017.125,220.25 C 1018.2464,220.25 1019.1562,221.15981 1019.1562,222.28125 C 1019.1562,223.40269 1018.2464,224.3125 1017.125,224.3125 C 1016.0036,224.3125 1015.0937,223.40268 1015.0938,222.28125 C 1015.0938,221.15981 1016.0036,220.25 1017.125,220.25 z M 873.125,230.25 C 874.2464,230.25 875.15627,231.15981 875.15625,232.28125 C 875.15625,233.40268 874.24653,234.3125 873.125,234.3125 C 872.0036,234.3125 871.09377,233.40269 871.09375,232.28125 C 871.09375,231.15981 872.00363,230.25 873.125,230.25 z M 947.125,230.25 C 948.2464,230.25 949.15627,231.15982 949.15625,232.28125 C 949.15625,233.40268 948.24643,234.31251 947.125,234.3125 C 946.0036,234.3125 945.09377,233.4027 945.09375,232.28125 C 945.09375,231.15981 946.00363,230.24999 947.125,230.25 z M 1021.125,230.25 C 1022.2464,230.25 1023.1562,231.15983 1023.1562,232.28125 C 1023.1562,233.40269 1022.2464,234.31252 1021.125,234.3125 C 1020.0036,234.3125 1019.0937,233.4027 1019.0938,232.28125 C 1019.0938,231.15981 1020.0036,230.24998 1021.125,230.25 z M 869.125,240.25 C 870.2464,240.25 871.15627,241.15981 871.15625,242.28125 C 871.15625,243.40268 870.24653,244.3125 869.125,244.3125 C 868.0036,244.3125 867.09377,243.40269 867.09375,242.28125 C 867.09375,241.15981 868.00363,240.25 869.125,240.25 z M 947.125,240.25 C 948.2464,240.25 949.15627,241.15981 949.15625,242.28125 C 949.15625,243.40268 948.24643,244.3125 947.125,244.3125 C 946.0036,244.3125 945.09377,243.40269 945.09375,242.28125 C 945.09375,241.15981 946.00363,240.25 947.125,240.25 z M 1025.125,240.25 C 1026.2464,240.25 1027.1565,241.15981 1027.1562,242.28125 C 1027.1562,243.40269 1026.2464,244.3125 1025.125,244.3125 C 1024.0036,244.3125 1023.0937,243.40268 1023.0938,242.28125 C 1023.0938,241.15981 1024.0036,240.25 1025.125,240.25 z M 865.125,250.25 C 866.2464,250.25 867.15627,251.15981 867.15625,252.28125 C 867.15625,253.40268 866.24653,254.3125 865.125,254.3125 C 864.0036,254.3125 863.09377,253.40269 863.09375,252.28125 C 863.09375,251.15981 864.00363,250.25 865.125,250.25 z M 947.125,250.25 C 948.2464,250.25 949.15627,251.15981 949.15625,252.28125 C 949.15625,253.40268 948.24643,254.3125 947.125,254.3125 C 946.0036,254.3125 945.09377,253.40269 945.09375,252.28125 C 945.09375,251.15981 946.00363,250.25 947.125,250.25 z M 1029.125,250.25 C 1030.2464,250.25 1031.1565,251.15981 1031.1562,252.28125 C 1031.1562,253.40269 1030.2464,254.3125 1029.125,254.3125 C 1028.0036,254.3125 1027.0938,253.40268 1027.0938,252.28125 C 1027.0938,251.15981 1028.0036,250.25 1029.125,250.25 z M 861.125,260.25 C 862.2464,260.25 863.15627,261.15981 863.15625,262.28125 C 863.15625,263.40268 862.24653,264.3125 861.125,264.3125 C 860.0036,264.3125 859.09377,263.40269 859.09375,262.28125 C 859.09375,261.15981 860.00363,260.25 861.125,260.25 z M 947.125,260.25 C 948.2464,260.25 949.15627,261.15981 949.15625,262.28125 C 949.15625,263.40268 948.24643,264.3125 947.125,264.3125 C 946.0036,264.3125 945.09377,263.40269 945.09375,262.28125 C 945.09375,261.15981 946.00363,260.25 947.125,260.25 z M 1033.125,260.25 C 1034.2464,260.25 1035.1565,261.15981 1035.1562,262.28125 C 1035.1562,263.40269 1034.2464,264.3125 1033.125,264.3125 C 1032.0036,264.3125 1031.0938,263.40268 1031.0938,262.28125 C 1031.0938,261.15981 1032.0036,260.25 1033.125,260.25 z" id="path9639" sodipodi:nodetypes="ccccccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssc"/>
    </clipPath>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient9676" id="linearGradient9682" x1="965.68732" y1="238.79767" x2="947.125" y2="-130.31207" gradientUnits="userSpaceOnUse"/>
    <filter inkscape:collect="always" id="filter9688">
      <feGaussianBlur inkscape:collect="always" stdDeviation="0.793375" id="feGaussianBlur9690"/>
    </filter>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3519-9-8" id="linearGradient10566" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.668545, 0, 0, 1.49578, 1170.78, 53.9974)" x1="57.643562" y1="8.6012535" x2="34.242393" y2="21.033955"/>
    <linearGradient inkscape:collect="always" xlink:href="#linearGradient3531-9-8" id="linearGradient10568" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-0.668545, 0, 0, 1.49578, 1218.69, 53.9974)" x1="57.643562" y1="8.6012535" x2="39.081673" y2="20.9233"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient17145-9" id="radialGradient10574" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.02379, 0, 0, 2.02379, -965.194, -50.5816)" cx="942.76562" cy="49.406246" fx="942.76562" fy="49.406246" r="0.671875"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient17145-9" id="radialGradient10580" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.02379, 0, 0, 2.02379, -965.194, -50.5816)" cx="942.76562" cy="49.406246" fx="942.76562" fy="49.406246" r="0.671875"/>
    <radialGradient inkscape:collect="always" xlink:href="#linearGradient17145-9" id="radialGradient10582" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.02379, 0, 0, 2.02379, -965.194, -50.5816)" cx="942.76562" cy="49.406246" fx="942.76562" fy="49.406246" r="0.671875"/>
  </defs>
  <metadata id="metadata7">
    <rdf:RDF>
      <cc:Work rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g inkscape:label="text-html" style="display: inline;" inkscape:groupmode="layer" id="g8324">
    <use style="display: inline;" x="0" y="0" xlink:href="#g7897" id="use5190" transform="translate(-400)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12840" id="use5192" transform="translate(-400)" width="1600" height="900"/>
    <g inkscape:label="plate 0" style="display: none;" inkscape:groupmode="layer" id="g8326">
      <text y="20" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="20" id="text8340">
        <tspan id="tspan8342">mimetypes</tspan>
      </text>
      <text y="20" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="200" id="text8344">
        <tspan id="tspan8346">text-html</tspan>
      </text>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="32" x="24" id="rect8328" inkscape:export-filename="/home/lapo/Dropbox/Icons/mango/test 64x64/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="50" x="300" id="rect8330"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="125" x="300" id="rect8332"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="176" x="300" id="rect8334"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="177" x="301" id="rect8336"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="220" x="300" id="rect8338"/>
    </g>
    <g transform="translate(19.8696, 28.077)" style="display: inline;" id="g256" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8030" id="use9694" transform="translate(-400)" width="1600" height="900"/>
    <g transform="matrix(0.782268, 0, 0, 0.782268, 65.0014, 11.5879)" id="g2627" style="display: inline;" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
      <g transform="matrix(1.41451, 0, 0, 1.41451, 151.042, 18.2974)" id="g26046-4" style="display: inline;">
        <path transform="matrix(0.351175, 0, 0, 0.320336, 118.44, 40.0628)" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" sodipodi:ry="7.4751287" sodipodi:rx="20.203051" sodipodi:cy="38.908627" sodipodi:cx="24.849752" id="path11165-2" style="fill: url(#radialGradient6052) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter5927);" sodipodi:type="arc"/>
        <path sodipodi:type="arc" style="opacity: 0.518367; fill: url(#radialGradient6054) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter5788);" id="path11167-3" sodipodi:cx="24.849752" sodipodi:cy="38.908627" sodipodi:rx="20.203051" sodipodi:ry="7.4751287" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" transform="matrix(0.474726, 0, 0, 0.433037, 115.37, 35.4289)"/>
        <path style="fill: url(#radialGradient6056) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: url(#linearGradient6058) rgb(0, 0, 0); stroke-width: 0.913307; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" d="M 136.76906,44.372422 C 136.76906,49.611149 132.51017,53.858007 127.25739,53.858007 C 122.00413,53.858007 117.74549,49.6111 117.74549,44.372422 C 117.74549,39.133937 122.00413,34.887512 127.25739,34.887512 C 132.51017,34.887512 136.76906,39.133937 136.76906,44.372422 L 136.76906,44.372422 z" id="path11169-2"/>
        <g id="g11173-8" style="fill: url(#radialGradient6064) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11175-6" style="fill: url(#radialGradient6062) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 L 44.0713,20.7144 z" id="path11177-8" style="fill: url(#radialGradient6060) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11179-4" style="fill: url(#radialGradient6070) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11181-6" style="fill: url(#radialGradient6068) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363" id="path11183-7" style="fill: url(#radialGradient6066) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11185-8" style="fill: url(#radialGradient6076) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11187-3" style="fill: url(#radialGradient6074) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632" id="path11189-4" style="fill: url(#radialGradient6072) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11191-9" style="fill: url(#radialGradient6082) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11193-4" style="fill: url(#radialGradient6080) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749" id="path11195-9" style="fill: url(#radialGradient6078) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11197-1" style="fill: url(#radialGradient6088) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11199-7" style="fill: url(#radialGradient6086) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609" id="path11201-3" style="fill: url(#radialGradient6084) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11203-8" style="fill: url(#radialGradient6094) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11205-1" style="fill: url(#radialGradient6092) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 19.021933,28.805282 L 18.439933,27.652982 L 17.349633,27.406382 L 16.768133,25.843882 L 15.314533,26.007982 L 14.079133,25.103682 L 12.770033,26.255082 L 12.770033,26.436682 C 12.374033,26.322382 11.887233,26.306782 11.534633,26.089982 L 11.243633,25.267682 L 11.243633,24.362382 L 10.371534,24.444382 C 10.444334,23.868182 10.516533,23.292982 10.589833,22.716882 L 10.080535,22.716882 L 9.5722347,23.375082 L 9.0629347,23.621182 L 8.3358347,23.210982 L 8.2630347,22.305682 L 8.4085347,21.318382 L 9.4993347,20.496082 L 10.371434,20.496082 L 10.516433,20.001982 L 11.606733,20.248082 L 12.406533,21.236382 L 12.552033,19.589882 L 13.933333,18.438482 L 14.442133,17.204082 L 15.459733,16.792982 L 16.041233,15.970682 L 17.349333,15.722682 L 18.004133,14.736382 C 17.349833,14.736382 16.695533,14.736382 16.041233,14.736382 L 17.277033,14.160182 L 18.148633,14.160182 L 19.384933,13.748082 L 19.530433,13.255882 L 19.093933,12.843782 L 18.585133,12.678782 L 18.730633,12.185582 L 18.367333,11.445382 L 17.494733,11.773482 L 17.640233,11.115782 L 16.622633,10.539582 L 15.823333,11.937482 L 15.895633,12.431582 L 15.096333,12.761682 L 14.587033,13.830982 L 14.369233,12.843682 L 12.987933,12.267482 L 12.769633,11.527282 L 14.587033,10.456982 L 15.386833,9.7167835 L 15.459633,8.8119835 L 15.023633,8.5648835 L 14.442133,8.4823835 L 14.078833,9.3876835 C 14.078833,9.3876835 13.470933,9.5067835 13.314633,9.5453835 C 11.318533,11.384782 7.2853351,15.355482 6.3483351,22.851582 C 6.3854351,23.025382 7.0275351,24.033182 7.0275351,24.033182 L 8.5539347,24.937482 L 10.080335,25.349582 L 10.735133,26.172782 L 11.752233,26.912982 L 12.333733,26.830982 L 12.769733,27.027282 L 12.769733,27.160082 L 12.188633,28.723082 L 11.752133,29.381282 L 11.897633,29.711382 L 11.534333,30.943782 L 12.842933,33.330482 L 14.151033,34.482782 L 14.733033,35.305082 L 14.659833,37.033582 L 15.096333,38.019882 L 14.659833,39.912482 C 14.659833,39.912482 14.625633,39.900782 14.681333,40.090182 C 14.737533,40.279682 17.010433,41.541382 17.154933,41.433982 C 17.298933,41.324582 17.422033,41.228882 17.422033,41.228882 L 17.277033,40.818682 L 17.858133,40.242482 L 18.076433,39.666282 L 19.021733,39.336182 L 19.748333,37.525682 L 19.530533,37.033482 L 20.038333,36.293282 L 21.129133,36.045282 L 21.711133,34.728882 L 21.565633,33.084382 L 22.437733,31.849982 L 22.583233,30.615582 C 21.389833,30.023782 20.206233,29.414382 19.021733,28.805082" id="path11207-6" style="fill: url(#radialGradient6090) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11209-2" style="fill: url(#radialGradient6100) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11211-4" style="fill: url(#radialGradient6098) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649" id="path11213-1" style="fill: url(#radialGradient6096) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11215-3" style="fill: url(#radialGradient6106) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11217-0" style="fill: url(#radialGradient6104) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072" id="path11219-1" style="fill: url(#radialGradient6102) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11241-0" style="fill: url(#radialGradient6112) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11243-3" style="fill: url(#radialGradient6110) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496" id="path11245-1" style="fill: url(#radialGradient6108) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11247-6" style="fill: url(#radialGradient6118) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11249-7" style="fill: url(#radialGradient6116) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665" id="path11251-6" style="fill: url(#radialGradient6114) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6124) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11255-8" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6122) rgb(0, 0, 0); fill-opacity: 1;" id="g11257-6">
            <path style="fill: url(#radialGradient6120) rgb(0, 0, 0); fill-opacity: 1;" id="path11259-2" d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 L 44.0713,20.7144 z"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6130) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11261-6" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6128) rgb(0, 0, 0); fill-opacity: 1;" id="g11263-2">
            <path style="fill: url(#radialGradient6126) rgb(0, 0, 0); fill-opacity: 1;" id="path11265-0" d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6136) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11267-6" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6134) rgb(0, 0, 0); fill-opacity: 1;" id="g11269-0">
            <path style="fill: url(#radialGradient6132) rgb(0, 0, 0); fill-opacity: 1;" id="path11271-4" d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6142) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11273-0" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6140) rgb(0, 0, 0); fill-opacity: 1;" id="g11275-1">
            <path style="fill: url(#radialGradient6138) rgb(0, 0, 0); fill-opacity: 1;" id="path11277-0" d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6148) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11279-2" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6146) rgb(0, 0, 0); fill-opacity: 1;" id="g11281-3">
            <path style="fill: url(#radialGradient6144) rgb(0, 0, 0); fill-opacity: 1;" id="path11283-8" d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6154) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11285-5" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6152) rgb(0, 0, 0); fill-opacity: 1;" id="g11287-1">
            <path style="fill: url(#radialGradient6150) rgb(0, 0, 0); fill-opacity: 1;" id="path11289-9" d="M 18.3652,28.2422 L 17.7832,27.0899 L 16.6929,26.8433 L 16.1114,25.2808 L 14.6578,25.4449 L 13.4224,24.5406 L 12.1133,25.692 L 12.1133,25.8736 C 11.7173,25.7593 11.2305,25.7437 10.8779,25.5269 L 10.5869,24.7046 L 10.5869,23.7993 L 9.7148,23.8813 C 9.7876,23.3051 9.8598,22.7299 9.9331,22.1538 L 9.4238,22.1538 L 8.9155,22.812 L 8.4062,23.0581 L 7.6791,22.6479 L 7.6063,21.7426 L 7.7518,20.7553 L 8.8426,19.933 L 9.7147,19.933 L 9.8597,19.4389 L 10.95,19.685 L 11.7498,20.6733 L 11.8953,19.0268 L 13.2766,17.8754 L 13.7854,16.641 L 14.803,16.2299 L 15.3845,15.4076 L 16.6926,15.1596 L 17.3474,14.1733 C 16.6931,14.1733 16.0388,14.1733 15.3845,14.1733 L 16.6203,13.5971 L 17.4919,13.5971 L 18.7282,13.185 L 18.8737,12.6928 L 18.4372,12.2807 L 17.9284,12.1157 L 18.0739,11.6225 L 17.7106,10.8823 L 16.838,11.2104 L 16.9835,10.5527 L 15.9659,9.9765 L 15.1666,11.3744 L 15.2389,11.8685 L 14.4396,12.1986 L 13.9303,13.2679 L 13.7125,12.2806 L 12.3312,11.7044 L 12.1129,10.9642 L 13.9303,9.8939 L 14.7301,9.1537 L 14.8029,8.2489 L 14.3669,8.0018 L 13.7854,7.9193 L 13.4221,8.8246 C 13.4221,8.8246 12.8142,8.9437 12.6579,8.9823 C 10.6618,10.8217 6.6286,14.7924 5.6916,22.2885 C 5.7287,22.4623 6.3708,23.4701 6.3708,23.4701 L 7.8972,24.3744 L 9.4236,24.7865 L 10.0784,25.6097 L 11.0955,26.3499 L 11.677,26.2679 L 12.113,26.4642 L 12.113,26.597 L 11.5319,28.16 L 11.0954,28.8182 L 11.2409,29.1483 L 10.8776,30.3807 L 12.1862,32.7674 L 13.4943,33.9197 L 14.0763,34.742 L 14.0031,36.4705 L 14.4396,37.4568 L 14.0031,39.3494 C 14.0031,39.3494 13.9689,39.3377 14.0246,39.5271 C 14.0808,39.7166 16.3537,40.9783 16.4982,40.8709 C 16.6422,40.7615 16.7653,40.6658 16.7653,40.6658 L 16.6203,40.2556 L 17.2014,39.6794 L 17.4197,39.1032 L 18.365,38.7731 L 19.0916,36.9626 L 18.8738,36.4704 L 19.3816,35.7302 L 20.4724,35.4822 L 21.0544,34.1658 L 20.9089,32.5213 L 21.781,31.2869 L 21.9265,30.0525 C 20.7331,29.4607 19.5495,28.8513 18.365,28.242"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6160) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11291-1" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6158) rgb(0, 0, 0); fill-opacity: 1;" id="g11293-6">
            <path style="fill: url(#radialGradient6156) rgb(0, 0, 0); fill-opacity: 1;" id="path11295-5" d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6166) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11297-3" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6164) rgb(0, 0, 0); fill-opacity: 1;" id="g11299-9">
            <path style="fill: url(#radialGradient6162) rgb(0, 0, 0); fill-opacity: 1;" id="path11301-8" d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6172) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11323-6" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6170) rgb(0, 0, 0); fill-opacity: 1;" id="g11325-1">
            <path style="fill: url(#radialGradient6168) rgb(0, 0, 0); fill-opacity: 1;" id="path11327-3" d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6178) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11329-9" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6176) rgb(0, 0, 0); fill-opacity: 1;" id="g11331-7">
            <path style="fill: url(#radialGradient6174) rgb(0, 0, 0); fill-opacity: 1;" id="path11333-0" d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665"/>
          </g>
        </g>
        <path sodipodi:type="arc" style="overflow: visible; marker: none; opacity: 0.535135; fill: none; stroke: rgb(255, 255, 255); stroke-width: 1.35429; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; visibility: visible; display: inline;" id="path11419-5" sodipodi:cx="191.875" sodipodi:cy="190.75" sodipodi:rx="13.875" sodipodi:ry="13.875" d="M 205.75,190.75 A 13.875,13.875 0 1 1 178,190.75 A 13.875,13.875 0 1 1 205.75,190.75 z" transform="matrix(0.626693, 0, 0, 0.626693, 7.03247, -75.1735)"/>
        <path style="overflow: visible; marker: none; opacity: 0.535135; fill: url(#radialGradient6180) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline; filter: url(#filter10631-9-5-7);" d="M 64.625,130 C 64.56908,130.48975 64.53125,130.99536 64.53125,131.5 C 64.53125,138.6928 70.369696,144.53125 77.5625,144.53125 C 84.755301,144.53125 90.593749,138.69279 90.59375,131.5 C 90.59375,130.99521 90.55595,130.4899 90.5,130 C 89.746575,136.47773 84.241315,141.53125 77.5625,141.53125 C 70.883467,141.53125 65.378144,136.47803 64.625,130 z" transform="matrix(0.6781, 0, 0, 0.6781, 74.6825, -44.7084)" id="path11421-5"/>
      </g>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8236" id="use9776" transform="translate(-400)" width="1600" height="900"/>
    <g transform="translate(-0.885189, -40.9812)" id="g15-paper-sheet-orig" style="display: inline;" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
      <g transform="matrix(0.47349, 0, 0, 0.47349, 252.639, 208.926)" id="g26046-48-1" style="display: inline;">
        <path transform="matrix(0.351175, 0, 0, 0.320336, 118.44, 40.0628)" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" sodipodi:ry="7.4751287" sodipodi:rx="20.203051" sodipodi:cy="38.908627" sodipodi:cx="24.849752" id="path11165-21-8" style="fill: url(#radialGradient26127-5-4-5-0) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter5927);" sodipodi:type="arc"/>
        <path sodipodi:type="arc" style="opacity: 0.587755; fill: url(#radialGradient26119-5-4-5-6) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter5788);" id="path11167-2-8" sodipodi:cx="24.849752" sodipodi:cy="38.908627" sodipodi:rx="20.203051" sodipodi:ry="7.4751287" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" transform="matrix(0.474726, 0, 0, 0.433037, 115.37, 35.4289)"/>
        <path style="fill: url(#radialGradient26129-8-9-5-2) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: url(#linearGradient26131-4-7-7-6) rgb(0, 0, 0); stroke-width: 2.13436; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" d="M 136.76906,44.460792 C 136.76906,49.699519 132.51017,53.946377 127.25739,53.946377 C 122.00413,53.946377 117.74549,49.69947 117.74549,44.460792 C 117.74549,39.222307 122.00413,34.975882 127.25739,34.975882 C 132.51017,34.975882 136.76906,39.222307 136.76906,44.460792 L 136.76906,44.460792 z" id="path11169-8-9"/>
        <g id="g11173-84-5" style="fill: url(#radialGradient26137-8-4-5-3) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11175-4-0" style="fill: url(#radialGradient26135-2-0-6-1) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 L 44.0713,20.7144 z" id="path11177-3-4" style="fill: url(#radialGradient26133-2-9-8-0) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11179-6-4" style="fill: url(#radialGradient26143-9-8-2-6) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11181-5-1" style="fill: url(#radialGradient26141-8-8-8-8) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363" id="path11183-6-6" style="fill: url(#radialGradient26139-2-6-5-4) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11185-9-8" style="fill: url(#radialGradient26149-6-8-5-2) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11187-33-2" style="fill: url(#radialGradient26147-8-3-7-1) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632" id="path11189-9-0" style="fill: url(#radialGradient26145-9-0-2-9) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11191-4-3" style="fill: url(#radialGradient26155-1-40-0-4) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11193-42-5" style="fill: url(#radialGradient26153-3-2-9-7) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749" id="path11195-2-0" style="fill: url(#radialGradient26151-3-0-7-6) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11197-8-9" style="fill: url(#radialGradient26161-6-0-0-3) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11199-2-5" style="fill: url(#radialGradient26159-2-29-4-3) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609" id="path11201-1-2" style="fill: url(#radialGradient26157-2-9-7-3) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11203-6-5" style="fill: url(#radialGradient26167-9-6-8-7) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11205-3-4" style="fill: url(#radialGradient26165-0-6-4-4) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 19.021933,28.805282 L 18.439933,27.652982 L 17.349633,27.406382 L 16.768133,25.843882 L 15.314533,26.007982 L 14.079133,25.103682 L 12.770033,26.255082 L 12.770033,26.436682 C 12.374033,26.322382 11.887233,26.306782 11.534633,26.089982 L 11.243633,25.267682 L 11.243633,24.362382 L 10.371534,24.444382 C 10.444334,23.868182 10.516533,23.292982 10.589833,22.716882 L 10.080535,22.716882 L 9.5722347,23.375082 L 9.0629347,23.621182 L 8.3358347,23.210982 L 8.2630347,22.305682 L 8.4085347,21.318382 L 9.4993347,20.496082 L 10.371434,20.496082 L 10.516433,20.001982 L 11.606733,20.248082 L 12.406533,21.236382 L 12.552033,19.589882 L 13.933333,18.438482 L 14.442133,17.204082 L 15.459733,16.792982 L 16.041233,15.970682 L 17.349333,15.722682 L 18.004133,14.736382 C 17.349833,14.736382 16.695533,14.736382 16.041233,14.736382 L 17.277033,14.160182 L 18.148633,14.160182 L 19.384933,13.748082 L 19.530433,13.255882 L 19.093933,12.843782 L 18.585133,12.678782 L 18.730633,12.185582 L 18.367333,11.445382 L 17.494733,11.773482 L 17.640233,11.115782 L 16.622633,10.539582 L 15.823333,11.937482 L 15.895633,12.431582 L 15.096333,12.761682 L 14.587033,13.830982 L 14.369233,12.843682 L 12.987933,12.267482 L 12.769633,11.527282 L 14.587033,10.456982 L 15.386833,9.7167835 L 15.459633,8.8119835 L 15.023633,8.5648835 L 14.442133,8.4823835 L 14.078833,9.3876835 C 14.078833,9.3876835 13.470933,9.5067835 13.314633,9.5453835 C 11.318533,11.384782 7.2853351,15.355482 6.3483351,22.851582 C 6.3854351,23.025382 7.0275351,24.033182 7.0275351,24.033182 L 8.5539347,24.937482 L 10.080335,25.349582 L 10.735133,26.172782 L 11.752233,26.912982 L 12.333733,26.830982 L 12.769733,27.027282 L 12.769733,27.160082 L 12.188633,28.723082 L 11.752133,29.381282 L 11.897633,29.711382 L 11.534333,30.943782 L 12.842933,33.330482 L 14.151033,34.482782 L 14.733033,35.305082 L 14.659833,37.033582 L 15.096333,38.019882 L 14.659833,39.912482 C 14.659833,39.912482 14.625633,39.900782 14.681333,40.090182 C 14.737533,40.279682 17.010433,41.541382 17.154933,41.433982 C 17.298933,41.324582 17.422033,41.228882 17.422033,41.228882 L 17.277033,40.818682 L 17.858133,40.242482 L 18.076433,39.666282 L 19.021733,39.336182 L 19.748333,37.525682 L 19.530533,37.033482 L 20.038333,36.293282 L 21.129133,36.045282 L 21.711133,34.728882 L 21.565633,33.084382 L 22.437733,31.849982 L 22.583233,30.615582 C 21.389833,30.023782 20.206233,29.414382 19.021733,28.805082" id="path11207-4-7" style="fill: url(#radialGradient26163-4-6-5-8) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11209-4-3" style="fill: url(#radialGradient26173-1-0-9-2) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11211-7-4" style="fill: url(#radialGradient26171-8-7-3-0) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649" id="path11213-6-9" style="fill: url(#radialGradient26169-7-8-2-0) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11215-1-0" style="fill: url(#radialGradient26179-4-6-3-0) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11217-1-2" style="fill: url(#radialGradient26177-2-7-0-1) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072" id="path11219-4-4" style="fill: url(#radialGradient26175-3-8-1-4) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11241-5-2" style="fill: url(#radialGradient26185-6-5-1-6) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11243-2-8" style="fill: url(#radialGradient26183-9-8-2-3) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496" id="path11245-8-5" style="fill: url(#radialGradient26181-9-56-3-2) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11247-4-3" style="fill: url(#radialGradient26191-6-8-2-8) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11249-1-8" style="fill: url(#radialGradient26189-7-78-9-6) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665" id="path11251-3-5" style="fill: url(#radialGradient26187-9-7-5-6) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26197-1-8-2-4) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11255-0-4" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26195-0-2-8-3) rgb(0, 0, 0); fill-opacity: 1;" id="g11257-69-5">
            <path style="fill: url(#radialGradient26193-41-2-7-5) rgb(0, 0, 0); fill-opacity: 1;" id="path11259-5-5" d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 L 44.0713,20.7144 z"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26203-1-5-9-4) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11261-3-0" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26201-4-11-6-3) rgb(0, 0, 0); fill-opacity: 1;" id="g11263-0-9">
            <path style="fill: url(#radialGradient26199-8-1-9-6) rgb(0, 0, 0); fill-opacity: 1;" id="path11265-1-8" d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26209-8-1-7-3) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11267-60-7" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26207-8-9-2-7) rgb(0, 0, 0); fill-opacity: 1;" id="g11269-7-8">
            <path style="fill: url(#radialGradient26205-3-0-4-4) rgb(0, 0, 0); fill-opacity: 1;" id="path11271-1-1" d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26215-3-0-8-8) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11273-4-9" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26213-6-8-5-6) rgb(0, 0, 0); fill-opacity: 1;" id="g11275-0-3">
            <path style="fill: url(#radialGradient26211-4-0-7-2) rgb(0, 0, 0); fill-opacity: 1;" id="path11277-1-8" d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26221-2-5-2-7) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11279-8-9" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26219-3-6-7-0) rgb(0, 0, 0); fill-opacity: 1;" id="g11281-1-2">
            <path style="fill: url(#radialGradient26217-1-5-8-0) rgb(0, 0, 0); fill-opacity: 1;" id="path11283-9-4" d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26227-4-2-5-8) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11285-1-4" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26225-6-6-0-1) rgb(0, 0, 0); fill-opacity: 1;" id="g11287-5-7">
            <path style="fill: url(#radialGradient26223-1-5-3-0) rgb(0, 0, 0); fill-opacity: 1;" id="path11289-4-0" d="M 18.3652,28.2422 L 17.7832,27.0899 L 16.6929,26.8433 L 16.1114,25.2808 L 14.6578,25.4449 L 13.4224,24.5406 L 12.1133,25.692 L 12.1133,25.8736 C 11.7173,25.7593 11.2305,25.7437 10.8779,25.5269 L 10.5869,24.7046 L 10.5869,23.7993 L 9.7148,23.8813 C 9.7876,23.3051 9.8598,22.7299 9.9331,22.1538 L 9.4238,22.1538 L 8.9155,22.812 L 8.4062,23.0581 L 7.6791,22.6479 L 7.6063,21.7426 L 7.7518,20.7553 L 8.8426,19.933 L 9.7147,19.933 L 9.8597,19.4389 L 10.95,19.685 L 11.7498,20.6733 L 11.8953,19.0268 L 13.2766,17.8754 L 13.7854,16.641 L 14.803,16.2299 L 15.3845,15.4076 L 16.6926,15.1596 L 17.3474,14.1733 C 16.6931,14.1733 16.0388,14.1733 15.3845,14.1733 L 16.6203,13.5971 L 17.4919,13.5971 L 18.7282,13.185 L 18.8737,12.6928 L 18.4372,12.2807 L 17.9284,12.1157 L 18.0739,11.6225 L 17.7106,10.8823 L 16.838,11.2104 L 16.9835,10.5527 L 15.9659,9.9765 L 15.1666,11.3744 L 15.2389,11.8685 L 14.4396,12.1986 L 13.9303,13.2679 L 13.7125,12.2806 L 12.3312,11.7044 L 12.1129,10.9642 L 13.9303,9.8939 L 14.7301,9.1537 L 14.8029,8.2489 L 14.3669,8.0018 L 13.7854,7.9193 L 13.4221,8.8246 C 13.4221,8.8246 12.8142,8.9437 12.6579,8.9823 C 10.6618,10.8217 6.6286,14.7924 5.6916,22.2885 C 5.7287,22.4623 6.3708,23.4701 6.3708,23.4701 L 7.8972,24.3744 L 9.4236,24.7865 L 10.0784,25.6097 L 11.0955,26.3499 L 11.677,26.2679 L 12.113,26.4642 L 12.113,26.597 L 11.5319,28.16 L 11.0954,28.8182 L 11.2409,29.1483 L 10.8776,30.3807 L 12.1862,32.7674 L 13.4943,33.9197 L 14.0763,34.742 L 14.0031,36.4705 L 14.4396,37.4568 L 14.0031,39.3494 C 14.0031,39.3494 13.9689,39.3377 14.0246,39.5271 C 14.0808,39.7166 16.3537,40.9783 16.4982,40.8709 C 16.6422,40.7615 16.7653,40.6658 16.7653,40.6658 L 16.6203,40.2556 L 17.2014,39.6794 L 17.4197,39.1032 L 18.365,38.7731 L 19.0916,36.9626 L 18.8738,36.4704 L 19.3816,35.7302 L 20.4724,35.4822 L 21.0544,34.1658 L 20.9089,32.5213 L 21.781,31.2869 L 21.9265,30.0525 C 20.7331,29.4607 19.5495,28.8513 18.365,28.242"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26233-4-3-4-6) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11291-8-1" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26231-1-3-5-9) rgb(0, 0, 0); fill-opacity: 1;" id="g11293-4-0">
            <path style="fill: url(#radialGradient26229-1-8-1-1) rgb(0, 0, 0); fill-opacity: 1;" id="path11295-7-7" d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26239-9-5-7-6) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11297-1-0" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26237-5-8-3-0) rgb(0, 0, 0); fill-opacity: 1;" id="g11299-8-1">
            <path style="fill: url(#radialGradient26235-5-9-0-9) rgb(0, 0, 0); fill-opacity: 1;" id="path11301-2-9" d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26245-3-9-0-9) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11323-69-5" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26243-3-2-6-9) rgb(0, 0, 0); fill-opacity: 1;" id="g11325-8-5">
            <path style="fill: url(#radialGradient26241-2-6-9-2) rgb(0, 0, 0); fill-opacity: 1;" id="path11327-7-9" d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient26251-7-4-2-7) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11329-2-2" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient26249-3-8-6-9) rgb(0, 0, 0); fill-opacity: 1;" id="g11331-8-9">
            <path style="fill: url(#radialGradient26247-3-9-8-6) rgb(0, 0, 0); fill-opacity: 1;" id="path11333-3-7" d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665"/>
          </g>
        </g>
        <path sodipodi:type="arc" style="overflow: visible; marker: none; opacity: 0.535135; fill: none; stroke: rgb(255, 255, 255); stroke-width: 3.64859; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; visibility: visible; display: inline;" id="path11419-1-7" sodipodi:cx="191.875" sodipodi:cy="190.75" sodipodi:rx="13.875" sodipodi:ry="13.875" d="M 205.75,190.75 A 13.875,13.875 0 1 1 178,190.75 A 13.875,13.875 0 1 1 205.75,190.75 z" transform="matrix(0.543613, 0, 0, 0.543613, 22.9735, -59.2376)"/>
        <path style="overflow: visible; marker: none; opacity: 0.535135; fill: url(#radialGradient33818-7) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline; filter: url(#filter10631-9-1-2-6);" d="M 64.625,130 C 64.56908,130.48975 64.53125,130.99536 64.53125,131.5 C 64.53125,138.6928 70.369696,144.53125 77.5625,144.53125 C 84.755301,144.53125 90.593749,138.69279 90.59375,131.5 C 90.59375,130.99521 90.55595,130.4899 90.5,130 C 89.746575,136.47773 84.241315,141.53125 77.5625,141.53125 C 70.883467,141.53125 65.378144,136.47803 64.625,130 z" transform="matrix(0.6781, 0, 0, 0.6781, 74.6825, -44.7084)" id="path11421-6-5"/>
      </g>
    </g>
    <path d="" style="overflow: visible; marker: none; opacity: 0.644231; fill: url(#radialGradient18-paper-sheet-orig-7) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="path18-paper-sheet-orig" sodipodi:nodetypes="cccccc" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <g transform="translate(-0.130391, 4.00347)" id="g2612" style="display: inline;" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8146" id="use9734" transform="translate(-400)" width="1600" height="900"/>
    <g transform="matrix(0.875189, 0, 0, 0.875189, 34.9487, 16.0204)" id="g2636" style="display: inline;" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
      <g transform="matrix(0.789211, 0, 0, 0.789211, 220.685, 108.898)" id="g26046" style="display: inline;">
        <path transform="matrix(0.351175, 0, 0, 0.320336, 118.44, 40.0628)" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" sodipodi:ry="7.4751287" sodipodi:rx="20.203051" sodipodi:cy="38.908627" sodipodi:cx="24.849752" id="path11165" style="fill: url(#radialGradient26127-5-1) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter5927);" sodipodi:type="arc"/>
        <path sodipodi:type="arc" style="opacity: 0.563265; fill: url(#radialGradient26119-5-0) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter5788);" id="path11167" sodipodi:cx="24.849752" sodipodi:cy="38.908627" sodipodi:rx="20.203051" sodipodi:ry="7.4751287" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" transform="matrix(0.474726, 0, 0, 0.433037, 115.37, 35.4289)"/>
        <path style="fill: url(#radialGradient26129-8-7) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: url(#linearGradient26131-4-1) rgb(0, 0, 0); stroke-width: 1.46313; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" d="M 136.76906,44.460792 C 136.76906,49.699519 132.51017,53.946377 127.25739,53.946377 C 122.00413,53.946377 117.74549,49.69947 117.74549,44.460792 C 117.74549,39.222307 122.00413,34.975882 127.25739,34.975882 C 132.51017,34.975882 136.76906,39.222307 136.76906,44.460792 L 136.76906,44.460792 z" id="path11169"/>
        <g id="g11173" style="fill: url(#radialGradient6954) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11175" style="fill: url(#radialGradient6952) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 L 44.0713,20.7144 z" id="path11177" style="fill: url(#radialGradient26133-2-5) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11179" style="fill: url(#radialGradient6958) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11181" style="fill: url(#radialGradient6956) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363" id="path11183" style="fill: url(#radialGradient26139-2-1) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11185" style="fill: url(#radialGradient6962) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11187" style="fill: url(#radialGradient6960) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632" id="path11189" style="fill: url(#radialGradient26145-9-2) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11191" style="fill: url(#radialGradient6966) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11193" style="fill: url(#radialGradient6964) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749" id="path11195" style="fill: url(#radialGradient26151-3-4) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11197" style="fill: url(#radialGradient6970) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11199" style="fill: url(#radialGradient6968) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609" id="path11201" style="fill: url(#radialGradient26157-2-6) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11203" style="fill: url(#radialGradient6974) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11205" style="fill: url(#radialGradient6972) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 19.021933,28.805282 L 18.439933,27.652982 L 17.349633,27.406382 L 16.768133,25.843882 L 15.314533,26.007982 L 14.079133,25.103682 L 12.770033,26.255082 L 12.770033,26.436682 C 12.374033,26.322382 11.887233,26.306782 11.534633,26.089982 L 11.243633,25.267682 L 11.243633,24.362382 L 10.371534,24.444382 C 10.444334,23.868182 10.516533,23.292982 10.589833,22.716882 L 10.080535,22.716882 L 9.5722347,23.375082 L 9.0629347,23.621182 L 8.3358347,23.210982 L 8.2630347,22.305682 L 8.4085347,21.318382 L 9.4993347,20.496082 L 10.371434,20.496082 L 10.516433,20.001982 L 11.606733,20.248082 L 12.406533,21.236382 L 12.552033,19.589882 L 13.933333,18.438482 L 14.442133,17.204082 L 15.459733,16.792982 L 16.041233,15.970682 L 17.349333,15.722682 L 18.004133,14.736382 C 17.349833,14.736382 16.695533,14.736382 16.041233,14.736382 L 17.277033,14.160182 L 18.148633,14.160182 L 19.384933,13.748082 L 19.530433,13.255882 L 19.093933,12.843782 L 18.585133,12.678782 L 18.730633,12.185582 L 18.367333,11.445382 L 17.494733,11.773482 L 17.640233,11.115782 L 16.622633,10.539582 L 15.823333,11.937482 L 15.895633,12.431582 L 15.096333,12.761682 L 14.587033,13.830982 L 14.369233,12.843682 L 12.987933,12.267482 L 12.769633,11.527282 L 14.587033,10.456982 L 15.386833,9.7167835 L 15.459633,8.8119835 L 15.023633,8.5648835 L 14.442133,8.4823835 L 14.078833,9.3876835 C 14.078833,9.3876835 13.470933,9.5067835 13.314633,9.5453835 C 11.318533,11.384782 7.2853351,15.355482 6.3483351,22.851582 C 6.3854351,23.025382 7.0275351,24.033182 7.0275351,24.033182 L 8.5539347,24.937482 L 10.080335,25.349582 L 10.735133,26.172782 L 11.752233,26.912982 L 12.333733,26.830982 L 12.769733,27.027282 L 12.769733,27.160082 L 12.188633,28.723082 L 11.752133,29.381282 L 11.897633,29.711382 L 11.534333,30.943782 L 12.842933,33.330482 L 14.151033,34.482782 L 14.733033,35.305082 L 14.659833,37.033582 L 15.096333,38.019882 L 14.659833,39.912482 C 14.659833,39.912482 14.625633,39.900782 14.681333,40.090182 C 14.737533,40.279682 17.010433,41.541382 17.154933,41.433982 C 17.298933,41.324582 17.422033,41.228882 17.422033,41.228882 L 17.277033,40.818682 L 17.858133,40.242482 L 18.076433,39.666282 L 19.021733,39.336182 L 19.748333,37.525682 L 19.530533,37.033482 L 20.038333,36.293282 L 21.129133,36.045282 L 21.711133,34.728882 L 21.565633,33.084382 L 22.437733,31.849982 L 22.583233,30.615582 C 21.389833,30.023782 20.206233,29.414382 19.021733,28.805082" id="path11207" style="fill: url(#radialGradient26163-4-8) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11209" style="fill: url(#radialGradient6978) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11211" style="fill: url(#radialGradient6976) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649" id="path11213" style="fill: url(#radialGradient26169-7-85) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11215" style="fill: url(#radialGradient6982) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11217" style="fill: url(#radialGradient6980) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072" id="path11219" style="fill: url(#radialGradient26175-3-81) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11241" style="fill: url(#radialGradient6986) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11243" style="fill: url(#radialGradient6984) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496" id="path11245" style="fill: url(#radialGradient26181-9-54) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g11247" style="fill: url(#radialGradient6990) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g11249" style="fill: url(#radialGradient6988) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665" id="path11251" style="fill: url(#radialGradient26187-9-3) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6994) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11255" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6992) rgb(0, 0, 0); fill-opacity: 1;" id="g11257">
            <path style="fill: url(#radialGradient26193-41-0) rgb(0, 0, 0); fill-opacity: 1;" id="path11259" d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 L 44.0713,20.7144 z"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient6998) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11261" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient6996) rgb(0, 0, 0); fill-opacity: 1;" id="g11263">
            <path style="fill: url(#radialGradient26199-8-13) rgb(0, 0, 0); fill-opacity: 1;" id="path11265" d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7002) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11267" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7000) rgb(0, 0, 0); fill-opacity: 1;" id="g11269">
            <path style="fill: url(#radialGradient26205-3-7) rgb(0, 0, 0); fill-opacity: 1;" id="path11271" d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7006) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11273" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7004) rgb(0, 0, 0); fill-opacity: 1;" id="g11275">
            <path style="fill: url(#radialGradient26211-4-3) rgb(0, 0, 0); fill-opacity: 1;" id="path11277" d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7010) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11279" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7008) rgb(0, 0, 0); fill-opacity: 1;" id="g11281">
            <path style="fill: url(#radialGradient26217-1-9) rgb(0, 0, 0); fill-opacity: 1;" id="path11283" d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7014) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11285" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7012) rgb(0, 0, 0); fill-opacity: 1;" id="g11287">
            <path style="fill: url(#radialGradient26223-1-2) rgb(0, 0, 0); fill-opacity: 1;" id="path11289" d="M 18.3652,28.2422 L 17.7832,27.0899 L 16.6929,26.8433 L 16.1114,25.2808 L 14.6578,25.4449 L 13.4224,24.5406 L 12.1133,25.692 L 12.1133,25.8736 C 11.7173,25.7593 11.2305,25.7437 10.8779,25.5269 L 10.5869,24.7046 L 10.5869,23.7993 L 9.7148,23.8813 C 9.7876,23.3051 9.8598,22.7299 9.9331,22.1538 L 9.4238,22.1538 L 8.9155,22.812 L 8.4062,23.0581 L 7.6791,22.6479 L 7.6063,21.7426 L 7.7518,20.7553 L 8.8426,19.933 L 9.7147,19.933 L 9.8597,19.4389 L 10.95,19.685 L 11.7498,20.6733 L 11.8953,19.0268 L 13.2766,17.8754 L 13.7854,16.641 L 14.803,16.2299 L 15.3845,15.4076 L 16.6926,15.1596 L 17.3474,14.1733 C 16.6931,14.1733 16.0388,14.1733 15.3845,14.1733 L 16.6203,13.5971 L 17.4919,13.5971 L 18.7282,13.185 L 18.8737,12.6928 L 18.4372,12.2807 L 17.9284,12.1157 L 18.0739,11.6225 L 17.7106,10.8823 L 16.838,11.2104 L 16.9835,10.5527 L 15.9659,9.9765 L 15.1666,11.3744 L 15.2389,11.8685 L 14.4396,12.1986 L 13.9303,13.2679 L 13.7125,12.2806 L 12.3312,11.7044 L 12.1129,10.9642 L 13.9303,9.8939 L 14.7301,9.1537 L 14.8029,8.2489 L 14.3669,8.0018 L 13.7854,7.9193 L 13.4221,8.8246 C 13.4221,8.8246 12.8142,8.9437 12.6579,8.9823 C 10.6618,10.8217 6.6286,14.7924 5.6916,22.2885 C 5.7287,22.4623 6.3708,23.4701 6.3708,23.4701 L 7.8972,24.3744 L 9.4236,24.7865 L 10.0784,25.6097 L 11.0955,26.3499 L 11.677,26.2679 L 12.113,26.4642 L 12.113,26.597 L 11.5319,28.16 L 11.0954,28.8182 L 11.2409,29.1483 L 10.8776,30.3807 L 12.1862,32.7674 L 13.4943,33.9197 L 14.0763,34.742 L 14.0031,36.4705 L 14.4396,37.4568 L 14.0031,39.3494 C 14.0031,39.3494 13.9689,39.3377 14.0246,39.5271 C 14.0808,39.7166 16.3537,40.9783 16.4982,40.8709 C 16.6422,40.7615 16.7653,40.6658 16.7653,40.6658 L 16.6203,40.2556 L 17.2014,39.6794 L 17.4197,39.1032 L 18.365,38.7731 L 19.0916,36.9626 L 18.8738,36.4704 L 19.3816,35.7302 L 20.4724,35.4822 L 21.0544,34.1658 L 20.9089,32.5213 L 21.781,31.2869 L 21.9265,30.0525 C 20.7331,29.4607 19.5495,28.8513 18.365,28.242"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7018) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11291" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7016) rgb(0, 0, 0); fill-opacity: 1;" id="g11293">
            <path style="fill: url(#radialGradient26229-1-5) rgb(0, 0, 0); fill-opacity: 1;" id="path11295" d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7022) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11297" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7020) rgb(0, 0, 0); fill-opacity: 1;" id="g11299">
            <path style="fill: url(#radialGradient26235-5-6) rgb(0, 0, 0); fill-opacity: 1;" id="path11301" d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7026) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11323" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7024) rgb(0, 0, 0); fill-opacity: 1;" id="g11325">
            <path style="fill: url(#radialGradient26241-2-1) rgb(0, 0, 0); fill-opacity: 1;" id="path11327" d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7030) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g11329" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7028) rgb(0, 0, 0); fill-opacity: 1;" id="g11331">
            <path style="fill: url(#radialGradient26247-3-2) rgb(0, 0, 0); fill-opacity: 1;" id="path11333" d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665"/>
          </g>
        </g>
        <path sodipodi:type="arc" style="overflow: visible; marker: none; opacity: 0.535135; fill: none; stroke: rgb(255, 255, 255); stroke-width: 2.26463; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; visibility: visible; display: inline;" id="path11419" sodipodi:cx="191.875" sodipodi:cy="190.75" sodipodi:rx="13.875" sodipodi:ry="13.875" d="M 205.75,190.75 A 13.875,13.875 0 1 1 178,190.75 A 13.875,13.875 0 1 1 205.75,190.75 z" transform="matrix(0.60039, 0, 0, 0.60039, 12.0794, -70.0678)"/>
        <path style="overflow: visible; marker: none; opacity: 0.535135; fill: url(#radialGradient29539-9) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline; filter: url(#filter10631-9-19);" d="M 64.625,130 C 64.56908,130.48975 64.53125,130.99536 64.53125,131.5 C 64.53125,138.6928 70.369696,144.53125 77.5625,144.53125 C 84.755301,144.53125 90.593749,138.69279 90.59375,131.5 C 90.59375,130.99521 90.55595,130.4899 90.5,130 C 89.746575,136.47773 84.241315,141.53125 77.5625,141.53125 C 70.883467,141.53125 65.378144,136.47803 64.625,130 z" transform="matrix(0.6781, 0, 0, 0.6781, 74.6825, -44.7084)" id="path11421"/>
      </g>
    </g>
    <g id="g12358" style="display: inline;" transform="translate(419.87, 28.077)" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <path sodipodi:nodetypes="cccccc" id="path12810" style="overflow: visible; marker: none; opacity: 0.644231; fill: url(#radialGradient13700-4) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" d="" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <g style="display: inline;" transform="matrix(0.681266, 0, 0, 0.681266, 500.141, 99.6063)" id="g13018" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <rect style="overflow: visible; marker: none; fill: none; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" id="rect15668" width="400" height="300" x="6" y="-315" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <g id="g9260" style="opacity: 0.75; fill: url(#radialGradient10878) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero;" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)">
      <path style="fill: url(#radialGradient10876) rgb(0, 0, 0); fill-opacity: 1;" d="" id="path9262"/>
    </g>
    <g style="fill: url(#radialGradient10882) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero;" id="g9264" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)">
      <path style="fill: url(#radialGradient10880) rgb(0, 0, 0); fill-opacity: 1;" d="" id="path9266"/>
    </g>
    <g id="g9270" style="opacity: 0.75; fill: url(#radialGradient10868) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero;" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)">
      <path style="fill: url(#radialGradient10866) rgb(0, 0, 0); fill-opacity: 1;" d="" id="path9272"/>
    </g>
    <g style="fill: url(#radialGradient10872) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero;" id="g9274" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)">
      <path style="fill: url(#radialGradient10870) rgb(0, 0, 0); fill-opacity: 1;" d="" id="path9276"/>
    </g>
    <g id="g9296" style="fill: none; stroke: url(#radialGradient10850) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)"/>
    <g id="g9330" style="fill: none; stroke: url(#radialGradient10812) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)"/>
    <g id="g9336" style="fill: none; stroke: url(#radialGradient10804) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)"/>
    <g style="opacity: 0.75; fill: none; stroke: url(#radialGradient10792) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" id="g9342" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)">
      <path id="path9344" d="" style="fill: none; stroke: url(#radialGradient10790) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"/>
    </g>
    <g id="g9346" style="fill: none; stroke: url(#radialGradient10796) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)">
      <path id="path9348" d="" style="fill: none; stroke: url(#radialGradient10794) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"/>
    </g>
    <g style="opacity: 0.75; fill: none; stroke: url(#radialGradient10782) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" id="g9352" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)">
      <path id="path9354" d="" style="fill: none; stroke: url(#radialGradient10780) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"/>
    </g>
    <g id="g9356" style="fill: none; stroke: url(#radialGradient10786) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)">
      <path id="path9358" d="" style="fill: none; stroke: url(#radialGradient10784) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"/>
    </g>
    <g id="g9362" style="fill: none; stroke: url(#radialGradient10776) rgb(0, 0, 0); stroke-width: 0.175369; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" transform="matrix(3.88535, 0, 0, 3.88419, -661.303, 87.4992)"/>
    <g id="g13284" transform="matrix(0.790123, 0, 0, 0.790123, 31.5062, 44.6316)">
      <path id="path13116" d="M 148.0625,88.8125 C 141.04077,88.8125 134.26083,89.79632 127.8125,91.59375 L 127.34375,90.8125 L 123.65625,91.375 L 121.90625,93.125 L 119,93.53125 L 116.4375,94.71875 L 115.1875,95.34375 L 114.4375,96.34375 L 115,96.4375 C 113.46896,97.18734 111.97046,97.995222 110.5,98.84375 L 110.40625,98.65625 L 110.25,99 C 108.80001,99.844296 107.35509,100.71997 105.96875,101.65625 L 105.8125,101.5625 L 103.5,101.21875 L 102.25,104.375 C 102.02088,104.55106 101.78953,104.72763 101.5625,104.90625 C 100.99624,105.0135 99.54744,105.27881 99.03125,105.40625 C 91.139373,112.6764 75.20456,128.37193 71.5,158 C 71.571958,158.3369 72.237503,159.4663 72.875,160.53125 C 72.820916,161.70175 72.78125,162.87863 72.78125,164.0625 C 72.78125,189.33875 85.258357,211.69302 104.375,225.34375 L 104.34375,225.46875 C 104.31606,225.49083 104.27233,225.59481 104.4375,226.15625 C 104.65972,226.90523 113.6787,231.89325 114.25,231.46875 C 114.31774,231.4173 114.31045,231.42477 114.375,231.375 C 124.51629,236.46005 135.94448,239.34375 148.0625,239.34375 C 189.6404,239.34375 223.37501,205.63371 223.375,164.0625 C 223.375,160.18652 223.06521,156.37441 222.5,152.65625 L 223.25,151.8125 C 223.25001,149.22639 220.29736,136.49117 214,125.6875 C 207.70265,114.88739 196.65624,105 196.65625,105 L 196.03125,106.0625 C 195.37598,105.52061 194.7049,104.9886 194.03125,104.46875 L 194.625,103.8125 L 192.71875,103.46875 C 180.22607,94.255325 164.77681,88.8125 148.0625,88.8125 z" style="opacity: 0.7; fill: url(#linearGradient13301) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline; filter: url(#filter13133);"/>
      <g transform="translate(712, -16)" id="g11479">
        <path sodipodi:type="arc" style="opacity: 0.869388; fill: url(#radialGradient13303) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" id="path9120" sodipodi:cx="24.849752" sodipodi:cy="38.908627" sodipodi:rx="20.203051" sodipodi:ry="7.4751287" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" transform="matrix(2.13785, 0, 0, 2.48261, -616.646, 146.857)"/>
        <path transform="matrix(3.17465, 0, 0, 3.6866, -642.41, 95.7452)" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" sodipodi:ry="7.4751287" sodipodi:rx="20.203051" sodipodi:cy="38.908627" sodipodi:cx="24.849752" id="path9122" style="opacity: 0.632653; fill: url(#radialGradient13305) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter34615-9);" sodipodi:type="arc"/>
        <g id="g11451" transform="translate(-170)">
          <path style="fill: url(#radialGradient13307) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline;" d="M -318.63862,180.0711 C -318.63862,221.64232 -352.34944,255.34271 -393.92734,255.34271 C -435.50905,255.34271 -469.21796,221.64194 -469.21796,180.0711 C -469.21796,138.50179 -435.50905,104.80484 -393.92734,104.80484 C -352.34944,104.80484 -318.63862,138.50179 -318.63862,180.0711 L -318.63862,180.0711 z" id="path11158"/>
          <path style="opacity: 0.489796; fill: url(#radialGradient13309) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline;" d="M -318.63862,180.0711 C -318.63862,221.64232 -352.34944,255.34271 -393.92734,255.34271 C -435.50905,255.34271 -469.21796,221.64194 -469.21796,180.0711 C -469.21796,138.50179 -435.50905,104.80484 -393.92734,104.80484 C -352.34944,104.80484 -318.63862,138.50179 -318.63862,180.0711 L -318.63862,180.0711 z" id="path11303"/>
          <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" transform="translate(-150)" clip-path="url(#clipPath11206)" id="path11162" d="M -243.24342,107.18574 L -251.86101,108.1397 L -262.482,111.06524 L -264.51715,113.03681 L -257.90289,117.5841 L -257.90289,120.19165 L -260.47863,122.7674 L -257.0443,129.60424 L -254.75476,128.30047 L -251.86101,123.75318 C -247.42109,122.38088 -243.425,120.8392 -239.20489,118.88788 L -235.77057,110.11127 L -243.24342,107.18574 z M -263.65857,107.82172 L -267.34729,108.3623 L -269.09624,110.11127 L -271.98999,110.52465 L -274.56573,111.73303 L -275.8059,112.33722 L -276.56909,113.3548 L -272.84857,113.99078 L -271.41759,112.68701 L -268.52386,112.05103 C -266.55498,111.09374 -264.57109,110.43695 -262.482,109.76147 L -263.65857,107.82172 z M -275.42431,115.61255 L -278.03186,116.28033 L -279.17663,118.56989 L -280.60759,115.64435 L -281.18,116.91631 L -280.89379,120.19165 L -283.18335,122.13141 L -284.61432,125.72473 L -281.75238,125.72473 L -280.32141,122.44939 C -279.08199,121.57314 -277.83149,120.68532 -276.56909,119.84185 L -273.70715,120.82764 C -271.79205,122.12839 -269.8682,123.44017 -267.95147,124.73895 L -265.08953,122.13141 L -268.23767,120.82764 L -269.66864,117.90211 L -275.13812,117.26611 L -275.42431,115.61255 z M -287.50806,118.22009 L -288.93902,121.81341 C -288.93903,121.81341 -291.34199,122.26504 -291.95995,122.4176 C -299.85183,129.68775 -315.7936,145.3856 -319.49816,175.01367 C -319.35144,175.70061 -316.82702,179.68816 -316.82702,179.68816 L -310.78515,183.28148 L -304.74329,184.90325 L -302.16753,188.14678 L -298.12902,191.07232 L -295.83947,190.75432 L -294.1223,191.51751 L -294.1223,192.05809 L -296.41186,198.22717 L -298.12902,200.83471 L -297.55664,202.13848 L -298.98761,207.00377 L -293.83612,216.44817 L -288.65282,220.99548 L -286.36327,224.239 L -286.64948,231.07585 L -284.90051,234.98716 L -286.64948,242.46001 C -286.67717,242.48209 -286.71924,242.59816 -286.55407,243.1596 C -286.33185,243.90859 -277.33119,248.89458 -276.75989,248.47008 C -276.19058,248.03767 -275.71051,247.6433 -275.71051,247.6433 L -276.28289,246.05333 L -273.99335,243.76378 L -273.13477,241.47423 L -269.38244,240.17046 L -266.52051,233.01561 L -267.37909,231.07585 L -265.37573,228.15032 L -261.05103,227.16454 L -258.76148,221.98125 L -259.33386,215.46239 L -255.89954,210.59709 L -255.32715,205.7 C -260.04544,203.36095 -264.69936,200.95339 -269.38244,198.54516 L -271.70379,193.99785 L -275.99671,193.01208 L -278.31806,186.84301 L -284.04193,187.5108 L -288.93902,183.91748 L -294.1223,188.46477 L -294.1223,189.19615 C -295.68796,188.74439 -297.59356,188.6857 -298.98761,187.82879 L -300.13238,184.58526 L -300.13238,180.99194 L -303.5985,181.30993 C -303.31066,179.03252 -303.02972,176.78189 -302.73992,174.50488 L -304.74329,174.50488 L -306.74664,177.08061 L -308.78179,178.06641 L -311.64373,176.44463 L -311.92993,172.85131 L -311.35753,168.97179 L -307.03282,165.72827 L -303.5985,165.72827 L -303.02611,163.75671 L -298.7014,164.74249 L -295.55328,168.6538 L -294.98088,162.13494 L -289.51141,157.58763 L -287.50806,152.69055 L -283.46953,151.06878 L -281.18,147.82525 L -275.99671,146.83947 L -273.42095,142.95996 C -276.00784,142.95996 -278.59311,142.95996 -281.18,142.95996 L -276.28289,140.67041 L -272.84857,140.67041 L -267.95147,139.04864 L -267.37909,137.10888 L -269.09624,135.45532 L -271.13141,134.81933 L -270.55901,132.87958 L -271.98999,129.95404 L -275.42431,131.22601 L -274.85192,128.65027 L -278.89044,126.36072 L -282.03857,131.89379 L -281.75238,133.83356 L -284.90051,135.13733 L -286.93566,139.36664 L -287.79424,135.45532 L -293.26373,133.19757 L -294.1223,130.27204 L -286.93566,126.04272 L -283.75573,123.11718 L -283.46953,119.52387 L -285.18671,118.56989 L -287.50806,118.22009 z M -206.99219,118.22009 L -212.46168,119.52387 L -215.89601,121.81341 L -215.89601,123.75318 L -221.36548,127.3465 L -220.22071,132.52978 L -217.04077,130.27204 L -215.03742,132.52978 L -212.74787,133.83356 L -211.2851,129.95404 L -212.17549,127.66449 L -211.2851,126.04272 L -208.13697,123.11718 L -206.70601,123.11718 L -208.13697,126.36072 L -208.13697,129.28626 C -206.81645,128.92698 -205.48162,128.81824 -204.13025,128.65027 L -207.85078,131.22601 L -208.13697,132.87958 L -212.46168,136.4411 L -216.75459,135.45532 L -216.75459,132.87958 L -218.75794,134.18335 L -217.89936,136.4411 L -221.07928,136.4411 L -222.79645,139.36664 L -224.9588,141.81518 L -228.83832,142.61016 L -226.54877,144.89972 L -225.94459,147.15747 L -228.83832,147.15747 L -232.55883,149.12902 L -232.55883,154.9801 L -230.84168,154.9801 L -229.25171,156.76086 L -225.65839,154.9801 L -224.22741,151.38677 L -221.65168,149.76501 L -221.07928,148.46123 L -216.75459,147.50726 L -214.46503,150.11481 L -211.85748,151.38677 L -213.32025,154.31232 L -210.99891,153.67633 L -209.85412,150.75079 L -212.74787,147.50726 L -211.5713,147.50726 L -208.70936,149.76501 L -208.13697,153.04035 L -205.56122,155.96588 L -204.98884,151.73657 L -203.52606,151.06878 C -202.10513,152.54344 -201.00233,154.30625 -199.80554,155.96588 L -195.48083,156.28387 L -192.9051,157.90564 L -194.04987,159.5274 L -196.62562,161.81695 L -200.37793,161.81695 L -205.27503,160.19519 L -207.85078,160.51317 L -209.72693,162.61193 L -215.03742,157.26965 L -218.75794,156.28387 L -224.22741,156.91985 L -229.12451,158.22363 C -231.86598,161.33066 -234.57496,164.44122 -237.16974,167.66802 L -240.31788,175.14087 L -238.8869,176.76263 L -241.46264,180.67394 L -238.6007,187.5108 C -236.15696,190.27435 -233.72704,193.01309 -231.28686,195.77862 L -227.69354,192.69408 L -226.10357,194.50665 L -222.22407,192.05809 L -220.92029,193.52086 L -217.04077,193.52086 L -214.81482,196.03302 L -216.18219,200.51671 L -213.44745,203.60125 L -213.60645,208.97533 L -211.5713,212.85485 L -213.03407,216.13018 C -213.17718,218.52299 -213.32025,220.8918 -213.32025,223.28502 C -212.14245,226.52723 -210.96631,229.75009 -209.85412,233.01561 L -208.99554,238.23071 L -208.99554,240.83824 L -206.99219,240.83824 L -203.81226,238.89849 L -200.09174,238.89849 L -194.49506,232.53862 L -195.19465,230.43987 L -191.47413,227.16454 L -194.20886,224.08 L -190.90174,221.31346 L -187.72181,219.37371 L -186.29083,217.75193 L -187.14943,214.15861 C -187.14943,211.12511 -187.14943,208.09793 -187.14943,205.06402 L -184.57367,199.53094 L -181.39375,195.96942 L -177.95943,187.5108 L -177.95943,185.22125 C -179.67241,185.43696 -181.33964,185.64138 -183.01552,185.76183 L -179.54939,182.29571 L -174.81129,179.05218 L -172.20374,176.12664 L -172.20374,172.85131 C -172.77901,171.76675 -173.37351,170.69233 -173.9527,169.60779 L -176.24225,172.21533 L -177.95943,170.27557 L -180.53516,168.304 L -180.53516,164.0747 L -177.51422,167.50902 L -174.2389,167.00024 C -172.73336,168.36662 -171.23472,169.67386 -169.9142,171.22954 L -167.75184,168.81281 C -167.75184,166.2267 -170.70808,153.47743 -177.00544,142.67376 C -183.3028,131.87365 -194.33608,122.00421 -194.33607,122.00421 L -195.19465,123.43517 L -198.08839,126.67872 L -201.8089,122.7674 L -198.08839,122.7674 L -196.37122,120.82764 L -203.23987,119.52387 L -206.99219,118.22009 z M -235.48437,122.44939 L -237.77393,123.75318 L -238.91871,123.43517 L -239.20489,125.37493 L -237.20154,126.67872 L -233.76721,124.42096 L -235.48437,122.44939 z M -273.42095,123.11718 L -275.71051,124.73895 L -272.84857,126.67872 L -270.55901,126.67872 L -270.55901,124.42096 L -273.42095,123.11718 z M -228.01154,130.59002 L -228.01154,132.52978 L -226.86676,133.83356 L -226.86676,136.75908 L -227.43915,140.67041 L -224.25922,140.03442 L -221.96966,137.74486 L -223.97302,135.80512 C -224.64869,134.00635 -225.4487,132.31528 -226.29437,130.59002 L -228.01154,130.59002 z M -229.15631,134.50134 L -231.15966,135.13733 L -230.58728,138.73066 L -228.01154,137.42688 L -229.15631,134.50134 z M -268.81006,140.35241 L -267.95147,144.89972 L -266.2343,142.29217 L -268.81006,140.35241 z M -193.76368,165.72827 L -190.45655,169.44879 L -186.57703,177.7484 L -184.28749,180.35595 L -185.43225,183.28148 L -183.2381,185.76183 C -184.24666,185.83019 -185.2538,185.88903 -186.29083,185.88903 C -188.12097,182.04447 -189.50807,178.17711 -190.90174,174.15508 L -193.35028,171.38854 L -194.62225,166.68225 L -193.76368,165.72827 z" style="overflow: visible; marker: none; fill: url(#radialGradient13311) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 0.120316; visibility: visible; display: inline; filter: url(#filter11433);"/>
          <path transform="matrix(0.969901, 0, 0, 0.969901, -515.914, 45.2667)" id="path11328" d="M 54.979206,127.14862 C 54.514916,130.41819 54.260456,133.75147 54.260456,137.14862 C 54.260456,176.14612 85.919207,207.80487 124.91671,207.80487 C 163.91422,207.80487 195.57297,176.14612 195.57297,137.14862 C 195.57297,133.75147 195.31851,130.41819 194.85422,127.14862 C 189.98872,161.41205 160.51708,187.80487 124.91671,187.80487 C 89.316347,187.80487 59.844706,161.41205 54.979206,127.14862 L 54.979206,127.14862 z" style="overflow: visible; marker: none; opacity: 0.487069; fill: url(#radialGradient13313) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 0.4674; visibility: visible; display: inline; filter: url(#filter28868-5-7);"/>
          <g transform="translate(-120)" id="g11427">
            <g id="g11419" transform="translate(90)">
              <path id="path11234" d="M -364.24342,106.18574 L -372.86101,107.1397 L -383.482,110.06524 L -385.51715,112.03681 L -378.90289,116.5841 L -378.90289,119.19165 L -381.47863,121.7674 L -378.0443,128.60424 L -375.75476,127.30047 L -372.86101,122.75318 C -368.42109,121.38088 -364.425,119.8392 -360.20489,117.88788 L -356.77057,109.11127 L -364.24342,106.18574 z M -384.65857,106.82172 L -388.34729,107.3623 L -390.09624,109.11127 L -392.98999,109.52465 L -395.56573,110.73303 L -396.8059,111.33722 L -397.56909,112.3548 L -393.84857,112.99078 L -392.41759,111.68701 L -389.52386,111.05103 C -387.55498,110.09374 -385.57109,109.43695 -383.482,108.76147 L -384.65857,106.82172 z M -396.42431,114.61255 L -399.03186,115.28033 L -400.17663,117.56989 L -401.60759,114.64435 L -402.18,115.91631 L -401.89379,119.19165 L -404.18335,121.13141 L -405.61432,124.72473 L -402.75238,124.72473 L -401.32141,121.44939 C -400.08199,120.57314 -398.83149,119.68532 -397.56909,118.84185 L -394.70715,119.82764 C -392.79205,121.12839 -390.8682,122.44017 -388.95147,123.73895 L -386.08953,121.13141 L -389.23767,119.82764 L -390.66864,116.90211 L -396.13812,116.26611 L -396.42431,114.61255 z M -408.50806,117.22009 L -409.93902,120.81341 C -409.93903,120.81341 -412.34199,121.26504 -412.95995,121.4176 C -420.85183,128.68775 -436.7936,144.3856 -440.49816,174.01367 C -440.35144,174.70061 -437.82702,178.68816 -437.82702,178.68816 L -431.78515,182.28148 L -425.74329,183.90325 L -423.16753,187.14678 L -419.12902,190.07232 L -416.83947,189.75432 L -415.1223,190.51751 L -415.1223,191.05809 L -417.41186,197.22717 L -419.12902,199.83471 L -418.55664,201.13848 L -419.98761,206.00377 L -414.83612,215.44817 L -409.65282,219.99548 L -407.36327,223.239 L -407.64948,230.07585 L -405.90051,233.98716 L -407.64948,241.46001 C -407.67717,241.48209 -407.71924,241.59816 -407.55407,242.1596 C -407.33185,242.90859 -398.33119,247.89458 -397.75989,247.47008 C -397.19058,247.03767 -396.71051,246.6433 -396.71051,246.6433 L -397.28289,245.05333 L -394.99335,242.76378 L -394.13477,240.47423 L -390.38244,239.17046 L -387.52051,232.01561 L -388.37909,230.07585 L -386.37573,227.15032 L -382.05103,226.16454 L -379.76148,220.98125 L -380.33386,214.46239 L -376.89954,209.59709 L -376.32715,204.7 C -381.04544,202.36095 -385.69936,199.95339 -390.38244,197.54516 L -392.70379,192.99785 L -396.99671,192.01208 L -399.31806,185.84301 L -405.04193,186.5108 L -409.93902,182.91748 L -415.1223,187.46477 L -415.1223,188.19615 C -416.68796,187.74439 -418.59356,187.6857 -419.98761,186.82879 L -421.13238,183.58526 L -421.13238,179.99194 L -424.5985,180.30993 C -424.31066,178.03252 -424.02972,175.78189 -423.73992,173.50488 L -425.74329,173.50488 L -427.74664,176.08061 L -429.78179,177.06641 L -432.64373,175.44463 L -432.92993,171.85131 L -432.35753,167.97179 L -428.03282,164.72827 L -424.5985,164.72827 L -424.02611,162.75671 L -419.7014,163.74249 L -416.55328,167.6538 L -415.98088,161.13494 L -410.51141,156.58763 L -408.50806,151.69055 L -404.46953,150.06878 L -402.18,146.82525 L -396.99671,145.83947 L -394.42095,141.95996 C -397.00784,141.95996 -399.59311,141.95996 -402.18,141.95996 L -397.28289,139.67041 L -393.84857,139.67041 L -388.95147,138.04864 L -388.37909,136.10888 L -390.09624,134.45532 L -392.13141,133.81933 L -391.55901,131.87958 L -392.98999,128.95404 L -396.42431,130.22601 L -395.85192,127.65027 L -399.89044,125.36072 L -403.03857,130.89379 L -402.75238,132.83356 L -405.90051,134.13733 L -407.93566,138.36664 L -408.79424,134.45532 L -414.26373,132.19757 L -415.1223,129.27204 L -407.93566,125.04272 L -404.75573,122.11718 L -404.46953,118.52387 L -406.18671,117.56989 L -408.50806,117.22009 z M -327.99219,117.22009 L -333.46168,118.52387 L -336.89601,120.81341 L -336.89601,122.75318 L -342.36548,126.3465 L -341.22071,131.52978 L -338.04077,129.27204 L -336.03742,131.52978 L -333.74787,132.83356 L -332.2851,128.95404 L -333.17549,126.66449 L -332.2851,125.04272 L -329.13697,122.11718 L -327.70601,122.11718 L -329.13697,125.36072 L -329.13697,128.28626 C -327.81645,127.92698 -326.48162,127.81824 -325.13025,127.65027 L -328.85078,130.22601 L -329.13697,131.87958 L -333.46168,135.4411 L -337.75459,134.45532 L -337.75459,131.87958 L -339.75794,133.18335 L -338.89936,135.4411 L -342.07928,135.4411 L -343.79645,138.36664 L -345.9588,140.81518 L -349.83832,141.61016 L -347.54877,143.89972 L -346.94459,146.15747 L -349.83832,146.15747 L -353.55883,148.12902 L -353.55883,153.9801 L -351.84168,153.9801 L -350.25171,155.76086 L -346.65839,153.9801 L -345.22741,150.38677 L -342.65168,148.76501 L -342.07928,147.46123 L -337.75459,146.50726 L -335.46503,149.11481 L -332.85748,150.38677 L -334.32025,153.31232 L -331.99891,152.67633 L -330.85412,149.75079 L -333.74787,146.50726 L -332.5713,146.50726 L -329.70936,148.76501 L -329.13697,152.04035 L -326.56122,154.96588 L -325.98884,150.73657 L -324.52606,150.06878 C -323.10513,151.54344 -322.00233,153.30625 -320.80554,154.96588 L -316.48083,155.28387 L -313.9051,156.90564 L -315.04987,158.5274 L -317.62562,160.81695 L -321.37793,160.81695 L -326.27503,159.19519 L -328.85078,159.51317 L -330.72693,161.61193 L -336.03742,156.26965 L -339.75794,155.28387 L -345.22741,155.91985 L -350.12451,157.22363 C -352.86598,160.33066 -355.57496,163.44122 -358.16974,166.66802 L -361.31788,174.14087 L -359.8869,175.76263 L -362.46264,179.67394 L -359.6007,186.5108 C -357.15696,189.27435 -354.72704,192.01309 -352.28686,194.77862 L -348.69354,191.69408 L -347.10357,193.50665 L -343.22407,191.05809 L -341.92029,192.52086 L -338.04077,192.52086 L -335.81482,195.03302 L -337.18219,199.51671 L -334.44745,202.60125 L -334.60645,207.97533 L -332.5713,211.85485 L -334.03407,215.13018 C -334.17718,217.52299 -334.32025,219.8918 -334.32025,222.28502 C -333.14245,225.52723 -331.96631,228.75009 -330.85412,232.01561 L -329.99554,237.23071 L -329.99554,239.83824 L -327.99219,239.83824 L -324.81226,237.89849 L -321.09174,237.89849 L -315.49506,231.53862 L -316.19465,229.43987 L -312.47413,226.16454 L -315.20886,223.08 L -311.90174,220.31346 L -308.72181,218.37371 L -307.29083,216.75193 L -308.14943,213.15861 C -308.14943,210.12511 -308.14943,207.09793 -308.14943,204.06402 L -305.57367,198.53094 L -302.39375,194.96942 L -298.95943,186.5108 L -298.95943,184.22125 C -300.67241,184.43696 -302.33964,184.64138 -304.01552,184.76183 L -300.54939,181.29571 L -295.81129,178.05218 L -293.20374,175.12664 L -293.20374,171.85131 C -293.77901,170.76675 -294.37351,169.69233 -294.9527,168.60779 L -297.24225,171.21533 L -298.95943,169.27557 L -301.53516,167.304 L -301.53516,163.0747 L -298.51422,166.50902 L -295.2389,166.00024 C -293.73336,167.36662 -292.23472,168.67386 -290.9142,170.22954 L -288.75184,167.81281 C -288.75184,165.2267 -291.70808,152.47743 -298.00544,141.67376 C -304.3028,130.87365 -315.33608,121.00421 -315.33607,121.00421 L -316.19465,122.43517 L -319.08839,125.67872 L -322.8089,121.7674 L -319.08839,121.7674 L -317.37122,119.82764 L -324.23987,118.52387 L -327.99219,117.22009 z M -356.48437,121.44939 L -358.77393,122.75318 L -359.91871,122.43517 L -360.20489,124.37493 L -358.20154,125.67872 L -354.76721,123.42096 L -356.48437,121.44939 z M -394.42095,122.11718 L -396.71051,123.73895 L -393.84857,125.67872 L -391.55901,125.67872 L -391.55901,123.42096 L -394.42095,122.11718 z M -349.01154,129.59002 L -349.01154,131.52978 L -347.86676,132.83356 L -347.86676,135.75908 L -348.43915,139.67041 L -345.25922,139.03442 L -342.96966,136.74486 L -344.97302,134.80512 C -345.64869,133.00635 -346.4487,131.31528 -347.29437,129.59002 L -349.01154,129.59002 z M -350.15631,133.50134 L -352.15966,134.13733 L -351.58728,137.73066 L -349.01154,136.42688 L -350.15631,133.50134 z M -389.81006,139.35241 L -388.95147,143.89972 L -387.2343,141.29217 L -389.81006,139.35241 z M -314.76368,164.72827 L -311.45655,168.44879 L -307.57703,176.7484 L -305.28749,179.35595 L -306.43225,182.28148 L -304.2381,184.76183 C -305.24666,184.83019 -306.2538,184.88903 -307.29083,184.88903 C -309.12097,181.04447 -310.50807,177.17711 -311.90174,173.15508 L -314.35028,170.38854 L -315.62225,165.68225 L -314.76368,164.72827 z" style="overflow: visible; marker: none; fill: url(#radialGradient13315) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-width: 0.120316; visibility: visible; display: inline;"/>
              <path transform="translate(-10)" clip-path="url(#clipPath11385)" id="path11361" d="M -354.24342,106.18574 L -362.86101,107.1397 L -373.482,110.06524 L -375.51715,112.03681 L -368.90289,116.5841 L -368.90289,119.19165 L -371.47863,121.7674 L -368.0443,128.60424 L -365.75476,127.30047 L -362.86101,122.75318 C -358.42109,121.38088 -354.425,119.8392 -350.20489,117.88788 L -346.77057,109.11127 L -354.24342,106.18574 z M -374.65857,106.82172 L -378.34729,107.3623 L -380.09624,109.11127 L -382.98999,109.52465 L -385.56573,110.73303 L -386.8059,111.33722 L -387.56909,112.3548 L -383.84857,112.99078 L -382.41759,111.68701 L -379.52386,111.05103 C -377.55498,110.09374 -375.57109,109.43695 -373.482,108.76147 L -374.65857,106.82172 z M -386.42431,114.61255 L -389.03186,115.28033 L -390.17663,117.56989 L -391.60759,114.64435 L -392.18,115.91631 L -391.89379,119.19165 L -394.18335,121.13141 L -395.61432,124.72473 L -392.75238,124.72473 L -391.32141,121.44939 C -390.08199,120.57314 -388.83149,119.68532 -387.56909,118.84185 L -384.70715,119.82764 C -382.79205,121.12839 -380.8682,122.44017 -378.95147,123.73895 L -376.08953,121.13141 L -379.23767,119.82764 L -380.66864,116.90211 L -386.13812,116.26611 L -386.42431,114.61255 z M -398.50806,117.22009 L -399.93902,120.81341 C -399.93903,120.81341 -402.34199,121.26504 -402.95995,121.4176 C -410.85183,128.68775 -426.7936,144.3856 -430.49816,174.01367 C -430.35144,174.70061 -427.82702,178.68816 -427.82702,178.68816 L -421.78515,182.28148 L -415.74329,183.90325 L -413.16753,187.14678 L -409.12902,190.07232 L -406.83947,189.75432 L -405.1223,190.51751 L -405.1223,191.05809 L -407.41186,197.22717 L -409.12902,199.83471 L -408.55664,201.13848 L -409.98761,206.00377 L -404.83612,215.44817 L -399.65282,219.99548 L -397.36327,223.239 L -397.64948,230.07585 L -395.90051,233.98716 L -397.64948,241.46001 C -397.67717,241.48209 -397.71924,241.59816 -397.55407,242.1596 C -397.33185,242.90859 -388.33119,247.89458 -387.75989,247.47008 C -387.19058,247.03767 -386.71051,246.6433 -386.71051,246.6433 L -387.28289,245.05333 L -384.99335,242.76378 L -384.13477,240.47423 L -380.38244,239.17046 L -377.52051,232.01561 L -378.37909,230.07585 L -376.37573,227.15032 L -372.05103,226.16454 L -369.76148,220.98125 L -370.33386,214.46239 L -366.89954,209.59709 L -366.32715,204.7 C -371.04544,202.36095 -375.69936,199.95339 -380.38244,197.54516 L -382.70379,192.99785 L -386.99671,192.01208 L -389.31806,185.84301 L -395.04193,186.5108 L -399.93902,182.91748 L -405.1223,187.46477 L -405.1223,188.19615 C -406.68796,187.74439 -408.59356,187.6857 -409.98761,186.82879 L -411.13238,183.58526 L -411.13238,179.99194 L -414.5985,180.30993 C -414.31066,178.03252 -414.02972,175.78189 -413.73992,173.50488 L -415.74329,173.50488 L -417.74664,176.08061 L -419.78179,177.06641 L -422.64373,175.44463 L -422.92993,171.85131 L -422.35753,167.97179 L -418.03282,164.72827 L -414.5985,164.72827 L -414.02611,162.75671 L -409.7014,163.74249 L -406.55328,167.6538 L -405.98088,161.13494 L -400.51141,156.58763 L -398.50806,151.69055 L -394.46953,150.06878 L -392.18,146.82525 L -386.99671,145.83947 L -384.42095,141.95996 C -387.00784,141.95996 -389.59311,141.95996 -392.18,141.95996 L -387.28289,139.67041 L -383.84857,139.67041 L -378.95147,138.04864 L -378.37909,136.10888 L -380.09624,134.45532 L -382.13141,133.81933 L -381.55901,131.87958 L -382.98999,128.95404 L -386.42431,130.22601 L -385.85192,127.65027 L -389.89044,125.36072 L -393.03857,130.89379 L -392.75238,132.83356 L -395.90051,134.13733 L -397.93566,138.36664 L -398.79424,134.45532 L -404.26373,132.19757 L -405.1223,129.27204 L -397.93566,125.04272 L -394.75573,122.11718 L -394.46953,118.52387 L -396.18671,117.56989 L -398.50806,117.22009 z M -317.99219,117.22009 L -323.46168,118.52387 L -326.89601,120.81341 L -326.89601,122.75318 L -332.36548,126.3465 L -331.22071,131.52978 L -328.04077,129.27204 L -326.03742,131.52978 L -323.74787,132.83356 L -322.2851,128.95404 L -323.17549,126.66449 L -322.2851,125.04272 L -319.13697,122.11718 L -317.70601,122.11718 L -319.13697,125.36072 L -319.13697,128.28626 C -317.81645,127.92698 -316.48162,127.81824 -315.13025,127.65027 L -318.85078,130.22601 L -319.13697,131.87958 L -323.46168,135.4411 L -327.75459,134.45532 L -327.75459,131.87958 L -329.75794,133.18335 L -328.89936,135.4411 L -332.07928,135.4411 L -333.79645,138.36664 L -335.9588,140.81518 L -339.83832,141.61016 L -337.54877,143.89972 L -336.94459,146.15747 L -339.83832,146.15747 L -343.55883,148.12902 L -343.55883,153.9801 L -341.84168,153.9801 L -340.25171,155.76086 L -336.65839,153.9801 L -335.22741,150.38677 L -332.65168,148.76501 L -332.07928,147.46123 L -327.75459,146.50726 L -325.46503,149.11481 L -322.85748,150.38677 L -324.32025,153.31232 L -321.99891,152.67633 L -320.85412,149.75079 L -323.74787,146.50726 L -322.5713,146.50726 L -319.70936,148.76501 L -319.13697,152.04035 L -316.56122,154.96588 L -315.98884,150.73657 L -314.52606,150.06878 C -313.10513,151.54344 -312.00233,153.30625 -310.80554,154.96588 L -306.48083,155.28387 L -303.9051,156.90564 L -305.04987,158.5274 L -307.62562,160.81695 L -311.37793,160.81695 L -316.27503,159.19519 L -318.85078,159.51317 L -320.72693,161.61193 L -326.03742,156.26965 L -329.75794,155.28387 L -335.22741,155.91985 L -340.12451,157.22363 C -342.86598,160.33066 -345.57496,163.44122 -348.16974,166.66802 L -351.31788,174.14087 L -349.8869,175.76263 L -352.46264,179.67394 L -349.6007,186.5108 C -347.15696,189.27435 -344.72704,192.01309 -342.28686,194.77862 L -338.69354,191.69408 L -337.10357,193.50665 L -333.22407,191.05809 L -331.92029,192.52086 L -328.04077,192.52086 L -325.81482,195.03302 L -327.18219,199.51671 L -324.44745,202.60125 L -324.60645,207.97533 L -322.5713,211.85485 L -324.03407,215.13018 C -324.17718,217.52299 -324.32025,219.8918 -324.32025,222.28502 C -323.14245,225.52723 -321.96631,228.75009 -320.85412,232.01561 L -319.99554,237.23071 L -319.99554,239.83824 L -317.99219,239.83824 L -314.81226,237.89849 L -311.09174,237.89849 L -305.49506,231.53862 L -306.19465,229.43987 L -302.47413,226.16454 L -305.20886,223.08 L -301.90174,220.31346 L -298.72181,218.37371 L -297.29083,216.75193 L -298.14943,213.15861 C -298.14943,210.12511 -298.14943,207.09793 -298.14943,204.06402 L -295.57367,198.53094 L -292.39375,194.96942 L -288.95943,186.5108 L -288.95943,184.22125 C -290.67241,184.43696 -292.33964,184.64138 -294.01552,184.76183 L -290.54939,181.29571 L -285.81129,178.05218 L -283.20374,175.12664 L -283.20374,171.85131 C -283.77901,170.76675 -284.37351,169.69233 -284.9527,168.60779 L -287.24225,171.21533 L -288.95943,169.27557 L -291.53516,167.304 L -291.53516,163.0747 L -288.51422,166.50902 L -285.2389,166.00024 C -283.73336,167.36662 -282.23472,168.67386 -280.9142,170.22954 L -278.75184,167.81281 C -278.75184,165.2267 -281.70808,152.47743 -288.00544,141.67376 C -294.3028,130.87365 -305.33608,121.00421 -305.33607,121.00421 L -306.19465,122.43517 L -309.08839,125.67872 L -312.8089,121.7674 L -309.08839,121.7674 L -307.37122,119.82764 L -314.23987,118.52387 L -317.99219,117.22009 z M -346.48437,121.44939 L -348.77393,122.75318 L -349.91871,122.43517 L -350.20489,124.37493 L -348.20154,125.67872 L -344.76721,123.42096 L -346.48437,121.44939 z M -384.42095,122.11718 L -386.71051,123.73895 L -383.84857,125.67872 L -381.55901,125.67872 L -381.55901,123.42096 L -384.42095,122.11718 z M -339.01154,129.59002 L -339.01154,131.52978 L -337.86676,132.83356 L -337.86676,135.75908 L -338.43915,139.67041 L -335.25922,139.03442 L -332.96966,136.74486 L -334.97302,134.80512 C -335.64869,133.00635 -336.4487,131.31528 -337.29437,129.59002 L -339.01154,129.59002 z M -340.15631,133.50134 L -342.15966,134.13733 L -341.58728,137.73066 L -339.01154,136.42688 L -340.15631,133.50134 z M -379.81006,139.35241 L -378.95147,143.89972 L -377.2343,141.29217 L -379.81006,139.35241 z M -304.76368,164.72827 L -301.45655,168.44879 L -297.57703,176.7484 L -295.28749,179.35595 L -296.43225,182.28148 L -294.2381,184.76183 C -295.24666,184.83019 -296.2538,184.88903 -297.29083,184.88903 C -299.12097,181.04447 -300.50807,177.17711 -301.90174,173.15508 L -304.35028,170.38854 L -305.62225,165.68225 L -304.76368,164.72827 z" style="overflow: visible; marker: none; fill: none; fill-opacity: 1; fill-rule: nonzero; stroke: url(#radialGradient13317) rgb(0, 0, 0); stroke-width: 1.26562; stroke-miterlimit: 4; stroke-dasharray: none; visibility: visible; display: inline;"/>
            </g>
            <path style="overflow: visible; marker: none; opacity: 0.240816; fill: url(#radialGradient13319) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-width: 0.120316; visibility: visible; display: inline;" d="M -274.24342,106.18574 L -282.86101,107.1397 L -293.482,110.06524 L -295.51715,112.03681 L -288.90289,116.5841 L -288.90289,119.19165 L -291.47863,121.7674 L -288.0443,128.60424 L -285.75476,127.30047 L -282.86101,122.75318 C -278.42109,121.38088 -274.425,119.8392 -270.20489,117.88788 L -266.77057,109.11127 L -274.24342,106.18574 z M -294.65857,106.82172 L -298.34729,107.3623 L -300.09624,109.11127 L -302.98999,109.52465 L -305.56573,110.73303 L -306.8059,111.33722 L -307.56909,112.3548 L -303.84857,112.99078 L -302.41759,111.68701 L -299.52386,111.05103 C -297.55498,110.09374 -295.57109,109.43695 -293.482,108.76147 L -294.65857,106.82172 z M -306.42431,114.61255 L -309.03186,115.28033 L -310.17663,117.56989 L -311.60759,114.64435 L -312.18,115.91631 L -311.89379,119.19165 L -314.18335,121.13141 L -315.61432,124.72473 L -312.75238,124.72473 L -311.32141,121.44939 C -310.08199,120.57314 -308.83149,119.68532 -307.56909,118.84185 L -304.70715,119.82764 C -302.79205,121.12839 -300.8682,122.44017 -298.95147,123.73895 L -296.08953,121.13141 L -299.23767,119.82764 L -300.66864,116.90211 L -306.13812,116.26611 L -306.42431,114.61255 z M -318.50806,117.22009 L -319.93902,120.81341 C -319.93903,120.81341 -322.34199,121.26504 -322.95995,121.4176 C -330.85183,128.68775 -346.7936,144.3856 -350.49816,174.01367 C -350.35144,174.70061 -347.82702,178.68816 -347.82702,178.68816 L -341.78515,182.28148 L -335.74329,183.90325 L -333.16753,187.14678 L -329.12902,190.07232 L -326.83947,189.75432 L -325.1223,190.51751 L -325.1223,191.05809 L -327.41186,197.22717 L -329.12902,199.83471 L -328.55664,201.13848 L -329.98761,206.00377 L -324.83612,215.44817 L -319.65282,219.99548 L -317.36327,223.239 L -317.64948,230.07585 L -315.90051,233.98716 L -317.64948,241.46001 C -317.67717,241.48209 -317.71924,241.59816 -317.55407,242.1596 C -317.33185,242.90859 -308.33119,247.89458 -307.75989,247.47008 C -307.19058,247.03767 -306.71051,246.6433 -306.71051,246.6433 L -307.28289,245.05333 L -304.99335,242.76378 L -304.13477,240.47423 L -300.38244,239.17046 L -297.52051,232.01561 L -298.37909,230.07585 L -296.37573,227.15032 L -292.05103,226.16454 L -289.76148,220.98125 L -290.33386,214.46239 L -286.89954,209.59709 L -286.32715,204.7 C -291.04544,202.36095 -295.69936,199.95339 -300.38244,197.54516 L -302.70379,192.99785 L -306.99671,192.01208 L -309.31806,185.84301 L -315.04193,186.5108 L -319.93902,182.91748 L -325.1223,187.46477 L -325.1223,188.19615 C -326.68796,187.74439 -328.59356,187.6857 -329.98761,186.82879 L -331.13238,183.58526 L -331.13238,179.99194 L -334.5985,180.30993 C -334.31066,178.03252 -334.02972,175.78189 -333.73992,173.50488 L -335.74329,173.50488 L -337.74664,176.08061 L -339.78179,177.06641 L -342.64373,175.44463 L -342.92993,171.85131 L -342.35753,167.97179 L -338.03282,164.72827 L -334.5985,164.72827 L -334.02611,162.75671 L -329.7014,163.74249 L -326.55328,167.6538 L -325.98088,161.13494 L -320.51141,156.58763 L -318.50806,151.69055 L -314.46953,150.06878 L -312.18,146.82525 L -306.99671,145.83947 L -304.42095,141.95996 C -307.00784,141.95996 -309.59311,141.95996 -312.18,141.95996 L -307.28289,139.67041 L -303.84857,139.67041 L -298.95147,138.04864 L -298.37909,136.10888 L -300.09624,134.45532 L -302.13141,133.81933 L -301.55901,131.87958 L -302.98999,128.95404 L -306.42431,130.22601 L -305.85192,127.65027 L -309.89044,125.36072 L -313.03857,130.89379 L -312.75238,132.83356 L -315.90051,134.13733 L -317.93566,138.36664 L -318.79424,134.45532 L -324.26373,132.19757 L -325.1223,129.27204 L -317.93566,125.04272 L -314.75573,122.11718 L -314.46953,118.52387 L -316.18671,117.56989 L -318.50806,117.22009 z M -237.99219,117.22009 L -243.46168,118.52387 L -246.89601,120.81341 L -246.89601,122.75318 L -252.36548,126.3465 L -251.22071,131.52978 L -248.04077,129.27204 L -246.03742,131.52978 L -243.74787,132.83356 L -242.2851,128.95404 L -243.17549,126.66449 L -242.2851,125.04272 L -239.13697,122.11718 L -237.70601,122.11718 L -239.13697,125.36072 L -239.13697,128.28626 C -237.81645,127.92698 -236.48162,127.81824 -235.13025,127.65027 L -238.85078,130.22601 L -239.13697,131.87958 L -243.46168,135.4411 L -247.75459,134.45532 L -247.75459,131.87958 L -249.75794,133.18335 L -248.89936,135.4411 L -252.07928,135.4411 L -253.79645,138.36664 L -255.9588,140.81518 L -259.83832,141.61016 L -257.54877,143.89972 L -256.94459,146.15747 L -259.83832,146.15747 L -263.55883,148.12902 L -263.55883,153.9801 L -261.84168,153.9801 L -260.25171,155.76086 L -256.65839,153.9801 L -255.22741,150.38677 L -252.65168,148.76501 L -252.07928,147.46123 L -247.75459,146.50726 L -245.46503,149.11481 L -242.85748,150.38677 L -244.32025,153.31232 L -241.99891,152.67633 L -240.85412,149.75079 L -243.74787,146.50726 L -242.5713,146.50726 L -239.70936,148.76501 L -239.13697,152.04035 L -236.56122,154.96588 L -235.98884,150.73657 L -234.52606,150.06878 C -233.10513,151.54344 -232.00233,153.30625 -230.80554,154.96588 L -226.48083,155.28387 L -223.9051,156.90564 L -225.04987,158.5274 L -227.62562,160.81695 L -231.37793,160.81695 L -236.27503,159.19519 L -238.85078,159.51317 L -240.72693,161.61193 L -246.03742,156.26965 L -249.75794,155.28387 L -255.22741,155.91985 L -260.12451,157.22363 C -262.86598,160.33066 -265.57496,163.44122 -268.16974,166.66802 L -271.31788,174.14087 L -269.8869,175.76263 L -272.46264,179.67394 L -269.6007,186.5108 C -267.15696,189.27435 -264.72704,192.01309 -262.28686,194.77862 L -258.69354,191.69408 L -257.10357,193.50665 L -253.22407,191.05809 L -251.92029,192.52086 L -248.04077,192.52086 L -245.81482,195.03302 L -247.18219,199.51671 L -244.44745,202.60125 L -244.60645,207.97533 L -242.5713,211.85485 L -244.03407,215.13018 C -244.17718,217.52299 -244.32025,219.8918 -244.32025,222.28502 C -243.14245,225.52723 -241.96631,228.75009 -240.85412,232.01561 L -239.99554,237.23071 L -239.99554,239.83824 L -237.99219,239.83824 L -234.81226,237.89849 L -231.09174,237.89849 L -225.49506,231.53862 L -226.19465,229.43987 L -222.47413,226.16454 L -225.20886,223.08 L -221.90174,220.31346 L -218.72181,218.37371 L -217.29083,216.75193 L -218.14943,213.15861 C -218.14943,210.12511 -218.14943,207.09793 -218.14943,204.06402 L -215.57367,198.53094 L -212.39375,194.96942 L -208.95943,186.5108 L -208.95943,184.22125 C -210.67241,184.43696 -212.33964,184.64138 -214.01552,184.76183 L -210.54939,181.29571 L -205.81129,178.05218 L -203.20374,175.12664 L -203.20374,171.85131 C -203.77901,170.76675 -204.37351,169.69233 -204.9527,168.60779 L -207.24225,171.21533 L -208.95943,169.27557 L -211.53516,167.304 L -211.53516,163.0747 L -208.51422,166.50902 L -205.2389,166.00024 C -203.73336,167.36662 -202.23472,168.67386 -200.9142,170.22954 L -198.75184,167.81281 C -198.75184,165.2267 -201.70808,152.47743 -208.00544,141.67376 C -214.3028,130.87365 -225.33608,121.00421 -225.33607,121.00421 L -226.19465,122.43517 L -229.08839,125.67872 L -232.8089,121.7674 L -229.08839,121.7674 L -227.37122,119.82764 L -234.23987,118.52387 L -237.99219,117.22009 z M -266.48437,121.44939 L -268.77393,122.75318 L -269.91871,122.43517 L -270.20489,124.37493 L -268.20154,125.67872 L -264.76721,123.42096 L -266.48437,121.44939 z M -304.42095,122.11718 L -306.71051,123.73895 L -303.84857,125.67872 L -301.55901,125.67872 L -301.55901,123.42096 L -304.42095,122.11718 z M -259.01154,129.59002 L -259.01154,131.52978 L -257.86676,132.83356 L -257.86676,135.75908 L -258.43915,139.67041 L -255.25922,139.03442 L -252.96966,136.74486 L -254.97302,134.80512 C -255.64869,133.00635 -256.4487,131.31528 -257.29437,129.59002 L -259.01154,129.59002 z M -260.15631,133.50134 L -262.15966,134.13733 L -261.58728,137.73066 L -259.01154,136.42688 L -260.15631,133.50134 z M -299.81006,139.35241 L -298.95147,143.89972 L -297.2343,141.29217 L -299.81006,139.35241 z M -224.76368,164.72827 L -221.45655,168.44879 L -217.57703,176.7484 L -215.28749,179.35595 L -216.43225,182.28148 L -214.2381,184.76183 C -215.24666,184.83019 -216.2538,184.88903 -217.29083,184.88903 C -219.12097,181.04447 -220.50807,177.17711 -221.90174,173.15508 L -224.35028,170.38854 L -225.62225,165.68225 L -224.76368,164.72827 z" id="path11315"/>
          </g>
          <path style="opacity: 1; fill: url(#radialGradient13321) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline;" d="M -351.38862,148.57242 C -351.38862,169.57171 -375.36091,186.59512 -404.92761,186.59512 C -434.49703,186.59512 -458.46796,169.57152 -458.46796,148.57242 C -458.46796,127.5741 -434.49703,110.55243 -404.92761,110.55243 C -375.36091,110.55243 -351.38862,127.5741 -351.38862,148.57242 L -351.38862,148.57242 z" id="path11399"/>
        </g>
      </g>
    </g>
    <g id="g13245" transform="matrix(1.26337, 0, 0, 1.26337, 63.8848, -44.7142)">
      <path id="path13193" d="M -241.9375,88.8125 C -248.95923,88.8125 -255.73917,89.79632 -262.1875,91.59375 L -262.65625,90.8125 L -266.34375,91.375 L -268.09375,93.125 L -271,93.53125 L -273.5625,94.71875 L -274.8125,95.34375 L -275.5625,96.34375 L -275,96.4375 C -276.53104,97.18734 -278.02954,97.995222 -279.5,98.84375 L -279.59375,98.65625 L -279.75,99 C -281.19999,99.844296 -282.64491,100.71997 -284.03125,101.65625 L -284.1875,101.5625 L -286.5,101.21875 L -287.75,104.375 C -287.97912,104.55106 -288.21047,104.72763 -288.4375,104.90625 C -289.00376,105.0135 -290.45256,105.27881 -290.96875,105.40625 C -298.86063,112.6764 -314.79544,128.37193 -318.5,158 C -318.42804,158.3369 -317.7625,159.4663 -317.125,160.53125 C -317.17908,161.70175 -317.21875,162.87863 -317.21875,164.0625 C -317.21875,189.33875 -304.74164,211.69302 -285.625,225.34375 L -285.65625,225.46875 C -285.68394,225.49083 -285.72767,225.59481 -285.5625,226.15625 C -285.34028,226.90523 -276.3213,231.89325 -275.75,231.46875 C -275.68226,231.4173 -275.68955,231.42477 -275.625,231.375 C -265.48371,236.46005 -254.05552,239.34375 -241.9375,239.34375 C -200.3596,239.34375 -166.62499,205.63371 -166.625,164.0625 C -166.625,160.18652 -166.93479,156.37441 -167.5,152.65625 L -166.75,151.8125 C -166.74999,149.22639 -169.70264,136.49117 -176,125.6875 C -182.29735,114.88739 -193.34376,105 -193.34375,105 L -193.96875,106.0625 C -194.62402,105.52061 -195.2951,104.9886 -195.96875,104.46875 L -195.375,103.8125 L -197.28125,103.46875 C -209.77393,94.255325 -225.22319,88.8125 -241.9375,88.8125 z" style="opacity: 0.7; fill: url(#linearGradient13262) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline; filter: url(#filter13133);"/>
      <g transform="translate(322, -16)" id="g13195" style="display: inline;">
        <path sodipodi:type="arc" style="fill: url(#radialGradient13264) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" id="path13197" sodipodi:cx="24.849752" sodipodi:cy="38.908627" sodipodi:rx="20.203051" sodipodi:ry="7.4751287" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" transform="matrix(2.13785, 0, 0, 2.48261, -616.646, 145.591)"/>
        <path transform="matrix(3.17465, 0, 0, 3.6866, -642.41, 95.7452)" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" sodipodi:ry="7.4751287" sodipodi:rx="20.203051" sodipodi:cy="38.908627" sodipodi:cx="24.849752" id="path13199" style="fill: url(#radialGradient13266) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter34615-9);" sodipodi:type="arc"/>
        <g id="g13201" transform="translate(-170)">
          <path style="fill: url(#radialGradient13268) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline;" d="M -318.63862,180.0711 C -318.63862,221.64232 -352.34944,255.34271 -393.92734,255.34271 C -435.50905,255.34271 -469.21796,221.64194 -469.21796,180.0711 C -469.21796,138.50179 -435.50905,104.80484 -393.92734,104.80484 C -352.34944,104.80484 -318.63862,138.50179 -318.63862,180.0711 L -318.63862,180.0711 z" id="path13203"/>
          <path style="opacity: 0.489796; fill: url(#radialGradient13270) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline;" d="M -318.63862,180.0711 C -318.63862,221.64232 -352.34944,255.34271 -393.92734,255.34271 C -435.50905,255.34271 -469.21796,221.64194 -469.21796,180.0711 C -469.21796,138.50179 -435.50905,104.80484 -393.92734,104.80484 C -352.34944,104.80484 -318.63862,138.50179 -318.63862,180.0711 L -318.63862,180.0711 z" id="path13205"/>
          <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" transform="translate(-150)" clip-path="url(#clipPath11206)" id="path13207" d="M -243.24342,107.18574 L -251.86101,108.1397 L -262.482,111.06524 L -264.51715,113.03681 L -257.90289,117.5841 L -257.90289,120.19165 L -260.47863,122.7674 L -257.0443,129.60424 L -254.75476,128.30047 L -251.86101,123.75318 C -247.42109,122.38088 -243.425,120.8392 -239.20489,118.88788 L -235.77057,110.11127 L -243.24342,107.18574 z M -263.65857,107.82172 L -267.34729,108.3623 L -269.09624,110.11127 L -271.98999,110.52465 L -274.56573,111.73303 L -275.8059,112.33722 L -276.56909,113.3548 L -272.84857,113.99078 L -271.41759,112.68701 L -268.52386,112.05103 C -266.55498,111.09374 -264.57109,110.43695 -262.482,109.76147 L -263.65857,107.82172 z M -275.42431,115.61255 L -278.03186,116.28033 L -279.17663,118.56989 L -280.60759,115.64435 L -281.18,116.91631 L -280.89379,120.19165 L -283.18335,122.13141 L -284.61432,125.72473 L -281.75238,125.72473 L -280.32141,122.44939 C -279.08199,121.57314 -277.83149,120.68532 -276.56909,119.84185 L -273.70715,120.82764 C -271.79205,122.12839 -269.8682,123.44017 -267.95147,124.73895 L -265.08953,122.13141 L -268.23767,120.82764 L -269.66864,117.90211 L -275.13812,117.26611 L -275.42431,115.61255 z M -287.50806,118.22009 L -288.93902,121.81341 C -288.93903,121.81341 -291.34199,122.26504 -291.95995,122.4176 C -299.85183,129.68775 -315.7936,145.3856 -319.49816,175.01367 C -319.35144,175.70061 -316.82702,179.68816 -316.82702,179.68816 L -310.78515,183.28148 L -304.74329,184.90325 L -302.16753,188.14678 L -298.12902,191.07232 L -295.83947,190.75432 L -294.1223,191.51751 L -294.1223,192.05809 L -296.41186,198.22717 L -298.12902,200.83471 L -297.55664,202.13848 L -298.98761,207.00377 L -293.83612,216.44817 L -288.65282,220.99548 L -286.36327,224.239 L -286.64948,231.07585 L -284.90051,234.98716 L -286.64948,242.46001 C -286.67717,242.48209 -286.71924,242.59816 -286.55407,243.1596 C -286.33185,243.90859 -277.33119,248.89458 -276.75989,248.47008 C -276.19058,248.03767 -275.71051,247.6433 -275.71051,247.6433 L -276.28289,246.05333 L -273.99335,243.76378 L -273.13477,241.47423 L -269.38244,240.17046 L -266.52051,233.01561 L -267.37909,231.07585 L -265.37573,228.15032 L -261.05103,227.16454 L -258.76148,221.98125 L -259.33386,215.46239 L -255.89954,210.59709 L -255.32715,205.7 C -260.04544,203.36095 -264.69936,200.95339 -269.38244,198.54516 L -271.70379,193.99785 L -275.99671,193.01208 L -278.31806,186.84301 L -284.04193,187.5108 L -288.93902,183.91748 L -294.1223,188.46477 L -294.1223,189.19615 C -295.68796,188.74439 -297.59356,188.6857 -298.98761,187.82879 L -300.13238,184.58526 L -300.13238,180.99194 L -303.5985,181.30993 C -303.31066,179.03252 -303.02972,176.78189 -302.73992,174.50488 L -304.74329,174.50488 L -306.74664,177.08061 L -308.78179,178.06641 L -311.64373,176.44463 L -311.92993,172.85131 L -311.35753,168.97179 L -307.03282,165.72827 L -303.5985,165.72827 L -303.02611,163.75671 L -298.7014,164.74249 L -295.55328,168.6538 L -294.98088,162.13494 L -289.51141,157.58763 L -287.50806,152.69055 L -283.46953,151.06878 L -281.18,147.82525 L -275.99671,146.83947 L -273.42095,142.95996 C -276.00784,142.95996 -278.59311,142.95996 -281.18,142.95996 L -276.28289,140.67041 L -272.84857,140.67041 L -267.95147,139.04864 L -267.37909,137.10888 L -269.09624,135.45532 L -271.13141,134.81933 L -270.55901,132.87958 L -271.98999,129.95404 L -275.42431,131.22601 L -274.85192,128.65027 L -278.89044,126.36072 L -282.03857,131.89379 L -281.75238,133.83356 L -284.90051,135.13733 L -286.93566,139.36664 L -287.79424,135.45532 L -293.26373,133.19757 L -294.1223,130.27204 L -286.93566,126.04272 L -283.75573,123.11718 L -283.46953,119.52387 L -285.18671,118.56989 L -287.50806,118.22009 z M -206.99219,118.22009 L -212.46168,119.52387 L -215.89601,121.81341 L -215.89601,123.75318 L -221.36548,127.3465 L -220.22071,132.52978 L -217.04077,130.27204 L -215.03742,132.52978 L -212.74787,133.83356 L -211.2851,129.95404 L -212.17549,127.66449 L -211.2851,126.04272 L -208.13697,123.11718 L -206.70601,123.11718 L -208.13697,126.36072 L -208.13697,129.28626 C -206.81645,128.92698 -205.48162,128.81824 -204.13025,128.65027 L -207.85078,131.22601 L -208.13697,132.87958 L -212.46168,136.4411 L -216.75459,135.45532 L -216.75459,132.87958 L -218.75794,134.18335 L -217.89936,136.4411 L -221.07928,136.4411 L -222.79645,139.36664 L -224.9588,141.81518 L -228.83832,142.61016 L -226.54877,144.89972 L -225.94459,147.15747 L -228.83832,147.15747 L -232.55883,149.12902 L -232.55883,154.9801 L -230.84168,154.9801 L -229.25171,156.76086 L -225.65839,154.9801 L -224.22741,151.38677 L -221.65168,149.76501 L -221.07928,148.46123 L -216.75459,147.50726 L -214.46503,150.11481 L -211.85748,151.38677 L -213.32025,154.31232 L -210.99891,153.67633 L -209.85412,150.75079 L -212.74787,147.50726 L -211.5713,147.50726 L -208.70936,149.76501 L -208.13697,153.04035 L -205.56122,155.96588 L -204.98884,151.73657 L -203.52606,151.06878 C -202.10513,152.54344 -201.00233,154.30625 -199.80554,155.96588 L -195.48083,156.28387 L -192.9051,157.90564 L -194.04987,159.5274 L -196.62562,161.81695 L -200.37793,161.81695 L -205.27503,160.19519 L -207.85078,160.51317 L -209.72693,162.61193 L -215.03742,157.26965 L -218.75794,156.28387 L -224.22741,156.91985 L -229.12451,158.22363 C -231.86598,161.33066 -234.57496,164.44122 -237.16974,167.66802 L -240.31788,175.14087 L -238.8869,176.76263 L -241.46264,180.67394 L -238.6007,187.5108 C -236.15696,190.27435 -233.72704,193.01309 -231.28686,195.77862 L -227.69354,192.69408 L -226.10357,194.50665 L -222.22407,192.05809 L -220.92029,193.52086 L -217.04077,193.52086 L -214.81482,196.03302 L -216.18219,200.51671 L -213.44745,203.60125 L -213.60645,208.97533 L -211.5713,212.85485 L -213.03407,216.13018 C -213.17718,218.52299 -213.32025,220.8918 -213.32025,223.28502 C -212.14245,226.52723 -210.96631,229.75009 -209.85412,233.01561 L -208.99554,238.23071 L -208.99554,240.83824 L -206.99219,240.83824 L -203.81226,238.89849 L -200.09174,238.89849 L -194.49506,232.53862 L -195.19465,230.43987 L -191.47413,227.16454 L -194.20886,224.08 L -190.90174,221.31346 L -187.72181,219.37371 L -186.29083,217.75193 L -187.14943,214.15861 C -187.14943,211.12511 -187.14943,208.09793 -187.14943,205.06402 L -184.57367,199.53094 L -181.39375,195.96942 L -177.95943,187.5108 L -177.95943,185.22125 C -179.67241,185.43696 -181.33964,185.64138 -183.01552,185.76183 L -179.54939,182.29571 L -174.81129,179.05218 L -172.20374,176.12664 L -172.20374,172.85131 C -172.77901,171.76675 -173.37351,170.69233 -173.9527,169.60779 L -176.24225,172.21533 L -177.95943,170.27557 L -180.53516,168.304 L -180.53516,164.0747 L -177.51422,167.50902 L -174.2389,167.00024 C -172.73336,168.36662 -171.23472,169.67386 -169.9142,171.22954 L -167.75184,168.81281 C -167.75184,166.2267 -170.70808,153.47743 -177.00544,142.67376 C -183.3028,131.87365 -194.33608,122.00421 -194.33607,122.00421 L -195.19465,123.43517 L -198.08839,126.67872 L -201.8089,122.7674 L -198.08839,122.7674 L -196.37122,120.82764 L -203.23987,119.52387 L -206.99219,118.22009 z M -235.48437,122.44939 L -237.77393,123.75318 L -238.91871,123.43517 L -239.20489,125.37493 L -237.20154,126.67872 L -233.76721,124.42096 L -235.48437,122.44939 z M -273.42095,123.11718 L -275.71051,124.73895 L -272.84857,126.67872 L -270.55901,126.67872 L -270.55901,124.42096 L -273.42095,123.11718 z M -228.01154,130.59002 L -228.01154,132.52978 L -226.86676,133.83356 L -226.86676,136.75908 L -227.43915,140.67041 L -224.25922,140.03442 L -221.96966,137.74486 L -223.97302,135.80512 C -224.64869,134.00635 -225.4487,132.31528 -226.29437,130.59002 L -228.01154,130.59002 z M -229.15631,134.50134 L -231.15966,135.13733 L -230.58728,138.73066 L -228.01154,137.42688 L -229.15631,134.50134 z M -268.81006,140.35241 L -267.95147,144.89972 L -266.2343,142.29217 L -268.81006,140.35241 z M -193.76368,165.72827 L -190.45655,169.44879 L -186.57703,177.7484 L -184.28749,180.35595 L -185.43225,183.28148 L -183.2381,185.76183 C -184.24666,185.83019 -185.2538,185.88903 -186.29083,185.88903 C -188.12097,182.04447 -189.50807,178.17711 -190.90174,174.15508 L -193.35028,171.38854 L -194.62225,166.68225 L -193.76368,165.72827 z" style="overflow: visible; marker: none; fill: url(#radialGradient13272) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 0.120316; visibility: visible; display: inline; filter: url(#filter11433);"/>
          <path transform="matrix(0.969901, 0, 0, 0.969901, -515.914, 45.2667)" id="path13209" d="M 54.979206,127.14862 C 54.514916,130.41819 54.260456,133.75147 54.260456,137.14862 C 54.260456,176.14612 85.919207,207.80487 124.91671,207.80487 C 163.91422,207.80487 195.57297,176.14612 195.57297,137.14862 C 195.57297,133.75147 195.31851,130.41819 194.85422,127.14862 C 189.98872,161.41205 160.51708,187.80487 124.91671,187.80487 C 89.316347,187.80487 59.844706,161.41205 54.979206,127.14862 L 54.979206,127.14862 z" style="overflow: visible; marker: none; opacity: 0.487069; fill: url(#radialGradient13274) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 0.4674; visibility: visible; display: inline; filter: url(#filter28868-5-7);"/>
          <g transform="translate(-120)" id="g13211">
            <g id="g13213" transform="translate(90)">
              <path id="path13215" d="M -364.24342,106.18574 L -372.86101,107.1397 L -383.482,110.06524 L -385.51715,112.03681 L -378.90289,116.5841 L -378.90289,119.19165 L -381.47863,121.7674 L -378.0443,128.60424 L -375.75476,127.30047 L -372.86101,122.75318 C -368.42109,121.38088 -364.425,119.8392 -360.20489,117.88788 L -356.77057,109.11127 L -364.24342,106.18574 z M -384.65857,106.82172 L -388.34729,107.3623 L -390.09624,109.11127 L -392.98999,109.52465 L -395.56573,110.73303 L -396.8059,111.33722 L -397.56909,112.3548 L -393.84857,112.99078 L -392.41759,111.68701 L -389.52386,111.05103 C -387.55498,110.09374 -385.57109,109.43695 -383.482,108.76147 L -384.65857,106.82172 z M -396.42431,114.61255 L -399.03186,115.28033 L -400.17663,117.56989 L -401.60759,114.64435 L -402.18,115.91631 L -401.89379,119.19165 L -404.18335,121.13141 L -405.61432,124.72473 L -402.75238,124.72473 L -401.32141,121.44939 C -400.08199,120.57314 -398.83149,119.68532 -397.56909,118.84185 L -394.70715,119.82764 C -392.79205,121.12839 -390.8682,122.44017 -388.95147,123.73895 L -386.08953,121.13141 L -389.23767,119.82764 L -390.66864,116.90211 L -396.13812,116.26611 L -396.42431,114.61255 z M -408.50806,117.22009 L -409.93902,120.81341 C -409.93903,120.81341 -412.34199,121.26504 -412.95995,121.4176 C -420.85183,128.68775 -436.7936,144.3856 -440.49816,174.01367 C -440.35144,174.70061 -437.82702,178.68816 -437.82702,178.68816 L -431.78515,182.28148 L -425.74329,183.90325 L -423.16753,187.14678 L -419.12902,190.07232 L -416.83947,189.75432 L -415.1223,190.51751 L -415.1223,191.05809 L -417.41186,197.22717 L -419.12902,199.83471 L -418.55664,201.13848 L -419.98761,206.00377 L -414.83612,215.44817 L -409.65282,219.99548 L -407.36327,223.239 L -407.64948,230.07585 L -405.90051,233.98716 L -407.64948,241.46001 C -407.67717,241.48209 -407.71924,241.59816 -407.55407,242.1596 C -407.33185,242.90859 -398.33119,247.89458 -397.75989,247.47008 C -397.19058,247.03767 -396.71051,246.6433 -396.71051,246.6433 L -397.28289,245.05333 L -394.99335,242.76378 L -394.13477,240.47423 L -390.38244,239.17046 L -387.52051,232.01561 L -388.37909,230.07585 L -386.37573,227.15032 L -382.05103,226.16454 L -379.76148,220.98125 L -380.33386,214.46239 L -376.89954,209.59709 L -376.32715,204.7 C -381.04544,202.36095 -385.69936,199.95339 -390.38244,197.54516 L -392.70379,192.99785 L -396.99671,192.01208 L -399.31806,185.84301 L -405.04193,186.5108 L -409.93902,182.91748 L -415.1223,187.46477 L -415.1223,188.19615 C -416.68796,187.74439 -418.59356,187.6857 -419.98761,186.82879 L -421.13238,183.58526 L -421.13238,179.99194 L -424.5985,180.30993 C -424.31066,178.03252 -424.02972,175.78189 -423.73992,173.50488 L -425.74329,173.50488 L -427.74664,176.08061 L -429.78179,177.06641 L -432.64373,175.44463 L -432.92993,171.85131 L -432.35753,167.97179 L -428.03282,164.72827 L -424.5985,164.72827 L -424.02611,162.75671 L -419.7014,163.74249 L -416.55328,167.6538 L -415.98088,161.13494 L -410.51141,156.58763 L -408.50806,151.69055 L -404.46953,150.06878 L -402.18,146.82525 L -396.99671,145.83947 L -394.42095,141.95996 C -397.00784,141.95996 -399.59311,141.95996 -402.18,141.95996 L -397.28289,139.67041 L -393.84857,139.67041 L -388.95147,138.04864 L -388.37909,136.10888 L -390.09624,134.45532 L -392.13141,133.81933 L -391.55901,131.87958 L -392.98999,128.95404 L -396.42431,130.22601 L -395.85192,127.65027 L -399.89044,125.36072 L -403.03857,130.89379 L -402.75238,132.83356 L -405.90051,134.13733 L -407.93566,138.36664 L -408.79424,134.45532 L -414.26373,132.19757 L -415.1223,129.27204 L -407.93566,125.04272 L -404.75573,122.11718 L -404.46953,118.52387 L -406.18671,117.56989 L -408.50806,117.22009 z M -327.99219,117.22009 L -333.46168,118.52387 L -336.89601,120.81341 L -336.89601,122.75318 L -342.36548,126.3465 L -341.22071,131.52978 L -338.04077,129.27204 L -336.03742,131.52978 L -333.74787,132.83356 L -332.2851,128.95404 L -333.17549,126.66449 L -332.2851,125.04272 L -329.13697,122.11718 L -327.70601,122.11718 L -329.13697,125.36072 L -329.13697,128.28626 C -327.81645,127.92698 -326.48162,127.81824 -325.13025,127.65027 L -328.85078,130.22601 L -329.13697,131.87958 L -333.46168,135.4411 L -337.75459,134.45532 L -337.75459,131.87958 L -339.75794,133.18335 L -338.89936,135.4411 L -342.07928,135.4411 L -343.79645,138.36664 L -345.9588,140.81518 L -349.83832,141.61016 L -347.54877,143.89972 L -346.94459,146.15747 L -349.83832,146.15747 L -353.55883,148.12902 L -353.55883,153.9801 L -351.84168,153.9801 L -350.25171,155.76086 L -346.65839,153.9801 L -345.22741,150.38677 L -342.65168,148.76501 L -342.07928,147.46123 L -337.75459,146.50726 L -335.46503,149.11481 L -332.85748,150.38677 L -334.32025,153.31232 L -331.99891,152.67633 L -330.85412,149.75079 L -333.74787,146.50726 L -332.5713,146.50726 L -329.70936,148.76501 L -329.13697,152.04035 L -326.56122,154.96588 L -325.98884,150.73657 L -324.52606,150.06878 C -323.10513,151.54344 -322.00233,153.30625 -320.80554,154.96588 L -316.48083,155.28387 L -313.9051,156.90564 L -315.04987,158.5274 L -317.62562,160.81695 L -321.37793,160.81695 L -326.27503,159.19519 L -328.85078,159.51317 L -330.72693,161.61193 L -336.03742,156.26965 L -339.75794,155.28387 L -345.22741,155.91985 L -350.12451,157.22363 C -352.86598,160.33066 -355.57496,163.44122 -358.16974,166.66802 L -361.31788,174.14087 L -359.8869,175.76263 L -362.46264,179.67394 L -359.6007,186.5108 C -357.15696,189.27435 -354.72704,192.01309 -352.28686,194.77862 L -348.69354,191.69408 L -347.10357,193.50665 L -343.22407,191.05809 L -341.92029,192.52086 L -338.04077,192.52086 L -335.81482,195.03302 L -337.18219,199.51671 L -334.44745,202.60125 L -334.60645,207.97533 L -332.5713,211.85485 L -334.03407,215.13018 C -334.17718,217.52299 -334.32025,219.8918 -334.32025,222.28502 C -333.14245,225.52723 -331.96631,228.75009 -330.85412,232.01561 L -329.99554,237.23071 L -329.99554,239.83824 L -327.99219,239.83824 L -324.81226,237.89849 L -321.09174,237.89849 L -315.49506,231.53862 L -316.19465,229.43987 L -312.47413,226.16454 L -315.20886,223.08 L -311.90174,220.31346 L -308.72181,218.37371 L -307.29083,216.75193 L -308.14943,213.15861 C -308.14943,210.12511 -308.14943,207.09793 -308.14943,204.06402 L -305.57367,198.53094 L -302.39375,194.96942 L -298.95943,186.5108 L -298.95943,184.22125 C -300.67241,184.43696 -302.33964,184.64138 -304.01552,184.76183 L -300.54939,181.29571 L -295.81129,178.05218 L -293.20374,175.12664 L -293.20374,171.85131 C -293.77901,170.76675 -294.37351,169.69233 -294.9527,168.60779 L -297.24225,171.21533 L -298.95943,169.27557 L -301.53516,167.304 L -301.53516,163.0747 L -298.51422,166.50902 L -295.2389,166.00024 C -293.73336,167.36662 -292.23472,168.67386 -290.9142,170.22954 L -288.75184,167.81281 C -288.75184,165.2267 -291.70808,152.47743 -298.00544,141.67376 C -304.3028,130.87365 -315.33608,121.00421 -315.33607,121.00421 L -316.19465,122.43517 L -319.08839,125.67872 L -322.8089,121.7674 L -319.08839,121.7674 L -317.37122,119.82764 L -324.23987,118.52387 L -327.99219,117.22009 z M -356.48437,121.44939 L -358.77393,122.75318 L -359.91871,122.43517 L -360.20489,124.37493 L -358.20154,125.67872 L -354.76721,123.42096 L -356.48437,121.44939 z M -394.42095,122.11718 L -396.71051,123.73895 L -393.84857,125.67872 L -391.55901,125.67872 L -391.55901,123.42096 L -394.42095,122.11718 z M -349.01154,129.59002 L -349.01154,131.52978 L -347.86676,132.83356 L -347.86676,135.75908 L -348.43915,139.67041 L -345.25922,139.03442 L -342.96966,136.74486 L -344.97302,134.80512 C -345.64869,133.00635 -346.4487,131.31528 -347.29437,129.59002 L -349.01154,129.59002 z M -350.15631,133.50134 L -352.15966,134.13733 L -351.58728,137.73066 L -349.01154,136.42688 L -350.15631,133.50134 z M -389.81006,139.35241 L -388.95147,143.89972 L -387.2343,141.29217 L -389.81006,139.35241 z M -314.76368,164.72827 L -311.45655,168.44879 L -307.57703,176.7484 L -305.28749,179.35595 L -306.43225,182.28148 L -304.2381,184.76183 C -305.24666,184.83019 -306.2538,184.88903 -307.29083,184.88903 C -309.12097,181.04447 -310.50807,177.17711 -311.90174,173.15508 L -314.35028,170.38854 L -315.62225,165.68225 L -314.76368,164.72827 z" style="overflow: visible; marker: none; fill: url(#radialGradient13276) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-width: 0.120316; visibility: visible; display: inline;"/>
              <path transform="translate(-10)" clip-path="url(#clipPath11385)" id="path13217" d="M -354.24342,106.18574 L -362.86101,107.1397 L -373.482,110.06524 L -375.51715,112.03681 L -368.90289,116.5841 L -368.90289,119.19165 L -371.47863,121.7674 L -368.0443,128.60424 L -365.75476,127.30047 L -362.86101,122.75318 C -358.42109,121.38088 -354.425,119.8392 -350.20489,117.88788 L -346.77057,109.11127 L -354.24342,106.18574 z M -374.65857,106.82172 L -378.34729,107.3623 L -380.09624,109.11127 L -382.98999,109.52465 L -385.56573,110.73303 L -386.8059,111.33722 L -387.56909,112.3548 L -383.84857,112.99078 L -382.41759,111.68701 L -379.52386,111.05103 C -377.55498,110.09374 -375.57109,109.43695 -373.482,108.76147 L -374.65857,106.82172 z M -386.42431,114.61255 L -389.03186,115.28033 L -390.17663,117.56989 L -391.60759,114.64435 L -392.18,115.91631 L -391.89379,119.19165 L -394.18335,121.13141 L -395.61432,124.72473 L -392.75238,124.72473 L -391.32141,121.44939 C -390.08199,120.57314 -388.83149,119.68532 -387.56909,118.84185 L -384.70715,119.82764 C -382.79205,121.12839 -380.8682,122.44017 -378.95147,123.73895 L -376.08953,121.13141 L -379.23767,119.82764 L -380.66864,116.90211 L -386.13812,116.26611 L -386.42431,114.61255 z M -398.50806,117.22009 L -399.93902,120.81341 C -399.93903,120.81341 -402.34199,121.26504 -402.95995,121.4176 C -410.85183,128.68775 -426.7936,144.3856 -430.49816,174.01367 C -430.35144,174.70061 -427.82702,178.68816 -427.82702,178.68816 L -421.78515,182.28148 L -415.74329,183.90325 L -413.16753,187.14678 L -409.12902,190.07232 L -406.83947,189.75432 L -405.1223,190.51751 L -405.1223,191.05809 L -407.41186,197.22717 L -409.12902,199.83471 L -408.55664,201.13848 L -409.98761,206.00377 L -404.83612,215.44817 L -399.65282,219.99548 L -397.36327,223.239 L -397.64948,230.07585 L -395.90051,233.98716 L -397.64948,241.46001 C -397.67717,241.48209 -397.71924,241.59816 -397.55407,242.1596 C -397.33185,242.90859 -388.33119,247.89458 -387.75989,247.47008 C -387.19058,247.03767 -386.71051,246.6433 -386.71051,246.6433 L -387.28289,245.05333 L -384.99335,242.76378 L -384.13477,240.47423 L -380.38244,239.17046 L -377.52051,232.01561 L -378.37909,230.07585 L -376.37573,227.15032 L -372.05103,226.16454 L -369.76148,220.98125 L -370.33386,214.46239 L -366.89954,209.59709 L -366.32715,204.7 C -371.04544,202.36095 -375.69936,199.95339 -380.38244,197.54516 L -382.70379,192.99785 L -386.99671,192.01208 L -389.31806,185.84301 L -395.04193,186.5108 L -399.93902,182.91748 L -405.1223,187.46477 L -405.1223,188.19615 C -406.68796,187.74439 -408.59356,187.6857 -409.98761,186.82879 L -411.13238,183.58526 L -411.13238,179.99194 L -414.5985,180.30993 C -414.31066,178.03252 -414.02972,175.78189 -413.73992,173.50488 L -415.74329,173.50488 L -417.74664,176.08061 L -419.78179,177.06641 L -422.64373,175.44463 L -422.92993,171.85131 L -422.35753,167.97179 L -418.03282,164.72827 L -414.5985,164.72827 L -414.02611,162.75671 L -409.7014,163.74249 L -406.55328,167.6538 L -405.98088,161.13494 L -400.51141,156.58763 L -398.50806,151.69055 L -394.46953,150.06878 L -392.18,146.82525 L -386.99671,145.83947 L -384.42095,141.95996 C -387.00784,141.95996 -389.59311,141.95996 -392.18,141.95996 L -387.28289,139.67041 L -383.84857,139.67041 L -378.95147,138.04864 L -378.37909,136.10888 L -380.09624,134.45532 L -382.13141,133.81933 L -381.55901,131.87958 L -382.98999,128.95404 L -386.42431,130.22601 L -385.85192,127.65027 L -389.89044,125.36072 L -393.03857,130.89379 L -392.75238,132.83356 L -395.90051,134.13733 L -397.93566,138.36664 L -398.79424,134.45532 L -404.26373,132.19757 L -405.1223,129.27204 L -397.93566,125.04272 L -394.75573,122.11718 L -394.46953,118.52387 L -396.18671,117.56989 L -398.50806,117.22009 z M -317.99219,117.22009 L -323.46168,118.52387 L -326.89601,120.81341 L -326.89601,122.75318 L -332.36548,126.3465 L -331.22071,131.52978 L -328.04077,129.27204 L -326.03742,131.52978 L -323.74787,132.83356 L -322.2851,128.95404 L -323.17549,126.66449 L -322.2851,125.04272 L -319.13697,122.11718 L -317.70601,122.11718 L -319.13697,125.36072 L -319.13697,128.28626 C -317.81645,127.92698 -316.48162,127.81824 -315.13025,127.65027 L -318.85078,130.22601 L -319.13697,131.87958 L -323.46168,135.4411 L -327.75459,134.45532 L -327.75459,131.87958 L -329.75794,133.18335 L -328.89936,135.4411 L -332.07928,135.4411 L -333.79645,138.36664 L -335.9588,140.81518 L -339.83832,141.61016 L -337.54877,143.89972 L -336.94459,146.15747 L -339.83832,146.15747 L -343.55883,148.12902 L -343.55883,153.9801 L -341.84168,153.9801 L -340.25171,155.76086 L -336.65839,153.9801 L -335.22741,150.38677 L -332.65168,148.76501 L -332.07928,147.46123 L -327.75459,146.50726 L -325.46503,149.11481 L -322.85748,150.38677 L -324.32025,153.31232 L -321.99891,152.67633 L -320.85412,149.75079 L -323.74787,146.50726 L -322.5713,146.50726 L -319.70936,148.76501 L -319.13697,152.04035 L -316.56122,154.96588 L -315.98884,150.73657 L -314.52606,150.06878 C -313.10513,151.54344 -312.00233,153.30625 -310.80554,154.96588 L -306.48083,155.28387 L -303.9051,156.90564 L -305.04987,158.5274 L -307.62562,160.81695 L -311.37793,160.81695 L -316.27503,159.19519 L -318.85078,159.51317 L -320.72693,161.61193 L -326.03742,156.26965 L -329.75794,155.28387 L -335.22741,155.91985 L -340.12451,157.22363 C -342.86598,160.33066 -345.57496,163.44122 -348.16974,166.66802 L -351.31788,174.14087 L -349.8869,175.76263 L -352.46264,179.67394 L -349.6007,186.5108 C -347.15696,189.27435 -344.72704,192.01309 -342.28686,194.77862 L -338.69354,191.69408 L -337.10357,193.50665 L -333.22407,191.05809 L -331.92029,192.52086 L -328.04077,192.52086 L -325.81482,195.03302 L -327.18219,199.51671 L -324.44745,202.60125 L -324.60645,207.97533 L -322.5713,211.85485 L -324.03407,215.13018 C -324.17718,217.52299 -324.32025,219.8918 -324.32025,222.28502 C -323.14245,225.52723 -321.96631,228.75009 -320.85412,232.01561 L -319.99554,237.23071 L -319.99554,239.83824 L -317.99219,239.83824 L -314.81226,237.89849 L -311.09174,237.89849 L -305.49506,231.53862 L -306.19465,229.43987 L -302.47413,226.16454 L -305.20886,223.08 L -301.90174,220.31346 L -298.72181,218.37371 L -297.29083,216.75193 L -298.14943,213.15861 C -298.14943,210.12511 -298.14943,207.09793 -298.14943,204.06402 L -295.57367,198.53094 L -292.39375,194.96942 L -288.95943,186.5108 L -288.95943,184.22125 C -290.67241,184.43696 -292.33964,184.64138 -294.01552,184.76183 L -290.54939,181.29571 L -285.81129,178.05218 L -283.20374,175.12664 L -283.20374,171.85131 C -283.77901,170.76675 -284.37351,169.69233 -284.9527,168.60779 L -287.24225,171.21533 L -288.95943,169.27557 L -291.53516,167.304 L -291.53516,163.0747 L -288.51422,166.50902 L -285.2389,166.00024 C -283.73336,167.36662 -282.23472,168.67386 -280.9142,170.22954 L -278.75184,167.81281 C -278.75184,165.2267 -281.70808,152.47743 -288.00544,141.67376 C -294.3028,130.87365 -305.33608,121.00421 -305.33607,121.00421 L -306.19465,122.43517 L -309.08839,125.67872 L -312.8089,121.7674 L -309.08839,121.7674 L -307.37122,119.82764 L -314.23987,118.52387 L -317.99219,117.22009 z M -346.48437,121.44939 L -348.77393,122.75318 L -349.91871,122.43517 L -350.20489,124.37493 L -348.20154,125.67872 L -344.76721,123.42096 L -346.48437,121.44939 z M -384.42095,122.11718 L -386.71051,123.73895 L -383.84857,125.67872 L -381.55901,125.67872 L -381.55901,123.42096 L -384.42095,122.11718 z M -339.01154,129.59002 L -339.01154,131.52978 L -337.86676,132.83356 L -337.86676,135.75908 L -338.43915,139.67041 L -335.25922,139.03442 L -332.96966,136.74486 L -334.97302,134.80512 C -335.64869,133.00635 -336.4487,131.31528 -337.29437,129.59002 L -339.01154,129.59002 z M -340.15631,133.50134 L -342.15966,134.13733 L -341.58728,137.73066 L -339.01154,136.42688 L -340.15631,133.50134 z M -379.81006,139.35241 L -378.95147,143.89972 L -377.2343,141.29217 L -379.81006,139.35241 z M -304.76368,164.72827 L -301.45655,168.44879 L -297.57703,176.7484 L -295.28749,179.35595 L -296.43225,182.28148 L -294.2381,184.76183 C -295.24666,184.83019 -296.2538,184.88903 -297.29083,184.88903 C -299.12097,181.04447 -300.50807,177.17711 -301.90174,173.15508 L -304.35028,170.38854 L -305.62225,165.68225 L -304.76368,164.72827 z" style="overflow: visible; marker: none; fill: none; fill-opacity: 1; fill-rule: nonzero; stroke: url(#radialGradient13278) rgb(0, 0, 0); stroke-width: 0.791531; stroke-miterlimit: 4; stroke-dasharray: none; visibility: visible; display: inline;"/>
            </g>
            <path style="overflow: visible; marker: none; opacity: 0.240816; fill: url(#radialGradient13280) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-width: 0.120316; visibility: visible; display: inline;" d="M -274.24342,106.18574 L -282.86101,107.1397 L -293.482,110.06524 L -295.51715,112.03681 L -288.90289,116.5841 L -288.90289,119.19165 L -291.47863,121.7674 L -288.0443,128.60424 L -285.75476,127.30047 L -282.86101,122.75318 C -278.42109,121.38088 -274.425,119.8392 -270.20489,117.88788 L -266.77057,109.11127 L -274.24342,106.18574 z M -294.65857,106.82172 L -298.34729,107.3623 L -300.09624,109.11127 L -302.98999,109.52465 L -305.56573,110.73303 L -306.8059,111.33722 L -307.56909,112.3548 L -303.84857,112.99078 L -302.41759,111.68701 L -299.52386,111.05103 C -297.55498,110.09374 -295.57109,109.43695 -293.482,108.76147 L -294.65857,106.82172 z M -306.42431,114.61255 L -309.03186,115.28033 L -310.17663,117.56989 L -311.60759,114.64435 L -312.18,115.91631 L -311.89379,119.19165 L -314.18335,121.13141 L -315.61432,124.72473 L -312.75238,124.72473 L -311.32141,121.44939 C -310.08199,120.57314 -308.83149,119.68532 -307.56909,118.84185 L -304.70715,119.82764 C -302.79205,121.12839 -300.8682,122.44017 -298.95147,123.73895 L -296.08953,121.13141 L -299.23767,119.82764 L -300.66864,116.90211 L -306.13812,116.26611 L -306.42431,114.61255 z M -318.50806,117.22009 L -319.93902,120.81341 C -319.93903,120.81341 -322.34199,121.26504 -322.95995,121.4176 C -330.85183,128.68775 -346.7936,144.3856 -350.49816,174.01367 C -350.35144,174.70061 -347.82702,178.68816 -347.82702,178.68816 L -341.78515,182.28148 L -335.74329,183.90325 L -333.16753,187.14678 L -329.12902,190.07232 L -326.83947,189.75432 L -325.1223,190.51751 L -325.1223,191.05809 L -327.41186,197.22717 L -329.12902,199.83471 L -328.55664,201.13848 L -329.98761,206.00377 L -324.83612,215.44817 L -319.65282,219.99548 L -317.36327,223.239 L -317.64948,230.07585 L -315.90051,233.98716 L -317.64948,241.46001 C -317.67717,241.48209 -317.71924,241.59816 -317.55407,242.1596 C -317.33185,242.90859 -308.33119,247.89458 -307.75989,247.47008 C -307.19058,247.03767 -306.71051,246.6433 -306.71051,246.6433 L -307.28289,245.05333 L -304.99335,242.76378 L -304.13477,240.47423 L -300.38244,239.17046 L -297.52051,232.01561 L -298.37909,230.07585 L -296.37573,227.15032 L -292.05103,226.16454 L -289.76148,220.98125 L -290.33386,214.46239 L -286.89954,209.59709 L -286.32715,204.7 C -291.04544,202.36095 -295.69936,199.95339 -300.38244,197.54516 L -302.70379,192.99785 L -306.99671,192.01208 L -309.31806,185.84301 L -315.04193,186.5108 L -319.93902,182.91748 L -325.1223,187.46477 L -325.1223,188.19615 C -326.68796,187.74439 -328.59356,187.6857 -329.98761,186.82879 L -331.13238,183.58526 L -331.13238,179.99194 L -334.5985,180.30993 C -334.31066,178.03252 -334.02972,175.78189 -333.73992,173.50488 L -335.74329,173.50488 L -337.74664,176.08061 L -339.78179,177.06641 L -342.64373,175.44463 L -342.92993,171.85131 L -342.35753,167.97179 L -338.03282,164.72827 L -334.5985,164.72827 L -334.02611,162.75671 L -329.7014,163.74249 L -326.55328,167.6538 L -325.98088,161.13494 L -320.51141,156.58763 L -318.50806,151.69055 L -314.46953,150.06878 L -312.18,146.82525 L -306.99671,145.83947 L -304.42095,141.95996 C -307.00784,141.95996 -309.59311,141.95996 -312.18,141.95996 L -307.28289,139.67041 L -303.84857,139.67041 L -298.95147,138.04864 L -298.37909,136.10888 L -300.09624,134.45532 L -302.13141,133.81933 L -301.55901,131.87958 L -302.98999,128.95404 L -306.42431,130.22601 L -305.85192,127.65027 L -309.89044,125.36072 L -313.03857,130.89379 L -312.75238,132.83356 L -315.90051,134.13733 L -317.93566,138.36664 L -318.79424,134.45532 L -324.26373,132.19757 L -325.1223,129.27204 L -317.93566,125.04272 L -314.75573,122.11718 L -314.46953,118.52387 L -316.18671,117.56989 L -318.50806,117.22009 z M -237.99219,117.22009 L -243.46168,118.52387 L -246.89601,120.81341 L -246.89601,122.75318 L -252.36548,126.3465 L -251.22071,131.52978 L -248.04077,129.27204 L -246.03742,131.52978 L -243.74787,132.83356 L -242.2851,128.95404 L -243.17549,126.66449 L -242.2851,125.04272 L -239.13697,122.11718 L -237.70601,122.11718 L -239.13697,125.36072 L -239.13697,128.28626 C -237.81645,127.92698 -236.48162,127.81824 -235.13025,127.65027 L -238.85078,130.22601 L -239.13697,131.87958 L -243.46168,135.4411 L -247.75459,134.45532 L -247.75459,131.87958 L -249.75794,133.18335 L -248.89936,135.4411 L -252.07928,135.4411 L -253.79645,138.36664 L -255.9588,140.81518 L -259.83832,141.61016 L -257.54877,143.89972 L -256.94459,146.15747 L -259.83832,146.15747 L -263.55883,148.12902 L -263.55883,153.9801 L -261.84168,153.9801 L -260.25171,155.76086 L -256.65839,153.9801 L -255.22741,150.38677 L -252.65168,148.76501 L -252.07928,147.46123 L -247.75459,146.50726 L -245.46503,149.11481 L -242.85748,150.38677 L -244.32025,153.31232 L -241.99891,152.67633 L -240.85412,149.75079 L -243.74787,146.50726 L -242.5713,146.50726 L -239.70936,148.76501 L -239.13697,152.04035 L -236.56122,154.96588 L -235.98884,150.73657 L -234.52606,150.06878 C -233.10513,151.54344 -232.00233,153.30625 -230.80554,154.96588 L -226.48083,155.28387 L -223.9051,156.90564 L -225.04987,158.5274 L -227.62562,160.81695 L -231.37793,160.81695 L -236.27503,159.19519 L -238.85078,159.51317 L -240.72693,161.61193 L -246.03742,156.26965 L -249.75794,155.28387 L -255.22741,155.91985 L -260.12451,157.22363 C -262.86598,160.33066 -265.57496,163.44122 -268.16974,166.66802 L -271.31788,174.14087 L -269.8869,175.76263 L -272.46264,179.67394 L -269.6007,186.5108 C -267.15696,189.27435 -264.72704,192.01309 -262.28686,194.77862 L -258.69354,191.69408 L -257.10357,193.50665 L -253.22407,191.05809 L -251.92029,192.52086 L -248.04077,192.52086 L -245.81482,195.03302 L -247.18219,199.51671 L -244.44745,202.60125 L -244.60645,207.97533 L -242.5713,211.85485 L -244.03407,215.13018 C -244.17718,217.52299 -244.32025,219.8918 -244.32025,222.28502 C -243.14245,225.52723 -241.96631,228.75009 -240.85412,232.01561 L -239.99554,237.23071 L -239.99554,239.83824 L -237.99219,239.83824 L -234.81226,237.89849 L -231.09174,237.89849 L -225.49506,231.53862 L -226.19465,229.43987 L -222.47413,226.16454 L -225.20886,223.08 L -221.90174,220.31346 L -218.72181,218.37371 L -217.29083,216.75193 L -218.14943,213.15861 C -218.14943,210.12511 -218.14943,207.09793 -218.14943,204.06402 L -215.57367,198.53094 L -212.39375,194.96942 L -208.95943,186.5108 L -208.95943,184.22125 C -210.67241,184.43696 -212.33964,184.64138 -214.01552,184.76183 L -210.54939,181.29571 L -205.81129,178.05218 L -203.20374,175.12664 L -203.20374,171.85131 C -203.77901,170.76675 -204.37351,169.69233 -204.9527,168.60779 L -207.24225,171.21533 L -208.95943,169.27557 L -211.53516,167.304 L -211.53516,163.0747 L -208.51422,166.50902 L -205.2389,166.00024 C -203.73336,167.36662 -202.23472,168.67386 -200.9142,170.22954 L -198.75184,167.81281 C -198.75184,165.2267 -201.70808,152.47743 -208.00544,141.67376 C -214.3028,130.87365 -225.33608,121.00421 -225.33607,121.00421 L -226.19465,122.43517 L -229.08839,125.67872 L -232.8089,121.7674 L -229.08839,121.7674 L -227.37122,119.82764 L -234.23987,118.52387 L -237.99219,117.22009 z M -266.48437,121.44939 L -268.77393,122.75318 L -269.91871,122.43517 L -270.20489,124.37493 L -268.20154,125.67872 L -264.76721,123.42096 L -266.48437,121.44939 z M -304.42095,122.11718 L -306.71051,123.73895 L -303.84857,125.67872 L -301.55901,125.67872 L -301.55901,123.42096 L -304.42095,122.11718 z M -259.01154,129.59002 L -259.01154,131.52978 L -257.86676,132.83356 L -257.86676,135.75908 L -258.43915,139.67041 L -255.25922,139.03442 L -252.96966,136.74486 L -254.97302,134.80512 C -255.64869,133.00635 -256.4487,131.31528 -257.29437,129.59002 L -259.01154,129.59002 z M -260.15631,133.50134 L -262.15966,134.13733 L -261.58728,137.73066 L -259.01154,136.42688 L -260.15631,133.50134 z M -299.81006,139.35241 L -298.95147,143.89972 L -297.2343,141.29217 L -299.81006,139.35241 z M -224.76368,164.72827 L -221.45655,168.44879 L -217.57703,176.7484 L -215.28749,179.35595 L -216.43225,182.28148 L -214.2381,184.76183 C -215.24666,184.83019 -216.2538,184.88903 -217.29083,184.88903 C -219.12097,181.04447 -220.50807,177.17711 -221.90174,173.15508 L -224.35028,170.38854 L -225.62225,165.68225 L -224.76368,164.72827 z" id="path13219"/>
          </g>
          <path style="opacity: 1; fill: url(#radialGradient13282) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; display: inline;" d="M -351.38862,148.57242 C -351.38862,169.57171 -375.36091,186.59512 -404.92761,186.59512 C -434.49703,186.59512 -458.46796,169.57152 -458.46796,148.57242 C -458.46796,127.5741 -434.49703,110.55243 -404.92761,110.55243 C -375.36091,110.55243 -351.38862,127.5741 -351.38862,148.57242 L -351.38862,148.57242 z" id="path13221"/>
        </g>
      </g>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8323" id="use9808" transform="translate(-400)" width="1600" height="900"/>
    <g transform="matrix(0.675723, 0, 0, 0.675723, 96.0215, 74.0587)" id="g7032" style="display: inline;" inkscape:export-filename="/home/jimmac/Desktop/text-html.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
      <g transform="matrix(0.47349, 0, 0, 0.47349, 252.639, 208.926)" id="g7034" style="display: inline;">
        <path transform="matrix(0.351175, 0, 0, 0.320336, 118.44, 40.0628)" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" sodipodi:ry="7.4751287" sodipodi:rx="20.203051" sodipodi:cy="38.908627" sodipodi:cx="24.849752" id="path7036" style="fill: url(#radialGradient7168) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter5927);" sodipodi:type="arc"/>
        <path sodipodi:type="arc" style="opacity: 0.587755; fill: url(#radialGradient7170) rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter5788);" id="path7038" sodipodi:cx="24.849752" sodipodi:cy="38.908627" sodipodi:rx="20.203051" sodipodi:ry="7.4751287" d="M 45.052803,38.908627 A 20.203051,7.4751287 0 1 1 4.6467018,38.908627 A 20.203051,7.4751287 0 1 1 45.052803,38.908627 z" transform="matrix(0.474726, 0, 0, 0.433037, 115.37, 35.4289)"/>
        <path style="fill: url(#radialGradient7172) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: url(#linearGradient7174) rgb(0, 0, 0); stroke-width: 3.15863; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" d="M 136.76906,44.460792 C 136.76906,49.699519 132.51017,53.946377 127.25739,53.946377 C 122.00413,53.946377 117.74549,49.69947 117.74549,44.460792 C 117.74549,39.222307 122.00413,34.975882 127.25739,34.975882 C 132.51017,34.975882 136.76906,39.222307 136.76906,44.460792 L 136.76906,44.460792 z" id="path7040"/>
        <g id="g7042" style="fill: url(#radialGradient7180) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7044" style="fill: url(#radialGradient7178) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 L 44.0713,20.7144 z" id="path7046" style="fill: url(#radialGradient7176) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7048" style="fill: url(#radialGradient7186) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7050" style="fill: url(#radialGradient7184) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363" id="path7052" style="fill: url(#radialGradient7182) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7054" style="fill: url(#radialGradient7192) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7056" style="fill: url(#radialGradient7190) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632" id="path7058" style="fill: url(#radialGradient7188) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7060" style="fill: url(#radialGradient7198) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7062" style="fill: url(#radialGradient7196) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749" id="path7064" style="fill: url(#radialGradient7194) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7066" style="fill: url(#radialGradient7204) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7068" style="fill: url(#radialGradient7202) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609" id="path7070" style="fill: url(#radialGradient7200) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7072" style="fill: url(#radialGradient7210) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7074" style="fill: url(#radialGradient7208) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 19.021933,28.805282 L 18.439933,27.652982 L 17.349633,27.406382 L 16.768133,25.843882 L 15.314533,26.007982 L 14.079133,25.103682 L 12.770033,26.255082 L 12.770033,26.436682 C 12.374033,26.322382 11.887233,26.306782 11.534633,26.089982 L 11.243633,25.267682 L 11.243633,24.362382 L 10.371534,24.444382 C 10.444334,23.868182 10.516533,23.292982 10.589833,22.716882 L 10.080535,22.716882 L 9.5722347,23.375082 L 9.0629347,23.621182 L 8.3358347,23.210982 L 8.2630347,22.305682 L 8.4085347,21.318382 L 9.4993347,20.496082 L 10.371434,20.496082 L 10.516433,20.001982 L 11.606733,20.248082 L 12.406533,21.236382 L 12.552033,19.589882 L 13.933333,18.438482 L 14.442133,17.204082 L 15.459733,16.792982 L 16.041233,15.970682 L 17.349333,15.722682 L 18.004133,14.736382 C 17.349833,14.736382 16.695533,14.736382 16.041233,14.736382 L 17.277033,14.160182 L 18.148633,14.160182 L 19.384933,13.748082 L 19.530433,13.255882 L 19.093933,12.843782 L 18.585133,12.678782 L 18.730633,12.185582 L 18.367333,11.445382 L 17.494733,11.773482 L 17.640233,11.115782 L 16.622633,10.539582 L 15.823333,11.937482 L 15.895633,12.431582 L 15.096333,12.761682 L 14.587033,13.830982 L 14.369233,12.843682 L 12.987933,12.267482 L 12.769633,11.527282 L 14.587033,10.456982 L 15.386833,9.7167835 L 15.459633,8.8119835 L 15.023633,8.5648835 L 14.442133,8.4823835 L 14.078833,9.3876835 C 14.078833,9.3876835 13.470933,9.5067835 13.314633,9.5453835 C 11.318533,11.384782 7.2853351,15.355482 6.3483351,22.851582 C 6.3854351,23.025382 7.0275351,24.033182 7.0275351,24.033182 L 8.5539347,24.937482 L 10.080335,25.349582 L 10.735133,26.172782 L 11.752233,26.912982 L 12.333733,26.830982 L 12.769733,27.027282 L 12.769733,27.160082 L 12.188633,28.723082 L 11.752133,29.381282 L 11.897633,29.711382 L 11.534333,30.943782 L 12.842933,33.330482 L 14.151033,34.482782 L 14.733033,35.305082 L 14.659833,37.033582 L 15.096333,38.019882 L 14.659833,39.912482 C 14.659833,39.912482 14.625633,39.900782 14.681333,40.090182 C 14.737533,40.279682 17.010433,41.541382 17.154933,41.433982 C 17.298933,41.324582 17.422033,41.228882 17.422033,41.228882 L 17.277033,40.818682 L 17.858133,40.242482 L 18.076433,39.666282 L 19.021733,39.336182 L 19.748333,37.525682 L 19.530533,37.033482 L 20.038333,36.293282 L 21.129133,36.045282 L 21.711133,34.728882 L 21.565633,33.084382 L 22.437733,31.849982 L 22.583233,30.615582 C 21.389833,30.023782 20.206233,29.414382 19.021733,28.805082" id="path7076" style="fill: url(#radialGradient7206) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7078" style="fill: url(#radialGradient7216) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7080" style="fill: url(#radialGradient7214) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649" id="path7082" style="fill: url(#radialGradient7212) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7084" style="fill: url(#radialGradient7222) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7086" style="fill: url(#radialGradient7220) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072" id="path7088" style="fill: url(#radialGradient7218) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7090" style="fill: url(#radialGradient7228) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7093" style="fill: url(#radialGradient7226) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496" id="path7095" style="fill: url(#radialGradient7224) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g id="g7097" style="fill: url(#radialGradient7234) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" transform="matrix(0.451733, 0, 0, 0.451598, 115.798, 33.8722)">
          <g id="g7099" style="fill: url(#radialGradient7232) rgb(0, 0, 0); fill-opacity: 1;">
            <path d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665" id="path7101" style="fill: url(#radialGradient7230) rgb(0, 0, 0); fill-opacity: 1;"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7240) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7103" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7238) rgb(0, 0, 0); fill-opacity: 1;" id="g7105">
            <path style="fill: url(#radialGradient7236) rgb(0, 0, 0); fill-opacity: 1;" id="path7107" d="M 44.0713,20.7144 C 44.0713,20.9771 44.0713,20.7144 44.0713,20.7144 L 43.5264,21.3316 C 43.1924,20.938 42.8174,20.607 42.4366,20.2613 L 41.6007,20.3843 L 40.837,19.521 L 40.837,20.5894 L 41.4913,21.0845 L 41.9268,21.5777 L 42.5088,20.9195 C 42.6553,21.1939 42.7998,21.4683 42.9453,21.7427 L 42.9453,22.565 L 42.29,23.3052 L 41.0908,24.1284 L 40.1826,25.0347 L 39.6006,24.3745 L 39.8916,23.6343 L 39.3105,22.9761 L 38.3291,20.8784 L 37.4932,19.9331 L 37.2744,20.1792 L 37.6025,21.3726 L 38.2197,22.0718 C 38.5722,23.0894 38.9209,24.062 39.3838,25.0347 C 40.1016,25.0347 40.7783,24.9585 41.4912,24.8687 L 41.4912,25.4449 L 40.6191,27.5841 L 39.8193,28.4884 L 39.165,29.8888 C 39.165,30.6564 39.165,31.424 39.165,32.1915 L 39.3838,33.0978 L 39.0205,33.508 L 38.2197,34.0021 L 37.3838,34.7013 L 38.0752,35.4826 L 37.1299,36.3068 L 37.3115,36.84 L 35.8935,38.4455 L 34.9492,38.4455 L 34.1494,38.9396 L 33.6396,38.9396 L 33.6396,38.2814 L 33.4228,36.963 C 33.1415,36.1368 32.8486,35.3165 32.5507,34.4962 C 32.5507,33.8907 32.5868,33.2911 32.623,32.6857 L 32.9873,31.8634 L 32.4775,30.8751 L 32.5146,29.5177 L 31.8232,28.7364 L 32.1689,27.6055 L 31.6064,26.9673 L 30.624,26.9673 L 30.2969,26.5972 L 29.3155,27.2149 L 28.9161,26.7613 L 28.0069,27.543 C 27.3897,26.8433 26.7715,26.1441 26.1534,25.4449 L 25.4268,23.7164 L 26.0811,22.7301 L 25.7178,22.319 L 26.5166,20.4254 C 27.1729,19.609 27.8584,18.8258 28.5518,18.0397 L 29.7881,17.7106 L 31.169,17.5465 L 32.1143,17.7936 L 33.459,19.15 L 33.9317,18.6158 L 34.585,18.5338 L 35.8213,18.9449 L 36.7666,18.9449 L 37.4209,18.3687 L 37.7119,17.9576 L 37.0566,17.5465 L 35.9658,17.4645 C 35.6631,17.0446 35.3818,16.6032 35.0224,16.2301 L 34.6581,16.3942 L 34.5126,17.4645 L 33.8583,16.7243 L 33.7138,15.9001 L 32.9872,15.3259 L 32.6952,15.3259 L 33.4227,16.1482 L 33.1317,16.8884 L 32.5506,17.0525 L 32.9139,16.3123 L 32.2586,15.9842 L 31.6785,15.326 L 30.5867,15.5721 L 30.4422,15.9002 L 29.7879,16.3123 L 29.4246,17.2176 L 28.5164,17.6697 L 28.116,17.2176 L 27.6805,17.2176 L 27.6805,15.7362 L 28.6258,15.2421 L 29.3524,15.2421 L 29.2059,14.6669 L 28.6258,14.0907 L 29.6063,13.8846 L 30.1512,13.2684 L 30.5867,12.5272 L 31.3875,12.5272 L 31.1687,11.952 L 31.6785,11.6229 L 31.6785,12.2811 L 32.7683,12.5272 L 33.8581,11.6229 L 33.9313,11.2108 L 34.8756,10.5531 C 34.5338,10.5956 34.192,10.6268 33.858,10.7177 L 33.858,9.9766 L 34.2213,9.1538 L 33.858,9.1538 L 33.0596,9.894 L 32.8408,10.3056 L 33.0596,10.8823 L 32.6953,11.8686 L 32.1142,11.5395 L 31.6064,10.9643 L 30.8056,11.5395 L 30.5146,10.2236 L 31.8955,9.3188 L 31.8955,8.8247 L 32.7685,8.249 L 34.1494,7.9194 L 35.0947,8.249 L 36.8388,8.5781 L 36.4033,9.0713 L 35.458,9.0713 L 36.4033,10.0586 L 37.1299,9.2363 L 37.3506,8.8745 C 37.3506,8.8745 40.1377,11.3725 41.7305,14.105 C 43.3233,16.8384 44.0713,20.0601 44.0713,20.7144 L 44.0713,20.7144 z"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7246) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7109" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7244) rgb(0, 0, 0); fill-opacity: 1;" id="g7111">
            <path style="fill: url(#radialGradient7242) rgb(0, 0, 0); fill-opacity: 1;" id="path7113" d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7252) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7115" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7250) rgb(0, 0, 0); fill-opacity: 1;" id="g7117">
            <path style="fill: url(#radialGradient7248) rgb(0, 0, 0); fill-opacity: 1;" id="path7119" d="M 26.8701,5.8633 L 24.9795,5.1226 L 22.7998,5.3692 L 20.1094,6.1094 L 19.6006,6.6035 L 21.2725,7.7549 L 21.2725,8.4131 L 20.6182,9.0713 L 21.4912,10.8003 L 22.0713,10.4702 L 22.7998,9.3188 C 23.9228,8.9716 24.9297,8.5781 25.9971,8.0844 L 26.8701,5.8632"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7258) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7122" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7256) rgb(0, 0, 0); fill-opacity: 1;" id="g7124">
            <path style="fill: url(#radialGradient7254) rgb(0, 0, 0); fill-opacity: 1;" id="path7126" d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7264) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7128" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7262) rgb(0, 0, 0); fill-opacity: 1;" id="g7130">
            <path style="fill: url(#radialGradient7260) rgb(0, 0, 0); fill-opacity: 1;" id="path7132" d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7270) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7134" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7268) rgb(0, 0, 0); fill-opacity: 1;" id="g7136">
            <path style="fill: url(#radialGradient7266) rgb(0, 0, 0); fill-opacity: 1;" id="path7138" d="M 18.3652,28.2422 L 17.7832,27.0899 L 16.6929,26.8433 L 16.1114,25.2808 L 14.6578,25.4449 L 13.4224,24.5406 L 12.1133,25.692 L 12.1133,25.8736 C 11.7173,25.7593 11.2305,25.7437 10.8779,25.5269 L 10.5869,24.7046 L 10.5869,23.7993 L 9.7148,23.8813 C 9.7876,23.3051 9.8598,22.7299 9.9331,22.1538 L 9.4238,22.1538 L 8.9155,22.812 L 8.4062,23.0581 L 7.6791,22.6479 L 7.6063,21.7426 L 7.7518,20.7553 L 8.8426,19.933 L 9.7147,19.933 L 9.8597,19.4389 L 10.95,19.685 L 11.7498,20.6733 L 11.8953,19.0268 L 13.2766,17.8754 L 13.7854,16.641 L 14.803,16.2299 L 15.3845,15.4076 L 16.6926,15.1596 L 17.3474,14.1733 C 16.6931,14.1733 16.0388,14.1733 15.3845,14.1733 L 16.6203,13.5971 L 17.4919,13.5971 L 18.7282,13.185 L 18.8737,12.6928 L 18.4372,12.2807 L 17.9284,12.1157 L 18.0739,11.6225 L 17.7106,10.8823 L 16.838,11.2104 L 16.9835,10.5527 L 15.9659,9.9765 L 15.1666,11.3744 L 15.2389,11.8685 L 14.4396,12.1986 L 13.9303,13.2679 L 13.7125,12.2806 L 12.3312,11.7044 L 12.1129,10.9642 L 13.9303,9.8939 L 14.7301,9.1537 L 14.8029,8.2489 L 14.3669,8.0018 L 13.7854,7.9193 L 13.4221,8.8246 C 13.4221,8.8246 12.8142,8.9437 12.6579,8.9823 C 10.6618,10.8217 6.6286,14.7924 5.6916,22.2885 C 5.7287,22.4623 6.3708,23.4701 6.3708,23.4701 L 7.8972,24.3744 L 9.4236,24.7865 L 10.0784,25.6097 L 11.0955,26.3499 L 11.677,26.2679 L 12.113,26.4642 L 12.113,26.597 L 11.5319,28.16 L 11.0954,28.8182 L 11.2409,29.1483 L 10.8776,30.3807 L 12.1862,32.7674 L 13.4943,33.9197 L 14.0763,34.742 L 14.0031,36.4705 L 14.4396,37.4568 L 14.0031,39.3494 C 14.0031,39.3494 13.9689,39.3377 14.0246,39.5271 C 14.0808,39.7166 16.3537,40.9783 16.4982,40.8709 C 16.6422,40.7615 16.7653,40.6658 16.7653,40.6658 L 16.6203,40.2556 L 17.2014,39.6794 L 17.4197,39.1032 L 18.365,38.7731 L 19.0916,36.9626 L 18.8738,36.4704 L 19.3816,35.7302 L 20.4724,35.4822 L 21.0544,34.1658 L 20.9089,32.5213 L 21.781,31.2869 L 21.9265,30.0525 C 20.7331,29.4607 19.5495,28.8513 18.365,28.242"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7276) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7140" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7274) rgb(0, 0, 0); fill-opacity: 1;" id="g7142">
            <path style="fill: url(#radialGradient7272) rgb(0, 0, 0); fill-opacity: 1;" id="path7144" d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7282) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7146" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7280) rgb(0, 0, 0); fill-opacity: 1;" id="g7148">
            <path style="fill: url(#radialGradient7278) rgb(0, 0, 0); fill-opacity: 1;" id="path7150" d="M 14.876,8.9072 L 14.5122,9.812 L 15.2393,9.812 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 L 17.275,8.5781 C 17.7594,8.9072 18.2438,9.2363 18.7286,9.5649 L 19.4561,8.9072 L 18.6558,8.5781 L 18.292,7.8374 L 16.9111,7.6728 L 16.8383,7.2612 L 16.184,7.4262 L 15.8936,8.002 L 15.5298,7.2613 L 15.3848,7.5904 L 15.4576,8.4132 L 14.876,8.9072"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7288) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7152" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7286) rgb(0, 0, 0); fill-opacity: 1;" id="g7154">
            <path style="fill: url(#radialGradient7284) rgb(0, 0, 0); fill-opacity: 1;" id="path7156" d="M 17.4922,6.8496 L 17.856,6.521 L 18.5831,6.3564 C 19.0811,6.1142 19.5811,5.9511 20.1095,5.7802 L 19.8195,5.2865 L 18.881,5.4213 L 18.4376,5.8632 L 17.7066,5.9692 L 17.0567,6.2744 L 16.7408,6.4272 L 16.5479,6.6855 L 17.4922,6.8496"/>
          </g>
        </g>
        <g style="fill: url(#radialGradient7294) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke-miterlimit: 4;" id="g7158" transform="matrix(0.46747, 0, 0, 0.46733, 115.469, 33.3519)">
          <g style="fill: url(#radialGradient7292) rgb(0, 0, 0); fill-opacity: 1;" id="g7160">
            <path style="fill: url(#radialGradient7290) rgb(0, 0, 0); fill-opacity: 1;" id="path7162" d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665"/>
          </g>
        </g>
        <path sodipodi:type="arc" style="overflow: visible; marker: none; opacity: 0.535135; fill: none; stroke: rgb(255, 255, 255); stroke-width: 5.39954; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; visibility: visible; display: inline;" id="path7164" sodipodi:cx="191.875" sodipodi:cy="190.75" sodipodi:rx="13.875" sodipodi:ry="13.875" d="M 205.75,190.75 A 13.875,13.875 0 1 1 178,190.75 A 13.875,13.875 0 1 1 205.75,190.75 z" transform="matrix(0.543613, 0, 0, 0.543613, 22.9735, -59.2376)"/>
        <path style="overflow: visible; marker: none; opacity: 0.535135; fill: url(#radialGradient7296) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline; filter: url(#filter10631-9-1-2-6);" d="M 64.625,130 C 64.56908,130.48975 64.53125,130.99536 64.53125,131.5 C 64.53125,138.6928 70.369696,144.53125 77.5625,144.53125 C 84.755301,144.53125 90.593749,138.69279 90.59375,131.5 C 90.59375,130.99521 90.55595,130.4899 90.5,130 C 89.746575,136.47773 84.241315,141.53125 77.5625,141.53125 C 70.883467,141.53125 65.378144,136.47803 64.625,130 z" transform="matrix(0.6781, 0, 0, 0.6781, 74.6825, -44.7084)" id="path7166"/>
      </g>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12376" id="use9696" transform="translate(-400)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12880" id="use9736" transform="translate(-400)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12526" id="use9778" transform="translate(-400)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12672" id="use9810" transform="translate(-400)" width="1600" height="900"/>
  </g>
  <g inkscape:label="text-x-generic" style="display: inline;" inkscape:groupmode="layer" id="g8348">
    <g inkscape:label="plate 1" style="display: none;" inkscape:groupmode="layer" id="g8350">
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="32" x="424" id="rect8352" inkscape:export-filename="/home/lapo/Dropbox/Icons/mango/test 64x64/text-x-generic.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="50" x="700" id="rect8354"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="125" x="700" id="rect8356"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="176" x="700" id="rect8358"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="177" x="701" id="rect8360"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="220" x="700" id="rect8362"/>
      <text y="20" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="420" id="text8364">
        <tspan id="tspan8366">mimetypes</tspan>
      </text>
      <text y="20" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="600" id="text8368">
        <tspan id="tspan8370">text-x-generic</tspan>
      </text>
    </g>
    <g id="g8030">
      <g transform="translate(400.044, 1.01491)" id="g12362" style="display: inline;">
        <rect style="opacity: 0.475; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; filter: url(#filter3913-4);" id="rect12364" width="36" height="2" x="306" y="91" rx="7.5241151" ry="2" transform="matrix(1.1189, 0, 0, 1.17678, -38.2578, -16.0867)"/>
        <rect style="opacity: 0.715; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter3871-0);" id="rect12366" width="36" height="2" x="306" y="91" rx="6.3920398" ry="2" transform="matrix(1.01334, 0, 0, 1, -4.05753, 0)"/>
      </g>
      <g transform="translate(404.044, -0.985092)" id="g12368">
        <path sodipodi:nodetypes="ccsccccccc" id="path12370" d="M 304.52386,53.5 C 304.52386,53.5 322,53.5 323.5,53.5 C 327.37705,53.57294 330,56 332.5,58.5 C 335,61 337.10768,63.752625 337.5,67.5 C 337.5,69 337.5,92.47614 337.5,92.47614 C 337.5,93.59736 336.59736,94.5 335.47615,94.5 L 304.52386,94.5 C 303.40264,94.5 302.5,93.59736 302.5,92.47614 L 302.5,55.523858 C 302.5,54.402641 303.40264,53.5 304.52386,53.5 z" style="fill: url(#radialGradient7940) rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient7942) rgb(0, 0, 0); stroke-width: 1; stroke-miterlimit: 4; display: inline;"/>
        <path transform="translate(296, 50)" d="M 8.53125,4 C 7.6730803,4 7,4.6730802 7,5.53125 L 7,42.46875 C 7,43.32692 7.6730802,44 8.53125,44 L 39.46875,44 C 40.326919,44 41,43.326918 41,42.46875 C 41,42.46875 41,19 41,17.5 C 41,16.10803 40.513021,13.200521 38.65625,11.34375 C 36.65625,9.34375 35.65625,8.34375 33.65625,6.34375 C 31.799479,4.4869792 28.89197,4 27.5,4 C 26,4 8.53125,4 8.53125,4 z" id="path12372" style="fill: url(#radialGradient7944) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" inkscape:original="M 8.53125 3.5 C 7.410033 3.5 6.5 4.4100329 6.5 5.53125 L 6.5 42.46875 C 6.5 43.589967 7.4100329 44.5 8.53125 44.5 L 39.46875 44.5 C 40.589967 44.5 41.5 43.589966 41.5 42.46875 C 41.5 42.46875 41.5 19 41.5 17.5 C 41.5 16 41 13 39 11 C 37 9 36 8 34 6 C 32 4 29 3.5 27.5 3.5 C 26 3.5 8.5312499 3.5 8.53125 3.5 z " inkscape:radius="-0.4861359" sodipodi:type="inkscape:offset"/>
        <path transform="translate(356, 50)" d="M -51.46875,4.5 C -52.051916,4.5 -52.5,4.9480842 -52.5,5.53125 L -52.5,42.46875 C -52.5,43.051915 -52.051914,43.5 -51.46875,43.5 L -20.53125,43.5 C -19.948085,43.5 -19.5,43.051914 -19.5,42.46875 C -19.5,42.46875 -19.5,19 -19.5,17.5 C -19.5,16.220971 -19.980469,13.394531 -21.6875,11.6875 C -23.6875,9.6875 -24.6875,8.6875 -26.6875,6.6875 C -28.394531,4.9804687 -31.220971,4.5 -32.5,4.5 C -34,4.5 -51.46875,4.5 -51.46875,4.5 z" id="path12374" style="fill: none; stroke: url(#linearGradient7946) rgb(0, 0, 0); stroke-width: 1; stroke-miterlimit: 4; display: inline;" inkscape:original="M -51.46875 3.5 C -52.589967 3.5 -53.5 4.4100329 -53.5 5.53125 L -53.5 42.46875 C -53.5 43.589967 -52.589966 44.5 -51.46875 44.5 L -20.53125 44.5 C -19.410033 44.5 -18.5 43.589966 -18.5 42.46875 C -18.5 42.46875 -18.5 19 -18.5 17.5 C -18.5 16 -19 13 -21 11 C -23 9 -24 8 -26 6 C -28 4 -31 3.5 -32.5 3.5 C -34 3.5 -51.468749 3.5 -51.46875 3.5 z " inkscape:radius="-0.99436891" sodipodi:type="inkscape:offset"/>
      </g>
    </g>
    <g id="g8236">
      <rect ry="1" rx="1" y="196.51491" x="702.54419" height="2" width="19" id="rect12516" style="opacity: 0.299595; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter1-paper-sheet-orig-3);"/>
      <g transform="translate(398.044, 0.0149083)" id="g12518">
        <path style="fill: url(#radialGradient8168) rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient8170) rgb(0, 0, 0); stroke-width: 1; stroke-miterlimit: 4; display: inline;" d="M 307.46875,177.5 C 306.38379,177.5 305.5,178.38379 305.5,179.46875 L 305.5,195.53125 C 305.5,196.61621 306.38379,197.5 307.46875,197.5 L 320.53125,197.5 C 321.61621,197.5 322.5,196.61621 322.5,195.53125 L 322.5,194.5625 C 322.5,191.15625 322.5,188.89321 322.5,185.5 C 322.5,180.65625 317.44564,177.5 313,177.5 L 307.46875,177.5 z" id="path12520" sodipodi:nodetypes="cccccccscc"/>
        <path sodipodi:type="inkscape:offset" inkscape:radius="-1.1427754" inkscape:original="M 8.53125 3.5 C 7.410033 3.5 6.5 4.4100329 6.5 5.53125 L 6.5 42.46875 C 6.5 43.589967 7.4100329 44.5 8.53125 44.5 L 39.46875 44.5 C 40.589967 44.5 41.5 43.589966 41.5 42.46875 C 41.5 42.46875 41.5 19 41.5 17.5 C 41.5 16 41 13 39 11 C 37 9 36 8 34 6 C 32 4 29 3.5 27.5 3.5 C 26 3.5 8.5312499 3.5 8.53125 3.5 z " style="fill: url(#radialGradient8172) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" id="path12522" d="M 8.53125,4.65625 C 8.0283868,4.65625 7.65625,5.0283867 7.65625,5.53125 L 7.65625,42.46875 C 7.65625,42.971613 8.0283867,43.34375 8.53125,43.34375 L 39.46875,43.34375 C 39.971612,43.34375 40.34375,42.971612 40.34375,42.46875 C 40.34375,42.46875 40.34375,19 40.34375,17.5 C 40.34375,16.25395 39.850807,13.475807 38.1875,11.8125 C 36.1875,9.8125 35.1875,8.8125 33.1875,6.8125 C 31.524193,5.1491934 28.74605,4.65625 27.5,4.65625 C 26,4.65625 8.53125,4.65625 8.53125,4.65625 z" transform="matrix(0.485754, 0, 0, 0.464926, 302.343, 176.835)"/>
        <path sodipodi:nodetypes="ccccccscc" id="path12524" d="M 307.46875,178.5 C 306.93534,178.5 306.5,178.93533 306.5,179.46875 L 306.5,195.53125 C 306.5,196.06466 306.93533,196.5 307.46875,196.5 L 320.53125,196.5 C 321.06466,196.5 321.5,196.06466 321.5,195.53125 C 321.5,191.83333 321.5,189.11057 321.5,185.4375 C 321.5,181.5 317,178.5 313.03125,178.5 L 307.46875,178.5 z" style="fill: none; stroke: rgb(255, 255, 255); stroke-width: 1; stroke-miterlimit: 4; display: inline;"/>
      </g>
    </g>
    <g id="g8323">
      <path sodipodi:nodetypes="cccccccccccssccc" id="path12666" d="M 703.00846,220.5 C 702.17716,220.5 701.5,221.16373 701.5,221.97852 L 701.5,230.23944 L 701.5,231.78836 L 701.5,234.04134 C 701.5,234.85614 702.17716,235.51986 703.00846,235.51986 L 712.01701,235.51986 C 712.84831,235.51986 713.52548,234.85614 713.52548,234.04134 L 713.52548,233.31382 L 713.52548,230.23944 C 713.52548,228.13728 713.52548,225.96977 713.52548,225.63961 C 713.37946,224.26351 712.58832,223.24859 711.65785,222.33055 C 710.72739,221.41251 709.7487,220.52679 708.30571,220.5 C 708.10028,220.5 708.20351,220.5 707.27048,220.5 L 703.77467,220.5 L 703.00846,220.5 L 703.00846,220.5 L 703.00846,220.5 z" style="fill: url(#radialGradient8319) rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient8321) rgb(0, 0, 0); stroke-width: 1; stroke-miterlimit: 4; display: inline;"/>
      <path transform="matrix(0.372187, 0, 0, 0.349156, 699.081, 220.001)" d="M 8.53125,5.09375 C 8.2778235,5.09375 8.09375,5.2778234 8.09375,5.53125 L 8.09375,42.46875 C 8.09375,42.722176 8.2778234,42.90625 8.53125,42.90625 L 39.46875,42.90625 C 39.722175,42.90625 39.90625,42.722175 39.90625,42.46875 C 39.90625,42.46875 39.90625,19 39.90625,17.5 C 39.90625,16.356391 39.402488,13.652488 37.875,12.125 C 35.875,10.125 34.875,9.125 32.875,7.125 C 31.347512,5.5975116 28.643609,5.09375 27.5,5.09375 C 26,5.09375 8.53125,5.09375 8.53125,5.09375 z" id="path12668" style="fill: url(#radialGradient8257) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" inkscape:original="M 8.53125 3.5 C 7.410033 3.5 6.5 4.4100329 6.5 5.53125 L 6.5 42.46875 C 6.5 43.589967 7.4100329 44.5 8.53125 44.5 L 39.46875 44.5 C 40.589967 44.5 41.5 43.589966 41.5 42.46875 C 41.5 42.46875 41.5 19 41.5 17.5 C 41.5 16 41 13 39 11 C 37 9 36 8 34 6 C 32 4 29 3.5 27.5 3.5 C 26 3.5 8.5312499 3.5 8.53125 3.5 z " inkscape:radius="-1.6037576" sodipodi:type="inkscape:offset"/>
      <path sodipodi:nodetypes="cccccccccccsccc" id="path12670" d="M 703.00847,221.53262 C 702.74909,221.53262 702.55353,221.72429 702.55353,221.97852 L 702.55353,230.23944 L 702.55353,231.78836 L 702.55353,234.04134 C 702.55353,234.29557 702.74909,234.48724 703.00847,234.48724 L 712.01702,234.48724 C 712.27639,234.48724 712.47195,234.29557 712.47195,234.04134 L 712.47195,233.31382 L 712.47195,230.23944 C 712.47195,228.1909 712.47195,226.16883 712.47195,225.75695 C 712.36091,224.71049 711.78291,223.9138 710.9156,223.05807 C 710.00666,222.16128 709.29432,221.55141 708.28177,221.53262 L 703.77467,221.53262 L 703.00847,221.53262 z" style="fill: none; stroke: url(#linearGradient8315) rgb(0, 0, 0); stroke-width: 1; stroke-miterlimit: 4; display: inline;"/>
    </g>
    <g id="g7897">
      <rect style="opacity: 0.3; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; filter: url(#filter0-paper-sheet-orig-7);" id="rect12814" width="176" height="12" x="60" y="244" transform="matrix(1.1875, 0, 0, 0.625001, 372.25, 116)" rx="30.842125" ry="6"/>
      <rect style="opacity: 0.8; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline; filter: url(#filter10-paper-sheet-orig-1);" id="rect12816" width="211.00461" height="18.114367" x="22.995396" y="223.44104" rx="4.9923911" ry="9.0571833" transform="matrix(0.887972, 0, 0, 0.185729, 434.712, 228.958)"/>
      <path sodipodi:nodetypes="cccccccscc" transform="matrix(0.989254, 0, 0, 1.0129, 401.717, 0.530498)" id="path12818" d="M 55.87243,47.32759 C 55.309774,47.32759 54.87243,47.764934 54.87243,48.32759 L 53.861567,265.32759 C 53.861567,265.89025 54.298911,266.32759 54.861567,266.32759 L 240.88329,266.32759 C 241.44595,266.32759 241.88329,265.89025 241.88329,265.32759 L 240.87243,94.32759 C 240.87243,80.769898 230.01425,69.031918 224.59118,63.60884 C 219.16811,58.185763 207.43013,47.32759 193.87243,47.32759 L 55.87243,47.32759 L 55.87243,47.32759 z" style="opacity: 0.7; fill: url(#linearGradient7682) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; filter: url(#filter9-paper-sheet-orig-1);"/>
      <g transform="matrix(0.989254, 0, 0, 1.02317, 401.717, 0.0442553)" id="g12820">
        <g id="g12822">
          <g transform="translate(19.8724, 27.8276)" id="g12824">
            <path id="path12826" d="M 36,19 C 35.437344,19 35,19.437344 35,20 L 35,237 C 35,237.56266 35.437344,238 36,238 L 220,238 C 220.56266,238 221,237.56266 221,237 L 221,66 C 221,52.442308 210.14182,40.704328 204.71875,35.28125 C 199.29568,29.858173 187.5577,19 174,19 L 36,19 z" style="overflow: visible; marker: none; fill: url(#radialGradient7684) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
            <path style="fill: none; stroke: url(#radialGradient7686) rgb(0, 0, 0); stroke-width: 0.993967; stroke-linecap: round; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0.7; stroke-opacity: 1;" d="M 36.5914,19.703893 C 36.032361,19.703893 35.597828,20.138426 35.597828,20.697465 L 35.597828,236.30255 C 35.597828,236.86159 36.032361,237.29612 36.5914,237.29612 L 219.40861,237.29612 C 219.96765,237.29612 220.40218,236.86159 220.40218,236.30255 L 220.40218,66.401768 C 220.40218,52.931228 209.6138,41.268702 204.22559,35.880484 C 198.83738,30.492268 187.17486,19.703893 173.70431,19.703893 L 36.5914,19.703893 L 36.5914,19.703893 L 36.5914,19.703893 z" id="path12828"/>
            <path clip-path="url(#clipPath0-paper-sheet-orig-3)" style="opacity: 0.0722891; fill: none; stroke: rgb(0, 0, 0); stroke-width: 0.993967; stroke-linecap: round; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0.7; stroke-opacity: 1; filter: url(#filter3-paper-sheet-orig-9);" d="M 36,19 C 35.437344,19 35,19.437344 35,20 L 35,237 C 35,237.56266 35.437344,238 36,238 L 220,238 C 220.56266,238 221,237.56266 221,237 L 221,66 C 221,52.442308 210.14182,40.704328 204.71875,35.28125 C 199.29568,29.858173 187.5577,19 174,19 L 36,19 z" id="path12830"/>
            <path id="path12832" d="M 36.625,19.875 C 36.062344,19.875 35.625,20.312344 35.625,20.875 L 35.625,237.875 C 35.625,238.43766 36.062344,238.875 36.625,238.875 L 36.625,21.875 C 36.625,21.312344 37.062344,20.875 37.625,20.875 L 175.625,20.875 C 187.48799,20.875 197.96613,29.19489 204.03125,34.90625 C 198.18503,29.228982 187.23074,19.875 174.625,19.875 L 36.625,19.875 z" style="fill: url(#radialGradient7688) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;"/>
            <rect style="overflow: visible; marker: none; opacity: 0.560241; fill: url(#radialGradient7690) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect12834" width="184.5" height="51.25" x="35.5" y="186.25" rx="1.015625" ry="1.015625"/>
          </g>
          <path sodipodi:nodetypes="cccccscc" style="overflow: visible; marker: none; fill: url(#radialGradient7692) rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" d="M 55.875,46.8125 C 55.312345,46.812499 54.875,47.249844 54.875,47.8125 L 54.875,136 L 240.875,136 L 240.875,93.812499 C 240.87499,80.254807 230.01682,68.516828 224.59375,63.09375 C 219.17067,57.670672 207.4327,46.8125 193.875,46.8125 L 55.875,46.8125 z" id="path12836"/>
        </g>
        <rect ry="1.015625" rx="1.015625" y="263.82758" x="55.372429" height="1.5" width="184.5" id="rect12838" style="overflow: visible; marker: none; fill: url(#radialGradient7694) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
      </g>
    </g>
    <g transform="translate(400, 3.92652)" id="g12840" style="display: inline;">
      <g id="g12842" transform="matrix(0.989254, 0, 0, 1.02317, 21.3761, 24.5901)">
        <path style="overflow: visible; marker: none; opacity: 0.168675; fill: url(#radialGradient7912) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline; filter: url(#filter2-paper-sheet-orig-2-4);" d="M 162,24 C 159.26981,24 156.59375,24.181079 153.96875,24.5625 C 150.7985,30.511615 149,37.292583 149,44.5 C 149,67.96 168.04,87 191.5,87 C 201.27734,87 210.28521,83.680936 217.46875,78.125 C 216.733,48.128002 192.17308,24 162,24 z" id="path12844" transform="matrix(0.760482, 0, 0, 0.873016, 56.1232, 8.48265)"/>
        <path style="opacity: 0.379518; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline; filter: url(#filter4-paper-sheet-orig-9-1);" d="M 174,-31 C 187.5577,-31 196.3077,-19.153846 201.73077,-13.730769 C 207.15384,-8.307692 221,2.442308 221,16 C 221,2.442308 200.88905,7.3971781 194.8085,7.3971781 C 194.1728,7.3971781 193.58165,6.8794834 193.65828,6.2469531 C 196.16668,-14.458158 187.5577,-31 174,-31 z" id="path12846" sodipodi:nodetypes="czcssc" mask="url(#mask0-paper-sheet-orig-6-5)" transform="translate(0, 50)"/>
        <path style="opacity: 0.427711; fill: url(#radialGradient7914) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; filter: url(#filter5-paper-sheet-orig-2-0);" d="M 172.59467,20.722269 C 197.42132,19.851435 221.13725,51.267896 220.09467,67.722269 C 220.09467,54.164577 212.60362,51.356884 190.11028,51.356884 C 189.47458,51.356884 188.96006,50.843814 188.96006,50.206659 C 188.96006,27.713315 186.15237,20.722269 172.59467,20.722269 L 172.59467,20.722269 L 172.59467,20.722269 z" id="path12848" sodipodi:nodetypes="ccssc"/>
        <path style="opacity: 0.277108; fill: url(#linearGradient7916) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; filter: url(#filter6-paper-sheet-orig-2-6);" d="M 171.44822,22.448224 C 185.00592,22.448224 196.75592,33.294378 202.17899,38.717455 C 207.60206,44.140532 218.44822,55.890532 218.44822,69.448224 C 218.44822,55.890532 211.45717,53.082839 188.96383,53.082839 C 188.32813,53.082839 187.81361,52.569769 187.81361,51.932614 C 187.81361,29.43927 185.00592,22.448224 171.44822,22.448224 L 171.44822,22.448224 L 171.44822,22.448224 z" id="path12850" sodipodi:nodetypes="czcssc"/>
        <path sodipodi:nodetypes="czcssc" id="path12852" d="M 173.125,19.75 C 186.6827,19.75 198.4327,30.596154 203.85577,36.019231 C 209.27884,41.442308 220.125,53.192308 220.125,66.75 C 220.125,53.192308 213.13395,50.384615 190.64061,50.384615 C 190.00491,50.384615 189.49039,49.871545 189.49039,49.23439 C 189.49039,26.741046 186.6827,19.75 173.125,19.75 z" style="fill: url(#radialGradient7918) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none;"/>
        <path style="fill: url(#radialGradient7920) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none;" d="M 174,19 C 187.5577,19 199.3077,29.846154 204.73077,35.269231 C 210.15384,40.692308 221,52.442308 221,66 C 221,52.442308 214.00895,49.634615 191.51561,49.634615 C 190.87991,49.634615 190.36539,49.121545 190.36539,48.48439 C 190.36539,25.991046 187.5577,19 174,19 z" id="path12854" sodipodi:nodetypes="czcssc"/>
        <path style="overflow: visible; marker: none; fill: url(#radialGradient7922) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline; filter: url(#filter7-paper-sheet-orig-3-4);" d="M 174.12505,19.030839 C 189.60571,20.064525 190.14432,32.673731 190.3885,45.547344 C 189.64437,37.817049 191.7625,29.569492 186.14586,22.919927 C 190.65367,24.421615 195.95697,28.701532 201.08349,32.112315 C 195.58704,27.24573 187.0681,19.111446 174.12505,19.030839 z" id="path12856" sodipodi:nodetypes="ccccc"/>
        <path style="overflow: visible; marker: none; fill: url(#radialGradient7924) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline; filter: url(#filter8-paper-sheet-orig-5-7);" d="M 219.375,57.625 C 215.40401,48.724991 201.94529,50.328565 192.125,49.625 C 202.05258,49.38633 216.72301,46.640814 219.375,57.625 z" id="path12858" sodipodi:nodetypes="ccc"/>
      </g>
      <path transform="matrix(0.989254, 0, 0, 1.02317, 21.3761, 24.5901)" sodipodi:nodetypes="czcssc" id="path12860" d="M 174,19 C 187.5577,19 199.3077,29.846154 204.73077,35.269231 C 210.15384,40.692308 221,52.442308 221,66 C 221,52.442308 214.00895,49.634615 191.51561,49.634615 C 190.87991,49.634615 190.36539,49.121545 190.36539,48.48439 C 190.36539,25.991046 187.5577,19 174,19 z" style="fill: url(#linearGradient7926) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;"/>
    </g>
    <g id="g8146">
      <g transform="translate(350.044, 1.01491)" id="g12864">
        <g style="display: inline;" id="g12866" transform="matrix(0.675069, 0, 0, 0.699557, 147.391, 88.6938)">
          <rect transform="matrix(1.1189, 0, 0, 1.17678, -38.2578, -16.0867)" ry="2" rx="7.5241151" y="91" x="306" height="2" width="36" id="rect12868" style="opacity: 0.475; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; filter: url(#filter3913-4);"/>
          <rect transform="matrix(1.01334, 0, 0, 1, -4.05753, 0)" ry="2" rx="6.3920398" y="91" x="306" height="2" width="36" id="rect12870" style="opacity: 0.715; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; filter: url(#filter3871-0);"/>
        </g>
      </g>
      <g transform="translate(397.044, -0.985092)" id="g12872">
        <path sodipodi:nodetypes="ccsccccccc" id="path12874" d="M 308.82705,128.49344 C 308.82705,128.49344 320.31659,128.49344 321.30276,128.49344 C 323.85169,128.54144 325.57613,130.13832 327.21973,131.78319 C 328.86334,133.42806 330.24901,135.23915 330.50694,137.70474 C 330.50694,138.69166 330.50694,154.13779 330.50694,154.13779 C 330.50694,154.87549 329.91351,155.46938 329.17637,155.46938 L 308.82705,155.46938 C 308.08992,155.46938 307.49648,154.87549 307.49648,154.13779 L 307.49648,129.82504 C 307.49648,129.08733 308.08992,128.49344 308.82705,128.49344 z" style="fill: url(#radialGradient8051) rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient8053) rgb(0, 0, 0); stroke-width: 1; stroke-miterlimit: 4; display: inline;"/>
        <path transform="matrix(0.657442, 0, 0, 0.65795, 303.223, 126.191)" d="M 8.53125,4.28125 C 7.8347823,4.28125 7.28125,4.8347822 7.28125,5.53125 L 7.28125,42.46875 C 7.28125,43.165218 7.8347822,43.71875 8.53125,43.71875 L 39.46875,43.71875 C 40.165217,43.71875 40.71875,43.165216 40.71875,42.46875 C 40.71875,42.46875 40.71875,19 40.71875,17.5 C 40.71875,16.174439 40.206224,13.331224 38.4375,11.5625 C 36.4375,9.5625 35.4375,8.5625 33.4375,6.5625 C 31.668776,4.7937758 28.825561,4.28125 27.5,4.28125 C 26,4.28125 8.53125,4.28125 8.53125,4.28125 z" id="path12876" style="fill: url(#radialGradient8055) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" inkscape:original="M 8.53125 3.5 C 7.410033 3.5 6.5 4.4100329 6.5 5.53125 L 6.5 42.46875 C 6.5 43.589967 7.4100329 44.5 8.53125 44.5 L 39.46875 44.5 C 40.589967 44.5 41.5 43.589966 41.5 42.46875 C 41.5 42.46875 41.5 19 41.5 17.5 C 41.5 16 41 13 39 11 C 37 9 36 8 34 6 C 32 4 29 3.5 27.5 3.5 C 26 3.5 8.5312499 3.5 8.53125 3.5 z " inkscape:radius="-0.78497618" sodipodi:type="inkscape:offset"/>
        <path transform="matrix(0.657442, 0, 0, 0.65795, 342.67, 126.191)" d="M -51.46875,5.0625 C -51.740468,5.0625 -51.9375,5.2595315 -51.9375,5.53125 L -51.9375,42.46875 C -51.9375,42.740467 -51.740467,42.9375 -51.46875,42.9375 L -20.53125,42.9375 C -20.259533,42.9375 -20.0625,42.740467 -20.0625,42.46875 C -20.0625,42.46875 -20.0625,19 -20.0625,17.5 C -20.0625,16.348878 -20.587552,13.662448 -22.125,12.125 C -24.125,10.125 -25.125,9.125 -27.125,7.125 C -28.662448,5.5875517 -31.348878,5.0625 -32.5,5.0625 C -34,5.0625 -51.46875,5.0625 -51.46875,5.0625 z" id="path12878" style="fill: none; stroke: url(#linearGradient8057) rgb(0, 0, 0); stroke-width: 1.52046; stroke-miterlimit: 4; display: inline;" inkscape:original="M -51.46875 3.5 C -52.589967 3.5 -53.5 4.4100329 -53.5 5.53125 L -53.5 42.46875 C -53.5 43.589967 -52.589966 44.5 -51.46875 44.5 L -20.53125 44.5 C -19.410033 44.5 -18.5 43.589966 -18.5 42.46875 C -18.5 42.46875 -18.5 19 -18.5 17.5 C -18.5 16 -19 13 -21 11 C -23 9 -24 8 -26 6 C -28 4 -31 3.5 -32.5 3.5 C -34 3.5 -51.468749 3.5 -51.46875 3.5 z " inkscape:radius="-1.5699524" sodipodi:type="inkscape:offset"/>
      </g>
    </g>
    <g style="display: inline;" id="g23143" transform="translate(400, 9.92652)">
      <g transform="translate(-400, -1.92652)" style="fill: rgb(227, 227, 227); fill-opacity: 1; display: inline;" id="g16265">
        <rect ry="2" rx="1.9999999" y="60" x="472" height="4" width="132.68629" id="rect15459" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16231" width="130.80762" height="4" x="472" y="72" rx="1.9999996" ry="2"/>
        <rect ry="2" rx="1.9999996" y="84" x="472" height="4" width="140" id="rect16233" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16235" width="152" height="4" x="472" y="96" rx="1.9999999" ry="2"/>
        <rect ry="2" rx="2" y="108" x="472" height="4" width="148" id="rect16237" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16239" width="152" height="4" x="472" y="120" rx="1.9999999" ry="2"/>
        <rect ry="2" rx="2" y="132" x="472" height="4" width="136" id="rect16241" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16243" width="144" height="4" x="472" y="144" rx="1.9999999" ry="2"/>
        <rect ry="2" rx="1.9999999" y="156" x="472" height="4" width="152" id="rect16245" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect ry="2" rx="1.9999999" y="168" x="472" height="4" width="112" id="rect16247" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect ry="2" rx="1.9999999" y="192" x="472" height="4" width="152" id="rect16251" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16253" width="144" height="4" x="472" y="204" rx="1.9999999" ry="2"/>
        <rect ry="2" rx="1.9999998" y="216" x="472" height="4" width="128" id="rect16255" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16257" width="152" height="4" x="472" y="228" rx="1.9999999" ry="2"/>
        <rect ry="2" rx="1.9999999" y="240" x="472" height="4" width="152" id="rect16259" style="overflow: visible; marker: none; fill: rgb(227, 227, 227); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
      </g>
      <path id="flowRoot16399" d="M 72.99072,57.923773 C 72.42527,60.240418 77.15389,62.249728 72.99072,61.568792 C 72.99072,60.353786 72.99072,59.138779 72.99072,57.923773 z M 76.72607,59.149359 C 73.50887,61.824779 79.83156,61.823906 76.72607,59.149359 z M 76.72607,58.768499 C 81.92749,62.594631 71.7091,62.260654 76.72607,58.768499 z M 80.30762,59.254339 C 78.68246,62.735183 78.30938,60.029563 79.15771,59.259239 C 79.27063,58.822392 80.66464,58.373332 80.30718,59.254339 M 83.0147,60.089296 C 78.81065,59.884509 85.39696,63.306335 80.48052,60.228456 C 80.19723,58.460707 83.21609,58.233874 83.0147,60.089296 z M 82.56548,59.95746 C 81.9725,57.836842 79.36501,60.636468 82.56548,59.957502 M 85.88091,59.359357 C 88.72497,58.252993 87.63224,63.945379 86.71099,59.159162 C 84.99443,62.882557 86.59796,60.150521 84.38921,59.393537 C 83.86115,65.931848 82.51675,55.782069 85.88091,59.359357 L 85.88091,59.359357 z M 90.21685,58.834455 C 91.60906,60.331259 89.73128,63.098373 90.21685,59.202055 L 90.21685,58.834455 z M 90.21685,57.770002 C 91.64589,57.487807 89.93622,59.499356 90.21685,57.770002 z M 92.03813,61.158674 C 91.29929,65.406724 91.19194,54.323582 94.03276,60.204084 C 94.33589,61.33297 92.6012,62.220717 92.03813,61.158674 z M 93.56645,60.204084 C 91.64893,56.44595 91.97416,63.821907 93.56645,60.204084 z M 96.52056,58.915018 C 93.69892,58.560647 98.25374,62.867861 94.5772,61.004858 C 98.94697,62.155796 91.66268,58.166755 96.52056,58.915018 z M 97.33843,60.489725 C 96.87469,56.221138 99.17321,64.643131 99.17925,58.834451 C 100.89878,60.342442 98.62457,63.366966 97.33843,60.489725 z M 102.68755,59.359353 C 105.53161,58.252989 104.43888,63.945375 103.51763,59.159158 C 101.80107,62.882553 103.4046,60.150517 101.19585,59.393533 C 100.66779,65.931844 99.32339,55.782065 102.68755,59.359353 L 102.68755,59.359353 z M 108.8228,59.24949 C 108.93691,54.918631 110.6284,64.631896 107.13823,61.244119 C 106.07314,60.118859 107.66462,57.707467 108.8228,59.24949 z M 107.29204,60.20408 C 109.20568,63.967015 108.88972,56.587306 107.29204,60.20408 z M 111.25688,59.149393 C 108.03968,61.824813 114.36237,61.82394 111.25688,59.149393 z M 111.25688,58.768533 C 116.4583,62.594665 106.23991,62.260688 111.25688,58.768533 z M 113.25395,57.769998 C 114.64867,60.911255 112.70264,62.890196 113.25395,57.781988 L 113.25395,57.769998 z M 115.70024,59.149393 C 112.48303,61.824789 118.80573,61.823961 115.70024,59.149393 z M 115.70024,58.768533 C 120.90166,62.594665 110.68327,62.260688 115.70024,58.768533 z M 119.28179,59.254373 C 117.65663,62.735217 117.28355,60.029597 118.13188,59.259273 C 118.2448,58.822426 119.63881,58.373366 119.28135,59.254373 M 123.09238,58.915014 C 120.27075,58.560653 124.82557,62.86785 121.14902,61.004854 C 125.51881,62.155792 118.23449,58.166755 123.09238,58.915014 z M 123.95664,58.834444 C 125.34888,60.331229 123.47106,63.098377 123.95664,59.202044 L 123.95664,58.834444 z M 123.95664,57.769991 C 125.38571,57.487792 123.67601,59.499351 123.95664,57.769991 z M 125.78769,58.058077 C 126.27505,58.415577 126.56498,63.693521 125.33599,60.19458 C 125.51736,59.116202 124.50612,58.42575 125.78765,58.058072 M 130.14068,60.194303 C 127.01376,61.398627 131.96746,61.245764 130.14068,60.194303 z M 131.03668,60.008747 C 129.9295,63.654538 129.45713,59.900687 129.81109,59.149376 C 126.80585,59.558296 131.68965,57.61599 131.03668,60.008747 z M 134.09332,59.359332 C 136.93738,58.252968 135.84465,63.945354 134.9234,59.159137 C 133.20684,62.882532 134.81037,60.150496 132.60162,59.393512 C 132.07356,65.931823 130.72916,55.782044 134.09332,59.359332 L 134.09332,59.359332 z M 139.17633,60.089309 C 134.97228,59.884522 141.55859,63.306348 136.64215,60.228469 C 136.35885,58.460714 139.37773,58.23389 139.17633,60.089309 z M 138.72711,59.957473 C 138.13412,57.836856 135.52663,60.636485 138.72711,59.957515 M 140.35797,58.058101 C 140.84532,58.41561 141.13526,63.693547 139.90628,60.194604 C 140.08765,59.116226 139.07641,58.425774 140.35794,58.058096 M 141.99124,60.948721 C 143.45309,61.05688 141.11195,63.276649 141.99124,60.948721 z M 147.02786,58.939444 C 143.59591,59.314881 149.07854,63.762283 144.86477,60.204098 C 144.68843,58.968639 146.15431,58.48691 147.02786,58.939454 L 147.02786,58.939444 z M 148.87356,59.149415 C 145.65635,61.824811 151.97905,61.823983 148.87356,59.149415 z M 148.87356,58.768555 C 154.07497,62.594699 143.8566,62.260701 148.87356,58.768555 z M 153.14358,59.918458 C 153.60632,64.177845 151.31031,55.768819 151.3052,61.568848 C 149.5767,60.0563 151.86357,57.045448 153.14358,59.918458 z M 155.78762,58.915036 C 152.966,58.560675 157.5208,62.86788 153.84426,61.004876 C 158.21405,62.155817 150.92974,58.166778 155.78762,58.915036 z M 158.99075,60.089348 C 154.78669,59.884562 161.37302,63.306386 156.45657,60.228508 C 156.17328,58.460759 159.19214,58.233926 158.99075,60.089348 z M 158.54153,59.957512 C 157.94855,57.836898 155.34106,60.636522 158.54153,59.957554 M 161.69583,58.939488 C 158.26387,59.314922 163.74652,63.762329 159.53274,60.204142 C 159.3564,58.968683 160.82228,58.486954 161.69583,58.939498 L 161.69583,58.939488 z M 162.9263,58.0581 C 163.41365,58.415609 163.70359,63.693546 162.47461,60.194603 C 162.65598,59.116225 161.64474,58.425773 162.92627,58.058095 M 166.78369,60.089341 C 162.57963,59.884555 169.16596,63.306379 164.24951,60.228501 C 163.96622,58.460752 166.98508,58.233919 166.78369,60.089341 z M 166.33447,59.957505 C 165.74149,57.836891 163.134,60.636515 166.33447,59.957547 M 167.96533,58.058133 C 168.45268,58.415643 168.74263,63.693578 167.51364,60.194636 C 167.69501,59.116258 166.68377,58.425806 167.9653,58.058128 M 169.43747,60.489769 C 168.97373,56.22118 171.27224,64.643173 171.27829,58.834495 C 172.99782,60.342486 170.72361,63.36701 169.43747,60.489769 z M 174.99655,60.089374 C 170.79249,59.884588 177.37882,63.306412 172.46237,60.228534 C 172.17908,58.460785 175.19794,58.233952 174.99655,60.089374 z M 174.54733,59.957538 C 173.95435,57.836924 171.34686,60.636548 174.54733,59.95758 M 177.31833,59.254455 C 175.69317,62.735299 175.32009,60.029679 176.16842,59.259355 C 176.28134,58.822509 177.67534,58.373446 177.31788,59.254455 M 180.62842,60.194397 C 177.5015,61.398721 182.4552,61.245858 180.62842,60.194397 z M 181.52442,60.008841 C 180.41724,63.654631 179.94487,59.900783 180.29883,59.14947 C 177.29359,59.55839 182.17739,57.616084 181.52442,60.008841 z M 184.25147,59.249563 C 184.36558,54.918703 186.05707,64.631969 182.5669,61.244192 C 181.50182,60.11893 183.09327,57.707544 184.25147,59.249563 z M 182.72071,60.204153 C 184.63434,63.967095 184.31839,56.587373 182.72071,60.204153 z M 185.62598,58.834524 C 187.01822,60.331309 185.1404,63.098457 185.62598,59.202124 L 185.62598,58.834524 z M 185.62598,57.770071 C 187.05505,57.487872 185.34535,59.499431 185.62598,57.770071 z M 187.44727,61.158743 C 186.70843,65.406793 186.60108,54.323652 189.4419,60.204153 C 189.74503,61.333039 188.01034,62.220785 187.44727,61.158743 z M 188.97559,60.204153 C 187.05807,56.446026 187.3833,63.82197 188.97559,60.204153 z M 190.18653,58.834524 C 191.57877,60.331309 189.70095,63.098457 190.18653,59.202124 L 190.18653,58.834524 z M 190.18653,57.770071 C 191.6156,57.487872 189.9059,59.499431 190.18653,57.770071 z M 193.31641,58.915087 C 190.49478,58.560726 195.0496,62.867923 191.37305,61.004927 C 195.74284,62.155865 188.45852,58.166828 193.31641,58.915087 z M 196.14844,58.939497 C 192.71651,59.314933 198.19911,63.762337 193.98536,60.204151 C 193.80902,58.968698 195.27489,58.486962 196.14844,58.939507 L 196.14844,58.939497 z M 196.93458,58.834526 C 198.32679,60.33133 196.44901,63.098444 196.93458,59.202126 L 196.93458,58.834526 z M 196.93458,57.770073 C 198.36362,57.487878 196.65395,59.499427 196.93458,57.770073 z M 200.59424,59.918511 C 201.05698,64.177899 198.76098,55.768873 198.75586,61.568901 C 197.02736,60.056353 199.31423,57.045501 200.59424,59.918511 z M 203.29444,60.169976 C 201.38571,56.512698 201.68085,63.680764 203.29444,60.169976 z M 202.93799,61.449273 C 201.43356,55.999713 201.65929,63.16276 202.93799,61.449273 z M 74.20749,70.40976 C 72.15924,73.113607 76.12369,72.943177 74.20749,70.40976 z M 73.92917,69.92392 C 75.59635,71.479588 76.82575,74.732957 73.61263,72.633881 C 71.09934,76.525653 73.7966,70.452184 73.92917,69.92392 z M 76.38767,69.770111 C 77.78239,72.911368 75.83636,74.890309 76.38767,69.782101 L 76.38767,69.770111 z M 77.77439,70.834564 C 79.16663,72.331349 77.28881,75.098497 77.77439,71.202164 L 77.77439,70.834564 z M 77.77439,69.770111 C 79.20346,69.487912 77.49376,71.499471 77.77439,69.770111 z M 79.42966,72.204193 C 81.3433,75.967132 81.02735,68.587415 79.42966,72.204193 z M 80.96042,73.158783 C 76.23972,72.851127 83.22967,68.134427 81.40964,74.148049 C 81.08316,76.049732 80.80118,73.421811 80.96042,73.158783 z M 82.28855,72.489838 C 81.82481,68.22125 84.12333,76.643243 84.12937,70.834564 C 85.8489,72.342555 83.57469,75.367079 82.28855,72.489838 z M 86.75144,72.194428 C 83.62449,73.398752 88.57823,73.245892 86.75144,72.194428 z M 87.64744,72.008872 C 86.54026,75.654666 86.06788,71.900807 86.42185,71.149501 C 83.41661,71.558421 88.30041,69.616115 87.64744,72.008872 z M 90.70408,71.359457 C 93.54814,70.25311 92.45542,75.945463 91.53415,71.159262 C 89.81761,74.882674 91.42112,72.150606 89.21238,71.393637 C 88.68432,77.931948 87.33992,67.782169 90.70408,71.359457 z M 94.71775,70.834555 C 96.04309,74.182291 96.50175,71.203813 97.21267,71.277771 C 96.26611,74.898155 95.60584,73.727062 94.71775,70.834555 z M 100.33787,72.089434 C 96.13382,71.884643 102.72012,75.306473 97.80369,72.228594 C 97.52039,70.460839 100.53927,70.234015 100.33787,72.089434 z M 99.88865,71.957598 C 99.29566,69.836981 96.68817,72.63661 99.88865,71.95764 M 101.07517,69.77014 C 102.46989,72.911397 100.52386,74.890338 101.07517,69.78213 L 101.07517,69.77014 z M 106.32663,71.918578 C 106.78938,76.17796 104.49337,67.768943 104.48826,73.568968 C 102.75976,72.056424 105.04664,69.045563 106.32663,71.918578 z M 107.22751,70.834593 C 108.61975,72.331378 106.74193,75.098526 107.22751,71.202193 L 107.22751,70.834593 z M 107.22751,69.77014 C 108.65658,69.487941 106.94688,71.4995 107.22751,69.77014 z M 110.57712,72.204222 C 108.6596,68.446088 108.98483,75.822045 110.57712,72.204222 z M 109.0488,71.249632 C 113.76882,71.566635 106.77632,76.264371 108.59714,70.255483 C 108.70199,68.580394 109.34901,70.757699 109.0488,71.249632 z M 114.06101,71.918578 C 114.52376,76.177967 112.22774,67.768941 112.22263,73.568968 C 111.64263,70.167193 110.40389,68.620712 114.06101,71.918578 z M 115.02537,72.948851 C 116.62372,72.691362 114.71287,74.69722 115.02537,72.948851 z M 118.65818,70.329222 C 117.20613,76.565301 123.98868,70.809126 118.65818,70.329222 z M 118.16501,69.923949 C 124.90142,69.078008 117.37983,77.499355 118.16501,71.202193 C 118.16501,70.776112 118.16501,70.35003 118.16501,69.923949 z M 123.05271,71.149535 C 119.8355,73.824931 126.1582,73.824103 123.05271,71.149535 z M 123.05271,70.768675 C 128.25412,74.594819 118.03575,74.260821 123.05271,70.768675 z M 127.32273,71.918578 C 127.78548,76.177967 125.48946,67.768941 125.48435,73.568968 C 123.75585,72.05642 126.04272,69.045568 127.32273,71.918578 z M 130.56247,72.089472 C 126.35843,71.884684 132.94473,75.306512 128.0283,72.228632 C 127.74499,70.460881 130.76389,70.234048 130.56247,72.089472 z M 130.11326,71.957636 C 129.52027,69.837019 126.91278,72.636648 130.11326,71.957678 M 133.26755,70.939622 C 129.83562,71.315058 135.31822,75.762452 131.10447,72.204266 C 130.92813,70.968813 132.394,70.487077 133.26755,70.939622 z M 137.4448,71.24968 C 137.55891,66.91882 139.2504,76.632086 135.76023,73.244309 C 134.69515,72.119047 136.2866,69.707661 137.4448,71.24968 z M 135.91404,72.20427 C 137.82767,75.967212 137.51172,68.58749 135.91404,72.20427 z M 138.81931,70.834641 C 140.21155,72.331426 138.33373,75.098574 138.81931,71.202241 L 138.81931,70.834641 z M 138.81931,69.770188 C 140.24838,69.487989 138.53868,71.499548 138.81931,69.770188 z M 141.44871,72.194505 C 138.32177,73.398799 143.27546,73.245999 141.44871,72.194505 z M 142.3447,72.008949 C 141.23754,75.654734 140.76513,71.900902 141.11912,71.149578 C 138.11389,71.558498 142.99766,69.616191 142.3447,72.008949 z M 145.40134,71.359534 C 148.24541,70.253173 147.15267,75.945557 146.23142,71.159339 C 144.51488,74.882749 146.1184,72.150677 143.90964,71.393714 C 143.38161,77.932025 142.03718,67.782253 145.40134,71.359534 L 145.40134,71.359534 z M 152.07615,72.089511 C 147.8721,71.884724 154.45841,75.30655 149.54197,72.228671 C 149.25868,70.460922 152.27754,70.234089 152.07615,72.089511 z M 151.62693,71.957675 C 151.03395,69.837057 148.42646,72.636683 151.62693,71.957717 M 154.39792,71.254592 C 152.77278,74.735456 152.39969,72.029798 153.24802,71.259492 C 153.36094,70.822635 154.75494,70.373589 154.39748,71.254592 M 155.82571,71.149612 C 152.60851,73.824988 158.93118,73.824196 155.82571,71.149612 z M 155.82571,70.768752 C 161.02713,74.594909 150.80873,74.260884 155.82571,70.768752 z M 159.56594,70.915233 C 156.74431,70.560872 161.29913,74.868069 157.62258,73.005073 C 161.99237,74.156011 154.70805,70.166974 159.56594,70.915233 z M 160.54494,72.948924 C 162.00681,73.057068 159.66566,75.276859 160.54494,72.948924 z M 164.05813,70.058299 C 164.54548,70.415809 164.83543,75.693744 163.60644,72.194802 C 163.78781,71.116424 162.77657,70.425972 164.0581,70.058294 M 167.16113,71.254583 C 165.53597,74.735427 165.16289,72.029807 166.01122,71.259483 C 166.12414,70.822637 167.51814,70.373574 167.16068,71.254583 M 167.63675,70.834661 C 169.02899,72.331446 167.15117,75.098594 167.63675,71.202261 L 167.63675,70.834661 z M 167.63675,69.770208 C 169.06582,69.488009 167.35612,71.499568 167.63675,69.770208 z M 170.76663,70.915224 C 167.945,70.560865 172.49982,74.868064 168.82327,73.005064 C 173.19306,74.156002 165.90874,70.166965 170.76663,70.915224 z M 172.07523,70.05829 C 172.56258,70.415799 172.85252,75.693736 171.62354,72.194793 C 171.80491,71.116415 170.79367,70.425963 172.0752,70.058285 M 173.59375,70.834652 C 174.98599,72.331437 173.10817,75.098585 173.59375,71.202252 L 173.59375,70.834652 z M 173.59375,69.770199 C 175.02282,69.488 173.31312,71.499559 173.59375,69.770199 z M 175.24902,72.204281 C 177.16267,75.967218 176.84672,68.587505 175.24902,72.204281 z M 176.77979,73.158871 C 172.05907,72.851218 179.04904,68.134512 177.22901,74.148137 C 176.90253,76.04982 176.62055,73.421899 176.77979,73.158871 z M 178.10791,72.489926 C 177.64417,68.221337 179.94269,76.643329 179.94873,70.834652 C 181.66826,72.342643 179.39405,75.367167 178.10791,72.489926 z M 183.66699,72.089531 C 179.46293,71.884744 186.04926,75.306569 181.13281,72.228691 C 180.84952,70.460946 183.8684,70.234103 183.66699,72.089531 z M 183.21777,71.957695 C 182.62482,69.837078 180.01728,72.636703 183.21777,71.957737 M 187.73926,70.915253 C 184.91763,70.560889 189.47244,74.868089 185.7959,73.005093 C 190.16569,74.156031 182.88137,70.166994 187.73926,70.915253 z M 188.60352,70.834683 C 189.99576,72.331468 188.11794,75.098616 188.60352,71.202283 L 188.60352,70.834683 z M 188.60352,69.77023 C 190.03259,69.488031 188.32289,71.49959 188.60352,69.77023 z M 190.43457,70.058316 C 190.92192,70.415823 191.21187,75.693758 189.98288,72.194819 C 190.16425,71.116441 189.15301,70.425989 190.43454,70.058311 M 194.78757,72.194542 C 191.66062,73.398855 196.61436,73.246014 194.78757,72.194542 z M 195.68357,72.008986 C 194.57639,75.65478 194.10401,71.900922 194.45798,71.149615 C 191.45274,71.558535 196.33654,69.616229 195.68357,72.008986 z M 198.74021,71.359571 C 201.58427,70.253224 200.49155,75.945577 199.57028,71.159376 C 197.85374,74.882788 199.45725,72.15072 197.24851,71.393751 C 196.72045,77.932062 195.37605,67.782283 198.74021,71.359571 L 198.74021,71.359571 z M 73.40325,85.158842 C 72.66441,89.40689 72.55706,78.32375 75.39788,84.204252 C 75.70101,85.333138 73.96632,86.220885 73.40325,85.158842 z M 74.93157,84.204252 C 73.01405,80.446125 73.33928,87.822069 74.93157,84.204252 z M 77.72698,83.254545 C 76.10184,86.735402 75.72875,84.029756 76.57708,83.259445 C 76.69,82.822588 78.084,82.373542 77.72654,83.254545 M 80.43406,84.089502 C 76.23,83.884716 82.81633,87.30654 77.89988,84.228662 C 77.61659,82.460916 80.63547,82.234074 80.43406,84.089502 z M 79.98484,83.957666 C 79.39187,81.837051 76.78437,84.636676 79.98484,83.957708 M 81.6157,82.058294 C 82.10305,82.415799 82.39301,87.693738 81.16401,84.194797 C 81.34538,83.116419 80.33414,82.425967 81.61567,82.058289 M 83.13423,82.834656 C 84.52647,84.331441 82.64865,87.098589 83.13423,83.202256 L 83.13423,82.834656 z M 83.13423,81.770203 C 84.5633,81.488004 82.8536,83.499563 83.13423,81.770203 z M 84.47456,84.48993 C 84.01082,80.221342 86.30934,88.643335 86.31538,82.834656 C 88.03491,84.342647 85.7607,87.367171 84.47456,84.48993 z M 89.82368,83.359558 C 92.66774,82.253194 91.57501,87.94558 90.65376,83.159363 C 88.9372,86.882761 90.54073,84.150718 88.33198,83.393738 C 87.80393,89.932045 86.45951,79.782275 89.82368,83.359558 L 89.82368,83.359558 z M 93.83735,82.834656 C 95.16271,86.182374 95.62134,83.203927 96.33227,83.277872 C 95.38571,86.898256 94.72544,85.727163 93.83735,82.834656 z M 99.45747,84.089535 C 95.25341,83.884749 101.83974,87.306573 96.92329,84.228695 C 96.64,82.460946 99.65886,82.234113 99.45747,84.089535 z M 99.00825,83.957699 C 98.41527,81.837085 95.80778,84.636709 99.00825,83.957741 M 100.19477,81.770241 C 101.58949,84.911498 99.64346,86.890439 100.19477,81.782231 L 100.19477,81.770241 z M 101.69624,84.948952 C 103.15811,85.057097 100.81694,87.276888 101.69624,84.948952 z M 105.19966,85.158913 C 104.46082,89.406965 104.35347,78.32382 107.19429,84.204323 C 107.49743,85.333204 105.76272,86.220961 105.19966,85.158913 z M 106.72798,84.204323 C 104.81045,80.446192 105.13569,87.822144 106.72798,84.204323 z M 110.27778,84.089573 C 106.07372,83.884787 112.66005,87.306611 107.7436,84.228733 C 107.46031,82.460987 110.47919,82.234145 110.27778,84.089573 z M 109.82856,83.957737 C 109.23559,81.837122 106.62809,84.636747 109.82856,83.957779 M 111.01509,81.770279 C 112.40981,84.911536 110.46378,86.890477 111.01509,81.782269 L 111.01509,81.770279 z M 112.40181,81.770279 C 113.7965,84.911557 111.85051,86.890459 112.40181,81.782269 L 112.40181,81.770279 z M 116.12739,84.089611 C 111.92333,83.884825 118.50966,87.306649 113.59321,84.228771 C 113.30992,82.461025 116.3288,82.234183 116.12739,84.089611 z M 115.67817,83.957775 C 115.0852,81.83716 112.4777,84.636785 115.67817,83.957817 M 119.13764,83.918757 C 119.60039,88.178135 117.30438,79.769122 117.29927,85.569147 C 115.57077,84.056603 117.85765,81.045742 119.13764,83.918757 z M 120.48286,82.058405 C 120.97021,82.415915 121.26016,87.69385 120.03117,84.194908 C 120.21254,83.11653 119.2013,82.426078 120.48283,82.0584 M 124.34025,84.089646 C 120.13619,83.88486 126.72252,87.306684 121.80607,84.228806 C 121.52278,82.46106 124.54166,82.234218 124.34025,84.089646 z M 123.89103,83.95781 C 123.29806,81.837195 120.69056,84.63682 123.89103,83.957852 M 126.82072,82.915368 C 123.99909,82.561004 128.5539,86.868204 124.87736,85.005208 C 129.24715,86.156146 121.96283,82.167109 126.82072,82.915368 z M 127.95353,84.20443 C 129.86717,87.967369 129.55122,80.587652 127.95353,84.20443 z M 129.48429,85.15902 C 124.76359,84.851364 131.75354,80.134664 129.93351,86.148286 C 129.60703,88.049965 129.32505,85.422048 129.48429,85.15902 z M 130.81242,84.490075 C 130.34868,80.221486 132.6472,88.643475 132.65324,82.834801 C 134.37277,84.342792 132.09856,87.367316 130.81242,84.490075 z M 136.3715,84.08968 C 132.16744,83.884894 138.75377,87.306718 133.83732,84.22884 C 133.55403,82.461094 136.57291,82.234252 136.3715,84.08968 z M 135.92228,83.957844 C 135.32931,81.837229 132.72181,84.636854 135.92228,83.957886 M 138.65422,84.490113 C 138.19048,80.221524 140.48899,88.643515 140.49504,82.834839 C 142.21457,84.34283 139.94036,87.367354 138.65422,84.490113 z M 142.31877,82.058472 C 142.80612,82.415981 143.09606,87.693918 141.86708,84.194975 C 142.04845,83.116597 141.03721,82.426145 142.31874,82.058467 M 143.95204,84.949092 C 145.41389,85.057251 143.07275,87.27702 143.95204,84.949092 z M 149.29383,83.918819 C 149.75658,88.178205 147.46057,79.769184 147.45546,85.569209 C 145.72696,84.056665 148.01384,81.045804 149.29383,83.918819 z M 152.53358,84.089713 C 148.32952,83.884927 154.91585,87.306751 149.9994,84.228873 C 149.71611,82.461127 152.73499,82.234285 152.53358,84.089713 z M 152.08436,83.957877 C 151.49139,81.837262 148.88389,84.636887 152.08436,83.957919 M 153.53944,84.204501 C 155.45308,87.967436 155.13712,80.587727 153.53944,84.204501 z M 155.0702,85.159091 C 150.34949,84.851438 157.33945,80.134732 155.51942,86.148357 C 155.19294,88.050045 154.91096,85.422119 155.0702,85.159091 z M 156.39833,84.490146 C 155.93459,80.221559 158.23311,88.643555 158.23915,82.834872 C 159.95868,84.342863 157.68447,87.367387 156.39833,84.490146 z M 161.95741,84.089751 C 157.75335,83.884965 164.33968,87.306789 159.42323,84.228911 C 159.13994,82.461162 162.1588,82.234329 161.95741,84.089751 z M 161.50819,83.957915 C 160.91521,81.837301 158.30772,84.636925 161.50819,83.957957 M 162.75819,84.949168 C 164.35656,84.691684 162.44569,86.697531 162.75819,84.949168 z M 166.391,82.329539 C 164.93895,88.565625 171.7215,82.80944 166.391,82.329539 z M 165.89784,81.924266 C 172.63424,81.078328 165.11266,89.499665 165.89784,83.20251 C 165.89784,82.776429 165.89784,82.350347 165.89784,81.924266 z M 170.78553,83.149852 C 167.56833,85.825272 173.89102,85.824399 170.78553,83.149852 z M 170.78553,82.768992 C 175.98695,86.595124 165.76856,86.261147 170.78553,82.768992 z M 175.05555,83.918895 C 175.51829,88.178285 173.22229,79.769257 173.21717,85.569285 C 171.48867,84.056737 173.77554,81.045885 175.05555,83.918895 z M 178.2953,84.089789 C 174.09124,83.885003 180.67757,87.306827 175.76112,84.228949 C 175.47783,82.4612 178.49669,82.234367 178.2953,84.089789 z M 177.84608,83.957953 C 177.2531,81.837339 174.64561,84.636963 177.84608,83.957995 M 181.00038,82.939939 C 177.56842,83.315373 183.05107,87.76277 178.83729,84.204583 C 178.66095,82.969124 180.12683,82.487395 181.00038,82.939939 z M 185.65126,83.918943 C 186.11401,88.178335 183.81799,79.769306 183.81288,85.569333 C 182.08438,84.056785 184.37125,81.045933 185.65126,83.918943 z M 187.61171,83.1499 C 184.39452,85.825263 190.71716,85.824497 187.61171,83.1499 z M 187.61171,82.76904 C 192.81314,86.595214 182.59471,86.261159 187.61171,82.76904 z M 191.88173,83.918943 C 192.34448,88.178335 190.04846,79.769306 190.04335,85.569333 C 188.31485,84.056786 190.60172,81.04593 191.88173,83.918943 z M 192.73622,84.490232 C 192.27248,80.221644 194.571,88.643635 194.57704,82.834958 C 196.29657,84.342949 194.02236,87.367473 192.73622,84.490232 z M 198.08534,83.35986 C 200.9294,82.253496 199.83667,87.945882 198.91542,83.159665 C 197.19886,86.88306 198.80239,84.151024 196.59364,83.39404 C 196.06559,89.932345 194.72117,79.782577 198.08534,83.35986 L 198.08534,83.35986 z M 202.95839,83.35986 C 205.80245,82.253513 204.70973,87.945866 203.78846,83.159665 C 202.07192,86.883077 203.67543,84.151009 201.46669,83.39404 C 200.93863,89.932355 199.59423,79.782572 202.95839,83.35986 L 202.95839,83.35986 z M 206.84022,85.82324 C 205.79344,89.303225 205.394,80.611085 206.20762,83.714094 C 206.94081,85.917144 208.86184,80.408502 206.98217,85.470168 L 206.84025,85.823241 M 72.96818,93.77048 C 74.3629,96.91174 72.41687,98.89068 72.96818,93.78247 L 72.96818,93.77048 z M 75.59758,96.1948 C 72.47064,97.3991 77.42432,97.2463 75.59758,96.1948 z M 76.49357,96.00925 C 75.38643,99.65504 74.91398,95.9012 75.26799,95.14993 C 72.26275,95.55898 77.14651,93.61658 76.49357,96.00938 M 79.38908,94.94005 C 75.95715,95.31554 81.43976,99.76283 77.22599,96.20464 C 77.04963,94.9692 78.51554,94.48744 79.38908,94.93995 M 80.17521,94.83497 C 81.56745,96.33176 79.68963,99.09889 80.17521,95.20257 L 80.17521,94.83497 z M 80.17521,93.77051 C 81.60428,93.48831 79.89458,95.49987 80.17521,93.77051 z M 83.83488,95.91895 C 84.29763,100.17834 82.0016,91.76932 81.9965,97.56934 C 80.268,96.0568 82.55487,93.04594 83.83488,95.91895 z M 84.73576,94.83497 C 86.128,96.33176 84.25018,99.09889 84.73576,95.20257 L 84.73576,94.83497 z M 84.73576,93.77051 C 86.16483,93.48831 84.45513,95.49987 84.73576,93.77051 z M 87.36515,96.19483 C 84.23823,97.39915 89.19193,97.2463 87.36515,96.19483 z M 88.26115,96.00928 C 87.15401,99.65507 86.68157,95.90122 87.03556,95.14996 C 84.03035,95.559 88.9141,93.61662 88.26115,96.00941 M 90.78068,93.77064 C 92.1754,96.9119 90.22937,98.89084 90.78068,93.78263 L 90.78068,93.77064 z M 94.50627,96.08998 C 90.30222,95.88522 96.88853,99.30695 91.97209,96.2291 C 91.6888,94.46136 94.70767,94.23451 94.50627,96.08994 M 94.05705,95.9581 C 93.4639,93.83756 90.85685,96.63686 94.05705,95.95855 M 96.30314,95.15045 C 93.08594,97.82584 99.40862,97.82501 96.30314,95.15045 z M 96.30314,94.76959 C 101.50455,98.59571 91.28618,98.26174 96.30314,94.76959 z M 98.2758,96.94977 C 99.87417,96.69229 97.9633,98.69812 98.2758,96.94977 z M 101.41545,93.92486 C 104.01085,96.15435 103.25397,97.51809 104.17424,93.92486 C 105.0838,99.05447 102.58716,96.51194 101.89396,94.99392 C 101.93676,100.04396 101.08646,96.89409 101.41545,93.92486 z M 106.37883,96.19537 C 103.25189,97.39967 108.20557,97.24687 106.37883,96.19537 z M 107.27482,96.00982 C 106.16768,99.65561 105.69523,95.90177 106.04924,95.1505 C 103.044,95.55955 107.92776,93.61715 107.27482,96.00995 M 110.33146,95.36054 C 113.17552,94.25419 112.08281,99.94654 111.16154,95.16034 C 109.445,98.88376 111.04852,96.15167 108.83976,95.39472 C 108.31173,101.93302 106.9673,91.78327 110.33146,95.36054 L 110.33146,95.36054 z M 114.6674,93.77118 C 116.06212,96.91244 114.11609,98.89138 114.6674,93.78317 L 114.6674,93.77118 z M 117.29679,96.1955 C 114.16987,97.39982 119.12357,97.24697 117.29679,96.1955 z M 118.19279,96.00995 C 117.08565,99.65574 116.61321,95.90189 116.9672,95.15063 C 113.96199,95.55967 118.84574,93.61729 118.19279,96.01008 M 120.1801,95.15071 C 116.9629,97.82608 123.28555,97.8253 120.1801,95.15071 z M 120.1801,94.76985 C 125.38152,98.59602 115.16311,98.26196 120.1801,94.76985 z M 123.76164,95.25569 C 122.13651,98.73638 121.76341,96.03093 122.61174,95.26049 C 122.72458,94.82393 124.11874,94.37419 123.7612,95.25529 M 126.46872,96.09025 C 122.26467,95.88549 128.85098,99.30722 123.93454,96.22937 C 123.65125,94.46163 126.67012,94.23478 126.46872,96.09021 M 126.0195,95.95837 C 125.42635,93.83783 122.8193,96.63713 126.0195,95.95882 M 129.54489,96.09066 C 125.34084,95.8859 131.92715,99.30763 127.01071,96.22978 C 126.72742,94.46204 129.74629,94.23519 129.54489,96.09062 M 129.09567,95.95878 C 128.50252,93.83824 125.89547,96.63754 129.09567,95.95923 M 130.72653,94.05982 C 131.21388,94.41734 131.50383,99.69525 130.27484,96.19631 C 130.45621,95.11793 129.44497,94.42748 130.7265,94.0598 M 135.63617,95.25121 C 135.75028,90.92033 137.44178,100.6336 133.9516,97.24584 C 132.88651,96.12058 134.47798,93.70918 135.63617,95.25121 z M 134.10541,96.2058 C 136.01905,99.96873 135.70308,92.58902 134.10541,96.2058 z M 136.96429,96.49144 C 136.50055,92.22286 138.79907,100.64484 138.80511,94.83617 C 140.52464,96.34416 138.25043,99.36867 136.96429,96.49144 z M 140.18451,94.83615 C 141.57675,96.33294 139.69893,99.10007 140.18451,95.20375 L 140.18451,94.83615 z M 140.18451,93.77169 C 141.61358,93.48949 139.90388,95.50105 140.18451,93.77169 z M 144.90619,94.91671 C 142.08455,94.56238 146.63938,98.86957 142.96283,97.00664 C 147.33261,98.1576 140.04831,94.1686 144.90619,94.91681 M 148.10931,96.09113 C 143.90525,95.88637 150.49158,99.3081 145.57513,96.23025 C 145.29184,94.46251 148.31073,94.23566 148.10931,96.09109 M 147.66009,95.95925 C 147.06694,93.83871 144.45988,96.63801 147.66009,95.9597 M 150.64593,95.2517 C 150.76004,90.92082 152.45154,100.63409 148.96136,97.24633 C 147.89629,96.12107 149.48774,93.70967 150.64593,95.2517 z M 149.11517,96.20629 C 151.02882,99.96921 150.71285,92.58951 149.11517,96.20629 z M 155.74115,95.36156 C 158.58521,94.25519 157.49248,99.94758 156.57123,95.16136 C 154.85467,98.88477 156.4582,96.15271 154.24945,95.39574 C 153.7214,101.93404 152.37698,91.78428 155.74115,95.36156 L 155.74115,95.36156 z M 159.72797,96.19652 C 156.60103,97.40082 161.55471,97.24802 159.72797,96.19652 z M 160.62396,96.01097 C 159.51683,99.65675 159.04436,95.90293 159.39838,95.15165 C 156.39314,95.5607 161.2769,93.6183 160.62396,96.0111 M 163.35101,96.17224 C 161.4423,92.51495 161.73742,99.68303 163.35101,96.17224 z M 163.80023,97.23181 C 160.8033,100.2074 162.83072,97.29691 162.99457,97.45158 C 158.11258,96.22866 165.30892,92.38085 163.80023,97.23186 M 166.99847,95.92082 C 167.46121,100.18021 165.16521,91.77119 165.16009,97.57121 C 163.43159,96.05867 165.71846,93.04781 166.99847,95.92082 z M 169.14203,96.1967 C 166.01508,97.40101 170.9688,97.24817 169.14203,96.1967 z M 170.03802,96.01115 C 168.93088,99.65694 168.45844,95.90308 168.81244,95.15183 C 165.8072,95.56088 170.69098,93.61848 170.03802,96.01128 M 171.02923,96.95123 C 172.6276,96.69375 170.71673,98.69958 171.02923,96.95123 z M 174.16888,93.92632 C 175.75335,96.23027 173.50557,99.45351 174.16888,94.25786 L 174.16888,93.92632 z M 177.89691,95.92095 C 178.35966,100.18034 176.06363,91.77132 176.05853,97.57134 C 174.33003,96.0588 176.6169,93.04794 177.89691,95.92095 z M 179.24213,94.0606 C 179.72949,94.41812 180.01942,99.69603 178.79044,96.19709 C 178.97181,95.11871 177.96057,94.42826 179.2421,94.06058 M 183.09952,96.09183 C 178.89547,95.88707 185.48178,99.3088 180.56534,96.23095 C 180.28205,94.46321 183.30092,94.23636 183.09952,96.09179 M 182.6503,95.95995 C 182.05715,93.83941 179.4501,96.63871 182.6503,95.9604 M 185.63614,96.17281 C 183.72742,92.51553 184.02255,99.6836 185.63614,96.17281 z M 186.08536,97.23238 C 183.08841,100.20797 185.11587,97.29747 185.27969,97.45215 C 180.39772,96.22921 187.59405,92.38143 186.08536,97.23243 M 189.34952,96.09229 C 185.14547,95.88753 191.73178,99.30926 186.81534,96.23141 C 186.53205,94.46367 189.55092,94.23682 189.34952,96.09225 M 188.9003,95.96041 C 188.30715,93.83987 185.7001,96.63917 188.9003,95.96086 M 191.67129,95.25774 C 190.04616,98.73845 189.67305,96.03296 190.52139,95.26254 C 190.63423,94.82598 192.02839,94.37624 191.67085,95.25734 M 194.9814,96.19728 C 191.85447,97.40161 196.80818,97.24874 194.9814,96.19728 z M 195.8774,96.01173 C 194.77025,99.65752 194.29782,95.90367 194.65181,95.15241 C 191.64656,95.56146 196.53035,93.61907 195.8774,96.01186 M 198.77291,94.94253 C 195.34095,95.31801 200.82359,99.76531 196.60982,96.20712 C 196.43346,94.97168 197.89936,94.48992 198.77291,94.94243 M 201.52681,94.94243 C 198.09487,95.31792 203.57749,99.76521 199.36373,96.20702 C 199.18737,94.97159 200.65327,94.48982 201.52681,94.94233 M 202.26656,96.49262 C 201.80282,92.22404 204.10134,100.64602 204.10738,94.83735 C 205.82691,96.34534 203.5527,99.36986 202.26656,96.49262 z M 207.61568,95.36225 C 210.45974,94.25588 209.36701,99.94827 208.44576,95.16205 C 206.7292,98.88546 208.33273,96.1534 206.12398,95.39643 C 205.59593,101.93473 204.25151,91.78497 207.61568,95.36225 L 207.61568,95.36225 z M 212.10298,94.91791 C 209.28135,94.56359 213.83618,98.87077 210.15962,97.00784 C 214.52941,98.15879 207.2451,94.16981 212.10298,94.91801 M 214.20992,96.19731 C 211.08298,97.40161 216.03666,97.24881 214.20992,96.19731 z M 215.10591,96.01176 C 213.99877,99.65755 213.52632,95.90371 213.88033,95.15244 C 210.87509,95.56149 215.75885,93.61909 215.10591,96.01189 M 218.3066,95.92159 C 218.76935,100.18098 216.47332,91.77196 216.46822,97.57198 C 214.73972,96.05944 217.02659,93.04858 218.3066,95.92159 z M 219.27095,96.95187 C 220.86932,96.69439 218.95845,98.70022 219.27095,96.95187 z M 74.46626,106.26144 C 69.65924,110.08937 79.10614,109.99774 74.46626,106.26144 z M 75.15718,109.50606 C 75.58401,112.40422 69.75191,104.01955 75.69182,106.37542 C 76.43227,107.26839 76.32684,108.98424 75.15715,109.5053 M 76.85637,108.49212 C 76.39263,104.22354 78.69115,112.64552 78.69719,106.83685 C 80.41672,108.34484 78.14251,111.36936 76.85637,108.49212 z M 80.07659,106.83683 C 81.46883,108.33362 79.59101,111.10075 80.07659,107.20443 L 80.07659,106.83683 z M 80.07659,105.77237 C 81.50566,105.49017 79.79596,107.50173 80.07659,105.77237 z M 83.20647,106.91739 C 80.38483,106.56306 84.93966,110.87025 81.26311,109.00732 C 85.6329,110.15827 78.34858,106.16928 83.20647,106.91749 M 84.33928,108.20656 C 86.25293,111.96948 85.93696,104.58978 84.33928,108.20656 z M 85.87004,109.16115 C 81.14933,108.85349 88.13929,104.13679 86.31926,110.15041 C 85.99278,112.05209 85.7108,109.42418 85.87004,109.16115 z M 87.19817,108.4922 C 86.73443,104.22362 89.03295,112.6456 89.03899,106.83693 C 90.75852,108.34492 88.48431,111.36944 87.19817,108.4922 z M 92.75725,108.09181 C 88.5532,107.88705 95.13951,111.30878 90.22307,108.23093 C 89.93978,106.46319 92.95865,106.23634 92.75725,108.09177 M 92.30803,107.95993 C 91.71488,105.83939 89.10782,108.63869 92.30803,107.96038 M 94.76409,106.83734 C 96.08944,110.18509 96.54807,107.20658 97.25901,107.28056 C 96.31245,110.90094 95.65218,109.72984 94.76409,106.83734 z M 100.3842,108.09222 C 96.18014,107.88746 102.76647,111.30919 97.85002,108.23134 C 97.56673,106.4636 100.58562,106.23675 100.3842,108.09218 M 99.93498,107.96034 C 99.34185,105.8398 96.73476,108.63909 99.93498,107.96079 M 103.39446,107.92169 C 103.85721,112.18108 101.56118,103.77206 101.55608,109.57208 C 100.97607,106.1703 99.73734,104.62383 103.39446,107.92169 z M 104.29534,106.83771 C 105.68758,108.3345 103.80976,111.10163 104.29534,107.20531 L 104.29534,106.83771 z M 104.29534,105.77325 C 105.72441,105.49105 104.01471,107.50261 104.29534,105.77325 z M 107.64983,106.94269 C 104.21788,107.31818 109.70051,111.76547 105.48674,108.20728 C 105.31038,106.97184 106.77629,106.49008 107.64983,106.94259 M 108.38957,108.49288 C 107.92583,104.2243 110.22435,112.64628 110.23039,106.83761 C 111.94991,108.3456 109.67572,111.37011 108.38957,108.49288 z M 111.60979,105.77315 C 113.00451,108.91441 111.05848,110.89335 111.60979,105.78515 L 111.60979,105.77315 z M 114.23918,108.19747 C 111.11226,109.40179 116.06596,109.24894 114.23918,108.19747 z M 115.13518,108.01192 C 114.02804,111.65771 113.5556,107.90386 113.90959,107.1526 C 110.90438,107.56164 115.78813,105.61926 115.13518,108.01205 M 118.08928,109.16196 C 117.35044,113.41 117.2431,102.32687 120.08391,108.20737 C 120.38705,109.33626 118.65235,110.22399 118.08928,109.16196 z M 119.6176,108.20737 C 117.70009,104.44924 118.0253,111.82518 119.6176,108.20737 z M 121.88811,107.15268 C 118.67091,109.82807 124.99359,109.82724 121.88811,107.15268 z M 121.88811,106.77182 C 127.08951,110.59796 116.87116,110.26396 121.88811,106.77182 z M 125.46965,107.25766 C 123.84452,110.73837 123.47141,108.03289 124.31975,107.26266 C 124.43259,106.8261 125.82675,106.37636 125.46921,107.25766 M 126.38962,106.06137 C 126.87698,106.41889 127.16693,111.69679 125.93793,108.19786 C 126.1193,107.11948 125.10806,106.42903 126.38959,106.06135 M 128.35248,106.06135 C 128.83985,106.41886 129.12977,111.69677 127.90078,108.19784 C 128.08215,107.11946 127.07091,106.42901 128.35244,106.06133 M 129.871,106.8377 C 131.26324,108.33449 129.38542,111.10162 129.871,107.2053 L 129.871,106.8377 z M 129.871,105.77324 C 131.30007,105.49104 129.59037,107.5026 129.871,105.77324 z M 131.70205,106.06133 C 132.18941,106.41885 132.47936,111.69675 131.25036,108.19782 C 131.43173,107.11944 130.42049,106.42899 131.70202,106.06131 M 134.28015,107.15262 C 131.06295,109.82801 137.38563,109.82718 134.28015,107.15262 z M 134.28015,106.77176 C 139.48155,110.5979 129.2632,110.2639 134.28015,106.77176 z M 137.86169,107.2576 C 136.23656,110.73831 135.86345,108.03283 136.71179,107.2626 C 136.82463,106.82604 138.21879,106.3763 137.86125,107.2576 M 140.98869,107.15262 C 137.77149,109.82801 144.09417,109.82718 140.98869,107.15262 z M 140.98869,106.77176 C 146.1901,110.59788 135.97173,110.26391 140.98869,106.77176 z M 144.78508,107.25272 C 144.89919,102.92184 146.59069,112.63511 143.10051,109.24735 C 142.03542,108.12209 143.62689,105.71069 144.78508,107.25272 z M 143.25432,108.20731 C 145.16796,111.97024 144.85199,104.59053 143.25432,108.20731 z M 146.15959,106.83768 C 147.55183,108.33447 145.67401,111.1016 146.15959,107.20528 L 146.15959,106.83768 z M 146.15959,105.77322 C 147.58866,105.49102 145.87896,107.50258 146.15959,105.77322 z M 148.60588,107.15262 C 145.38868,109.82801 151.71136,109.82718 148.60588,107.15262 z M 148.60588,106.77176 C 153.80728,110.5979 143.58893,110.2639 148.60588,106.77176 z M 150.57854,108.95194 C 152.17689,108.69445 150.26604,110.70029 150.57854,108.95194 z M 153.71818,105.92703 C 156.31358,108.15648 155.55672,109.5203 156.47697,105.92703 C 157.38653,111.05664 154.8899,108.51411 154.1967,106.99609 C 154.2395,112.04612 153.38918,108.89627 153.71818,105.92703 z M 157.3925,108.49295 C 156.92876,104.22437 159.22728,112.64635 159.23332,106.83768 C 160.95285,108.34567 158.67864,111.37019 157.3925,108.49295 z M 160.61272,105.77322 C 162.00741,108.9145 160.06142,110.8934 160.61272,105.78522 L 160.61272,105.77322 z M 161.99943,105.77322 C 163.39415,108.91448 161.44812,110.89342 161.99943,105.78522 L 161.99943,105.77322 z M 164.62883,108.19754 C 161.50188,109.40186 166.45561,109.24901 164.62883,108.19754 z M 165.52483,108.01199 C 164.41769,111.65778 163.94524,107.90393 164.29924,107.15267 C 161.29399,107.56172 166.17778,105.61933 165.52483,108.01212 M 169.42863,105.77335 C 168.3657,105.65799 169.03031,110.50892 168.11757,108.62551 C 168.29691,107.0217 167.02103,106.18703 169.4286,105.77339 M 171.04481,108.19771 C 167.91789,109.40203 172.87159,109.24918 171.04481,108.19771 z M 171.94081,108.01216 C 170.83367,111.65795 170.36123,107.9041 170.71522,107.15284 C 167.71001,107.56188 172.59376,105.6195 171.94081,108.01229 M 174.83632,106.94296 C 171.40437,107.31845 176.887,111.76574 172.67323,108.20755 C 172.49687,106.97211 173.96278,106.49035 174.83632,106.94286 M 175.62245,106.83788 C 177.01469,108.33467 175.13687,111.1018 175.62245,107.20548 L 175.62245,106.83788 z M 175.62245,105.77342 C 177.05152,105.49122 175.34182,107.50278 175.62245,105.77342 z M 177.00917,105.77342 C 178.40389,108.91468 176.45786,110.89362 177.00917,105.78542 L 177.00917,105.77342 z M 178.39589,106.83788 C 179.78813,108.33467 177.91031,111.1018 178.39589,107.20548 L 178.39589,106.83788 z M 178.39589,105.77342 C 179.82496,105.49122 178.11526,107.50278 178.39589,105.77342 z M 181.52577,106.91844 C 178.70413,106.56412 183.25897,110.8713 179.58241,109.00837 C 183.9522,110.15932 176.66788,106.17033 181.52577,106.91854 M 182.39003,106.83794 C 183.78227,108.33473 181.90445,111.10186 182.39003,107.20554 L 182.39003,106.83794 z M 182.39003,105.77348 C 183.8191,105.49128 182.1094,107.50284 182.39003,105.77348 z M 183.84022,108.9522 C 185.43859,108.69472 183.52772,110.70055 183.84022,108.9522 z M 189.70937,106.20805 C 185.94467,106.30455 189.226,109.44133 189.16005,109.55522 C 185.47834,110.50775 186.43479,104.15366 189.70937,106.20806 M 192.04091,107.25787 C 190.41578,110.73856 190.04268,108.03311 190.89101,107.26287 C 191.00385,106.82631 192.39801,106.37657 192.04047,107.25787 M 193.75922,108.19781 C 190.63227,109.40212 195.58599,109.24928 193.75922,108.19781 z M 194.65521,108.01226 C 193.54807,111.65805 193.07563,107.90419 193.42963,107.15294 C 190.42438,107.56199 195.30818,105.61959 194.65521,108.01239 M 197.32611,106.91864 C 194.50448,106.56432 199.05931,110.8715 195.38275,109.00857 C 199.75254,110.15952 192.46822,106.17053 197.32611,106.91874 M 201.16644,105.77372 C 200.10352,105.65837 200.76812,110.50928 199.85538,108.62588 C 200.03472,107.02207 198.75884,106.1874 201.16641,105.77376 M 202.78263,108.19808 C 199.65569,109.40238 204.60937,109.24958 202.78263,108.19808 z M 203.67862,108.01253 C 202.57148,111.65832 202.09903,107.90448 202.45304,107.15321 C 199.4478,107.56226 204.33156,105.61986 203.67862,108.01266 M 206.57413,106.94333 C 203.1422,107.31882 208.62481,111.76611 204.41104,108.20792 C 204.23468,106.97248 205.70059,106.49072 206.57413,106.94323 M 207.36026,106.83825 C 208.7525,108.33504 206.87468,111.10217 207.36026,107.20585 L 207.36026,106.83825 z M 207.36026,105.77379 C 208.78933,105.49159 207.07963,107.50315 207.36026,105.77379 z M 208.74698,105.77379 C 210.1417,108.91505 208.19567,110.89399 208.74698,105.78579 L 208.74698,105.77379 z M 210.1337,106.83825 C 211.52594,108.33504 209.64812,111.10217 210.1337,107.20585 L 210.1337,106.83825 z M 210.1337,105.77379 C 211.56277,105.49159 209.85307,107.50315 210.1337,105.77379 z M 213.26358,106.91881 C 210.44195,106.56449 214.99678,110.87167 211.32022,109.00874 C 215.69001,110.15969 208.40569,106.1707 213.26358,106.91891 M 214.12784,106.83831 C 215.52008,108.3351 213.64226,111.10223 214.12784,107.20591 L 214.12784,106.83831 z M 214.12784,105.77385 C 215.55691,105.49165 213.84721,107.50321 214.12784,105.77385 z M 217.25772,106.91887 C 214.43609,106.56455 218.99092,110.87173 215.31436,109.0088 C 219.68415,110.15975 212.39984,106.17077 217.25772,106.91897 M 74.35001,117.77295 C 73.28709,117.6576 73.9517,122.50851 73.03895,120.62511 C 73.21829,119.02132 71.94243,118.1866 74.34999,117.77299 M 77.06239,120.09233 C 72.85833,119.88757 79.44466,123.3093 74.52821,120.23145 C 74.24492,118.46371 77.26381,118.23686 77.06239,120.09229 M 76.61317,119.96045 C 76.02002,117.83991 73.41296,120.63921 76.61317,119.9609 M 77.7997,117.7734 C 79.19439,120.91468 77.2484,122.89358 77.7997,117.7854 L 77.7997,117.7734 z M 79.18641,118.83786 C 80.57865,120.33465 78.70083,123.10178 79.18641,119.20546 L 79.18641,118.83786 z M 79.18641,117.7734 C 80.61548,117.4912 78.90578,119.50276 79.18641,117.7734 z M 82.3163,118.91842 C 79.49466,118.56409 84.04949,122.87128 80.37294,121.00835 C 84.74272,122.15931 77.45842,118.17031 82.3163,118.91852 M 86.51552,118.91852 C 83.69387,118.56419 88.24871,122.87138 84.57216,121.00845 C 88.94193,122.1594 81.65764,118.17041 86.51552,118.91862 M 87.37977,118.83802 C 88.77201,120.33481 86.89419,123.10194 87.37977,119.20562 L 87.37977,118.83802 z M 87.37977,117.77356 C 88.80884,117.49136 87.09914,119.50292 87.37977,117.77356 z M 89.21083,118.06165 C 89.69818,118.41917 89.98813,123.69708 88.75914,120.19814 C 88.94051,119.11976 87.92927,118.42931 89.2108,118.06163 M 93.56383,120.19786 C 90.43689,121.40216 95.39057,121.24936 93.56383,120.19786 z M 94.45982,120.01231 C 93.35263,123.65811 92.88028,119.90425 93.23424,119.15289 C 90.229,119.56194 95.11276,117.61954 94.45982,120.01234 M 97.51646,119.36293 C 100.36052,118.25658 99.26781,123.94893 98.34654,119.16273 C 96.63,122.88615 98.23352,120.15406 96.02476,119.39711 C 95.49673,125.93541 94.1523,115.78566 97.51646,119.36291 L 97.51646,119.36293 L 97.51646,119.36293 z M 102.59947,120.09291 C 98.39542,119.88815 104.98173,123.30988 100.06529,120.23203 C 99.782,118.46429 102.80087,118.23744 102.59947,120.09287 M 102.15025,119.96103 C 101.5571,117.84049 98.95004,120.63979 102.15025,119.96148 M 103.78111,118.06207 C 104.26846,118.41959 104.55841,123.6975 103.32942,120.19856 C 103.51079,119.12018 102.49955,118.42973 103.78108,118.06205 M 106.89143,117.77396 C 108.28615,120.91522 106.34012,122.89416 106.89143,117.78596 L 106.89143,117.77396 z M 109.33772,119.15336 C 106.12052,121.82875 112.4432,121.82792 109.33772,119.15336 z M 109.33772,118.7725 C 114.53912,122.59864 104.32077,122.26464 109.33772,118.7725 z M 112.91926,119.25834 C 111.29413,122.73905 110.92102,120.03356 111.76936,119.26334 C 111.8822,118.82678 113.27636,118.37704 112.91882,119.25834 M 115.62634,120.0933 C 111.42228,119.88854 118.00861,123.31027 113.09216,120.23242 C 112.80887,118.46468 115.82776,118.23783 115.62634,120.09326 M 115.17713,119.96142 C 114.58397,117.84088 111.97691,120.64018 115.17713,119.96187 M 118.49256,119.36373 C 121.33661,118.25739 120.2439,123.94973 119.32263,119.16353 C 117.60609,122.88695 119.2096,120.15486 117.00086,119.39791 C 116.4728,125.93621 115.1284,115.78645 118.49256,119.36371 L 118.49256,119.36373 L 118.49256,119.36373 z M 121.30017,120.95309 C 122.89854,120.69561 120.98767,122.70144 121.30017,120.95309 z M 126.62488,118.04781 C 123.02622,117.64363 128.96011,123.053 124.29334,120.90423 C 129.79976,122.25965 120.68087,117.14422 126.62488,118.04783 M 129.93298,120.09373 C 125.72894,119.88897 132.31524,123.31071 127.39881,120.23285 C 127.1155,118.46511 130.1344,118.23826 129.93298,120.09369 M 129.48377,119.96185 C 128.89061,117.84131 126.28355,120.64061 129.48377,119.9623 M 132.46961,119.2543 C 132.5837,114.92342 134.27521,124.63668 130.78504,121.24893 C 129.71995,120.12367 131.31142,117.71227 132.46961,119.2543 z M 130.93884,120.20889 C 132.8525,123.97181 132.53653,116.59211 130.93884,120.20889 z M 135.70447,120.20889 C 137.61812,123.97181 137.30214,116.59212 135.70447,120.20889 z M 137.23523,121.16348 C 132.51452,120.85582 139.50448,116.13913 137.68445,122.15274 C 137.35797,124.05442 137.07599,121.42651 137.23523,121.16348 z M 138.56336,120.49453 C 138.09961,116.22596 140.39813,124.64793 140.40418,118.83926 C 142.12368,120.34726 139.8495,123.37176 138.56336,120.49453 z M 141.78357,118.83924 C 143.17581,120.33603 141.29799,123.10316 141.78357,119.20684 L 141.78357,118.83924 z M 141.78357,117.77478 C 143.21264,117.49258 141.50294,119.50414 141.78357,117.77478 z M 144.91345,118.9198 C 142.09182,118.56548 146.64665,122.87266 142.97009,121.00973 C 147.33988,122.16068 140.05557,118.1717 144.91345,118.9199 M 149.70838,120.09422 C 145.50433,119.88945 152.09062,123.31119 147.1742,120.23334 C 146.8909,118.46559 149.90979,118.23876 149.70838,120.09418 M 149.25916,119.96234 C 148.666,117.8418 146.05894,120.6411 149.25916,119.96279 M 150.44568,117.77529 C 151.8404,120.91655 149.89437,122.89549 150.44568,117.78729 L 150.44568,117.77529 z M 151.8324,118.83975 C 153.22464,120.33654 151.34682,123.10367 151.8324,119.20735 L 151.8324,118.83975 z M 151.8324,117.77529 C 153.26147,117.49309 151.55177,119.50465 151.8324,117.77529 z M 153.66345,118.06338 C 154.15082,118.42089 154.44074,123.6988 153.21175,120.19987 C 153.39312,119.12149 152.38188,118.43104 153.66341,118.06336 M 155.24544,120.95399 C 156.84381,120.69651 154.93294,122.70234 155.24544,120.95399 z M 159.86459,118.26356 C 155.05756,122.09144 164.50444,121.99991 159.86459,118.26356 z M 160.5555,121.50818 C 160.98234,124.40634 155.15021,116.02167 161.09013,118.37754 C 161.83058,119.27051 161.72515,120.98636 160.55546,121.50742 M 162.25468,120.49424 C 161.79094,116.22566 164.08946,124.64764 164.0955,118.83897 C 165.81503,120.34696 163.54082,123.37148 162.25468,120.49424 z M 165.4749,118.83895 C 166.86714,120.33574 164.98932,123.10287 165.4749,119.20655 L 165.4749,118.83895 z M 165.4749,117.77449 C 166.90397,117.49229 165.19427,119.50385 165.4749,117.77449 z M 168.60478,118.91951 C 165.78314,118.56518 170.33797,122.87237 166.66142,121.00944 C 171.03121,122.16039 163.74689,118.1714 168.60478,118.91961 M 169.73759,120.20868 C 171.65124,123.9716 171.33527,116.5919 169.73759,120.20868 z M 171.26835,121.16327 C 166.54765,120.8556 173.5376,116.13892 171.71757,122.15253 C 171.39109,124.05421 171.10911,121.4263 171.26835,121.16327 z M 172.59648,120.49432 C 172.13274,116.22574 174.43126,124.64772 174.4373,118.83905 C 176.15683,120.34704 173.88262,123.37156 172.59648,120.49432 z M 178.15556,120.09393 C 173.9515,119.88917 180.53783,123.3109 175.62138,120.23305 C 175.33809,118.46531 178.35698,118.23846 178.15556,120.09389 M 177.70634,119.96205 C 177.11319,117.84151 174.50613,120.64081 177.70634,119.9625 M 181.86894,117.775 C 180.80602,117.65965 181.47063,122.51056 180.55788,120.62716 C 180.73722,119.02336 179.46136,118.18865 181.86892,117.77504 M 183.48513,120.19936 C 180.3582,121.40369 185.31191,121.25082 183.48513,120.19936 z M 184.38113,120.01381 C 183.27393,123.65961 182.8016,119.90574 183.15554,119.15439 C 180.15029,119.56344 185.03408,117.62105 184.38113,120.01384 M 187.27663,118.94451 C 183.84469,119.32 189.32731,123.76729 185.11355,120.2091 C 184.93719,118.97367 186.40309,118.4919 187.27663,118.94441 M 188.06277,118.83943 C 189.45501,120.33622 187.57719,123.10335 188.06277,119.20703 L 188.06277,118.83943 z M 188.06277,117.77497 C 189.49184,117.49277 187.78214,119.50433 188.06277,117.77497 z M 189.44949,117.77497 C 190.84421,120.91623 188.89818,122.89517 189.44949,117.78697 L 189.44949,117.77497 z M 190.83621,118.83943 C 192.22842,120.33624 190.35064,123.10334 190.83621,119.20703 L 190.83621,118.83943 z M 190.83621,117.77497 C 192.26525,117.49277 190.55558,119.50433 190.83621,117.77497 z M 193.96609,118.91999 C 191.14445,118.56566 195.69928,122.87285 192.02273,121.00992 C 196.39251,122.16088 189.10821,118.17188 193.96609,118.92009 M 194.83035,118.83949 C 196.22256,120.3363 194.34478,123.1034 194.83035,119.20709 L 194.83035,118.83949 z M 194.83035,117.77503 C 196.25939,117.49283 194.54972,119.50439 194.83035,117.77503 z M 197.96023,118.92005 C 195.13859,118.56572 199.69342,122.87291 196.01687,121.00998 C 200.38666,122.16093 193.10234,118.17194 197.96023,118.92015 M 198.93923,120.95385 C 200.4011,121.06199 198.05995,123.28178 198.93923,120.95385 z M 201.96169,120.49486 C 201.49795,116.22628 203.79647,124.64826 203.80251,118.83959 C 205.52204,120.34758 203.24783,123.37209 201.96169,120.49486 z M 206.76638,119.25951 C 205.14125,122.74022 204.76814,120.03474 205.61648,119.26451 C 205.72932,118.82795 207.12348,118.37821 206.76594,119.25951 M 209.42707,119.92357 C 209.88981,124.18296 207.59381,115.77394 207.58869,121.57396 C 205.86019,120.06142 208.14706,117.05056 209.42707,119.92357 z M 211.57063,120.19945 C 208.44368,121.40376 213.3974,121.25092 211.57063,120.19945 z M 212.46662,120.0139 C 211.35942,123.6597 210.8871,119.90583 211.24104,119.15448 C 208.23579,119.56353 213.11959,117.62113 212.46662,120.01393 M 216.72932,118.92018 C 213.90768,118.56585 218.46251,122.87304 214.78596,121.01011 C 219.15575,122.16106 211.87143,118.17207 216.72932,118.92028 M 217.59358,118.83968 C 218.98582,120.33647 217.108,123.1036 217.59358,119.20728 L 217.59358,118.83968 z M 217.59358,117.77522 C 219.02265,117.49302 217.31295,119.50458 217.59358,117.77522 z M 219.42463,118.06331 C 219.91199,118.42083 220.20194,123.69873 218.97294,120.1998 C 219.15431,119.12142 218.14307,118.43097 219.4246,118.06329 M 74.20732,132.1988 C 71.08038,133.4031 76.03406,133.2503 74.20732,132.1988 z M 75.10331,132.01325 C 73.99612,135.65905 73.52377,131.90519 73.87773,131.15383 C 70.87249,131.56288 75.75625,129.62048 75.10331,132.01328 M 78.15995,131.36387 C 81.00401,130.25752 79.9113,135.94987 78.99003,131.16367 C 77.27349,134.88709 78.87701,132.155 76.66825,131.39805 C 76.14022,137.93636 74.79579,127.78659 78.15995,131.36385 L 78.15995,131.36387 L 78.15995,131.36387 z M 83.24296,132.09385 C 79.0389,131.88909 85.62523,135.31082 80.70878,132.23297 C 80.42549,130.46523 83.44438,130.23838 83.24296,132.09381 M 82.79374,131.96197 C 82.20059,129.84143 79.59353,132.64073 82.79374,131.96242 M 84.4246,130.06301 C 84.91196,130.42053 85.20191,135.69843 83.97291,132.1995 C 84.15428,131.12112 83.14304,130.43067 84.42457,130.06299 M 87.96949,133.16358 C 87.23065,137.41162 87.12331,126.32849 89.96412,132.20899 C 90.26726,133.33788 88.53256,134.22561 87.96949,133.16358 z M 89.49781,132.20899 C 87.5803,128.45085 87.90551,135.8268 89.49781,132.20899 z M 90.66237,132.49463 C 90.19862,128.22606 92.49714,136.64803 92.50319,130.83936 C 94.22269,132.34736 91.94851,135.37186 90.66237,132.49463 z M 93.88258,129.7749 C 95.2773,132.91616 93.33127,134.8951 93.88258,129.7869 L 93.88258,129.7749 z M 94.94703,130.83936 C 96.27239,134.18709 96.73102,131.20861 97.44196,131.28258 C 96.49541,134.90295 95.83512,133.73186 94.94703,130.83936 z M 98.22828,130.83936 C 99.62052,132.33615 97.7427,135.10328 98.22828,131.20696 L 98.22828,130.83936 z M 98.22828,129.7749 C 99.65735,129.4927 97.94765,131.50426 98.22828,129.7749 z M 101.88795,131.92334 C 102.3507,136.18273 100.05468,127.77371 100.04957,133.57373 C 98.32107,132.06119 100.60794,129.05033 101.88795,131.92334 z M 104.03151,132.19922 C 100.90457,133.40352 105.85825,133.25072 104.03151,132.19922 z M 104.9275,132.01367 C 103.82031,135.65947 103.34796,131.90561 103.70192,131.15425 C 100.69668,131.5633 105.58044,129.6209 104.9275,132.0137 M 107.43971,131.25931 C 105.81458,134.74 105.44148,132.03455 106.28981,131.26431 C 106.40265,130.82775 107.79681,130.37801 107.43927,131.25931 M 111.63605,131.36429 C 114.48011,130.25794 113.38738,135.95029 112.46612,131.16409 C 110.74958,134.88751 112.35309,132.15542 110.14435,131.39847 C 109.61629,137.93677 108.27189,127.78701 111.63605,131.36427 L 111.63605,131.36429 z M 115.43976,131.15433 C 112.22256,133.8297 118.54523,133.82891 115.43976,131.15433 z M 115.43976,130.77347 C 120.64117,134.59962 110.42278,134.2656 115.43976,130.77347 z M 117.43683,129.77493 C 118.83155,132.91619 116.88552,134.89513 117.43683,129.78693 L 117.43683,129.77493 z M 118.82355,129.77493 C 120.21827,132.91619 118.27224,134.89513 118.82355,129.78693 L 118.82355,129.77493 z M 120.21027,130.83939 C 121.60248,132.3362 119.7247,135.1033 120.21027,131.20699 L 120.21027,130.83939 z M 120.21027,129.77493 C 121.63931,129.49273 119.92964,131.50429 120.21027,129.77493 z M 123.34015,130.91995 C 120.51851,130.56562 125.07334,134.87281 121.39679,133.00988 C 125.76657,134.16084 118.48227,130.17184 123.34015,130.92005 M 124.31915,132.95375 C 125.78102,133.06189 123.43987,135.28168 124.31915,132.95375 z M 127.82257,133.16371 C 127.08373,137.41175 126.97639,126.32862 129.8172,132.20912 C 130.12034,133.33801 128.38564,134.22574 127.82257,133.16371 L 127.82257,133.16371 z M 129.35089,132.20912 C 127.43338,128.45099 127.75859,135.82693 129.35089,132.20912 z M 130.51544,132.49476 C 130.0517,128.22618 132.35022,136.64816 132.35626,130.83949 C 134.07579,132.34748 131.80158,135.372 130.51544,132.49476 z M 135.32013,131.25941 C 133.695,134.7401 133.3219,132.03465 134.17023,131.26441 C 134.28307,130.82785 135.67723,130.37811 135.31969,131.25941 M 135.74938,132.49476 C 135.28563,128.22619 137.58415,136.64816 137.5902,130.83949 C 139.3097,132.34749 137.03552,135.37199 135.74938,132.49476 z M 140.71275,130.92005 C 137.89112,130.56572 142.44594,134.87291 138.7694,133.00998 C 143.13917,134.16092 135.85487,130.17194 140.71275,130.92015 M 144.41149,132.19945 C 141.28455,133.40375 146.23823,133.25095 144.41149,132.19945 z M 145.30748,132.0139 C 144.20029,135.65969 143.72793,131.90585 144.0819,131.15448 C 141.07666,131.56353 145.96042,129.62113 145.30748,132.01393 M 147.81969,131.25954 C 146.19456,134.74023 145.82146,132.03478 146.66979,131.26454 C 146.78263,130.82798 148.17679,130.37824 147.81925,131.25954 M 150.15567,130.9446 C 146.72373,131.32009 152.20635,135.76738 147.99259,132.20919 C 147.81623,130.97376 149.28213,130.49199 150.15567,130.9445 M 150.89542,132.49479 C 150.43168,128.22621 152.7302,136.64819 152.73624,130.83952 C 154.45577,132.34751 152.18156,135.37203 150.89542,132.49479 z M 156.95011,132.19938 C 153.82316,133.40369 158.77688,133.25085 156.95011,132.19938 z M 157.8461,132.01383 C 156.7389,135.65963 156.26658,131.90576 156.62052,131.15441 C 153.61528,131.56346 158.49906,129.62106 157.8461,132.01386 M 160.57315,131.25459 C 160.68726,126.92371 162.37876,136.63698 158.88858,133.24922 C 157.82351,132.12396 159.41496,129.71256 160.57315,131.25459 z M 159.04239,132.20918 C 160.95604,135.9721 160.64007,128.5924 159.04239,132.20918 z M 161.94767,130.83955 C 163.33991,132.33634 161.46209,135.10347 161.94767,131.20715 L 161.94767,130.83955 z M 161.94767,129.77509 C 163.37674,129.49289 161.66704,131.50445 161.94767,129.77509 z M 163.76896,133.16377 C 163.03012,137.41181 162.92277,126.32868 165.76358,132.20918 C 166.06673,133.33806 164.33202,134.22581 163.76896,133.16377 z M 165.29728,132.20918 C 163.37976,128.45104 163.70498,135.82699 165.29728,132.20918 z M 166.50821,130.83955 C 167.90045,132.33634 166.02263,135.10347 166.50821,131.20715 L 166.50821,130.83955 z M 166.50821,129.77509 C 167.93728,129.49289 166.22758,131.50445 166.50821,129.77509 z M 169.6381,130.92011 C 166.81645,130.56578 171.37129,134.87297 167.69474,133.01004 C 172.06451,134.16099 164.78022,130.172 169.6381,130.92021 M 172.47013,130.94461 C 169.03817,131.32009 174.52082,135.76739 170.30704,132.2092 C 170.13068,130.97376 171.59659,130.492 172.47013,130.94451 M 173.25626,130.83953 C 174.6485,132.33632 172.77068,135.10345 173.25626,131.20713 L 173.25626,130.83953 z M 173.25626,129.77507 C 174.68533,129.49287 172.97563,131.50443 173.25626,129.77507 z M 176.91593,131.92351 C 177.37868,136.1829 175.08265,127.77388 175.07755,133.5739 C 173.34905,132.06136 175.63592,129.0505 176.91593,131.92351 z M 179.61612,132.17498 C 177.70741,128.51769 178.00253,135.68577 179.61612,132.17498 z M 180.06534,133.23455 C 177.06841,136.21014 179.09584,133.29965 179.25968,133.45432 C 174.37769,132.2314 181.57403,128.38359 180.06534,133.2346 M 182.26017,130.83958 C 183.58552,134.18733 184.04415,131.20882 184.75509,131.2828 C 183.80853,134.90318 183.14826,133.73208 182.26017,130.83958 z M 187.88028,132.09446 C 183.67622,131.8897 190.26255,135.31143 185.3461,132.23358 C 185.06281,130.46584 188.0817,130.23899 187.88028,132.09442 M 187.43106,131.96258 C 186.83793,129.84204 184.23084,132.64133 187.43106,131.96303 M 188.61759,129.77553 C 190.01231,132.91679 188.06628,134.89573 188.61759,129.78753 L 188.61759,129.77553 z M 190.00431,130.83999 C 191.39655,132.33678 189.51873,135.10391 190.00431,131.20759 L 190.00431,130.83999 z M 190.00431,129.77553 C 191.43338,129.49333 189.72368,131.50489 190.00431,129.77553 z M 191.83536,130.06362 C 192.32271,130.42114 192.61266,135.69904 191.38367,132.20011 C 191.56504,131.12173 190.5538,130.43128 191.83533,130.0636 M 193.46863,132.95423 C 194.9305,133.06237 192.58935,135.28216 193.46863,132.95423 z M 198.81043,131.92395 C 199.27318,136.18334 196.97715,127.77432 196.97205,133.57434 C 195.24355,132.0618 197.53042,129.05094 198.81043,131.92395 z M 200.77088,131.15491 C 197.55368,133.8303 203.87636,133.82947 200.77088,131.15491 z M 200.77088,130.77405 C 205.97228,134.60019 195.75393,134.26619 200.77088,130.77405 z M 205.0409,131.92395 C 205.50365,136.18334 203.20762,127.77432 203.20252,133.57434 C 201.47402,132.0618 203.76089,129.05094 205.0409,131.92395 z M 74.93103,142.94495 C 71.49909,143.32044 76.98171,147.76773 72.76795,144.20954 C 72.59159,142.97411 74.05749,142.49234 74.93103,142.94485 M 76.77674,143.15481 C 73.55954,145.8302 79.88222,145.82937 76.77674,143.15481 z M 76.77674,142.77395 C 81.97814,146.60009 71.75979,146.26609 76.77674,142.77395 z M 81.04676,143.92385 C 81.50951,148.18324 79.21348,139.77422 79.20838,145.57424 C 77.47988,144.0617 79.76675,141.05084 81.04676,143.92385 z M 83.74695,143.25491 C 83.86106,138.92403 85.55256,148.6373 82.06238,145.24954 C 80.99729,144.12428 82.58877,141.71288 83.74695,143.25491 z M 82.21619,144.2095 C 84.12984,147.97242 83.81386,140.59273 82.21619,144.2095 z M 85.12146,142.83987 C 86.5137,144.33666 84.63588,147.10379 85.12146,143.20747 L 85.12146,142.83987 z M 85.12146,141.77541 C 86.55053,141.49321 84.84083,143.50477 85.12146,141.77541 z M 88.63709,143.36477 C 91.48115,142.2584 90.38842,147.95079 89.46717,143.16457 C 87.75061,146.88798 89.35414,144.15591 87.14539,143.39895 C 86.61734,149.93725 85.27292,139.78749 88.63709,143.36475 L 88.63709,143.36477 L 88.63709,143.36477 z M 93.7201,144.09475 C 89.51605,143.88999 96.10236,147.31172 91.18592,144.23387 C 90.90263,142.46613 93.9215,142.23928 93.7201,144.09471 M 93.27088,143.96287 C 92.67773,141.84233 90.07068,144.64163 93.27088,143.96332 M 96.73035,143.92422 C 97.1931,148.18361 94.89708,139.77459 94.89197,145.57461 C 93.16347,144.06207 95.45034,141.05121 96.73035,143.92422 z M 98.07557,142.06387 C 98.56293,142.42139 98.85286,147.6993 97.62388,144.20036 C 97.80525,143.12198 96.79401,142.43153 98.07554,142.06385 M 99.5477,144.49549 C 99.08396,140.22691 101.38248,148.64889 101.38852,142.84022 C 103.10805,144.34821 100.83384,147.37272 99.5477,144.49549 z M 104.89683,143.36512 C 107.74088,142.25878 106.64817,147.95112 105.7269,143.16492 C 104.01036,146.88834 105.61387,144.15625 103.40513,143.3993 C 102.87707,149.9376 101.53267,139.78784 104.89683,143.3651 L 104.89683,143.36512 z M 111.03208,143.25526 C 111.14619,138.92438 112.83769,148.63765 109.34751,145.24989 C 108.28242,144.12463 109.87389,141.71323 111.03208,143.25526 z M 109.50132,144.20985 C 111.41496,147.97278 111.09899,140.59307 109.50132,144.20985 z M 112.40659,142.84022 C 113.79883,144.33701 111.92101,147.10414 112.40659,143.20782 L 112.40659,142.84022 z M 112.40659,141.77576 C 113.83566,141.49356 112.12596,143.50512 112.40659,141.77576 z M 115.03599,144.20008 C 111.90905,145.40438 116.86273,145.25158 115.03599,144.20008 z M 115.93198,144.01453 C 114.82479,147.66032 114.35243,143.90648 114.7064,143.15511 C 111.70116,143.56416 116.58492,141.62176 115.93198,144.01456 M 118.98862,143.36515 C 121.83269,142.25879 120.73995,147.95117 119.8187,143.16495 C 118.10216,146.88837 119.70568,144.15628 117.49692,143.39933 C 116.96889,149.93763 115.62446,139.78788 118.98862,143.36513 L 118.98862,143.36515 L 118.98862,143.36515 z M 123.75913,145.16447 C 123.02029,149.41251 122.91295,138.32938 125.75376,144.20988 C 126.0569,145.33877 124.3222,146.2265 123.75913,145.16447 z M 125.28745,144.20988 C 123.36994,140.45175 123.69515,147.82769 125.28745,144.20988 z M 126.452,144.49552 C 125.98826,140.22694 128.28678,148.64892 128.29282,142.84025 C 130.01235,144.34824 127.73814,147.37276 126.452,144.49552 z M 131.25669,143.26017 C 129.63156,146.74086 129.25846,144.03541 130.10679,143.26517 C 130.21963,142.82861 131.61379,142.37887 131.25625,143.26017 M 131.68594,144.49552 C 131.22219,140.22695 133.52071,148.64892 133.52676,142.84025 C 135.24626,144.34825 132.97208,147.37275 131.68594,144.49552 z M 136.64931,142.92081 C 133.82768,142.56648 138.3825,146.87367 134.70596,145.01074 C 139.07573,146.16168 131.79143,142.1727 136.64931,142.92091 M 141.44424,144.09523 C 137.24019,143.89047 143.8265,147.3122 138.91006,144.23435 C 138.62677,142.46661 141.64564,142.23976 141.44424,144.09519 M 140.99502,143.96335 C 140.40186,141.84281 137.79481,144.6421 140.99502,143.9638 M 142.13515,144.49603 C 141.67141,140.22745 143.96993,148.64943 143.97597,142.84076 C 145.69549,144.34875 143.4213,147.37326 142.13515,144.49603 z M 149.07607,143.36566 C 151.92013,142.25931 150.82742,147.95166 149.90615,143.16546 C 148.18961,146.88888 149.79313,144.15679 147.58437,143.39984 C 147.05634,149.93814 145.71191,139.78839 149.07607,143.36564 L 149.07607,143.36566 L 149.07607,143.36566 z M 153.06289,144.20062 C 149.93594,145.40494 154.88967,145.25209 153.06289,144.20062 z M 153.95889,144.01507 C 152.85169,147.66087 152.37935,143.907 152.7333,143.15565 C 149.72805,143.5647 154.61184,141.62231 153.95889,144.0151 M 156.62978,142.92135 C 153.80815,142.56703 158.36298,146.87421 154.68642,145.01128 C 159.05621,146.16223 151.7719,142.17325 156.62978,142.92145 M 159.23721,142.92145 C 156.41556,142.56712 160.9704,146.87431 157.29385,145.01138 C 161.66362,146.16233 154.37932,142.17334 159.23721,142.92155 M 161.34414,144.20085 C 158.21719,145.40517 163.17092,145.25232 161.34414,144.20085 z M 162.24014,144.0153 C 161.13294,147.6611 160.6606,143.90723 161.01455,143.15588 C 158.0093,143.56493 162.89309,141.62254 162.24014,144.01533 M 163.23135,144.95528 C 164.8297,144.69779 162.91885,146.70363 163.23135,144.95528 z M 166.37099,141.93037 C 168.96639,144.15982 168.20953,145.52364 169.12978,141.93037 C 170.03934,147.05998 167.54271,144.51745 166.84951,142.99943 C 166.89231,148.04946 166.04199,144.89961 166.37099,141.93037 z M 171.33437,144.20088 C 168.20745,145.4052 173.16115,145.25235 171.33437,144.20088 z M 172.23037,144.01533 C 171.12317,147.66113 170.65085,143.90727 171.00478,143.15591 C 167.99953,143.56496 172.88332,141.62257 172.23037,144.01536 M 175.28701,143.36595 C 178.13107,142.25958 177.03834,147.95197 176.11709,143.16575 C 174.40053,146.88916 176.00406,144.15709 173.79531,143.40013 C 173.26726,149.93843 171.92284,139.78867 175.28701,143.36593 L 175.28701,143.36595 L 175.28701,143.36595 z M 181.75185,143.36595 C 184.59591,142.2596 183.5032,147.95195 182.58193,143.16575 C 180.86539,146.88917 182.46891,144.15708 180.26015,143.40013 C 179.73212,149.93844 178.38769,139.78867 181.75185,143.36593 L 181.75185,143.36595 L 181.75185,143.36595 z M 185.73867,144.20091 C 182.61172,145.40524 187.56545,145.25238 185.73867,144.20091 z M 186.63467,144.01536 C 185.52747,147.66116 185.05513,143.90729 185.40908,143.15594 C 182.40383,143.56499 187.28762,141.6226 186.63467,144.01539 M 189.30556,142.92164 C 186.48393,142.56731 191.03875,146.8745 187.36221,145.01157 C 191.73198,146.16251 184.44768,142.17353 189.30556,142.92174 M 191.91299,142.92174 C 189.09134,142.56741 193.64618,146.8746 189.96963,145.01167 C 194.33941,146.16263 187.05511,142.17363 191.91299,142.92184 M 194.01992,144.20114 C 190.89297,145.40547 195.8467,145.25261 194.01992,144.20114 z M 194.91592,144.01559 C 193.80872,147.66139 193.33638,143.90752 193.69033,143.15617 C 190.68508,143.56522 195.56887,141.62283 194.91592,144.01562 M 197.87978,142.06494 C 198.36715,142.42245 198.65707,147.70036 197.42808,144.20143 C 197.60945,143.12305 196.59821,142.4326 197.87974,142.06492 M 199.35191,144.49656 C 198.88817,140.22798 201.18669,148.64996 201.19273,142.84129 C 202.91226,144.34928 200.63805,147.3738 199.35191,144.49656 z M 204.1566,143.26121 C 202.53147,146.7419 202.15837,144.03645 203.0067,143.26621 C 203.11954,142.82965 204.5137,142.37991 204.15616,143.26121 M 205.0668,145.16551 C 204.32796,149.41355 204.22062,138.33042 207.06143,144.21092 C 207.36457,145.33981 205.62987,146.22754 205.0668,145.16551 z M 206.59512,144.21092 C 204.67761,140.45278 205.00282,147.82873 206.59512,144.21092 z M 207.80606,142.84129 C 209.1983,144.33808 207.32048,147.10521 207.80606,143.20889 L 207.80606,142.84129 z M 207.80606,141.77683 C 209.23513,141.49463 207.52543,143.50619 207.80606,141.77683 z M 210.93594,142.92185 C 208.11431,142.56753 212.66913,146.87472 208.99258,145.01178 C 213.36237,146.16273 206.07806,142.17375 210.93594,142.92195 M 211.91495,144.95565 C 213.3768,145.06381 211.03566,147.28358 211.91495,144.95565 z M 75.23526,155.92357 C 75.69801,160.18296 73.40198,151.77394 73.39688,157.57396 C 71.66838,156.06142 73.95525,153.05056 75.23526,155.92357 z M 77.19571,155.15453 C 73.97851,157.82992 80.30119,157.82909 77.19571,155.15453 z M 77.19571,154.77367 C 82.39711,158.59981 72.17876,158.26581 77.19571,154.77367 z M 81.46573,155.92357 C 81.92848,160.18296 79.63245,151.77394 79.62735,157.57396 C 77.89885,156.06142 80.18572,153.05056 81.46573,155.92357 z M 82.32022,156.49486 C 81.85648,152.22628 84.155,160.64826 84.16104,154.83959 C 85.88057,156.34758 83.60636,159.3721 82.32022,156.49486 z M 87.66934,155.36449 C 90.5134,154.25814 89.42069,159.95049 88.49942,155.16429 C 86.78288,158.88771 88.3864,156.15562 86.17764,155.39867 C 85.64961,161.93697 84.30518,151.78722 87.66934,155.36447 L 87.66934,155.36449 L 87.66934,155.36449 z M 92.54239,155.36449 C 95.38645,154.25812 94.29372,159.95051 93.37247,155.16429 C 91.65591,158.8877 93.25944,156.15563 91.05069,155.39867 C 90.52264,161.93697 89.17822,151.78721 92.54239,155.36447 L 92.54239,155.36449 L 92.54239,155.36449 z M 96.42423,157.82787 C 95.37745,161.30784 94.978,152.61569 95.79163,155.71872 C 96.52482,157.92175 98.44586,152.41313 96.56619,157.47479 L 96.42427,157.82786 M 102.17622,156.09446 C 97.97217,155.8897 104.55848,159.31143 99.64204,156.23358 C 99.35875,154.46584 102.37762,154.23899 102.17622,156.09442 M 101.727,155.96258 C 101.13385,153.84204 98.5268,156.64134 101.727,155.96303 M 103.35786,154.06362 C 103.84521,154.42114 104.13516,159.69905 102.90617,156.20011 C 103.08754,155.12173 102.0763,154.43128 103.35783,154.0636 M 104.99113,156.95423 C 106.453,157.06238 104.11184,159.28216 104.99113,156.95423 z M 110.02775,154.94495 C 106.59582,155.32044 112.07842,159.76773 107.86467,156.20954 C 107.68831,154.97411 109.15421,154.49234 110.02775,154.94485 M 111.87345,155.15481 C 108.65625,157.83022 114.97893,157.82935 111.87345,155.15481 z M 111.87345,154.77395 C 117.07486,158.60007 106.85649,158.2661 111.87345,154.77395 z M 116.14347,155.92385 C 116.60621,160.18324 114.31021,151.77422 114.30509,157.57424 C 112.57659,156.0617 114.86346,153.05084 116.14347,155.92385 z M 118.78752,154.92043 C 115.96587,154.5661 120.52071,158.87329 116.84416,157.01036 C 121.21394,158.16132 113.92964,154.17232 118.78752,154.92053 M 121.99064,156.09485 C 117.78658,155.89009 124.37291,159.31182 119.45646,156.23397 C 119.17317,154.46623 122.19206,154.23938 121.99064,156.09481 M 121.54142,155.96297 C 120.94827,153.84243 118.34121,156.64173 121.54142,155.96342 M 124.69572,154.94536 C 121.26379,155.32085 126.7464,159.76814 122.53263,156.20995 C 122.35627,154.97451 123.82218,154.49275 124.69572,154.94526 M 125.92619,154.06391 C 126.41354,154.42143 126.70349,159.69934 125.4745,156.2004 C 125.65587,155.12202 124.64463,154.43157 125.92616,154.06389 M 129.78358,156.09514 C 125.57953,155.89038 132.16584,159.31211 127.2494,156.23426 C 126.96611,154.46652 129.98498,154.23967 129.78358,156.0951 M 129.33436,155.96326 C 128.74121,153.84272 126.13415,156.64202 129.33436,155.96371 M 130.96522,154.0643 C 131.45257,154.42182 131.74252,159.69973 130.51353,156.20079 C 130.6949,155.12241 129.68366,154.43196 130.96519,154.06428 M 132.43736,156.49592 C 131.97362,152.22734 134.27214,160.64932 134.27818,154.84065 C 135.99771,156.34864 133.7235,159.37316 132.43736,156.49592 z M 137.99644,156.09553 C 133.79238,155.89077 140.37871,159.3125 135.46226,156.23465 C 135.17897,154.46691 138.19786,154.24006 137.99644,156.09549 M 137.54722,155.96365 C 136.95407,153.84311 134.34701,156.64241 137.54722,155.9641 M 140.31822,155.26098 C 138.69309,158.74167 138.31999,156.03622 139.16832,155.26598 C 139.28116,154.82942 140.67532,154.37968 140.31778,155.26098 M 142.38565,154.84106 C 143.77789,156.33785 141.90007,159.10498 142.38565,155.20866 L 142.38565,154.84106 z M 142.38565,153.7766 C 143.81472,153.4944 142.10502,155.50596 142.38565,153.7766 z M 145.57168,155.2561 C 145.68579,150.92522 147.37729,160.63849 143.88711,157.25073 C 142.82204,156.12547 144.41349,153.71407 145.57168,155.2561 z M 144.04092,156.21069 C 145.95457,159.97361 145.6386,152.59391 144.04092,156.21069 z M 147.06094,156.95532 C 148.52281,157.06346 146.18166,159.28325 147.06094,156.95532 z M 150.56436,157.16528 C 149.82552,161.41332 149.71818,150.33019 152.55899,156.21069 C 152.86213,157.33958 151.12743,158.22731 150.56436,157.16528 z M 152.09268,156.21069 C 150.17517,152.45256 150.50038,159.8285 152.09268,156.21069 z M 153.30362,153.7766 C 154.69834,156.91786 152.75231,158.8968 153.30362,153.7886 L 153.30362,153.7766 z M 155.93301,156.20092 C 152.80608,157.40525 157.75979,157.25238 155.93301,156.20092 z M 156.82901,156.01537 C 155.72181,159.66117 155.24949,155.90731 155.60342,155.15595 C 152.59817,155.565 157.48196,153.62261 156.82901,156.0154 M 159.72452,154.94607 C 156.29256,155.32155 161.77521,159.76885 157.56143,156.21066 C 157.38507,154.97522 158.85098,154.49346 159.72452,154.94597 M 162.84952,156.09587 C 158.64547,155.89111 165.23178,159.31284 160.31534,156.23499 C 160.03205,154.46725 163.05092,154.2404 162.84952,156.09583 M 162.4003,155.96399 C 161.80714,153.84345 159.20009,156.64274 162.4003,155.96444 M 165.17129,155.26132 C 163.54616,158.74203 163.17305,156.03654 164.02139,155.26632 C 164.13423,154.82976 165.52839,154.38002 165.17085,155.26132 M 166.8896,156.20126 C 163.76268,157.40558 168.71638,157.25273 166.8896,156.20126 z M 167.7856,156.01571 C 166.6784,159.66151 166.20608,155.90765 166.56001,155.15629 C 163.5548,155.56533 168.43855,153.62295 167.7856,156.01574 M 169.15767,154.06506 C 169.64502,154.42258 169.93497,159.70049 168.70598,156.20155 C 168.88735,155.12317 167.87611,154.43272 169.15764,154.06504 M 173.51067,156.20127 C 170.38372,157.40558 175.33744,157.25274 173.51067,156.20127 z M 174.40666,156.01572 C 173.29946,159.66152 172.82714,155.90765 173.18108,155.1563 C 170.17584,155.56535 175.05962,153.62295 174.40666,156.01575 M 177.30217,154.94642 C 173.87023,155.32191 179.35285,159.7692 175.13909,156.21101 C 174.96273,154.97558 176.42863,154.49381 177.30217,154.94632 M 178.20305,156.9556 C 179.66492,157.06374 177.32377,159.28353 178.20305,156.9556 z M 182.51457,156.2012 C 179.38765,157.40552 184.34135,157.25267 182.51457,156.2012 z M 183.41057,156.01565 C 182.30337,159.66145 181.83105,155.90759 182.18498,155.15623 C 179.17977,155.56527 184.06352,153.62289 183.41057,156.01568 M 186.61125,155.92538 C 187.07399,160.18477 184.77799,151.77575 184.77287,157.57577 C 183.04437,156.06323 185.33124,153.05237 186.61125,155.92538 z M 187.95647,154.06503 C 188.44382,154.42255 188.73377,159.70046 187.50478,156.20152 C 187.68615,155.12314 186.67491,154.43269 187.95644,154.06501 M 191.81386,156.09626 C 187.60981,155.8915 194.19612,159.31323 189.27968,156.23538 C 188.99639,154.46764 192.01526,154.24079 191.81386,156.09622 M 191.36464,155.96438 C 190.77149,153.84384 188.16443,156.64314 191.36464,155.96483 M 192.61464,156.95605 C 194.21301,156.69857 192.30214,158.7044 192.61464,156.95605 z M 195.75429,153.93114 C 197.72451,157.19156 197.44706,154.48415 199.08925,154.40449 C 199.23907,159.30139 198.43906,156.1856 198.4417,154.81855 C 197.38546,160.04438 195.62252,151.14822 196.23281,157.21561 C 195.2715,158.88322 195.96131,154.28295 195.75429,153.93114 L 195.75429,153.93114 z M 201.29384,156.20165 C 198.16691,157.40598 203.12062,157.25311 201.29384,156.20165 z M 202.18984,156.0161 C 201.08264,159.6619 200.61031,155.90803 200.96425,155.15668 C 197.959,155.56573 202.84279,153.62334 202.18984,156.01613 M 205.45644,156.09673 C 201.25239,155.89197 207.8387,159.3137 202.92226,156.23585 C 202.63897,154.46811 205.65784,154.24126 205.45644,156.09669 M 205.00722,155.96485 C 204.41407,153.84431 201.80702,156.64361 205.00722,155.9653 M 208.16152,154.94724 C 204.72956,155.32272 210.21221,159.77002 205.99843,156.21183 C 205.82207,154.97639 207.28798,154.49463 208.16152,154.94714 M 211.28652,156.09704 C 207.08247,155.89228 213.66878,159.31401 208.75234,156.23616 C 208.46905,154.46842 211.48792,154.24157 211.28652,156.097 M 210.8373,155.96516 C 210.24414,153.84462 207.63709,156.64391 210.8373,155.96561 M 214.29677,155.92651 C 214.75952,160.1859 212.46349,151.77688 212.45839,157.5769 C 210.72989,156.06436 213.01676,153.0535 214.29677,155.92651 z M 216.44033,156.20239 C 213.31339,157.40669 218.26707,157.25389 216.44033,156.20239 z M 217.33632,156.01684 C 216.22913,159.66263 215.75677,155.90879 216.11074,155.15742 C 213.1055,155.56647 217.98926,153.62407 217.33632,156.01687 M 220.00722,154.92312 C 217.18558,154.56879 221.74041,158.87598 218.06386,157.01305 C 222.43365,158.164 215.14933,154.17501 220.00722,154.92322 M 74.54579,167.26186 C 72.92066,170.74257 72.54755,168.03708 73.39589,167.26686 C 73.50873,166.8303 74.90289,166.38056 74.54535,167.26186 M 77.20649,167.92592 C 77.66924,172.18531 75.37321,163.77629 75.36811,169.57631 C 74.7881,166.17453 73.54937,164.62806 77.20649,167.92592 z M 79.16694,167.15688 C 75.94975,169.83224 82.27238,169.83147 79.16694,167.15688 z M 79.16694,166.77602 C 84.36836,170.60219 74.14995,170.26813 79.16694,166.77602 z M 83.43696,167.92592 C 83.89971,172.18531 81.60368,163.77629 81.59858,169.57631 C 79.87008,168.06377 82.15695,165.05291 83.43696,167.92592 z M 86.30561,166.94692 C 82.87365,167.3224 88.3563,171.7697 84.14252,168.21151 C 83.96616,166.97607 85.43207,166.49431 86.30561,166.94682 M 87.04535,168.49711 C 86.58161,164.22853 88.88013,172.65051 88.88617,166.84184 C 90.6057,168.34983 88.33149,171.37434 87.04535,168.49711 z M 92.00873,166.9224 C 89.1871,166.56808 93.74193,170.87526 90.06537,169.01233 C 94.43516,170.16328 87.15084,166.17429 92.00873,166.9225 M 96.04926,167.26186 C 94.42413,170.74255 94.05103,168.0371 94.89936,167.26686 C 95.0122,166.8303 96.40636,166.38056 96.04882,167.26186 M 98.70995,167.92592 C 99.17269,172.18531 96.87669,163.77629 96.87157,169.57631 C 96.29156,166.17453 95.05283,164.62806 98.70995,167.92592 z M 100.6704,167.15688 C 97.4532,169.83227 103.77588,169.83144 100.6704,167.15688 z M 100.6704,166.77602 C 105.87181,170.60214 95.65344,170.26817 100.6704,166.77602 z M 104.94042,167.92592 C 105.40317,172.18531 103.10715,163.77629 103.10204,169.57631 C 101.37354,168.06377 103.66041,165.05291 104.94042,167.92592 z M 107.80907,166.94692 C 104.37713,167.32241 109.85975,171.7697 105.64599,168.21151 C 105.46963,166.97608 106.93553,166.49431 107.80907,166.94682 M 108.54882,168.49711 C 108.08508,164.22853 110.3836,172.65051 110.38964,166.84184 C 112.10917,168.34983 109.83496,171.37435 108.54882,168.49711 z M 113.5122,166.9224 C 110.69056,166.56807 115.24539,170.87526 111.56884,169.01233 C 115.93863,170.16328 108.65431,166.17429 113.5122,166.9225 M 115.96825,166.8419 C 117.36049,168.33869 115.48267,171.10582 115.96825,167.2095 L 115.96825,166.8419 z M 115.96825,165.77744 C 117.39732,165.49524 115.68762,167.5068 115.96825,165.77744 z M 117.78954,169.16612 C 117.0507,173.41416 116.94336,162.33103 119.78417,168.21153 C 120.08731,169.34042 118.35261,170.22815 117.78954,169.16612 z M 119.31786,168.21153 C 117.40035,164.45339 117.72556,171.82934 119.31786,168.21153 z M 122.27196,166.92246 C 119.45033,166.56813 124.00515,170.87532 120.32861,169.01239 C 124.69838,170.16333 117.41408,166.17435 122.27196,166.92256 M 123.08984,168.49727 C 122.62609,164.2287 124.92461,172.65067 124.93066,166.842 C 126.65016,168.35 124.37598,171.3745 123.08984,168.49727 z M 128.43896,167.3669 C 131.28302,166.26053 130.19029,171.95292 129.26904,167.1667 C 127.55248,170.89011 129.15601,168.15805 126.94726,167.40108 C 126.4192,173.93938 125.0748,163.78962 128.43896,167.36688 L 128.43896,167.3669 z M 131.24657,168.95626 C 132.84494,168.69878 130.93407,170.70461 131.24657,168.95626 z M 134.87939,166.33663 C 134.07612,169.7233 138.32265,166.14143 134.87939,166.33663 z M 134.38622,165.93135 C 139.23599,164.73659 133.1949,172.40867 134.38622,167.68295 C 134.38622,167.09908 134.38622,166.51522 134.38622,165.93135 z M 139.65722,167.92598 C 140.11997,172.18537 137.82394,163.77635 137.81884,169.57637 C 137.23883,166.17459 136.0001,164.62812 139.65722,167.92598 z M 141.80077,168.20186 C 138.67385,169.40618 143.62755,169.25333 141.80077,168.20186 z M 142.69677,168.01631 C 141.58957,171.66211 141.11725,167.90825 141.47118,167.15689 C 138.46593,167.56594 143.34972,165.62355 142.69677,168.01634 M 145.36767,166.92259 C 142.54603,166.56826 147.10086,170.87545 143.42431,169.01252 C 147.79409,170.16348 140.50979,166.17448 145.36767,166.92269 M 148.57079,168.09701 C 144.36673,167.89225 150.95306,171.31398 146.03661,168.23613 C 145.75332,166.46839 148.77221,166.24154 148.57079,168.09697 M 148.12157,167.96513 C 147.52842,165.84459 144.92136,168.64389 148.12157,167.96558 M 149.3081,165.77808 C 150.70282,168.91934 148.75679,170.89828 149.3081,165.79008 L 149.3081,165.77808 z M 150.69482,165.77808 C 152.08954,168.91934 150.14351,170.89828 150.69482,165.79008 L 150.69482,165.77808 z M 152.03515,168.49781 C 151.57141,164.22923 153.86993,172.65121 153.87597,166.84254 C 155.5955,168.35053 153.32129,171.37505 152.03515,168.49781 z M 156.99853,166.9231 C 154.17689,166.56877 158.73172,170.87596 155.05517,169.01303 C 159.42495,170.16399 152.14065,166.17499 156.99853,166.9232 M 161.72753,167.92662 C 162.19028,172.18601 159.89426,163.77699 159.88915,169.57701 C 159.30914,166.17523 158.07041,164.62876 161.72753,167.92662 z M 164.96728,168.09752 C 160.76323,167.89276 167.34954,171.31449 162.4331,168.23664 C 162.14981,166.4689 165.16868,166.24205 164.96728,168.09748 M 164.51806,167.96564 C 163.92491,165.8451 161.31786,168.6444 164.51806,167.96609 M 167.97753,167.92699 C 168.44028,172.18638 166.14426,163.77736 166.13915,169.57738 C 164.41065,168.06484 166.69752,165.05398 167.97753,167.92699 z M 170.67773,167.25805 C 170.79184,162.92717 172.48334,172.64044 168.99316,169.25268 C 167.92807,168.12742 169.51954,165.71602 170.67773,167.25805 z M 169.14696,168.21264 C 171.06062,171.97556 170.74465,164.59586 169.14696,168.21264 z M 173.63671,167.26293 C 172.01158,170.74364 171.63847,168.03816 172.48681,167.26793 C 172.59965,166.83137 173.99381,166.38163 173.63627,167.26293 M 176.34379,168.09789 C 172.13974,167.89313 178.72605,171.31486 173.80961,168.23701 C 173.52632,166.46927 176.54519,166.24242 176.34379,168.09785 M 175.89457,167.96601 C 175.30142,165.84547 172.69436,168.64477 175.89457,167.96646 M 178.66557,167.26334 C 177.04044,170.74403 176.66734,168.03858 177.51567,167.26834 C 177.6285,166.83178 179.02267,166.38204 178.66513,167.26334 M 179.1412,166.84342 C 180.53344,168.34021 178.65562,171.10734 179.1412,167.21102 L 179.1412,166.84342 z M 179.1412,165.77896 C 180.57027,165.49676 178.86057,167.50832 179.1412,165.77896 z M 180.97226,166.06705 C 181.45962,166.42457 181.74955,171.70248 180.52057,168.20354 C 180.70194,167.12516 179.6907,166.43471 180.97223,166.06703 M 182.55426,168.95766 C 184.15261,168.70017 182.24176,170.70601 182.55426,168.95766 z M 72.92291,189.93131 C 73.53487,193.21495 75.09918,193.42186 75.69118,189.93131 C 76.69497,194.50805 72.04617,194.9304 72.92291,189.93131 z M 77.06598,190.06559 C 77.55334,190.42311 77.84327,195.70102 76.61429,192.20208 C 76.79566,191.1237 75.78442,190.43325 77.06595,190.06557 M 79.85403,190.84194 C 81.17939,194.18967 81.63802,191.21119 82.34896,191.28516 C 81.40239,194.90553 80.74212,193.73445 79.85403,190.84194 z M 85.47415,192.09682 C 81.2701,191.89206 87.85641,195.31379 82.93997,192.23594 C 82.65668,190.4682 85.67555,190.24135 85.47415,192.09678 M 85.02493,191.96494 C 84.43178,189.8444 81.82473,192.6437 85.02493,191.96539 M 88.4844,191.92629 C 88.94714,196.18568 86.65114,187.77666 86.64602,193.57668 C 84.91752,192.06414 87.20439,189.05328 88.4844,191.92629 z M 91.72415,192.09719 C 87.5201,191.89243 94.10641,195.31416 89.18997,192.23631 C 88.90668,190.46857 91.92555,190.24172 91.72415,192.09715 M 91.27493,191.96531 C 90.68178,189.84477 88.07473,192.64407 91.27493,191.96576 M 94.7344,191.92666 C 95.19714,196.18605 92.90114,187.77703 92.89602,193.57705 C 91.16752,192.06451 93.45439,189.05365 94.7344,191.92666 z M 96.87796,192.20254 C 93.75101,193.40685 98.70473,193.25401 96.87796,192.20254 z M 97.77395,192.01699 C 96.66675,195.66279 96.19443,191.90892 96.54837,191.15757 C 93.54312,191.56662 98.42692,189.62422 97.77395,192.01702 M 99.14602,190.06634 C 99.63339,190.42385 99.92331,195.70176 98.69432,192.20283 C 98.87569,191.12445 97.86445,190.434 99.14598,190.06632 M 100.66454,190.84269 C 102.05678,192.33948 100.17896,195.10661 100.66454,191.21029 L 100.66454,190.84269 z M 100.66454,189.77823 C 102.09361,189.49603 100.38391,191.50759 100.66454,189.77823 z M 103.79442,190.92325 C 100.97278,190.56893 105.52762,194.87611 101.85106,193.01318 C 106.22085,194.16413 98.93653,190.17514 103.79442,190.92335 M 104.72216,192.95705 C 106.32051,192.69956 104.40966,194.7054 104.72216,192.95705 z M 107.86181,189.93214 C 109.44625,192.23611 107.19851,195.45932 107.86181,190.26368 L 107.86181,189.93214 z M 111.58983,191.92677 C 112.05258,196.18616 109.75656,187.77714 109.75145,193.57716 C 108.02295,192.06462 110.30982,189.05376 111.58983,191.92677 z M 114.52684,190.06642 C 115.01421,190.42393 115.30413,195.70184 114.07514,192.20291 C 114.25651,191.12453 113.24527,190.43408 114.5268,190.0664 M 118.38423,192.09765 C 114.18018,191.89289 120.76649,195.31462 115.85005,192.23677 C 115.56675,190.46902 118.58564,190.24219 118.38423,192.09761 M 117.93501,191.96577 C 117.34185,189.84523 114.73479,192.64453 117.93501,191.96622 M 121.25044,191.36808 C 124.0945,190.26171 123.00177,195.9541 122.08052,191.16788 C 120.36396,194.89129 121.96749,192.15923 119.75874,191.40226 C 119.23068,197.94056 117.88628,187.7908 121.25044,191.36806 L 121.25044,191.36808 L 121.25044,191.36808 z M 124.42915,193.1674 C 123.69031,197.41544 123.58296,186.3323 126.42378,192.21281 C 126.72693,193.34169 124.99221,194.22944 124.42915,193.1674 z M 125.95747,192.21281 C 124.03995,188.45467 124.36517,195.83062 125.95747,192.21281 z M 127.12202,192.49845 C 126.65828,188.22987 128.9568,196.65185 128.96284,190.84318 C 130.68237,192.35117 128.40816,195.37569 127.12202,192.49845 z M 132.0854,190.92374 C 129.26376,190.56941 133.81859,194.8766 130.14204,193.01367 C 134.51182,194.16463 127.22752,190.17563 132.0854,190.92384 M 134.49507,192.49855 C 134.03132,188.22998 136.32984,196.65195 136.33589,190.84328 C 138.05539,192.35128 135.78121,195.37578 134.49507,192.49855 z M 139.29975,191.2632 C 137.67462,194.74391 137.30151,192.03842 138.14985,191.2682 C 138.26269,190.83164 139.65685,190.3819 139.29931,191.2632 M 141.96045,191.92726 C 142.4232,196.18665 140.12717,187.77763 140.12207,193.57765 C 138.39357,192.06511 140.68044,189.05425 141.96045,191.92726 z M 144.104,192.20314 C 140.97707,193.40747 145.93078,193.2546 144.104,192.20314 z M 145,192.01723 C 143.8928,195.66303 143.42047,191.90916 143.77441,191.15781 C 140.76916,191.56686 145.65295,189.62447 145,192.01726 M 145.99121,192.95721 C 147.58956,192.69972 145.67871,194.70556 145.99121,192.95721 z M 150.34912,190.41814 C 148.30086,193.12198 152.2653,192.95157 150.34912,190.41814 z M 150.0708,189.9323 C 151.73797,191.48799 152.96736,194.74133 149.75425,192.64226 C 147.24099,196.534 149.93822,190.46056 150.0708,189.9323 z M 154.78027,192.09783 C 150.57622,191.89307 157.16253,195.3148 152.24609,192.23695 C 151.9628,190.46921 154.98167,190.24236 154.78027,192.09779 M 154.33105,191.96595 C 153.7379,189.84541 151.13084,192.64471 154.33105,191.9664 M 157.79052,191.9273 C 158.25327,196.18668 155.95726,187.77767 155.95215,193.57769 C 154.22365,192.06515 156.51052,189.05429 157.79052,191.9273 z M 161.03027,192.0982 C 156.82622,191.89344 163.41253,195.31517 158.49609,192.23732 C 158.2128,190.46958 161.23167,190.24273 161.03027,192.09816 M 160.58105,191.96632 C 159.9879,189.84578 157.38084,192.64508 160.58105,191.96677 M 163.01025,192.20359 C 159.88332,193.40792 164.83703,193.25505 163.01025,192.20359 z M 163.90625,192.01804 C 162.79905,195.66384 162.32672,191.90997 162.68066,191.15862 C 159.67541,191.56767 164.5592,189.62528 163.90625,192.01807 M 167.10693,191.92777 C 167.56968,196.18716 165.27365,187.77814 165.26855,193.57816 C 163.54005,192.06562 165.82692,189.05476 167.10693,191.92777 z M 169.55322,192.49906 C 169.08948,188.23048 171.388,196.65246 171.39404,190.84379 C 173.11357,192.35178 170.83936,195.3763 169.55322,192.49906 z M 172.77343,189.77933 C 174.16815,192.92059 172.22212,194.89953 172.77343,189.79133 L 172.77343,189.77933 z M 174.60449,190.06742 C 175.09184,190.42494 175.38179,195.70285 174.1528,192.20391 C 174.33417,191.12553 173.32293,190.43508 174.60446,190.0674 M 177.70749,191.26369 C 176.08234,194.74438 175.70925,192.03893 176.55758,191.26869 C 176.67042,190.83214 178.06459,190.38239 177.70705,191.26369 M 178.18312,190.84377 C 179.57536,192.34056 177.69754,195.10769 178.18312,191.21137 L 178.18312,190.84377 z M 178.18312,189.77931 C 179.61219,189.49711 177.90249,191.50867 178.18312,189.77931 z M 181.53761,190.94875 C 178.10567,191.32424 183.58829,195.77153 179.37453,192.21334 C 179.19817,190.97791 180.66407,190.49614 181.53761,190.94865 M 184.66261,192.09855 C 180.45855,191.89379 187.04488,195.31552 182.12843,192.23767 C 181.84514,190.46993 184.86403,190.24308 184.66261,192.09851 M 184.21339,191.96667 C 183.62024,189.84613 181.01318,192.64543 184.21339,191.96712 M 187.14308,190.92464 C 184.32144,190.57032 188.87628,194.8775 185.19972,193.01457 C 189.56951,194.16552 182.28519,190.17653 187.14308,190.92474 M 190.04347,190.06781 C 190.53083,190.42533 190.82078,195.70323 189.59178,192.2043 C 189.77315,191.12592 188.76191,190.43547 190.04344,190.06779 M 191.51561,192.49943 C 191.05187,188.23085 193.35039,196.65283 193.35643,190.84416 C 195.07596,192.35215 192.80175,195.37667 191.51561,192.49943 z M 196.3203,191.26408 C 194.69517,194.74477 194.32207,192.03932 195.1704,191.26908 C 195.28323,190.83252 196.6774,190.38278 196.31986,191.26408 M 197.2305,193.16838 C 196.49166,197.41642 196.38432,186.33329 199.22513,192.21379 C 199.52827,193.34268 197.79357,194.23041 197.2305,193.16838 z M 198.75882,192.21379 C 196.84131,188.45566 197.16652,195.8316 198.75882,192.21379 z M 199.96976,190.84416 C 201.362,192.34095 199.48418,195.10808 199.96976,191.21176 L 199.96976,190.84416 z M 199.96976,189.7797 C 201.39883,189.4975 199.68913,191.50906 199.96976,189.7797 z M 203.09964,190.92472 C 200.27801,190.5704 204.83284,194.87758 201.15628,193.01465 C 205.52607,194.1656 198.24175,190.17661 203.09964,190.92482 M 204.02738,192.95852 C 205.62573,192.70103 203.71488,194.70687 204.02738,192.95852 z M 207.66019,190.33889 C 206.85692,193.72557 211.10345,190.14368 207.66019,190.33889 z M 207.16703,189.93361 C 212.01679,188.73885 205.9757,196.41093 207.16703,191.68521 C 207.16703,191.10134 207.16703,190.51748 207.16703,189.93361 z M 211.66165,191.26418 C 210.03652,194.74489 209.66341,192.0394 210.51175,191.26918 C 210.62459,190.83262 212.01875,190.38288 211.66121,191.26418 M 213.08944,191.1592 C 209.87224,193.83457 216.19491,193.83378 213.08944,191.1592 z M 213.08944,190.77834 C 218.29085,194.60449 208.07246,194.27047 213.08944,190.77834 z M 215.08651,190.84424 C 216.47875,192.34103 214.60093,195.10816 215.08651,191.21184 L 215.08651,190.84424 z M 215.08651,189.77978 C 216.51558,189.49758 214.80588,191.50914 215.08651,189.77978 z M 218.74618,191.92822 C 219.20893,196.18761 216.9129,187.77859 216.9078,193.57861 C 215.1793,192.06607 217.46617,189.05521 218.74618,191.92822 z M 74.75692,203.2582 C 74.87103,198.92732 76.56253,208.64059 73.07235,205.25283 C 72.00726,204.12757 73.59873,201.71617 74.75692,203.2582 z M 73.22616,204.21279 C 75.1398,207.97572 74.82383,200.59601 73.22616,204.21279 z M 77.191,203.1581 C 73.9738,205.83349 80.29648,205.83266 77.191,203.1581 z M 77.191,202.77724 C 82.3924,206.60338 72.17405,206.26938 77.191,202.77724 z M 79.18807,201.7787 C 80.58279,204.91996 78.63676,206.8989 79.18807,201.7907 L 79.18807,201.7787 z M 81.63436,203.1581 C 78.41716,205.83349 84.73984,205.83266 81.63436,203.1581 z M 81.63436,202.77724 C 86.83576,206.60338 76.61741,206.26938 81.63436,202.77724 z M 85.2159,203.26308 C 83.59077,206.74379 83.21766,204.03831 84.066,203.26808 C 84.17884,202.83152 85.573,202.38178 85.21546,203.26308 M 89.0265,202.92372 C 86.20486,202.56939 90.75969,206.87658 87.08314,205.01365 C 91.45292,206.16461 84.16862,202.17561 89.0265,202.92382 M 91.13343,204.20312 C 88.0065,205.40745 92.96021,205.25458 91.13343,204.20312 z M 92.02943,204.01757 C 90.92223,207.66337 90.4499,203.9095 90.80384,203.15815 C 87.79859,203.5672 92.68238,201.62481 92.02943,204.0176 M 93.39173,205.16751 C 92.65289,209.41555 92.54555,198.33242 95.38636,204.21292 C 95.6895,205.34181 93.9548,206.22954 93.39173,205.16751 z M 94.92005,204.21292 C 93.00254,200.45479 93.32775,207.83073 94.92005,204.21292 z M 96.13099,202.84329 C 97.52323,204.34008 95.64541,207.10721 96.13099,203.21089 L 96.13099,202.84329 z M 96.13099,201.77883 C 97.56006,201.49663 95.85036,203.50819 96.13099,201.77883 z M 99.85658,204.09817 C 95.65253,203.8934 102.23882,207.31514 97.3224,204.23729 C 97.0391,202.46954 100.05799,202.24271 99.85658,204.09813 M 99.40736,203.96629 C 98.8142,201.84575 96.20714,204.64505 99.40736,203.96674 M 102.86683,203.92764 C 103.32958,208.18703 101.03355,199.77801 101.02845,205.57803 C 99.29995,204.06549 101.58682,201.05463 102.86683,203.92764 z M 103.88245,204.95792 C 105.34432,205.06606 103.00317,207.28585 103.88245,204.95792 z M 108.19398,204.20352 C 105.06703,205.40783 110.02075,205.25499 108.19398,204.20352 z M 109.08997,204.01797 C 107.98277,207.66377 107.51045,203.9099 107.86439,203.15855 C 104.85915,203.5676 109.74293,201.6252 109.08997,204.018 M 111.81702,203.25873 C 111.93113,198.92785 113.62263,208.64112 110.13245,205.25336 C 109.06738,204.1281 110.65883,201.7167 111.81702,203.25873 z M 110.28626,204.21332 C 112.19991,207.97624 111.88394,200.59654 110.28626,204.21332 z M 113.19154,202.84369 C 114.58378,204.34048 112.70596,207.10761 113.19154,203.21129 L 113.19154,202.84369 z M 113.19154,201.77923 C 114.62061,201.49703 112.91091,203.50859 113.19154,201.77923 z M 115.01283,205.16791 C 114.27399,209.41595 114.16664,198.33282 117.00745,204.21332 C 117.3106,205.3422 115.57589,206.22995 115.01283,205.16791 z M 116.54115,204.21332 C 114.62363,200.45518 114.94885,207.83113 116.54115,204.21332 z M 117.75208,202.84369 C 119.14432,204.34048 117.2665,207.10761 117.75208,203.21129 L 117.75208,202.84369 z M 117.75208,201.77923 C 119.18115,201.49703 117.47145,203.50859 117.75208,201.77923 z M 120.88197,202.92425 C 118.06032,202.56992 122.61516,206.87711 118.93861,205.01418 C 123.30838,206.16513 116.02409,202.17614 120.88197,202.92435 M 123.714,202.94875 C 120.28204,203.32423 125.76469,207.77153 121.55091,204.21334 C 121.37455,202.9779 122.84046,202.49614 123.714,202.94865 M 124.50013,202.84367 C 125.89237,204.34046 124.01455,207.10759 124.50013,203.21127 L 124.50013,202.84367 z M 124.50013,201.77921 C 125.9292,201.49701 124.2195,203.50857 124.50013,201.77921 z M 128.1598,203.92765 C 128.62255,208.18704 126.32652,199.77802 126.32142,205.57804 C 124.59292,204.0655 126.87979,201.05464 128.1598,203.92765 z M 130.85999,204.17912 C 128.95128,200.52183 129.2464,207.68991 130.85999,204.17912 z M 131.30921,205.23869 C 128.31228,208.21428 130.33971,205.30379 130.50355,205.45846 C 125.62156,204.23554 132.8179,200.38773 131.30921,205.23874 M 133.8263,202.84372 C 135.21854,204.34051 133.34072,207.10764 133.8263,203.21132 L 133.8263,202.84372 z M 133.8263,201.77926 C 135.25537,201.49706 133.54567,203.50862 133.8263,201.77926 z M 137.01234,203.25876 C 137.12645,198.92788 138.81795,208.64115 135.32777,205.25339 C 134.26268,204.12813 135.85415,201.71673 137.01234,203.25876 z M 135.48158,204.21335 C 137.39522,207.97628 137.07925,200.59657 135.48158,204.21335 z M 138.50159,204.95798 C 139.96346,205.06612 137.62231,207.28591 138.50159,204.95798 z M 143.31361,202.92428 C 140.49196,202.56995 145.0468,206.87714 141.37025,205.01421 C 145.74003,206.16517 138.45573,202.17617 143.31361,202.92438 M 145.42054,204.20368 C 142.29359,205.40801 147.24732,205.25515 145.42054,204.20368 z M 146.31654,204.01813 C 145.20934,207.66393 144.737,203.91006 145.09095,203.15871 C 142.0857,203.56776 146.96949,201.62537 146.31654,204.01816 M 149.04359,204.1793 C 147.13487,200.52202 147.43,207.69009 149.04359,204.1793 z M 149.49281,205.23887 C 146.49586,208.21446 148.52332,205.30397 148.68714,205.45864 C 143.80517,204.2357 151.0015,200.38792 149.49281,205.23892 M 150.4181,202.8439 C 151.81034,204.34069 149.93252,207.10782 150.4181,203.2115 L 150.4181,202.8439 z M 150.4181,201.77944 C 151.84717,201.49724 150.13747,203.5088 150.4181,201.77944 z M 152.24915,202.06753 C 152.73652,202.42504 153.02644,207.70295 151.79745,204.20402 C 151.97882,203.12564 150.96758,202.43519 152.24911,202.06751 M 154.212,202.06751 C 154.69937,202.42502 154.98929,207.70293 153.7603,204.204 C 153.94167,203.12562 152.93043,202.43517 154.21196,202.06749 M 155.73052,202.84386 C 157.12276,204.34065 155.24494,207.10778 155.73052,203.21146 L 155.73052,202.84386 z M 155.73052,201.7794 C 157.15959,201.4972 155.44989,203.50876 155.73052,201.7794 z M 158.8604,202.92442 C 156.03876,202.5701 160.5936,206.87728 156.91704,205.01435 C 161.28683,206.1653 154.00251,202.17631 158.8604,202.92452 M 163.65532,204.09884 C 159.45126,203.89408 166.03759,207.31581 161.12114,204.23796 C 160.83785,202.47022 163.85674,202.24337 163.65532,204.0988 M 163.2061,203.96696 C 162.61297,201.84642 160.00588,204.64571 163.2061,203.96741 M 164.34624,204.49964 C 163.8825,200.23106 166.18102,208.65304 166.18706,202.84437 C 167.90659,204.35236 165.63238,207.37688 164.34624,204.49964 z M 167.6812,204.95863 C 169.14307,205.06677 166.80192,207.28656 167.6812,204.95863 z M 172.87896,203.36927 C 175.72302,202.26292 174.63029,207.95527 173.70903,203.16907 C 171.99249,206.89249 173.596,204.1604 171.38726,203.40345 C 170.8592,209.94175 169.5148,199.79199 172.87896,203.36925 L 172.87896,203.36927 L 172.87896,203.36927 z M 176.68267,203.15931 C 173.46547,205.83468 179.78814,205.83389 176.68267,203.15931 z M 176.68267,202.77845 C 181.88408,206.6046 171.66569,206.27058 176.68267,202.77845 z M 178.67974,201.77991 C 180.07446,204.92117 178.12843,206.90011 178.67974,201.79191 L 178.67974,201.77991 z M 182.40532,204.09925 C 178.20126,203.89449 184.78759,207.31622 179.87114,204.23837 C 179.58785,202.47063 182.60674,202.24378 182.40532,204.09921 M 181.9561,203.96737 C 181.36297,201.84683 178.75588,204.64612 181.9561,203.96782 M 184.88579,202.92534 C 182.06415,202.57102 186.61899,206.8782 182.94243,205.01527 C 187.31222,206.16622 180.0279,202.17723 184.88579,202.92544 M 186.19439,202.06851 C 186.68175,202.42603 186.97168,207.70394 185.7427,204.205 C 185.92407,203.12662 184.91283,202.43617 186.19436,202.06849 M 187.71291,202.84486 C 189.10515,204.34165 187.22733,207.10878 187.71291,203.21246 L 187.71291,202.84486 z M 187.71291,201.7804 C 189.14198,201.4982 187.43228,203.50976 187.71291,201.7804 z M 191.4385,204.09974 C 187.23445,203.89498 193.82076,207.31671 188.90432,204.23886 C 188.62103,202.47112 191.6399,202.24427 191.4385,204.0997 M 190.98928,203.96786 C 190.39612,201.84732 187.78907,204.64661 190.98928,203.96831 M 193.44533,202.84527 C 194.77069,206.193 195.22932,203.21452 195.94026,203.28849 C 194.99369,206.90886 194.33342,205.73778 193.44533,202.84527 z M 196.72658,202.84527 C 198.11882,204.34206 196.241,207.10919 196.72658,203.21287 L 196.72658,202.84527 z M 196.72658,201.78081 C 198.15565,201.49861 196.44595,203.51017 196.72658,201.78081 z M 197.79104,202.84527 C 199.11639,206.19302 199.57502,203.21451 200.28596,203.28849 C 199.3394,206.90887 198.67913,205.73777 197.79104,202.84527 z M 203.41115,204.10015 C 199.20709,203.89539 205.79342,207.31712 200.87697,204.23927 C 200.59368,202.47153 203.61257,202.24468 203.41115,204.10011 M 202.96193,203.96827 C 202.36878,201.84773 199.76172,204.64703 202.96193,203.96872 M 205.73293,203.2656 C 204.1078,206.74629 203.7347,204.04084 204.58303,203.2706 C 204.69587,202.83404 206.09003,202.3843 205.73249,203.2656 M 207.70515,203.2656 C 206.08,206.74629 205.70691,204.04084 206.55524,203.2706 C 206.66808,202.83405 208.06225,202.3843 207.70471,203.2656 M 209.42346,204.20554 C 206.29652,205.40984 211.2502,205.25704 209.42346,204.20554 z M 210.31945,204.01999 C 209.21226,207.66579 208.73991,203.91193 209.09387,203.16057 C 206.08863,203.56962 210.97239,201.62722 210.31945,204.02002 M 211.36193,204.95997 C 212.8238,205.06811 210.48265,207.2879 211.36193,204.95997 z M 75.1001,215.35932 C 77.94416,214.25295 76.85143,219.94534 75.93018,215.15912 C 74.21362,218.88253 75.81715,216.15047 73.6084,215.3935 C 73.08034,221.9318 71.73594,211.78204 75.1001,215.3593 L 75.1001,215.35932 L 75.1001,215.35932 z M 79.08691,216.19428 C 75.95999,217.3986 80.91369,217.24575 79.08691,216.19428 z M 79.98291,216.00873 C 78.87571,219.65453 78.40339,215.90067 78.75732,215.14931 C 75.75211,215.55835 80.63586,213.61597 79.98291,216.00876 M 80.86426,216.48972 C 80.40052,212.22114 82.69904,220.64312 82.70508,214.83445 C 84.42461,216.34244 82.1504,219.36696 80.86426,216.48972 z M 85.66895,215.25437 C 84.0438,218.73506 83.67071,216.02961 84.51904,215.25937 C 84.63188,214.82282 86.02604,214.37307 85.6685,215.25437 M 86.14457,214.83445 C 87.53681,216.33124 85.65899,219.09837 86.14457,215.20205 L 86.14457,214.83445 z M 86.14457,213.76999 C 87.57364,213.48779 85.86394,215.49935 86.14457,213.76999 z M 89.27445,214.91501 C 86.45281,214.56069 91.00765,218.86787 87.33109,217.00494 C 91.70088,218.15589 84.41656,214.1669 89.27445,214.91511 M 90.20219,216.94881 C 91.80054,216.69132 89.88969,218.69716 90.20219,216.94881 z M 95.52689,214.04353 C 91.92824,213.63936 97.86212,219.04872 93.19535,216.89995 C 98.70178,218.25537 89.58288,213.13995 95.52689,214.04355 M 96.44975,216.48984 C 95.986,212.22127 98.28452,220.64324 98.29057,214.83457 C 100.01007,216.34257 97.73589,219.36707 96.44975,216.48984 z M 101.41312,214.91513 C 98.59149,214.56081 103.14631,218.868 99.46976,217.00506 C 103.83955,218.15601 96.55524,214.16703 101.41312,214.91523 M 102.71195,217.15889 C 101.97311,221.40693 101.86577,210.3238 104.70658,216.2043 C 105.00972,217.33319 103.27502,218.22092 102.71195,217.15889 z M 104.24027,216.2043 C 102.32276,212.44617 102.64797,219.82211 104.24027,216.2043 z M 107.79008,216.08955 C 103.58603,215.88479 110.17234,219.30652 105.2559,216.22867 C 104.97261,214.46093 107.99148,214.23408 107.79008,216.08951 M 107.34086,215.95767 C 106.74771,213.83713 104.14066,216.63643 107.34086,215.95812 M 110.80033,215.91902 C 111.26308,220.17841 108.96706,211.76939 108.96195,217.56941 C 107.23345,216.05687 109.52032,213.04601 110.80033,215.91902 z M 113.50053,215.25008 C 113.61464,210.9192 115.30614,220.63247 111.81596,217.24471 C 110.75087,216.11945 112.34234,213.70805 113.50053,215.25008 z M 111.96976,216.20467 C 113.88342,219.96759 113.56745,212.58789 111.96976,216.20467 z M 114.87504,214.83504 C 116.26728,216.33183 114.38946,219.09896 114.87504,215.20264 L 114.87504,214.83504 z M 114.87504,213.77058 C 116.30411,213.48838 114.59441,215.49994 114.87504,213.77058 z M 118.00492,214.9156 C 115.18328,214.56128 119.73812,218.86846 116.06156,217.00553 C 120.43135,218.15648 113.14703,214.16749 118.00492,214.9157 M 120.61234,214.9157 C 117.79071,214.56138 122.34554,218.86856 118.66898,217.00563 C 123.03877,218.15658 115.75445,214.16759 120.61234,214.9158 M 123.81547,216.09012 C 119.61142,215.88536 126.19773,219.30709 121.28129,216.22924 C 120.998,214.4615 124.01687,214.23465 123.81547,216.09008 M 123.36625,215.95824 C 122.7731,213.8377 120.16605,216.637 123.36625,215.95869 M 126.57914,217.15987 C 125.8403,221.40791 125.73296,210.32478 128.57377,216.20528 C 128.87691,217.33417 127.14221,218.2219 126.57914,217.15987 z M 128.10746,216.20528 C 126.18995,212.44715 126.51516,219.82309 128.10746,216.20528 z M 130.37797,215.15059 C 127.16077,217.82598 133.48345,217.82515 130.37797,215.15059 z M 130.37797,214.76973 C 135.57937,218.59587 125.36102,218.26187 130.37797,214.76973 z M 132.81937,214.05928 C 133.30674,214.41679 133.59666,219.6947 132.36767,216.19577 C 132.54904,215.11739 131.5378,214.42694 132.81933,214.05926 M 136.67676,216.09051 C 132.47271,215.88575 139.05902,219.30748 134.14258,216.22963 C 133.85928,214.46188 136.87817,214.23505 136.67676,216.09047 M 136.22754,215.95863 C 135.63438,213.83809 133.02732,216.63739 136.22754,215.95908 M 139.68701,215.91998 C 140.14976,220.17937 137.85373,211.77035 137.84863,217.57037 C 136.12013,216.05783 138.407,213.04697 139.68701,215.91998 z M 141.03222,214.05963 C 141.51959,214.41714 141.80951,219.69505 140.58052,216.19612 C 140.76189,215.11774 139.75065,214.42729 141.03218,214.05961 M 142.55074,214.83598 C 143.94298,216.33277 142.06516,219.0999 142.55074,215.20358 L 142.55074,214.83598 z M 142.55074,213.77152 C 143.97981,213.48932 142.27011,215.50088 142.55074,213.77152 z M 144.00093,216.95024 C 145.5993,216.69276 143.68843,218.69859 144.00093,216.95024 z M 147.14058,213.92533 C 149.73598,216.15478 148.97912,217.5186 149.89937,213.92533 C 150.80893,219.05494 148.3123,216.51241 147.6191,214.99439 C 147.6619,220.04442 146.81158,216.89457 147.14058,213.92533 z M 150.8149,216.49125 C 150.35116,212.22267 152.64968,220.64465 152.65572,214.83598 C 154.37525,216.34397 152.10104,219.36849 150.8149,216.49125 z M 156.30806,215.91996 C 156.7708,220.17935 154.4748,211.77033 154.46968,217.57035 C 152.74118,216.05781 155.02805,213.04695 156.30806,215.91996 z M 159.17672,214.94096 C 155.74476,215.31644 161.2274,219.76374 157.01363,216.20555 C 156.83727,214.97011 158.30318,214.48835 159.17672,214.94086 M 163.68355,215.36078 C 166.52762,214.25442 165.43488,219.9468 164.51363,215.16058 C 162.79709,218.884 164.40061,216.15191 162.19185,215.39496 C 161.66382,221.93326 160.31939,211.78351 163.68355,215.36076 L 163.68355,215.36078 L 163.68355,215.36078 z M 168.76656,216.09076 C 164.56251,215.886 171.14882,219.30773 166.23238,216.22988 C 165.94909,214.46214 168.96796,214.23529 168.76656,216.09072 M 168.31734,215.95888 C 167.72419,213.83834 165.11714,216.63764 168.31734,215.95933 M 169.9482,214.05992 C 170.43555,214.41744 170.7255,219.69535 169.49651,216.19641 C 169.67788,215.11803 168.66664,214.42758 169.94817,214.0599 M 171.42034,216.49154 C 170.9566,212.22296 173.25512,220.64494 173.26116,214.83627 C 174.98069,216.34426 172.70648,219.36878 171.42034,216.49154 z M 176.38372,214.91683 C 173.56208,214.5625 178.11691,218.86969 174.44036,217.00676 C 178.81014,218.15772 171.52584,214.16872 176.38372,214.91693 M 177.31145,216.95063 C 178.90982,216.69315 176.99895,218.69898 177.31145,216.95063 z M 181.66936,214.41156 C 179.62112,217.11541 183.58556,216.94499 181.66936,214.41156 z M 181.39104,213.92572 C 183.0582,215.4814 184.28761,218.73475 181.0745,216.63568 C 178.56121,220.52746 181.25847,214.45398 181.39104,213.92572 z M 186.10051,216.09125 C 181.89645,215.88649 188.48278,219.30822 183.56633,216.23037 C 183.28304,214.46263 186.30193,214.23578 186.10051,216.09121 M 185.6513,215.95937 C 185.05814,213.83883 182.45108,216.63813 185.6513,215.95982 M 189.11077,215.92072 C 189.57352,220.18011 187.27749,211.77109 187.27239,217.57111 C 185.54389,216.05857 187.83076,213.04771 189.11077,215.92072 z M 192.35051,216.09162 C 188.14645,215.88686 194.73278,219.30859 189.81633,216.23074 C 189.53304,214.463 192.55193,214.23615 192.35051,216.09158 M 191.9013,215.95974 C 191.30814,213.8392 188.70108,216.6385 191.9013,215.96019 M 194.33049,216.19701 C 191.20357,217.40133 196.15727,217.24848 194.33049,216.19701 z M 195.22649,216.01146 C 194.11929,219.65726 193.64697,215.9034 194.0009,215.15204 C 190.99569,215.56108 195.87944,213.6187 195.22649,216.01149 M 198.42717,215.92119 C 198.88992,220.18057 196.59391,211.77156 196.5888,217.57158 C 194.8603,216.05904 197.14717,213.04818 198.42717,215.92119 z M 74.7138,226.91741 C 71.89215,226.56308 76.44699,230.87027 72.77044,229.00734 C 77.14021,230.15829 69.85591,226.1693 74.7138,226.91751 M 77.54583,226.94191 C 74.11387,227.31739 79.59652,231.76469 75.38274,228.2065 C 75.20638,226.97106 76.67229,226.4893 77.54583,226.94181 M 80.67083,228.09171 C 76.46678,227.88695 83.05309,231.30868 78.13665,228.23083 C 77.85336,226.46309 80.87223,226.23624 80.67083,228.09167 M 80.22161,227.95983 C 79.62845,225.83929 77.0214,228.63858 80.22161,227.96028 M 81.40813,225.77278 C 82.80285,228.91404 80.85682,230.89298 81.40813,225.78478 L 81.40813,225.77278 z M 85.13372,228.09212 C 80.92967,227.88736 87.51598,231.30909 82.59954,228.23124 C 82.31625,226.4635 85.33512,226.23665 85.13372,228.09208 M 84.6845,227.96024 C 84.09135,225.8397 81.4843,228.639 84.6845,227.96069 M 87.45549,227.25757 C 85.83036,230.73828 85.45725,228.03279 86.30559,227.26257 C 86.41843,226.82601 87.81259,226.37627 87.45505,227.25757 M 87.93113,226.83765 C 89.32337,228.33444 87.44555,231.10157 87.93113,227.20525 L 87.93113,226.83765 z M 87.93113,225.77319 C 89.3602,225.49099 87.6505,227.50255 87.93113,225.77319 z M 91.06101,226.91821 C 88.23937,226.56389 92.79421,230.87107 89.11765,229.00814 C 93.48744,230.15909 86.20312,226.1701 91.06101,226.91831 M 92.19382,228.20738 C 94.10748,231.9703 93.79151,224.5906 92.19382,228.20738 z M 93.72459,229.16197 C 89.00388,228.85431 95.99383,224.13761 94.1738,230.15123 C 93.84733,232.0529 93.56535,229.42499 93.72459,229.16197 z M 95.05271,228.49302 C 94.58897,224.22444 96.88749,232.64642 96.89353,226.83775 C 98.61306,228.34574 96.33885,231.37026 95.05271,228.49302 z M 100.61179,228.09263 C 96.40773,227.88787 102.99406,231.3096 98.07761,228.23175 C 97.79432,226.46401 100.81321,226.23716 100.61179,228.09259 M 100.16257,227.96075 C 99.56942,225.84021 96.96236,228.63951 100.16257,227.9612 M 105.0698,227.36306 C 107.91386,226.25669 106.82113,231.94908 105.89988,227.16286 C 104.18332,230.88627 105.78685,228.1542 103.5781,227.39724 C 103.05005,233.93554 101.70563,223.78578 105.0698,227.36304 L 105.0698,227.36306 L 105.0698,227.36306 z M 110.15281,228.09304 C 105.94876,227.88828 112.53507,231.31001 107.61863,228.23216 C 107.33534,226.46442 110.35421,226.23757 110.15281,228.093 M 109.70359,227.96116 C 109.11044,225.84062 106.50339,228.63992 109.70359,227.96161 M 111.33445,226.0622 C 111.8218,226.41972 112.11175,231.69763 110.88276,228.19869 C 111.06413,227.12031 110.05289,226.42986 111.33442,226.06218 M 112.80659,228.49382 C 112.34285,224.22524 114.64136,232.64722 114.64741,226.83855 C 116.36694,228.34654 114.09273,231.37106 112.80659,228.49382 z M 117.76997,226.91911 C 114.94832,226.56478 119.50316,230.87197 115.82661,229.00904 C 120.19638,230.15999 112.91209,226.171 117.76997,226.91921 M 122.56489,228.09353 C 118.36084,227.88877 124.94715,231.3105 120.03071,228.23265 C 119.74742,226.46491 122.76629,226.23806 122.56489,228.09349 M 122.11567,227.96165 C 121.52252,225.84111 118.91547,228.64041 122.11567,227.9621 M 125.10151,228.17451 C 123.19279,224.51723 123.48792,231.6853 125.10151,228.17451 z M 125.55073,229.23408 C 122.55378,232.20967 124.58124,229.29918 124.74506,229.45385 C 119.86309,228.23091 127.05942,224.38313 125.55073,229.23413 M 128.81489,228.09399 C 124.61084,227.88923 131.19715,231.31096 126.28071,228.23311 C 125.99742,226.46537 129.01629,226.23852 128.81489,228.09395 M 128.36567,227.96211 C 127.77252,225.84157 125.16547,228.64087 128.36567,227.96256 M 129.99653,226.06315 C 130.48388,226.42067 130.77383,231.69858 129.54484,228.19964 C 129.72621,227.12126 128.71497,226.43081 129.9965,226.06313 M 134.85001,226.92006 C 132.02838,226.56574 136.5832,230.87293 132.90665,229.00999 C 137.27644,230.16094 129.99213,226.17196 134.85001,226.92016 M 138.05314,228.09448 C 133.84909,227.88972 140.4354,231.31145 135.51896,228.2336 C 135.23567,226.46586 138.25454,226.23901 138.05314,228.09444 M 137.60392,227.9626 C 137.01077,225.84206 134.40372,228.64136 137.60392,227.96305 M 140.91935,227.36491 C 143.76341,226.25854 142.67068,231.95093 141.74943,227.16471 C 140.03287,230.88812 141.6364,228.15605 139.42765,227.39909 C 138.8996,233.93739 137.55518,223.78763 140.91935,227.36489 L 140.91935,227.36491 L 140.91935,227.36491 z M 143.72697,228.95427 C 145.32532,228.69678 143.41447,230.70262 143.72697,228.95427 z M 149.59611,226.21012 C 145.83142,226.30662 149.11275,229.44339 149.04679,229.55729 C 145.36508,230.50982 146.32153,224.15573 149.59611,226.21013 M 151.92765,227.25994 C 150.30252,230.74065 149.92941,228.03517 150.77775,227.26494 C 150.89059,226.82838 152.28475,226.37864 151.92721,227.25994 M 153.64596,228.19988 C 150.51903,229.40421 155.47274,229.25134 153.64596,228.19988 z M 154.54196,228.01433 C 153.43476,231.66013 152.96243,227.90626 153.31637,227.15491 C 150.31112,227.56396 155.19491,225.62157 154.54196,228.01436 M 157.21286,226.92061 C 154.39121,226.56628 158.94605,230.87347 155.2695,229.01054 C 159.63927,230.16149 152.35497,226.1725 157.21286,226.92071 M 161.46823,228.1756 C 159.5595,224.51832 159.85463,231.68639 161.46823,228.1756 z M 161.91745,229.23517 C 158.9205,232.21076 160.94796,229.30027 161.11178,229.45494 C 156.2298,228.23201 163.42613,224.38421 161.91745,229.23522 M 164.42721,227.26012 C 162.80208,230.74083 162.42897,228.03535 163.27731,227.26512 C 163.39015,226.82856 164.78431,226.37882 164.42677,227.26012 M 166.14552,228.20006 C 163.01859,229.40439 167.9723,229.25152 166.14552,228.20006 z M 167.04152,228.01451 C 165.93432,231.66031 165.46199,227.90644 165.81593,227.15509 C 162.81068,227.56414 167.69447,225.62175 167.04152,228.01454 M 167.64699,226.84023 C 168.97234,230.18798 169.43097,227.20947 170.14191,227.28345 C 169.19535,230.90383 168.53508,229.73273 167.64699,226.84023 z M 170.92824,226.84023 C 172.32045,228.33704 170.44267,231.10414 170.92824,227.20783 L 170.92824,226.84023 z M 170.92824,225.77577 C 172.35728,225.49357 170.64761,227.50513 170.92824,225.77577 z M 174.11427,227.25527 C 174.22838,222.92439 175.91988,232.63765 172.4297,229.2499 C 171.36461,228.12464 172.95608,225.71325 174.11427,227.25527 z M 172.58351,228.20986 C 174.49716,231.97278 174.18118,224.59309 172.58351,228.20986 z M 176.73146,228.19986 C 173.60451,229.40417 178.55823,229.25133 176.73146,228.19986 z M 177.62745,228.01431 C 176.52025,231.66011 176.04793,227.90624 176.40187,227.15489 C 173.39662,227.56394 178.28042,225.62154 177.62745,228.01434 M 178.61867,228.95429 C 180.21702,228.6968 178.30617,230.70264 178.61867,228.95429 z M 182.25148,226.33466 C 180.79943,232.57074 187.58198,226.81454 182.25148,226.33466 z M 181.75831,225.92938 C 188.49472,225.08345 180.97313,233.50478 181.75831,227.20763 C 181.75831,226.78154 181.75831,226.35546 181.75831,225.92938 z M 186.64601,227.15497 C 183.42881,229.83036 189.75149,229.82953 186.64601,227.15497 z M 186.64601,226.77411 C 191.84741,230.60025 181.62906,230.26625 186.64601,226.77411 z M 190.91603,227.92401 C 191.37878,232.1834 189.08275,223.77438 189.07765,229.5744 C 187.34915,228.06186 189.63602,225.051 190.91603,227.92401 z M 194.15577,228.09491 C 189.95173,227.89015 196.53803,231.31189 191.6216,228.23403 C 191.33829,226.46629 194.35719,226.23944 194.15577,228.09487 M 193.70656,227.96303 C 193.1134,225.84249 190.50634,228.64179 193.70656,227.96348 M 196.86085,226.94542 C 193.42891,227.32091 198.91153,231.7682 194.69777,228.21001 C 194.52141,226.97458 195.98731,226.49281 196.86085,226.94532 M 200.98195,226.92092 C 198.1603,226.56659 202.71514,230.87378 199.03859,229.01085 C 203.40837,230.16181 196.12407,226.17281 200.98195,226.92102 M 201.8462,226.84042 C 203.23844,228.33721 201.36062,231.10434 201.8462,227.20802 L 201.8462,226.84042 z M 201.8462,225.77596 C 203.27527,225.49376 201.56557,227.50532 201.8462,225.77596 z M 203.67726,226.06405 C 204.16461,226.42157 204.45456,231.69948 203.22557,228.20054 C 203.40694,227.12216 202.3957,226.43171 203.67723,226.06403 M 208.03026,228.20026 C 204.90332,229.40456 209.857,229.25176 208.03026,228.20026 z M 208.92625,228.01471 C 207.81906,231.66051 207.34671,227.90665 207.70067,227.15529 C 204.69543,227.56434 209.57919,225.62194 208.92625,228.01474 M 211.98289,227.36533 C 214.82695,226.25898 213.73424,231.95133 212.81297,227.16513 C 211.09643,230.88855 212.69995,228.15646 210.49119,227.39951 C 209.96316,233.93781 208.61873,223.78806 211.98289,227.36531 L 211.98289,227.36533 L 211.98289,227.36533 z M 217.0659,228.09531 C 212.86184,227.89055 219.44817,231.31228 214.53172,228.23443 C 214.24843,226.46669 217.26732,226.23984 217.0659,228.09527 M 216.61668,227.96343 C 216.02353,225.84289 213.41647,228.64219 216.61668,227.96388 M 218.24754,226.06447 C 218.73489,226.42199 219.02484,231.69989 217.79585,228.20096 C 217.97722,227.12258 216.96598,226.43213 218.24751,226.06445 M 75.30806,240.09462 C 71.10401,239.88986 77.69032,243.31159 72.77388,240.23374 C 72.49059,238.466 75.50946,238.23915 75.30806,240.09458 M 74.85884,239.96274 C 74.26569,237.8422 71.65864,240.6415 74.85884,239.96319 M 78.31831,239.92409 C 78.78106,244.18348 76.48504,235.77446 76.47993,241.57448 C 74.75143,240.06194 77.0383,237.05108 78.31831,239.92409 z M 79.21919,238.84011 C 80.61143,240.3369 78.73361,243.10403 79.21919,239.20771 L 79.21919,238.84011 z M 79.21919,237.77565 C 80.64826,237.49345 78.93856,239.50501 79.21919,237.77565 z M 82.73482,239.36501 C 85.57888,238.25866 84.48615,243.95101 83.56489,239.16481 C 81.84835,242.88823 83.45186,240.15614 81.24312,239.39919 C 80.71506,245.93749 79.37066,235.78773 82.73482,239.36499 L 82.73482,239.36501 z M 85.54243,240.95437 C 87.1408,240.69689 85.22993,242.70272 85.54243,240.95437 z M 88.68208,237.92946 C 90.26655,240.23341 88.01877,243.45665 88.68208,238.261 L 88.68208,237.92946 z M 92.41011,239.92409 C 92.87286,244.18348 90.57683,235.77446 90.57173,241.57448 C 88.84323,240.06194 91.1301,237.05108 92.41011,239.92409 z M 97.17573,239.92409 C 97.63848,244.18347 95.34247,235.77446 95.33736,241.57448 C 94.75735,238.17269 93.51863,236.62623 97.17573,239.92409 z M 99.31929,240.19997 C 96.19234,241.40429 101.14607,241.25144 99.31929,240.19997 z M 100.21529,240.01442 C 99.10809,243.66022 98.63575,239.90635 98.9897,239.155 C 95.98445,239.56405 100.86824,237.62166 100.21529,240.01445 M 103.11079,238.94512 C 99.67885,239.32061 105.16147,243.7679 100.94771,240.20971 C 100.77135,238.97428 102.23725,238.49251 103.11079,238.94502 M 107.76167,239.92402 C 108.22442,244.18341 105.9284,235.77439 105.92329,241.57441 C 105.34328,238.17263 104.10455,236.62616 107.76167,239.92402 z M 109.90523,240.1999 C 106.77829,241.4042 111.73197,241.2514 109.90523,240.1999 z M 110.80122,240.01435 C 109.69403,243.66015 109.22168,239.90629 109.57564,239.15493 C 106.5704,239.56398 111.45416,237.62158 110.80122,240.01438 M 113.69185,240.2097 C 111.77433,236.45156 112.09955,243.82751 113.69185,240.2097 z M 112.16353,239.25511 C 116.88355,239.57211 109.89106,244.26984 111.71187,238.26096 C 111.81672,236.58586 112.46374,238.76317 112.16353,239.25511 z M 114.90279,238.84007 C 116.295,240.33688 114.41722,243.10398 114.90279,239.20767 L 114.90279,238.84007 z M 114.90279,237.77561 C 116.33183,237.49341 114.62216,239.50497 114.90279,237.77561 z M 116.73384,238.0637 C 117.22119,238.42122 117.51114,243.69913 116.28215,240.20019 C 116.46352,239.12181 115.45228,238.43136 116.73381,238.06368 M 119.49504,240.19991 C 116.36809,241.40424 121.32182,241.25138 119.49504,240.19991 z M 120.39104,240.01436 C 119.28384,243.66016 118.8115,239.90629 119.16545,239.15494 C 116.1602,239.56399 121.04399,237.6216 120.39104,240.01439 M 123.06193,238.92064 C 120.2403,238.56631 124.79512,242.8735 121.11858,241.01057 C 125.48835,242.16151 118.20405,238.17253 123.06193,238.92074 M 125.66936,238.92074 C 122.84771,238.56641 127.40255,242.8736 123.726,241.01067 C 128.09578,242.16163 120.81148,238.17263 125.66936,238.92084 M 128.87248,240.09516 C 124.66842,239.8904 131.25475,243.31213 126.3383,240.23428 C 126.05501,238.46654 129.0739,238.23969 128.87248,240.09512 M 128.42326,239.96328 C 127.83011,237.84274 125.22305,240.64204 128.42326,239.96373 M 131.63615,241.16491 C 130.89731,245.41295 130.78997,234.32982 133.63078,240.21032 C 133.93392,241.33921 132.19922,242.22694 131.63615,241.16491 z M 133.16447,240.21032 C 131.24696,236.45218 131.57217,243.82813 133.16447,240.21032 z M 134.37541,237.77623 C 135.77013,240.91749 133.8241,242.89643 134.37541,237.78823 L 134.37541,237.77623 z M 137.00481,240.20055 C 133.87787,241.40485 138.83155,241.25205 137.00481,240.20055 z M 137.9008,240.015 C 136.79361,243.6608 136.32126,239.90694 136.67522,239.15558 C 133.66998,239.56463 138.55374,237.62223 137.9008,240.01503 M 139.27287,238.06435 C 139.76023,238.42187 140.05018,243.69977 138.82118,240.20084 C 139.00255,239.12246 137.99131,238.43201 139.27284,238.06433 M 143.13026,240.09558 C 138.9262,239.89082 145.51253,243.31255 140.59608,240.2347 C 140.31279,238.46696 143.33168,238.24011 143.13026,240.09554 M 142.68105,239.9637 C 142.08789,237.84316 139.48083,240.64246 142.68105,239.96415 M 145.11024,240.20097 C 141.98332,241.40529 146.93702,241.25244 145.11024,240.20097 z M 146.00624,240.01542 C 144.89904,243.66122 144.42672,239.90736 144.78065,239.156 C 141.77544,239.56504 146.65919,237.62266 146.00624,240.01545 M 150.32509,239.25618 C 150.4392,234.9253 152.1307,244.63857 148.64052,241.25081 C 147.57543,240.12555 149.1669,237.71415 150.32509,239.25618 z M 148.79433,240.21077 C 150.70797,243.9737 150.392,236.59399 148.79433,240.21077 z M 151.6996,238.84114 C 153.09184,240.33793 151.21402,243.10506 151.6996,239.20874 L 151.6996,238.84114 z M 151.6996,237.77668 C 153.12867,237.49448 151.41897,239.50604 151.6996,237.77668 z M 155.05409,238.94612 C 151.62215,239.32161 157.10477,243.7689 152.89101,240.21071 C 152.71465,238.97528 154.18055,238.49351 155.05409,238.94602 M 156.28456,238.06467 C 156.77191,238.42219 157.06186,243.7001 155.83287,240.20116 C 156.01424,239.12278 155.003,238.43233 156.28453,238.06465 M 157.7567,240.49629 C 157.29296,236.22771 159.59148,244.64969 159.59752,238.84102 C 161.31705,240.34901 159.04284,243.37353 157.7567,240.49629 z M 163.10582,239.36592 C 165.94988,238.25955 164.85715,243.95194 163.9359,239.16572 C 162.21934,242.88913 163.82287,240.15706 161.61412,239.4001 C 161.08607,245.9384 159.74165,235.78864 163.10582,239.3659 L 163.10582,239.36592 L 163.10582,239.36592 z M 167.59312,238.92158 C 164.77149,238.56725 169.32631,242.87444 165.64977,241.01151 C 170.01954,242.16245 162.73524,238.17347 167.59312,238.92168 M 168.90172,238.06475 C 169.38907,238.42227 169.67902,243.70018 168.45003,240.20124 C 168.6314,239.12286 167.62016,238.43241 168.90169,238.06473 M 170.48372,240.95536 C 172.08209,240.69788 170.17122,242.70371 170.48372,240.95536 z M 173.62337,237.93045 C 176.21877,240.15994 175.46189,241.52368 176.38216,237.93045 C 177.29172,243.06006 174.79508,240.51753 174.10188,238.99951 C 174.14468,244.04955 173.29438,240.89968 173.62337,237.93045 z M 178.58675,240.20096 C 175.45981,241.40526 180.41349,241.25246 178.58675,240.20096 z M 179.48274,240.01541 C 178.37555,243.66121 177.9032,239.90735 178.25716,239.15599 C 175.25192,239.56504 180.13568,237.62264 179.48274,240.01544 M 182.53938,239.36603 C 185.38344,238.25968 184.29073,243.95203 183.36946,239.16583 C 181.65292,242.88925 183.25644,240.15716 181.04768,239.40021 C 180.51965,245.93852 179.17522,235.78875 182.53938,239.36601 L 182.53938,239.36603 L 182.53938,239.36603 z M 188.84309,238.94611 C 185.41115,239.3216 190.89377,243.76889 186.68001,240.2107 C 186.50365,238.97527 187.96955,238.4935 188.84309,238.94601 M 190.6888,239.15597 C 187.4716,241.83136 193.79428,241.83053 190.6888,239.15597 z M 190.6888,238.77511 C 195.8902,242.60125 185.67185,242.26725 190.6888,238.77511 z M 194.95882,239.92501 C 195.42157,244.1844 193.12554,235.77538 193.12044,241.5754 C 191.39194,240.06286 193.67881,237.052 194.95882,239.92501 z M 197.60286,238.92159 C 194.78122,238.56726 199.33605,242.87445 195.6595,241.01152 C 200.02929,242.16247 192.74497,238.17348 197.60286,238.92169 M 200.80599,240.09601 C 196.60194,239.89124 203.18823,243.31298 198.27181,240.23513 C 197.98851,238.46738 201.0074,238.24055 200.80599,240.09597 M 200.35677,239.96413 C 199.76361,237.84359 197.15655,240.64289 200.35677,239.96458 M 203.51106,238.94652 C 200.07912,239.32201 205.56174,243.7693 201.34798,240.21111 C 201.17162,238.97568 202.63752,238.49391 203.51106,238.94642 M 204.74153,238.06507 C 205.22889,238.42259 205.51884,243.70049 204.28984,240.20156 C 204.47121,239.12318 203.45997,238.43273 204.7415,238.06505 M 208.59892,240.0963 C 204.39486,239.89154 210.98119,243.31327 206.06474,240.23542 C 205.78145,238.46768 208.80034,238.24083 208.59892,240.09626 M 208.14971,239.96442 C 207.55655,237.84388 204.94949,240.64318 208.14971,239.96487 M 209.78056,238.06546 C 210.26793,238.42297 210.55785,243.70088 209.32886,240.20195 C 209.51023,239.12357 208.49899,238.43312 209.78052,238.06544 M 211.25269,240.49708 C 210.78895,236.2285 213.08747,244.65048 213.09351,238.84181 C 214.81304,240.3498 212.53883,243.37431 211.25269,240.49708 z M 216.81177,240.09669 C 212.60773,239.89193 219.19403,243.31367 214.2776,240.23581 C 213.99429,238.46807 217.01319,238.24122 216.81177,240.09665 M 216.36256,239.96481 C 215.7694,237.84427 213.16234,240.64357 216.36256,239.96526 M 219.13355,239.26214 C 217.50842,242.74285 217.13531,240.03737 217.98365,239.26714 C 218.09649,238.83058 219.49065,238.38084 219.13311,239.26214" style="overflow: visible; marker: none; font-size: 5px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-indent: 0pt; text-align: start; text-decoration: none; line-height: 240%; letter-spacing: normal; word-spacing: normal; text-transform: none; direction: ltr; text-anchor: start; fill: rgb(99, 99, 99); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline; font-family: DejaVu Sans;" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
    </g>
    <g style="fill: rgb(211, 211, 211); fill-opacity: 1; display: inline;" id="g23143-0" transform="matrix(0.184783, 0, 0, 0.184783, 695.696, 46.269)">
      <g transform="translate(-400, -1.92652)" style="fill: rgb(211, 211, 211); fill-opacity: 1; display: inline;" id="g16265-8">
        <rect ry="2.7058818" rx="2" y="60" x="477.8497" height="5.4117637" width="115.83679" id="rect15459-7" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16231-9" width="130.28902" height="5.4117684" x="477.8497" y="70.823524" rx="1.9999998" ry="2.7058842"/>
        <rect ry="2" rx="1.9999998" y="81.647057" x="477.8497" height="5.4117656" width="130.28902" id="rect16233-1" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16235-9" width="141.45665" height="5.4117627" x="477.8497" y="92.470589" rx="1.9999998" ry="2"/>
        <rect ry="2" rx="2" y="103.29411" x="477.8497" height="5.411768" width="146.0551" id="rect16237-7" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16239-2" width="141.01871" height="5.4117646" x="477.8497" y="114.11765" rx="2" ry="2"/>
        <rect ry="2" rx="2" y="124.94118" x="477.8497" height="5.4117632" width="125.90955" id="rect16241-9" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16243-9" width="135.98233" height="5.4117603" x="477.8497" y="135.76471" rx="1.9999998" ry="1.9999999"/>
        <rect ry="2" rx="1.9999998" y="146.58824" x="477.41177" height="5.4117579" width="141.45665" id="rect16245-1" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect ry="2" rx="1.9999998" y="157.41176" x="477.8497" height="5.411768" width="105.76403" id="rect16247-3" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect ry="2" rx="2" y="179.05882" x="477.8497" height="5.4117646" width="146.0551" id="rect16251-6" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16253-6" width="146.0551" height="5.4117613" x="477.8497" y="189.88235" rx="1.9999998" ry="2"/>
        <rect ry="2" rx="1.9999998" y="200.70589" x="477.8497" height="5.4117637" width="120.87318" id="rect16255-5" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16257-0" width="141.01871" height="5.4117718" x="477.8497" y="211.5294" rx="2" ry="2"/>
        <rect ry="2" rx="1.9999998" y="222.35294" x="477.8497" height="5.4117661" width="151.09148" id="rect16259-6" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect23234" width="80.58213" height="5.4117661" x="477.8497" y="233.17647" rx="1.9999998" ry="2"/>
      </g>
    </g>
    <g transform="translate(364.221, -0.868975)" id="g12376" style="display: inline;">
      <path sodipodi:nodetypes="ccccczc" id="path12378" d="M 363.5,54 C 362.11111,54 363.4579,54.497088 364.84375,55.125 C 366.22957,55.752912 369.81663,58.340052 369,62 C 373.32331,61.569417 375.67913,65.122378 376,66.28125 C 376.32087,67.440122 377,68.888889 377,67.5 C 377.0283,63.694419 374.15457,61.068299 372.15625,58.84375 C 370.15793,56.619201 367.15379,54.476761 363.5,54 z" style="fill: url(#radialGradient7948) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <path sodipodi:nodetypes="ccccc" id="path12380" d="M 364.60088,55.014353 C 365.52318,55.014353 367.60932,61.210015 366.68702,65.343603 C 370.98198,64.915844 375.5404,65.431783 376,66.28125 C 375.67913,65.122378 373.32331,61.569417 369,62 C 369.86466,58.124761 365.81343,55.382702 364.60088,55.014353 z" style="opacity: 0.878542; fill: url(#linearGradient7950) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
    </g>
    <g style="fill: rgb(211, 211, 211); fill-opacity: 1; display: inline;" id="g23143-0-5" transform="matrix(0.184783, 0, 0, 0.184783, 693.696, 120.269)">
      <g transform="matrix(0.607143, 0, 0, 1, -212.445, -1.92652)" style="fill: rgb(211, 211, 211); fill-opacity: 1; display: inline;" id="g16265-8-5">
        <rect ry="2.7058818" rx="3.2941175" y="60" x="477.8497" height="5.4117637" width="115.83679" id="rect15459-7-2" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16231-9-8" width="130.28902" height="5.4117684" x="477.8497" y="70.823524" rx="3.294117" ry="2.7058842"/>
        <rect ry="2" rx="3.294117" y="81.647057" x="477.8497" height="5.4117656" width="130.28902" id="rect16233-1-0" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16235-9-4" width="141.45665" height="5.4117627" x="477.8497" y="92.470589" rx="3.294117" ry="2"/>
        <rect ry="2" rx="3.2941175" y="103.29411" x="477.8497" height="5.411768" width="88.697029" id="rect16237-7-0" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect ry="2" rx="3.2941175" y="124.94118" x="477.8497" height="5.4117632" width="125.90955" id="rect16241-9-6" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16243-9-9" width="135.98233" height="5.4117603" x="477.8497" y="135.76471" rx="3.294117" ry="1.9999999"/>
        <rect ry="2" rx="3.294117" y="146.58824" x="477.41177" height="5.4117579" width="141.45665" id="rect16245-1-6" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect ry="2" rx="3.294117" y="157.41176" x="477.8497" height="5.411768" width="105.76403" id="rect16247-3-5" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
      </g>
    </g>
    <g transform="translate(387.044, 0.0149083)" id="g12880" style="display: inline;">
      <path sodipodi:nodetypes="ccccczc" id="path12882" d="M 331.29536,129 C 330.39983,129 331.26826,129.32079 332.16178,129.72599 C 333.05533,130.1312 334.52654,131.63814 334,134 C 338.56932,133.29289 339.1482,136.17757 339.35509,136.92542 C 339.56198,137.67327 339.99987,138.6082 339.99987,137.71192 C 340.01817,135.25607 338.1652,133.56136 336.87672,132.1258 C 335.58825,130.69024 333.65124,129.30767 331.29536,129 z" style="fill: url(#radialGradient8156) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <path sodipodi:nodetypes="ccccc" id="path12884" d="M 332.00518,129.65459 C 332.59986,129.65459 333,133.5 333,136 C 336,136 338.70366,136.45181 339,137 C 338.79311,136.25215 338.46144,133.2266 334,134 C 334.55752,131.4992 332.78701,129.89229 332.00518,129.65459 z" style="opacity: 0.878542; fill: url(#linearGradient8158) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
    </g>
    <g style="fill: rgb(211, 211, 211); fill-opacity: 1; display: inline;" id="g23143-0-5-6" transform="matrix(0.139291, 0, 0, 0.184783, 695.217, 170.269)">
      <g transform="matrix(0.607143, 0, 0, 1, -212.445, -1.92652)" style="fill: rgb(211, 211, 211); fill-opacity: 1; display: inline;" id="g16265-8-5-7">
        <rect ry="2.7058818" rx="4.3699412" y="60" x="477.8497" height="5.4117637" width="115.83679" id="rect15459-7-2-0" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16231-9-8-9" width="130.28902" height="5.4117684" x="477.8497" y="70.823524" rx="4.3699408" ry="2.7058842"/>
        <rect ry="2" rx="4.3699408" y="81.647057" x="477.8497" height="5.4117656" width="130.28902" id="rect16233-1-0-5" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16235-9-4-0" width="70.509346" height="5.4117627" x="477.8497" y="92.470589" rx="4.3699408" ry="2"/>
        <rect ry="2" rx="4.3699412" y="108.70589" x="478.2876" height="5.4117632" width="141.01872" id="rect16241-9-6-9" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16243-9-9-1" width="141.01872" height="5.4117603" x="478.2876" y="119.52942" rx="4.3699408" ry="1.9999999"/>
        <rect ry="2" rx="4.3699408" y="130.35295" x="477.84967" height="5.4117579" width="70.509377" id="rect16245-1-6-4" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
      </g>
    </g>
    <g transform="translate(398.046, 0.08369)" id="g12526" style="display: inline;">
      <path style="opacity: 0.489879; fill: url(#linearGradient8174) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" d="M 313,179 C 316.35588,179.55242 316.73483,179.76516 316.73483,184.26516 C 320.23483,184.26516 320.82554,184.93937 322,186 C 322,185.48998 322,186.0616 322,185.5 C 321.50105,179.89499 317.35016,179.30879 313,179 z" id="path12528" sodipodi:nodetypes="ccccc"/>
      <path style="fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" d="M 313,178 C 316.2233,179.08275 317.98928,179.91735 318.03347,183.00314 C 320.29603,183.00314 321.2012,185.05549 322,187 C 322,186.48998 322,186.06163 322,185.5 C 322,183.25204 320.84982,181.41586 319.125,180.09375 C 317.40018,178.77164 315.10449,178 313,178 z" id="path12530" sodipodi:nodetypes="cccssc"/>
    </g>
    <g style="fill: rgb(211, 211, 211); fill-opacity: 1; display: inline;" id="g23143-0-5-6-3" transform="matrix(0.139291, 0, 0, 0.184783, 692.217, 212.269)">
      <g transform="matrix(0.607143, 0, 0, 1, -212.445, -1.92652)" style="fill: rgb(211, 211, 211); fill-opacity: 1; display: inline;" id="g16265-8-5-7-8">
        <rect ry="2.7058818" rx="4.3699412" y="60" x="477.8497" height="5.4117637" width="94.15844" id="rect15459-7-2-0-1" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16231-9-8-9-3" width="94.15844" height="5.4117684" x="477.8497" y="70.823524" rx="4.3699408" ry="2.7058842"/>
        <rect ry="2" rx="4.3699408" y="81.647057" x="477.8497" height="5.4117694" width="105.98299" id="rect16233-1-0-5-7" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        <rect style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;" id="rect16235-9-4-0-9" width="105.98299" height="5.4117627" x="477.8497" y="97.882355" rx="4.3699408" ry="2"/>
        <rect ry="2" rx="4.3699412" y="108.70589" x="478.2876" height="5.4117632" width="58.246902" id="rect16241-9-6-9-6" style="overflow: visible; marker: none; fill: rgb(211, 211, 211); fill-opacity: 1; fill-rule: nonzero; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
      </g>
    </g>
    <g transform="translate(397.027, 0.976159)" id="g12672" style="display: inline;">
      <path style="fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" d="M 311.16243,220.04545 C 310.77627,220.04545 311.15073,220.22449 311.53604,220.45065 C 313,220.49005 312.93317,220.73709 312.93317,222.99007 C 314.83742,222.99007 315.54866,224.05141 315.63787,224.46881 C 315.72707,224.8862 315.91591,225.408 315.91591,224.90776 C 315.92391,223.5371 315.01429,222.70174 314.45869,221.90052 C 313.90308,221.0993 312.17831,220.21717 311.16243,220.04545 L 311.16243,220.04545 L 311.16243,220.04545 z" id="path12674" sodipodi:nodetypes="ccccczc"/>
      <path style="opacity: 0.356275; fill: url(#linearGradient8261) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" d="M 312,223.99007 C 315.5,223.99007 314.95305,224.34385 315.54067,224.91675 C 315.41001,224.35068 315.9915,222.99007 313,222.99007 C 313,219.93459 311.5,220.49007 311,220.44235 C 311.95642,221.57502 312.41574,220.71385 312,223.99007 z" id="path12676" sodipodi:nodetypes="ccccc"/>
    </g>
    <path style="opacity: 1; fill: rgb(252, 175, 62); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0.5; stroke-opacity: 1;" d="M 520,-140 L 520,-92 L 488,-92 L 544,-4 L 600,-92 L 568,-92 L 568,-140 L 520,-140 z" id="rect4394"/>
    <text xml:space="preserve" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 1px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1; font-family: Impact;" x="576.023" y="-131.664" id="text5170" sodipodi:linespacing="125%"><tspan sodipodi:role="line" x="576.023" y="-131.664" style="font-size: 8px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-align: start; line-height: 125%; text-anchor: start; fill: rgb(245, 121, 0); font-family: Bitstream Vera Sans;" id="tspan5174">This is the parent of all the clones.</tspan><tspan sodipodi:role="line" x="576.023" y="-121.664" style="font-size: 8px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-align: start; line-height: 125%; text-anchor: start; fill: rgb(245, 121, 0); font-family: Bitstream Vera Sans;" id="tspan5178">There are 2 clones per blank sheet,</tspan><tspan sodipodi:role="line" x="576.023" y="-111.664" style="font-size: 8px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-align: start; line-height: 125%; text-anchor: start; fill: rgb(245, 121, 0); font-family: Bitstream Vera Sans;" id="tspan5180">the main page and the curl, so you can</tspan><tspan sodipodi:role="line" x="576.023" y="-101.664" style="font-size: 8px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-align: start; line-height: 125%; text-anchor: start; fill: rgb(245, 121, 0); font-family: Bitstream Vera Sans;" id="tspan5182">place things underneat it.</tspan></text>
    <text xml:space="preserve" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1; font-family: Impact;" x="624.75" y="-103.25" id="text4397"><tspan sodipodi:role="line" id="tspan4399" x="624.75" y="-103.25"> </tspan></text>
  </g>
  <g inkscape:label="text-x-generic-template" style="display: inline;" inkscape:groupmode="layer" id="g8372">
    <path style="overflow: visible; marker: none; opacity: 0.6; fill: url(#linearGradient9682) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline; filter: url(#filter9688);" d="M 947.125,49.46875 C 945.13768,49.46875 943.5,51.106831 943.5,53.09375 C 943.49986,55.080875 945.1377,56.71875 947.125,56.71875 C 949.11212,56.718743 950.75,55.08147 950.75,53.09375 C 950.74986,51.106236 949.11214,49.46875 947.125,49.46875 z M 947.125,51.0625 C 948.246,51.0625 949.15617,51.97232 949.15625,53.09375 C 949.15625,54.215187 948.24593,55.124996 947.125,55.125 C 946.0033,55.125 945.09367,54.215184 945.09375,53.09375 C 945.09375,51.972321 946.00323,51.0625 947.125,51.0625 z M 941.125,59.65625 C 939.13769,59.656252 937.5,61.294329 937.5,63.28125 C 937.49986,65.268374 939.13771,66.906236 941.125,66.90625 C 942.39934,66.906249 943.47571,66.196888 944.125,65.1875 C 944.77425,66.196904 945.85055,66.906241 947.125,66.90625 C 948.39934,66.906249 949.47571,66.196888 950.125,65.1875 C 950.77424,66.196913 951.85055,66.90625 953.125,66.90625 C 955.11231,66.906234 956.75,65.268114 956.75,63.28125 C 956.75128,61.293117 955.11232,59.65625 953.125,59.65625 C 951.85055,59.656251 950.77425,60.36559 950.125,61.375 C 949.47573,60.365605 948.39935,59.65625 947.125,59.65625 C 945.85054,59.656251 944.77424,60.365587 944.125,61.375 C 943.47573,60.365605 942.39935,59.65625 941.125,59.65625 z M 941.125,61.25 C 942.246,61.25 943.15617,62.159811 943.15625,63.28125 C 943.15625,64.402687 942.24593,65.312499 941.125,65.3125 C 940.0033,65.312492 939.09367,64.402682 939.09375,63.28125 C 939.09375,62.159813 940.00323,61.250001 941.125,61.25 z M 947.125,61.25 C 948.246,61.25 949.15617,62.159811 949.15625,63.28125 C 949.15625,64.402687 948.24593,65.312499 947.125,65.3125 C 946.0033,65.312492 945.09367,64.402682 945.09375,63.28125 C 945.09375,62.159813 946.00323,61.250001 947.125,61.25 z M 953.125,61.25 C 954.2468,61.25 955.15697,62.159811 955.15625,63.28125 C 955.15625,64.402687 954.24683,65.312491 953.125,65.3125 C 952.0033,65.3125 951.09377,64.402682 951.09375,63.28125 C 951.09375,62.159813 952.00333,61.250001 953.125,61.25 z M 937.125,69.65625 C 935.13767,69.656238 933.5,71.294329 933.5,73.28125 C 933.49986,75.268374 935.13771,76.906236 937.125,76.90625 C 939.11212,76.906241 940.75,75.268968 940.75,73.28125 C 940.74986,71.293733 939.11215,69.656236 937.125,69.65625 z M 947.125,69.65625 C 945.13767,69.656238 943.5,71.294329 943.5,73.28125 C 943.49986,75.268374 945.13771,76.906236 947.125,76.90625 C 949.11212,76.906241 950.75,75.268968 950.75,73.28125 C 950.74986,71.293733 949.11215,69.656236 947.125,69.65625 z M 957.125,69.65625 C 955.13768,69.656223 953.5,71.294234 953.5,73.28125 C 953.50004,75.2682 955.13769,76.90625 957.125,76.90625 C 959.11231,76.906227 960.75,75.268114 960.75,73.28125 C 960.75004,71.294322 959.11232,69.65625 957.125,69.65625 z M 937.125,71.25 C 938.246,71.249992 939.15617,72.159809 939.15625,73.28125 C 939.15625,74.402679 938.24593,75.312495 937.125,75.3125 C 936.0033,75.312492 935.09367,74.40268 935.09375,73.28125 C 935.09375,72.159813 936.00323,71.249993 937.125,71.25 z M 947.125,71.25 C 948.246,71.249992 949.15617,72.159809 949.15625,73.28125 C 949.15625,74.402679 948.24593,75.312495 947.125,75.3125 C 946.0033,75.312492 945.09367,74.40268 945.09375,73.28125 C 945.09375,72.159813 946.00323,71.249993 947.125,71.25 z M 957.125,71.25 C 958.2468,71.25 959.15627,72.159809 959.15625,73.28125 C 959.15625,74.402687 958.24683,75.312487 957.125,75.3125 C 956.0033,75.3125 955.09377,74.402672 955.09375,73.28125 C 955.09375,72.159813 956.00333,71.249985 957.125,71.25 z M 933.125,79.65625 C 931.13767,79.656232 929.5,81.294329 929.5,83.28125 C 929.49986,85.268375 931.13771,86.906236 933.125,86.90625 C 935.11215,86.906252 936.75,85.268873 936.75,83.28125 C 936.74986,81.293735 935.11215,79.656236 933.125,79.65625 z M 947.125,79.65625 C 945.13767,79.656232 943.5,81.294329 943.5,83.28125 C 943.49986,85.268375 945.13771,86.906236 947.125,86.90625 C 949.11213,86.906252 950.75,85.268968 950.75,83.28125 C 950.74986,81.293735 949.11215,79.656236 947.125,79.65625 z M 961.125,79.65625 C 959.13766,79.656218 957.5,81.294329 957.5,83.28125 C 957.49986,85.268373 959.13769,86.90625 961.125,86.90625 C 963.11213,86.906238 964.75,85.268875 964.75,83.28125 C 964.74986,81.293735 963.11214,79.65625 961.125,79.65625 z M 933.125,81.25 C 934.246,81.249992 935.15617,82.159814 935.15625,83.28125 C 935.15625,84.402679 934.24603,85.312501 933.125,85.3125 C 932.0033,85.312492 931.09367,84.402685 931.09375,83.28125 C 931.09375,82.159813 932.00323,81.24999 933.125,81.25 z M 947.125,81.25 C 948.246,81.249992 949.15617,82.159814 949.15625,83.28125 C 949.15625,84.402679 948.24593,85.312501 947.125,85.3125 C 946.0033,85.312492 945.09367,84.402685 945.09375,83.28125 C 945.09375,82.159813 946.00323,81.24999 947.125,81.25 z M 961.125,81.25 C 962.246,81.25 963.15617,82.159814 963.15625,83.28125 C 963.15625,84.402687 962.24603,85.312493 961.125,85.3125 C 960.0033,85.3125 959.09367,84.402677 959.09375,83.28125 C 959.09375,82.159813 960.00323,81.249982 961.125,81.25 z M 929.125,89.65625 C 927.13768,89.656239 925.5,91.294329 925.5,93.28125 C 925.50004,95.268202 927.13771,96.906236 929.125,96.90625 C 931.11232,96.906261 932.75,95.268207 932.75,93.28125 C 932.74986,91.294497 931.11234,89.656236 929.125,89.65625 z M 947.125,89.65625 C 945.13768,89.656239 943.5,91.294329 943.5,93.28125 C 943.49986,95.268374 945.13771,96.906236 947.125,96.90625 C 949.11214,96.906261 950.75,95.268968 950.75,93.28125 C 950.74986,91.293735 949.11216,89.656236 947.125,89.65625 z M 965.125,89.65625 C 963.13766,89.656225 961.5,91.294329 961.5,93.28125 C 961.49986,95.268372 963.13769,96.90625 965.125,96.90625 C 967.11212,96.906246 968.75,95.26897 968.75,93.28125 C 968.74986,91.293735 967.11214,89.65625 965.125,89.65625 z M 929.125,91.25 C 930.2468,91.249992 931.15617,92.159818 931.15625,93.28125 C 931.15625,94.402679 930.24673,95.312506 929.125,95.3125 C 928.0033,95.312492 927.09377,94.402681 927.09375,93.28125 C 927.09375,92.159813 928.00323,91.249994 929.125,91.25 z M 947.125,91.25 C 948.246,91.249992 949.15617,92.159818 949.15625,93.28125 C 949.15625,94.402679 948.24593,95.312506 947.125,95.3125 C 946.0033,95.312492 945.09367,94.402681 945.09375,93.28125 C 945.09375,92.159813 946.00323,91.249994 947.125,91.25 z M 965.125,91.25 C 966.246,91.25 967.15617,92.159818 967.15625,93.28125 C 967.15625,94.402687 966.24593,95.312498 965.125,95.3125 C 964.0033,95.3125 963.09367,94.402673 963.09375,93.28125 C 963.09375,92.159813 964.00323,91.249986 965.125,91.25 z M 925.125,99.65625 C 923.13787,99.65625 921.5,101.29357 921.5,103.28125 C 921.50004,105.26896 923.13789,106.90625 925.125,106.90625 C 927.11233,106.90625 928.75,105.26811 928.75,103.28125 C 928.74986,101.29449 927.11232,99.65625 925.125,99.65625 z M 947.125,99.65625 C 945.13769,99.65625 943.5,101.29433 943.5,103.28125 C 943.49986,105.26838 945.13771,106.90625 947.125,106.90625 C 949.11213,106.90625 950.75,105.26897 950.75,103.28125 C 950.74986,101.29373 949.11214,99.65625 947.125,99.65625 z M 969.125,99.65625 C 967.13787,99.65625 965.5,101.29357 965.5,103.28125 C 965.49986,105.26914 967.13788,106.90625 969.125,106.90625 C 971.1123,106.90625 972.75,105.26821 972.75,103.28125 C 972.74986,101.29449 971.11232,99.65625 969.125,99.65625 z M 925.125,101.25 C 926.2468,101.25 927.15617,102.15981 927.15625,103.28125 C 927.15625,104.40268 926.24683,105.3125 925.125,105.3125 C 924.0041,105.3125 923.09377,104.40269 923.09375,103.28125 C 923.09375,102.15981 924.00403,101.25 925.125,101.25 z M 947.125,101.25 C 948.246,101.25 949.15617,102.15981 949.15625,103.28125 C 949.15625,104.40268 948.24593,105.3125 947.125,105.3125 C 946.0033,105.3125 945.09367,104.40269 945.09375,103.28125 C 945.09375,102.15981 946.00323,101.25 947.125,101.25 z M 969.125,101.25 C 970.2468,101.25 971.15617,102.15981 971.15625,103.28125 C 971.15625,104.40269 970.24673,105.3125 969.125,105.3125 C 968.0041,105.3125 967.09367,104.40268 967.09375,103.28125 C 967.09375,102.15981 968.00403,101.25 969.125,101.25 z M 921.125,109.65625 C 919.13787,109.65625 917.5,111.29357 917.5,113.28125 C 917.50004,115.26896 919.13789,116.90625 921.125,116.90625 C 923.11233,116.90625 924.75,115.26811 924.75,113.28125 C 924.74986,111.2945 923.11234,109.65625 921.125,109.65625 z M 947.125,109.65625 C 945.13769,109.65625 943.5,111.29433 943.5,113.28125 C 943.49986,115.26838 945.13771,116.90625 947.125,116.90625 C 949.11213,116.90625 950.75,115.26897 950.75,113.28125 C 950.74986,111.29374 949.11215,109.65625 947.125,109.65625 z M 973.125,109.65625 C 971.13787,109.65625 969.5,111.29357 969.5,113.28125 C 969.49986,115.26914 971.13788,116.90625 973.125,116.90625 C 975.1123,116.90625 976.75,115.26821 976.75,113.28125 C 976.74986,111.2945 975.11234,109.65625 973.125,109.65625 z M 921.125,111.25 C 922.2468,111.25 923.15617,112.15983 923.15625,113.28125 C 923.15625,114.40268 922.24683,115.3125 921.125,115.3125 C 920.0041,115.3125 919.09377,114.40269 919.09375,113.28125 C 919.09375,112.15981 920.00403,111.25 921.125,111.25 z M 947.125,111.25 C 948.246,111.25 949.15617,112.15983 949.15625,113.28125 C 949.15625,114.40268 948.24593,115.3125 947.125,115.3125 C 946.0033,115.3125 945.09367,114.40269 945.09375,113.28125 C 945.09375,112.15981 946.00323,111.25 947.125,111.25 z M 973.125,111.25 C 974.2468,111.25 975.15617,112.15983 975.15625,113.28125 C 975.15625,114.40269 974.24673,115.3125 973.125,115.3125 C 972.0041,115.3125 971.09367,114.40268 971.09375,113.28125 C 971.09375,112.15981 972.00403,111.25 973.125,111.25 z M 917.125,119.65625 C 915.13787,119.65625 913.5,121.29357 913.5,123.28125 C 913.50004,125.26896 915.13789,126.90625 917.125,126.90625 C 919.11233,126.90625 920.75,125.26811 920.75,123.28125 C 920.75004,121.29432 919.11232,119.65625 917.125,119.65625 z M 947.125,119.65625 C 945.13769,119.65625 943.5,121.29433 943.5,123.28125 C 943.49986,125.26838 945.13771,126.90625 947.125,126.90625 C 949.11213,126.90625 950.75,125.26897 950.75,123.28125 C 950.74986,121.29373 949.11214,119.65625 947.125,119.65625 z M 977.125,119.65625 C 975.13787,119.65625 973.5,121.29357 973.5,123.28125 C 973.49986,125.26914 975.13788,126.90625 977.125,126.90625 C 979.1123,126.90625 980.75,125.26821 980.75,123.28125 C 980.74986,121.29449 979.11232,119.65625 977.125,119.65625 z M 917.125,121.25 C 918.2468,121.25 919.15627,122.15981 919.15625,123.28125 C 919.15625,124.40268 918.24683,125.3125 917.125,125.3125 C 916.0041,125.3125 915.09377,124.40269 915.09375,123.28125 C 915.09375,122.15981 916.00403,121.25 917.125,121.25 z M 947.125,121.25 C 948.246,121.25 949.15617,122.15981 949.15625,123.28125 C 949.15625,124.40268 948.24593,125.3125 947.125,125.3125 C 946.0033,125.3125 945.09367,124.40269 945.09375,123.28125 C 945.09375,122.15981 946.00323,121.25 947.125,121.25 z M 977.125,121.25 C 978.2468,121.25 979.15617,122.15981 979.15625,123.28125 C 979.15625,124.40269 978.24673,125.3125 977.125,125.3125 C 976.0041,125.3125 975.09367,124.40268 975.09375,123.28125 C 975.09375,122.15981 976.00403,121.25 977.125,121.25 z M 913.125,129.65625 C 911.13778,129.65625 909.5,131.29395 909.5,133.28125 C 909.50004,135.26849 911.13777,136.90625 913.125,136.90625 C 915.11224,136.90625 916.75,135.26849 916.75,133.28125 C 916.75004,131.29394 915.11223,129.65625 913.125,129.65625 z M 947.125,129.65625 C 945.13769,129.65625 943.5,131.29433 943.5,133.28125 C 943.49986,135.26837 945.1377,136.90625 947.125,136.90625 C 949.11213,136.90625 950.75,135.26897 950.75,133.28125 C 950.74986,131.29373 949.11214,129.65625 947.125,129.65625 z M 981.125,129.65625 C 979.13778,129.65625 977.5,131.29395 977.5,133.28125 C 977.49986,135.26866 979.13776,136.90625 981.125,136.90625 C 983.11223,136.90625 984.75,135.2685 984.75,133.28125 C 984.74986,131.29421 983.11225,129.65625 981.125,129.65625 z M 913.125,131.25 C 914.2464,131.25 915.15627,132.15981 915.15625,133.28125 C 915.15625,134.40268 914.24643,135.3125 913.125,135.3125 C 912.0036,135.3125 911.09377,134.40269 911.09375,133.28125 C 911.09375,132.15981 912.00363,131.25 913.125,131.25 z M 947.125,131.25 C 948.246,131.25 949.15617,132.15981 949.15625,133.28125 C 949.15625,134.40268 948.24593,135.3125 947.125,135.3125 C 946.0033,135.3125 945.09367,134.40268 945.09375,133.28125 C 945.09375,132.15981 946.00323,131.25 947.125,131.25 z M 981.125,131.25 C 982.2465,131.25 983.15617,132.15981 983.15625,133.28125 C 983.15625,134.40269 982.24643,135.3125 981.125,135.3125 C 980.0036,135.3125 979.09367,134.40268 979.09375,133.28125 C 979.09375,132.15981 980.00363,131.25 981.125,131.25 z M 909.125,139.65625 C 907.13778,139.65625 905.5,141.29395 905.5,143.28125 C 905.50004,145.26849 907.13777,146.90625 909.125,146.90625 C 911.11227,146.90625 912.75,145.2684 912.75,143.28125 C 912.75004,141.29394 911.11223,139.65625 909.125,139.65625 z M 947.125,139.65625 C 945.13775,139.65621 943.5,141.29395 943.5,143.28125 C 943.49986,145.26866 945.13775,146.90625 947.125,146.90625 C 949.11221,146.90621 950.75,145.26849 950.75,143.28125 C 950.74986,141.29411 949.11221,139.65625 947.125,139.65625 z M 985.125,139.65625 C 983.13775,139.65621 981.5,141.29395 981.5,143.28125 C 981.49986,145.26865 983.13775,146.90625 985.125,146.90625 C 987.1122,146.90621 988.75,145.2685 988.75,143.28125 C 988.74986,141.2942 987.11223,139.65625 985.125,139.65625 z M 909.125,141.25 C 910.2464,141.25 911.15627,142.15981 911.15625,143.28125 C 911.15625,144.40268 910.24653,145.3125 909.125,145.3125 C 908.0036,145.3125 907.09377,144.40269 907.09375,143.28125 C 907.09375,142.15981 908.00363,141.25 909.125,141.25 z M 947.125,141.25 C 948.2464,141.25 949.15617,142.15979 949.15625,143.28125 C 949.15625,144.40268 948.24643,145.31248 947.125,145.3125 C 946.0036,145.3125 945.09367,144.40267 945.09375,143.28125 C 945.09375,142.15981 946.00363,141.24998 947.125,141.25 z M 985.125,141.25 C 986.2465,141.25 987.15617,142.15979 987.15625,143.28125 C 987.15625,144.40269 986.24643,145.31248 985.125,145.3125 C 984.0036,145.3125 983.09367,144.40266 983.09375,143.28125 C 983.09375,142.15981 984.00363,141.24998 985.125,141.25 z M 905.125,149.65625 C 903.13778,149.65625 901.5,151.29395 901.5,153.28125 C 901.50004,155.26849 903.13777,156.90625 905.125,156.90625 C 907.11227,156.90625 908.75,155.2684 908.75,153.28125 C 908.75004,151.29394 907.11223,149.65625 905.125,149.65625 z M 947.125,149.65625 C 945.1378,149.65627 943.5,151.29395 943.5,153.28125 C 943.50004,155.26849 945.13778,156.90625 947.125,156.90625 C 949.11224,156.90625 950.75,155.26849 950.75,153.28125 C 950.75004,151.29394 949.11224,149.65625 947.125,149.65625 z M 989.125,149.65625 C 987.13781,149.65629 985.5,151.29395 985.5,153.28125 C 985.49986,155.26866 987.13778,156.90625 989.125,156.90625 C 991.11223,156.90625 992.75,155.2685 992.75,153.28125 C 992.74986,151.29421 991.11227,149.65625 989.125,149.65625 z M 905.125,151.25 C 906.2464,151.25 907.15627,152.15981 907.15625,153.28125 C 907.15625,154.40268 906.24653,155.3125 905.125,155.3125 C 904.0036,155.3125 903.09377,154.40269 903.09375,153.28125 C 903.09375,152.15981 904.00363,151.25 905.125,151.25 z M 947.125,151.25 C 948.2464,151.25 949.15627,152.15982 949.15625,153.28125 C 949.15625,154.40268 948.24643,155.3125 947.125,155.3125 C 946.0036,155.3125 945.09377,154.4027 945.09375,153.28125 C 945.09375,152.15981 946.00363,151.25001 947.125,151.25 z M 989.125,151.25 C 990.2465,151.25 991.15617,152.15983 991.15625,153.28125 C 991.15625,154.40269 990.24643,155.3125 989.125,155.3125 C 988.0036,155.3125 987.09367,154.4027 987.09375,153.28125 C 987.09375,152.15981 988.00363,151.25002 989.125,151.25 z M 901.125,159.65625 C 899.13778,159.65625 897.5,161.29395 897.5,163.28125 C 897.50004,165.26849 899.13777,166.90625 901.125,166.90625 C 903.11227,166.90625 904.75,165.2684 904.75,163.28125 C 904.75004,161.29394 903.11223,159.65625 901.125,159.65625 z M 947.125,159.65625 C 945.13778,159.65625 943.5,161.29395 943.5,163.28125 C 943.50004,165.26849 945.13777,166.90625 947.125,166.90625 C 949.11224,166.90625 950.75,165.26849 950.75,163.28125 C 950.75004,161.29394 949.11223,159.65625 947.125,159.65625 z M 993.125,159.65625 C 991.13778,159.65625 989.5,161.29395 989.5,163.28125 C 989.49986,165.26866 991.13776,166.90625 993.125,166.90625 C 995.11223,166.90625 996.75,165.2685 996.75,163.28125 C 996.74986,161.29421 995.11225,159.65625 993.125,159.65625 z M 901.125,161.25 C 902.2464,161.25 903.15627,162.15981 903.15625,163.28125 C 903.15625,164.40268 902.24653,165.3125 901.125,165.3125 C 900.0036,165.3125 899.09377,164.40269 899.09375,163.28125 C 899.09375,162.15981 900.00363,161.25 901.125,161.25 z M 947.125,161.25 C 948.2464,161.25 949.15627,162.15981 949.15625,163.28125 C 949.15625,164.40268 948.24643,165.3125 947.125,165.3125 C 946.0036,165.3125 945.09377,164.40269 945.09375,163.28125 C 945.09375,162.15981 946.00363,161.25 947.125,161.25 z M 993.125,161.25 C 994.2465,161.25 995.15617,162.15981 995.15625,163.28125 C 995.15625,164.40269 994.24643,165.3125 993.125,165.3125 C 992.0036,165.3125 991.09367,164.40268 991.09375,163.28125 C 991.09375,162.15981 992.00363,161.25 993.125,161.25 z M 897.125,169.65625 C 895.13778,169.65625 893.5,171.29395 893.5,173.28125 C 893.50004,175.26849 895.13777,176.90625 897.125,176.90625 C 899.11227,176.90625 900.75,175.2684 900.75,173.28125 C 900.75004,171.29394 899.11223,169.65625 897.125,169.65625 z M 947.125,169.65625 C 945.13778,169.65625 943.5,171.29395 943.5,173.28125 C 943.50004,175.26849 945.13777,176.90625 947.125,176.90625 C 949.11224,176.90625 950.75,175.26849 950.75,173.28125 C 950.75004,171.29394 949.11223,169.65625 947.125,169.65625 z M 997.125,169.65625 C 995.13778,169.65625 993.5,171.29395 993.5,173.28125 C 993.49986,175.26866 995.13776,176.90625 997.125,176.90625 C 999.11223,176.90625 1000.75,175.2685 1000.75,173.28125 C 1000.7499,171.29421 999.11225,169.65625 997.125,169.65625 z M 897.125,171.25 C 898.2464,171.25 899.15627,172.15981 899.15625,173.28125 C 899.15625,174.40268 898.24653,175.3125 897.125,175.3125 C 896.0036,175.3125 895.09377,174.40269 895.09375,173.28125 C 895.09375,172.15981 896.00363,171.25 897.125,171.25 z M 947.125,171.25 C 948.2464,171.25 949.15627,172.15981 949.15625,173.28125 C 949.15625,174.40268 948.24643,175.3125 947.125,175.3125 C 946.0036,175.3125 945.09377,174.40269 945.09375,173.28125 C 945.09375,172.15981 946.00363,171.25 947.125,171.25 z M 997.125,171.25 C 998.2465,171.25 999.15617,172.15981 999.15625,173.28125 C 999.15625,174.40269 998.24643,175.3125 997.125,175.3125 C 996.0036,175.3125 995.09367,174.40268 995.09375,173.28125 C 995.09375,172.15981 996.00363,171.25 997.125,171.25 z M 893.125,179.65625 C 891.13778,179.65625 889.5,181.29395 889.5,183.28125 C 889.50004,185.26849 891.13777,186.90625 893.125,186.90625 C 895.11227,186.90625 896.75,185.2684 896.75,183.28125 C 896.75004,181.29394 895.11223,179.65625 893.125,179.65625 z M 947.125,179.65625 C 945.13778,179.65625 943.5,181.29395 943.5,183.28125 C 943.50004,185.26849 945.13776,186.90625 947.125,186.90625 C 949.11223,186.90623 950.75,185.26849 950.75,183.28125 C 950.75004,181.29394 949.11223,179.65625 947.125,179.65625 z M 1001.125,179.65625 C 999.13777,179.65625 997.5,181.29398 997.5,183.28125 C 997.49986,185.26865 999.13775,186.90625 1001.125,186.90625 C 1003.1122,186.90621 1004.75,185.26848 1004.75,183.28125 C 1004.75,181.294 1003.1122,179.65625 1001.125,179.65625 z M 893.125,181.25 C 894.2464,181.25 895.15627,182.15981 895.15625,183.28125 C 895.15625,184.40268 894.24653,185.3125 893.125,185.3125 C 892.0036,185.3125 891.09377,184.40269 891.09375,183.28125 C 891.09375,182.15981 892.00363,181.25 893.125,181.25 z M 947.125,181.25 C 948.2464,181.25 949.15627,182.15981 949.15625,183.28125 C 949.15625,184.40268 948.24643,185.31249 947.125,185.3125 C 946.0036,185.3125 945.09377,184.40268 945.09375,183.28125 C 945.09375,182.15981 946.00363,181.25 947.125,181.25 z M 1001.125,181.25 C 1002.2464,181.25 1003.1562,182.15981 1003.1562,183.28125 C 1003.1562,184.40269 1002.2464,185.31248 1001.125,185.3125 C 1000.0036,185.3125 999.09367,184.40266 999.09375,183.28125 C 999.09375,182.15981 1000.0036,181.25 1001.125,181.25 z M 889.125,189.65625 C 887.13778,189.65625 885.5,191.29395 885.5,193.28125 C 885.50004,195.26849 887.13777,196.90625 889.125,196.90625 C 891.11227,196.90625 892.75,195.2684 892.75,193.28125 C 892.75004,191.29394 891.11223,189.65625 889.125,189.65625 z M 947.125,189.65625 C 945.1378,189.65627 943.5,191.29395 943.5,193.28125 C 943.50004,195.26849 945.13778,196.90625 947.125,196.90625 C 949.11226,196.90627 950.75,195.26849 950.75,193.28125 C 950.75004,191.29394 949.11224,189.65625 947.125,189.65625 z M 1005.125,189.65625 C 1003.1378,189.65629 1001.5,191.29402 1001.5,193.28125 C 1001.4998,195.26867 1003.1378,196.90625 1005.125,196.90625 C 1007.1123,196.90629 1008.75,195.26848 1008.75,193.28125 C 1008.75,191.29401 1007.1122,189.65625 1005.125,189.65625 z M 889.125,191.25 C 890.2464,191.25 891.15627,192.15981 891.15625,193.28125 C 891.15625,194.40268 890.24653,195.3125 889.125,195.3125 C 888.0036,195.3125 887.09377,194.40269 887.09375,193.28125 C 887.09375,192.15981 888.00363,191.25 889.125,191.25 z M 947.125,191.25 C 948.2464,191.25 949.15627,192.15982 949.15625,193.28125 C 949.15625,194.40268 948.24643,195.31251 947.125,195.3125 C 946.0036,195.3125 945.09377,194.4027 945.09375,193.28125 C 945.09375,192.15981 946.00363,191.25001 947.125,191.25 z M 1005.125,191.25 C 1006.2464,191.25 1007.1562,192.15983 1007.1562,193.28125 C 1007.1562,194.40269 1006.2464,195.31252 1005.125,195.3125 C 1004.0036,195.3125 1003.0937,194.4027 1003.0938,193.28125 C 1003.0938,192.15981 1004.0036,191.25002 1005.125,191.25 z M 885.125,199.65625 C 883.13778,199.65625 881.5,201.29395 881.5,203.28125 C 881.50004,205.26849 883.13777,206.90625 885.125,206.90625 C 887.11227,206.90625 888.75,205.2684 888.75,203.28125 C 888.75004,201.29394 887.11223,199.65625 885.125,199.65625 z M 947.125,199.65625 C 945.13778,199.65625 943.5,201.29395 943.5,203.28125 C 943.50004,205.26849 945.13777,206.90625 947.125,206.90625 C 949.11224,206.90625 950.75,205.26849 950.75,203.28125 C 950.75004,201.29394 949.11223,199.65625 947.125,199.65625 z M 1009.125,199.65625 C 1007.1378,199.65625 1005.5,201.29402 1005.5,203.28125 C 1005.4998,205.26867 1007.1378,206.90625 1009.125,206.90625 C 1011.1122,206.90625 1012.75,205.26848 1012.75,203.28125 C 1012.75,201.294 1011.1122,199.65625 1009.125,199.65625 z M 885.125,201.25 C 886.2464,201.25 887.15627,202.15981 887.15625,203.28125 C 887.15625,204.40268 886.24653,205.3125 885.125,205.3125 C 884.0036,205.3125 883.09377,204.40269 883.09375,203.28125 C 883.09375,202.15981 884.00363,201.25 885.125,201.25 z M 947.125,201.25 C 948.2464,201.25 949.15627,202.15981 949.15625,203.28125 C 949.15625,204.40268 948.24643,205.3125 947.125,205.3125 C 946.0036,205.3125 945.09377,204.40269 945.09375,203.28125 C 945.09375,202.15981 946.00363,201.25 947.125,201.25 z M 1009.125,201.25 C 1010.2464,201.25 1011.1562,202.15981 1011.1562,203.28125 C 1011.1562,204.40269 1010.2464,205.3125 1009.125,205.3125 C 1008.0036,205.3125 1007.0937,204.40268 1007.0938,203.28125 C 1007.0938,202.15981 1008.0036,201.25 1009.125,201.25 z M 881.125,209.65625 C 879.13778,209.65625 877.5,211.29395 877.5,213.28125 C 877.50004,215.26849 879.13777,216.90625 881.125,216.90625 C 883.11227,216.90625 884.75,215.2684 884.75,213.28125 C 884.75004,211.29394 883.11223,209.65625 881.125,209.65625 z M 947.125,209.65625 C 945.13778,209.65625 943.5,211.29395 943.5,213.28125 C 943.50004,215.26849 945.13777,216.90625 947.125,216.90625 C 949.11224,216.90625 950.75,215.26849 950.75,213.28125 C 950.75004,211.29394 949.11223,209.65625 947.125,209.65625 z M 1013.125,209.65625 C 1011.1378,209.65625 1009.5,211.29402 1009.5,213.28125 C 1009.4998,215.26867 1011.1378,216.90625 1013.125,216.90625 C 1015.1122,216.90625 1016.75,215.26848 1016.75,213.28125 C 1016.75,211.294 1015.1122,209.65625 1013.125,209.65625 z M 881.125,211.25 C 882.2464,211.25 883.15627,212.15981 883.15625,213.28125 C 883.15625,214.40268 882.24653,215.3125 881.125,215.3125 C 880.0036,215.3125 879.09377,214.40269 879.09375,213.28125 C 879.09375,212.15981 880.00363,211.25 881.125,211.25 z M 947.125,211.25 C 948.2464,211.25 949.15627,212.15981 949.15625,213.28125 C 949.15625,214.40268 948.24643,215.3125 947.125,215.3125 C 946.0036,215.3125 945.09377,214.40269 945.09375,213.28125 C 945.09375,212.15981 946.00363,211.25 947.125,211.25 z M 1013.125,211.25 C 1014.2464,211.25 1015.1562,212.15981 1015.1562,213.28125 C 1015.1562,214.40269 1014.2464,215.3125 1013.125,215.3125 C 1012.0036,215.3125 1011.0937,214.40268 1011.0938,213.28125 C 1011.0938,212.15981 1012.0036,211.25 1013.125,211.25 z M 877.125,219.65625 C 875.13778,219.65625 873.5,221.29395 873.5,223.28125 C 873.50004,225.26849 875.13777,226.90625 877.125,226.90625 C 879.11227,226.90625 880.75,225.2684 880.75,223.28125 C 880.75004,221.29394 879.11223,219.65625 877.125,219.65625 z M 947.125,219.65625 C 945.13778,219.65625 943.5,221.29395 943.5,223.28125 C 943.50004,225.26849 945.13777,226.90625 947.125,226.90625 C 949.11224,226.90625 950.75,225.26849 950.75,223.28125 C 950.75004,221.29394 949.11223,219.65625 947.125,219.65625 z M 1017.125,219.65625 C 1015.1378,219.65625 1013.5,221.29402 1013.5,223.28125 C 1013.4998,225.26867 1015.1378,226.90625 1017.125,226.90625 C 1019.1122,226.90625 1020.75,225.26848 1020.75,223.28125 C 1020.75,221.294 1019.1122,219.65625 1017.125,219.65625 z M 877.125,221.25 C 878.2464,221.25 879.15627,222.15981 879.15625,223.28125 C 879.15625,224.40268 878.24653,225.3125 877.125,225.3125 C 876.0036,225.3125 875.09377,224.40269 875.09375,223.28125 C 875.09375,222.15981 876.00363,221.25 877.125,221.25 z M 947.125,221.25 C 948.2464,221.25 949.15627,222.15981 949.15625,223.28125 C 949.15625,224.40268 948.24643,225.3125 947.125,225.3125 C 946.0036,225.3125 945.09377,224.40269 945.09375,223.28125 C 945.09375,222.15981 946.00363,221.25 947.125,221.25 z M 1017.125,221.25 C 1018.2464,221.25 1019.1562,222.15981 1019.1562,223.28125 C 1019.1562,224.40269 1018.2464,225.3125 1017.125,225.3125 C 1016.0036,225.3125 1015.0937,224.40268 1015.0938,223.28125 C 1015.0938,222.15981 1016.0036,221.25 1017.125,221.25 z M 873.125,229.65625 C 871.13778,229.65625 869.5,231.29395 869.5,233.28125 C 869.50004,235.26849 871.13777,236.90625 873.125,236.90625 C 875.11227,236.90625 876.75,235.2684 876.75,233.28125 C 876.75004,231.29394 875.11223,229.65625 873.125,229.65625 z M 947.125,229.65625 C 945.13776,229.65623 943.5,231.29395 943.5,233.28125 C 943.50004,235.26849 945.13778,236.90625 947.125,236.90625 C 949.11226,236.90627 950.75,235.26849 950.75,233.28125 C 950.75004,231.29394 949.11224,229.65625 947.125,229.65625 z M 1021.125,229.65625 C 1019.1377,229.65621 1017.5,231.29402 1017.5,233.28125 C 1017.4998,235.26867 1019.1378,236.90625 1021.125,236.90625 C 1023.1123,236.90629 1024.75,235.26848 1024.75,233.28125 C 1024.75,231.29401 1023.1122,229.65625 1021.125,229.65625 z M 873.125,231.25 C 874.2464,231.25 875.15627,232.15981 875.15625,233.28125 C 875.15625,234.40268 874.24653,235.3125 873.125,235.3125 C 872.0036,235.3125 871.09377,234.40269 871.09375,233.28125 C 871.09375,232.15981 872.00363,231.25 873.125,231.25 z M 947.125,231.25 C 948.2464,231.25 949.15627,232.15982 949.15625,233.28125 C 949.15625,234.40268 948.24643,235.31251 947.125,235.3125 C 946.0036,235.3125 945.09377,234.4027 945.09375,233.28125 C 945.09375,232.15981 946.00363,231.24999 947.125,231.25 z M 1021.125,231.25 C 1022.2464,231.25 1023.1562,232.15983 1023.1562,233.28125 C 1023.1562,234.40269 1022.2464,235.31252 1021.125,235.3125 C 1020.0036,235.3125 1019.0937,234.4027 1019.0938,233.28125 C 1019.0938,232.15981 1020.0036,231.24998 1021.125,231.25 z M 869.125,239.65625 C 867.13778,239.65625 865.5,241.29395 865.5,243.28125 C 865.50004,245.26849 867.13777,246.90625 869.125,246.90625 C 871.11227,246.90625 872.75,245.2684 872.75,243.28125 C 872.75004,241.29394 871.11223,239.65625 869.125,239.65625 z M 947.125,239.65625 C 945.13778,239.65625 943.5,241.29395 943.5,243.28125 C 943.50004,245.26849 945.13777,246.90625 947.125,246.90625 C 949.11224,246.90625 950.75,245.26849 950.75,243.28125 C 950.75004,241.29394 949.11223,239.65625 947.125,239.65625 z M 1025.125,239.65625 C 1023.1378,239.65625 1021.5,241.29402 1021.5,243.28125 C 1021.4998,245.26867 1023.1378,246.90625 1025.125,246.90625 C 1027.1122,246.90625 1028.75,245.26848 1028.75,243.28125 C 1028.7504,241.29359 1027.1122,239.65625 1025.125,239.65625 z M 869.125,241.25 C 870.2464,241.25 871.15627,242.15981 871.15625,243.28125 C 871.15625,244.40268 870.24653,245.3125 869.125,245.3125 C 868.0036,245.3125 867.09377,244.40269 867.09375,243.28125 C 867.09375,242.15981 868.00363,241.25 869.125,241.25 z M 947.125,241.25 C 948.2464,241.25 949.15627,242.15981 949.15625,243.28125 C 949.15625,244.40268 948.24643,245.3125 947.125,245.3125 C 946.0036,245.3125 945.09377,244.40269 945.09375,243.28125 C 945.09375,242.15981 946.00363,241.25 947.125,241.25 z M 1025.125,241.25 C 1026.2464,241.25 1027.1565,242.15981 1027.1562,243.28125 C 1027.1562,244.40269 1026.2464,245.3125 1025.125,245.3125 C 1024.0036,245.3125 1023.0937,244.40268 1023.0938,243.28125 C 1023.0938,242.15981 1024.0036,241.25 1025.125,241.25 z M 865.125,249.65625 C 863.13778,249.65625 861.5,251.29395 861.5,253.28125 C 861.50004,255.26849 863.13777,256.90625 865.125,256.90625 C 867.11227,256.90625 868.75,255.2684 868.75,253.28125 C 868.75004,251.29394 867.11223,249.65625 865.125,249.65625 z M 947.125,249.65625 C 945.13778,249.65625 943.5,251.29395 943.5,253.28125 C 943.50004,255.26849 945.13777,256.90625 947.125,256.90625 C 949.11224,256.90625 950.75,255.26849 950.75,253.28125 C 950.75004,251.29394 949.11223,249.65625 947.125,249.65625 z M 1029.125,249.65625 C 1027.1378,249.65625 1025.5,251.29402 1025.5,253.28125 C 1025.5001,255.26839 1027.1378,256.90625 1029.125,256.90625 C 1031.1122,256.90625 1032.75,255.26848 1032.75,253.28125 C 1032.7504,251.29359 1031.1122,249.65625 1029.125,249.65625 z M 865.125,251.25 C 866.2464,251.25 867.15627,252.15981 867.15625,253.28125 C 867.15625,254.40268 866.24653,255.3125 865.125,255.3125 C 864.0036,255.3125 863.09377,254.40269 863.09375,253.28125 C 863.09375,252.15981 864.00363,251.25 865.125,251.25 z M 947.125,251.25 C 948.2464,251.25 949.15627,252.15981 949.15625,253.28125 C 949.15625,254.40268 948.24643,255.3125 947.125,255.3125 C 946.0036,255.3125 945.09377,254.40269 945.09375,253.28125 C 945.09375,252.15981 946.00363,251.25 947.125,251.25 z M 1029.125,251.25 C 1030.2464,251.25 1031.1565,252.15981 1031.1562,253.28125 C 1031.1562,254.40269 1030.2464,255.3125 1029.125,255.3125 C 1028.0036,255.3125 1027.0938,254.40268 1027.0938,253.28125 C 1027.0938,252.15981 1028.0036,251.25 1029.125,251.25 z M 861.125,259.65625 C 859.13778,259.65625 857.5,261.29395 857.5,263.28125 C 857.50004,265.26849 859.13777,266.90625 861.125,266.90625 C 863.11227,266.90625 864.75,265.2684 864.75,263.28125 C 864.75004,261.29394 863.11223,259.65625 861.125,259.65625 z M 947.125,259.65625 C 945.13778,259.65625 943.5,261.29395 943.5,263.28125 C 943.50004,265.26849 945.13777,266.90625 947.125,266.90625 C 949.11224,266.90625 950.75,265.26849 950.75,263.28125 C 950.75004,261.29394 949.11223,259.65625 947.125,259.65625 z M 1033.125,259.65625 C 1031.1378,259.65625 1029.5,261.29402 1029.5,263.28125 C 1029.5001,265.26839 1031.1378,266.90625 1033.125,266.90625 C 1035.1122,266.90625 1036.75,265.26848 1036.75,263.28125 C 1036.7504,261.29359 1035.1122,259.65625 1033.125,259.65625 z M 861.125,261.25 C 862.2464,261.25 863.15627,262.15981 863.15625,263.28125 C 863.15625,264.40268 862.24653,265.3125 861.125,265.3125 C 860.0036,265.3125 859.09377,264.40269 859.09375,263.28125 C 859.09375,262.15981 860.00363,261.25 861.125,261.25 z M 947.125,261.25 C 948.2464,261.25 949.15627,262.15981 949.15625,263.28125 C 949.15625,264.40268 948.24643,265.3125 947.125,265.3125 C 946.0036,265.3125 945.09377,264.40269 945.09375,263.28125 C 945.09375,262.15981 946.00363,261.25 947.125,261.25 z M 1033.125,261.25 C 1034.2464,261.25 1035.1565,262.15981 1035.1562,263.28125 C 1035.1562,264.40269 1034.2464,265.3125 1033.125,265.3125 C 1032.0036,265.3125 1031.0938,264.40268 1031.0938,263.28125 C 1031.0938,262.15981 1032.0036,261.25 1033.125,261.25 z" id="path9643"/>
    <g inkscape:label="plate 2" style="display: none;" inkscape:groupmode="layer" id="g8374" sodipodi:insensitive="true">
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="32" x="824" id="rect8376" inkscape:export-filename="/home/lapo/Dropbox/Icons/mango/test 64x64/text-x-generic-template.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="50" x="1100" id="rect8378"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="125" x="1100" id="rect8380"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="176" x="1100" id="rect8382"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="177" x="1101" id="rect8384"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="220" x="1100" id="rect8386"/>
      <text y="20" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="820" id="text8388">
        <tspan id="tspan8390">mimetypes</tspan>
      </text>
      <text y="20" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="936" id="text8392">
        <tspan id="tspan8394">text-x-generic-template</tspan>
      </text>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8030" id="use10584" transform="translate(400)" width="1600" height="900"/>
    <g style="display: inline;" id="g16626" transform="translate(-70.625, -4.97097)">
      <path style="fill: url(#linearGradient10566) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" id="path3517" d="M 1193.6742,58.863923 L 1208.3807,97.578019 L 1211.1751,97.489629 L 1211.1751,71.189874 C 1211.1751,68.689874 1203.0825,59.35948 1199.4575,58.98448 L 1193.67,58.863922 L 1193.6696,58.863923 L 1193.6696,58.863923 L 1193.6696,58.863923 L 1193.6742,58.863923 z" sodipodi:nodetypes="ccccccccc"/>
      <path style="fill: url(#linearGradient10568) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" sodipodi:nodetypes="ccccc" id="path3527" d="M 1194.6464,59.040699 L 1180.0132,97.047689 L 1178.8249,97.047688 L 1178.8249,59.040699 L 1194.6464,59.040699 z"/>
      <g id="use17221" transform="matrix(5.60584, 0, 0, 5.77374, -5500.66, -283.822)">
        <path transform="matrix(0.330548, 0, 0, 0.314629, 882.591, 43.9139)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path17280" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        <path sodipodi:type="arc" style="overflow: visible; marker: none; opacity: 0.7; fill: url(#radialGradient10580) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" id="path17282" sodipodi:cx="942.76562" sodipodi:cy="50.078121" sodipodi:rx="0.671875" sodipodi:ry="0.671875" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" transform="matrix(0.258429, 0, 0, 0.250914, 950.583, 47.0619)"/>
      </g>
      <use x="0" y="0" xlink:href="#use17221" id="use17324" transform="translate(0, 10)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17324" id="use17326" transform="translate(0, 8)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17326" id="use17328" transform="translate(0, 8)" width="1600" height="900"/>
      <g transform="matrix(5.60584, 0, 0, 5.77374, -5496.66, -273.822)" id="use17342">
        <path sodipodi:type="arc" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" id="path15022" sodipodi:cx="942.76562" sodipodi:cy="50.078121" sodipodi:rx="0.671875" sodipodi:ry="0.671875" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" transform="matrix(0.330548, 0, 0, 0.314629, 882.591, 43.9139)"/>
        <path transform="matrix(0.258429, 0, 0, 0.250914, 950.583, 47.0619)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path15024" style="overflow: visible; marker: none; opacity: 0.7; fill: url(#radialGradient10582) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
      </g>
      <use x="0" y="0" xlink:href="#use17342" id="use17344" transform="translate(3, 8)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17344" id="use17346" transform="translate(3, 8)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17346" id="use17348" transform="translate(3, 8)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17328" id="use17362" transform="translate(0, 8)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17342" id="use15006" transform="translate(-1.5, -4)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17344" id="use15008" transform="translate(-1.5, -4)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17346" id="use15010" transform="translate(-1.5, -4)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17348" id="use15012" transform="translate(-1.5, -4)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17324" id="use15028" transform="translate(0, -4)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17326" id="use15030" transform="translate(0, -4)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17328" id="use15032" transform="translate(0, -4)" width="1600" height="900"/>
      <use x="0" y="0" xlink:href="#use17362" id="use15034" transform="translate(0, -4)" width="1600" height="900"/>
      <g id="g15036" transform="matrix(-5.60584, 0, 0, 5.77374, 7884.51, -273.822)">
        <path transform="matrix(0.330548, 0, 0, 0.314629, 882.591, 43.9139)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path15038" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        <path sodipodi:type="arc" style="overflow: visible; marker: none; opacity: 0.7; fill: url(#radialGradient10574) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" id="path15040" sodipodi:cx="942.76562" sodipodi:cy="50.078121" sodipodi:rx="0.671875" sodipodi:ry="0.671875" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" transform="matrix(0.258429, 0, 0, 0.250914, 950.583, 47.0619)"/>
      </g>
      <use height="900" width="1600" transform="matrix(-1, 0, 0, 1, 2384.85, 8)" id="use15042" xlink:href="#use17342" y="0" x="0"/>
      <use height="900" width="1600" transform="matrix(-1, 0, 0, 1, 2384.85, 8)" id="use15044" xlink:href="#use17344" y="0" x="0"/>
      <use height="900" width="1600" transform="matrix(-1, 0, 0, 1, 2384.85, 8)" id="use15046" xlink:href="#use17346" y="0" x="0"/>
      <use height="900" width="1600" transform="matrix(-1, 0, 0, 1, 2389.35, -4)" id="use15048" xlink:href="#use17342" y="0" x="0"/>
      <use height="900" width="1600" transform="matrix(-1, 0, 0, 1, 2389.35, -4)" id="use15050" xlink:href="#use17344" y="0" x="0"/>
      <use height="900" width="1600" transform="matrix(-1, 0, 0, 1, 2389.35, -4)" id="use15052" xlink:href="#use17346" y="0" x="0"/>
      <use height="900" width="1600" transform="matrix(-1, 0, 0, 1, 2389.35, -4)" id="use15054" xlink:href="#use17348" y="0" x="0"/>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8236" id="use10601" transform="translate(400)" width="1600" height="900"/>
    <g style="display: inline;" id="g5897" transform="translate(1141.09, -122.975)">
      <path style="opacity: 0.3; fill: url(#linearGradient4166) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M -21.700043,317.63687 L -29.498133,305.99825 L -29.498133,300.97535 L -27.374209,301.00665 C -25.752081,301.03475 -22.301523,303.32762 -21.014975,306.87068 L -21.031255,317.59677 L -21.700044,317.63687 L -21.700043,317.63687 z" id="path5577" sodipodi:nodetypes="ccccccc"/>
      <path style="opacity: 0.05; fill: rgb(112, 112, 112); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 726.0625,478.03125 L 726.0625,479.125 C 726.20099,478.58492 726.63839,478.14491 727.1875,478.03125 L 726.0625,478.03125 z M 727.46875,479 C 727.20738,479 727,479.20737 727,479.46875 L 727,493.3125 L 733.5625,482.96875 L 733.5,479.03125 C 733.33956,479.02118 733.18979,479 733.03125,479 L 727.46875,479 z M 726,484.4375 L 725.9063,494.03125 L 726,494.03125 L 726,484.4375 z" transform="translate(-763, -177)" id="path5615"/>
      <path id="path5579" d="M -29.5,302 C -29.776,302 -30,302.224 -30,302.5 C -30,302.776 -29.776,303 -29.5,303 C -29.224,303 -28.999999,302.776 -29,302.5 C -29,302.224 -29.223999,302 -29.5,302 z M -29.5,305 C -29.783504,305 -30,305.224 -30,305.5 C -30,305.776 -29.783505,306 -29.5,306 C -29.216496,306 -28.968749,305.776 -28.96875,305.5 C -28.96875,305.224 -29.216496,305 -29.5,305 z M -30.5,307 C -30.776,307 -31.000001,307.224 -31,307.5 C -31,307.776 -30.775999,308 -30.5,308 C -30.224,308 -30,307.776 -30,307.5 C -30,307.224 -30.223999,307 -30.5,307 z M -28.5,307 C -28.776,307 -29,307.224 -29,307.5 C -29,307.776 -28.776,308 -28.5,308 C -28.224,308 -28,307.776 -28,307.5 C -28,307.224 -28.224,307 -28.5,307 z M -29.5,309 C -29.776,309 -29.999999,309.224 -30,309.5 C -30,309.776 -29.775999,310 -29.5,310 C -29.224,310 -28.999999,309.776 -29,309.5 C -29,309.224 -29.223999,309 -29.5,309 z M -32.5,310 C -32.776,310.00001 -33,310.224 -33,310.5 C -33,310.77601 -32.776,311 -32.5,311 C -32.224,311 -32,310.776 -32,310.5 C -32,310.22401 -32.224,310 -32.5,310 z M -26.5,310 C -26.776,310 -27,310.22425 -27,310.5 C -27,310.77576 -26.776,311 -26.5,311 C -26.224,310.99999 -26,310.77575 -26,310.5 C -26,310.22425 -26.224,310 -26.5,310 z M -29.5,312 C -29.776,312 -30,312.224 -30,312.5 C -30,312.776 -29.776,313 -29.5,313 C -29.224,313 -29,312.776 -29,312.5 C -29,312.224 -29.224,312 -29.5,312 z M -34.5,313 C -34.776,313 -35,313.22401 -35,313.5 C -35,313.776 -34.776,314 -34.5,314 C -34.224,314 -34,313.776 -34,313.5 C -34,313.224 -34.224,313.00001 -34.5,313 z M -24.5,313 C -24.776,313 -25,313.22401 -25,313.5 C -25,313.776 -24.776,314 -24.5,314 C -24.224,314 -24,313.776 -24,313.5 C -24,313.224 -24.224,313.00001 -24.5,313 z M -29.5,315 C -29.776,315 -30,315.224 -30,315.5 C -30,315.776 -29.776,316 -29.5,316 C -29.224,316 -28.999999,315.776 -29,315.5 C -29,315.224 -29.224001,315 -29.5,315 z M -22.5,316 C -22.776246,316 -23,316.224 -23,316.5 C -23,316.77599 -22.776246,317 -22.5,317 C -22.223754,316.99999 -22,316.776 -22,316.5 C -22,316.224 -22.223754,316 -22.5,316 z M -29.5,318 C -29.776,318 -30,318.224 -30,318.5 C -30,318.776 -29.776,319 -29.5,319 C -29.224,319 -29,318.776 -29,318.5 C -29,318.224 -29.224,318 -29.5,318 z" style="fill: rgb(136, 138, 133); fill-opacity: 1; stroke: none; display: inline;"/>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8323" id="use10603" transform="translate(400)" width="1600" height="900"/>
    <g style="display: inline;" id="g9407" transform="translate(367, -299.051)">
      <path id="path6074" d="M 740.5,520.17757 L 740.5,523.49007 L 745.5625,533.61507 C 745.73467,533.47051 745.84375,533.24751 745.84375,533.02132 C 745.84375,530.24156 745.84375,527.45739 745.84375,524.67757 C 745.72169,523.52731 745.07707,522.68025 744.1875,521.80257 C 743.27294,520.90023 742.48612,520.19936 741.3125,520.17757 L 740.5,520.17757 z" style="opacity: 0.3; fill: url(#linearGradient9425) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <path id="path6079" d="M 736.0625,521 L 736.0625,529.21875 L 736.0625,530.78125 L 736.0625,532.375 L 740.5,523.5 L 740.5,521 L 736.78125,521 L 736.0625,521 z" style="opacity: 0.0607287; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;"/>
      <g transform="translate(733, 218.99)" style="opacity: 0.7; fill: rgb(136, 138, 133); display: inline;" id="g6057">
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none;" id="path6031" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 1.42857, 43.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6033" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 1.42857, 45.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6035" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 1.42857, 49.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6037" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 1.42857, 51.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6039" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 1.42857, 53.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6041" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 5.42857, 53.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6043" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 4.42857, 51.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6045" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 3.42857, 49.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6047" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 2.42857, 47.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6049" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, 0.428572, 47.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6051" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, -0.571428, 49.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6053" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, -1.57143, 51.9692)"/>
        <path sodipodi:type="arc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" id="path6055" sodipodi:cx="7.5130095" sodipodi:cy="302.57712" sodipodi:rx="0.61871845" sodipodi:ry="0.59662133" d="M 8.131728,302.57712 A 0.61871845,0.59662133 0 1 1 6.8942911,302.57712 A 0.61871845,0.59662133 0 1 1 8.131728,302.57712 z" transform="matrix(0.808122, 0, 0, 0.854397, -2.57143, 53.9692)"/>
      </g>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8146" id="use10592" transform="translate(400)" width="1600" height="900"/>
    <g style="display: inline;" transform="translate(1190, -205.094)" id="g7762">
      <path sodipodi:nodetypes="csssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssccsssc" style="opacity: 0.9; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline;" d="M -74.4375,335.09375 C -74.713502,335.09375 -74.937503,335.3248 -74.9375,335.59375 C -74.9375,335.86269 -74.713501,336.09376 -74.4375,336.09375 C -74.161498,336.09375 -73.937503,335.86267 -73.9375,335.59375 C -73.9375,335.32481 -74.161497,335.09374 -74.4375,335.09375 z M -74.4375,338.09375 C -74.713502,338.09375 -74.937498,338.29356 -74.9375,338.5625 C -74.9375,338.83144 -74.713504,339.06249 -74.4375,339.0625 C -74.161498,339.0625 -73.937498,338.83144 -73.9375,338.5625 C -73.9375,338.29356 -74.161499,338.09376 -74.4375,338.09375 z M -76.4375,341.09375 C -76.7135,341.09375 -76.937497,341.31776 -76.9375,341.59375 C -76.9375,341.86975 -76.713497,342.09376 -76.4375,342.09375 C -76.1615,342.09375 -75.937498,341.86976 -75.9375,341.59375 C -75.9375,341.31775 -76.161498,341.09376 -76.4375,341.09375 z M -72.5,341.09375 C -72.776001,341.09375 -73,341.31775 -73,341.59375 C -73.000001,341.86975 -72.776,342.09375 -72.5,342.09375 C -72.224002,342.09375 -72,341.86975 -72,341.59375 C -72.000002,341.31775 -72.224,341.09375 -72.5,341.09375 z M -74.4375,343.09375 C -74.713502,343.09375 -74.937498,343.29356 -74.9375,343.5625 C -74.9375,343.83144 -74.713504,344.06249 -74.4375,344.0625 C -74.161498,344.0625 -73.937498,343.83144 -73.9375,343.5625 C -73.9375,343.29356 -74.161499,343.09376 -74.4375,343.09375 z M -78.4375,345.09375 C -78.7135,345.09375 -78.937497,345.31776 -78.9375,345.59375 C -78.9375,345.86975 -78.713497,346.09376 -78.4375,346.09375 C -78.1615,346.09375 -77.937498,345.86976 -77.9375,345.59375 C -77.9375,345.31775 -78.161498,345.09376 -78.4375,345.09375 z M -70.5,345.09375 C -70.776001,345.09376 -71,345.31775 -71,345.59375 C -71.000001,345.86976 -70.776,346.09375 -70.5,346.09375 C -70.224002,346.09376 -70,345.86975 -70,345.59375 C -70.000002,345.31776 -70.224,345.09375 -70.5,345.09375 z M -74.4375,346.0625 C -74.713502,346.0625 -74.9375,346.26231 -74.9375,346.53125 C -74.9375,346.80019 -74.713499,347.03124 -74.4375,347.03125 C -74.161498,347.03125 -73.9375,346.80018 -73.9375,346.53125 C -73.9375,346.26231 -74.161494,346.0625 -74.4375,346.0625 z M -80.40625,349.09375 C -80.668231,349.09375 -80.875,349.31522 -80.875,349.59375 C -80.874999,349.8723 -80.668228,350.09375 -80.40625,350.09375 C -80.144275,350.09374 -79.9375,349.87228 -79.9375,349.59375 C -79.937499,349.31523 -80.144272,349.09375 -80.40625,349.09375 z M -74.4375,349.09375 C -74.713502,349.09375 -74.937498,349.29356 -74.9375,349.5625 C -74.9375,349.83144 -74.713504,350.06249 -74.4375,350.0625 C -74.161498,350.0625 -73.937498,349.83144 -73.9375,349.5625 C -73.9375,349.29356 -74.161499,349.09376 -74.4375,349.09375 z M -68.5,349.09375 C -68.761978,349.09375 -69.000002,349.31523 -69,349.59375 C -69,349.87228 -68.761976,350.09374 -68.5,350.09375 C -68.238022,350.09375 -68.031252,349.8723 -68.03125,349.59375 C -68.03125,349.31522 -68.23802,349.09375 -68.5,349.09375 z M -74.4375,352.0625 C -74.713502,352.0625 -74.9375,352.26231 -74.9375,352.53125 C -74.9375,352.80019 -74.713499,353.03124 -74.4375,353.03125 C -74.161498,353.03125 -73.9375,352.80018 -73.9375,352.53125 C -73.9375,352.26231 -74.161494,352.0625 -74.4375,352.0625 z M -82.4375,353.09375 C -82.7135,353.09375 -82.937497,353.31776 -82.9375,353.59375 C -82.9375,353.86975 -82.713497,354.09376 -82.4375,354.09375 C -82.1615,354.09375 -81.937498,353.86976 -81.9375,353.59375 C -81.9375,353.31775 -82.161498,353.09376 -82.4375,353.09375 z M -66.5,353.09375 C -66.776001,353.09376 -67,353.31775 -67,353.59375 C -67.000001,353.86976 -66.776,354.09375 -66.5,354.09375 C -66.224002,354.09376 -66,353.86975 -66,353.59375 C -66.000002,353.31776 -66.224,353.09375 -66.5,353.09375 z M -74.4375,355.09375 C -74.713502,355.09375 -74.937498,355.29356 -74.9375,355.5625 C -74.9375,355.83144 -74.713504,356.06249 -74.4375,356.0625 C -74.161498,356.0625 -73.937498,355.83144 -73.9375,355.5625 C -73.9375,355.29356 -74.161499,355.09376 -74.4375,355.09375 z" id="path5213"/>
    </g>
    <g id="g9497" clip-path="url(#clipPath9637)">
      <use height="900" width="1600" transform="translate(400)" id="use8340" xlink:href="#g7897" y="0" x="0" style="display: inline;"/>
      <g transform="translate(0, -600)" id="g8623">
        <path style="fill: url(#linearGradient8627) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" id="path3517-8" d="M 946.31776,648.64297 L 1039.4252,871.15784 L 1039.4252,694.80983 C 1039.4869,676.9408 1010.1767,648.94044 994.48823,648.83903 L 946.31776,648.64296 L 946.31776,648.64297 L 946.31776,648.64297 L 946.31776,648.64297 z" sodipodi:nodetypes="ccccccc"/>
        <path style="fill: url(#linearGradient8629) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" sodipodi:nodetypes="cccc" id="path3527-8" d="M 946.51733,649.16362 L 857.32498,871.10618 L 856.82606,649.16362 L 946.51845,649.16362 L 946.51733,649.16362 z"/>
      </g>
      <g style="filter: url(#filter9493);" transform="translate(0, -600)" id="g9139">
        <g id="g17155" transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 173.865)">
          <path sodipodi:type="arc" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" id="path17153" sodipodi:cx="942.76562" sodipodi:cy="50.078121" sodipodi:rx="0.671875" sodipodi:ry="0.671875" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 194.052)" id="use17159">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9131" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8365.73, 194.052)" id="use17161">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9123" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 214.052)" id="use17163">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9115" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8373.73, 214.052)" id="use17165">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9107" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 234.052)" id="use17167">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9099" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8381.73, 234.052)" id="use17169">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9091" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 254.052)" id="use17171">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9083" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8389.73, 254.052)" id="use17173">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9075" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 274.052)" id="use17175">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9067" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8397.73, 274.052)" id="use17177">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9059" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 294.052)" id="use17179">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9051" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8405.73, 294.052)" id="use17181">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9043" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 314.052)" id="use17183">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9035" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8413.73, 314.052)" id="use17185">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9027" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 334.052)" id="use17187">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9019" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8421.73, 334.052)" id="use17189">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9011" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 354.052)" id="use17191">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path9003" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8429.73, 354.052)" id="use17193">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8995" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 374.052)" id="use17195">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8987" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8437.73, 374.052)" id="use17197">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8979" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10260, 194.052)" id="use17201">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8971" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10268, 214.052)" id="use17203">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8963" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10276, 234.052)" id="use17205">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8955" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10284, 254.052)" id="use17207">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8947" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10292, 274.052)" id="use17209">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8939" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10300, 294.052)" id="use17211">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8931" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10308, 314.052)" id="use17213">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8923" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10316, 334.052)" id="use17215">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8915" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10324, 354.052)" id="use17217">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8907" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10332, 374.052)" id="use17219">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8899" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 184.052)" id="use14928">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8891" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 204.052)" id="use14930">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8883" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 224.052)" id="use14932">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8875" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 244.052)" id="use14934">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8867" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 264.052)" id="use14936">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8859" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 284.052)" id="use14938">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8851" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 304.052)" id="use14940">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8843" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 324.052)" id="use14942">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8835" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 344.052)" id="use14944">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8827" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 364.052)" id="use14946">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8819" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8355.73, 384.052)" id="use14948">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8811" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10328, 364.052)" id="use14950">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8803" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10256, 184.052)" id="use14952">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8795" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10264, 204.052)" id="use14954">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8787" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10272, 224.052)" id="use14956">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8779" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10280, 244.052)" id="use14958">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8771" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10288, 264.052)" id="use14960">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8763" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10296, 284.052)" id="use14962">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8755" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10304, 304.052)" id="use14964">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8747" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10312, 324.052)" id="use14966">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8739" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10320, 344.052)" id="use14968">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8731" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8361.73, 184.052)" id="use14970">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8723" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8369.73, 204.052)" id="use14972">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8715" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8377.73, 224.052)" id="use14974">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8707" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8385.73, 244.052)" id="use14976">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8699" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8393.73, 264.052)" id="use14978">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8691" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8401.73, 284.052)" id="use14980">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8683" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8409.73, 304.052)" id="use14982">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8675" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8417.73, 324.052)" id="use14984">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8667" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8425.73, 344.052)" id="use14986">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8659" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8433.73, 364.052)" id="use14988">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8651" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(-7.7899, 0, 0, 8.02321, 10336, 384.052)" id="use14998">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8643" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
        <g transform="matrix(7.7899, 0, 0, 8.02321, -8441.73, 384.052)" id="use15004">
          <path transform="matrix(0.496488, 0, 0, 0.472577, 726.148, 36.0042)" d="M 943.4375,50.078121 A 0.671875,0.671875 0 1 1 942.09375,50.078121 A 0.671875,0.671875 0 1 1 943.4375,50.078121 z" sodipodi:ry="0.671875" sodipodi:rx="0.671875" sodipodi:cy="50.078121" sodipodi:cx="942.76562" id="path8635" style="overflow: visible; marker: none; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; stroke-width: 0pt; visibility: visible; display: inline;" sodipodi:type="arc"/>
        </g>
      </g>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12840" id="use8342" transform="translate(400)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12376" id="use10586" transform="translate(400)" width="1600" height="900"/>
    <path transform="translate(800, 0.92652)" style="fill: url(#linearGradient17842) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" id="path3517-6" d="M 315.31163,128.07706 L 324.24796,151.93053 L 325.96971,151.87603 L 325.96971,136.04659 C 325.09997,132.3555 322.11114,129.7217 318.74998,128.1513 L 315.30904,128.0771 L 315.30879,128.0771 L 315.30879,128.0771 L 315.30879,128.0771 L 315.31179,128.0771 L 315.31163,128.07706 L 315.31163,128.07706 L 315.31163,128.07706 z" sodipodi:nodetypes="ccccccccccccc"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12880" id="use10594" transform="translate(400)" width="1600" height="900"/>
    <path transform="translate(800, 0.92652)" style="fill: url(#linearGradient17839) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" sodipodi:nodetypes="ccccc" id="path3527-5" d="M 315.556,127.93579 L 306.63332,151.991 L 305.8874,151.991 L 305.9531,127.87005 L 315.55596,127.93575 L 315.556,127.93579 z"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12526" id="use10605" transform="translate(400)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12672" id="use10607" transform="translate(400)" width="1600" height="900"/>
  </g>
  <g inkscape:label="text-x-script" style="display: none;" inkscape:groupmode="layer" id="g8396">
    <g inkscape:label="plate 3" style="display: inline;" inkscape:groupmode="layer" id="g8398">
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="32" x="1224" id="rect8400"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="50" x="1500" id="rect8402"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="125" x="1500" id="rect8404"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="176" x="1500" id="rect8406"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="177" x="1501" id="rect8408"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="220" x="1500" id="rect8410"/>
      <text y="20" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="1220" id="text8412">
        <tspan id="tspan8414">mimetypes</tspan>
      </text>
      <text y="20" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="1400" id="text8416">
        <tspan id="tspan8418">text-x-script</tspan>
      </text>
    </g>
  </g>
  <g inkscape:label="x-office-document" style="display: inline;" inkscape:groupmode="layer" id="g8420">
    <use style="display: inline;" x="0" y="0" xlink:href="#g8030" id="use10155" transform="translate(-400, 300)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8236" id="use10157" transform="translate(-400, 300)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8146" id="use10159" transform="translate(-400, 300)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8323" id="use10161" transform="translate(-400, 300)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g7897" id="use5278" transform="translate(-400, 300)" width="1600" height="900"/>
    <g inkscape:label="plate 4" style="display: none;" inkscape:groupmode="layer" id="g8422">
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="332" x="24" id="rect8424" inkscape:export-filename="/home/lapo/Dropbox/Icons/mango/test 64x64/x-office-document.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="350" x="300" id="rect8426"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="425" x="300" id="rect8428"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="476" x="300" id="rect8430"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="477" x="301" id="rect8432"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="520" x="300" id="rect8434"/>
      <text y="320" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="20" id="text8436">
        <tspan id="tspan8438">mimetypes</tspan>
      </text>
      <text y="320" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="160" id="text8440">
        <tspan id="tspan8442">x-office-document</tspan>
      </text>
    </g>
    <g id="g34995" transform="translate(3.00014, 25.5774)">
      <g inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" transform="translate(0, -26.6369)" id="g3757" style="display: inline;">
        <g transform="translate(296, 349.997)" id="g6121">
          <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6123" width="16.771515" height="0.9375" x="11.000001" y="9.0625" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.46875009" ry="0.46875"/>
          <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6127" width="25.00001" height="1.00291" x="11.000001" y="13" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.50145501" ry="0.50145501"/>
          <rect ry="0.49999982" rx="0.49999982" inkscape:r_cy="true" inkscape:r_cx="true" y="15.00291" x="11.00001" height="0.99999964" width="21" id="rect6129" style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
          <rect ry="0.46875" rx="0.46875009" inkscape:r_cy="true" inkscape:r_cx="true" y="17.0625" x="11.000001" height="0.9375" width="16.771515" id="rect6131" style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
          <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6133" width="27" height="0.9375" x="11.000001" y="35.0625" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.46875009" ry="0.46875"/>
          <rect ry="0.46875" rx="0.46875009" inkscape:r_cy="true" inkscape:r_cx="true" y="37.0625" x="11.000001" height="0.9375" width="27" id="rect6135" style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
          <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6137" width="9.999999" height="0.9375" x="11.000001" y="39.0625" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.46875009" ry="0.46875"/>
        </g>
        <g id="g6139" transform="matrix(0.30622, 0, 0, 1, 322.632, 347.997)" inkscape:r_cx="true" inkscape:r_cy="true">
          <rect ry="0.46875" rx="1.5307624" inkscape:r_cy="true" inkscape:r_cx="true" y="23.0625" x="11.000001" height="0.9375" width="26.125004" id="rect6141" style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
          <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6143" width="26.125004" height="0.9375" x="11.000001" y="25.0625" inkscape:r_cx="true" inkscape:r_cy="true" rx="1.5307624" ry="0.46875"/>
          <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6145" width="26.125004" height="0.9375" x="11.000001" y="27.0625" inkscape:r_cx="true" inkscape:r_cy="true" rx="1.5307624" ry="0.46875"/>
          <rect ry="0.46875" rx="1.5307624" inkscape:r_cy="true" inkscape:r_cx="true" y="29.0625" x="11.000001" height="0.9375" width="26.125004" id="rect6147" style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
          <rect ry="0.46875" rx="1.5307624" inkscape:r_cy="true" inkscape:r_cx="true" y="31.0625" x="11.000001" height="0.9375" width="26.125004" id="rect6149" style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
          <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6151" width="12.830279" height="0.9375" x="11.000001" y="33.0625" inkscape:r_cx="true" inkscape:r_cy="true" rx="1.5307624" ry="0.46875"/>
        </g>
        <g id="g6153" transform="matrix(0.487331, 0, 0, 0.500001, 253.892, 392.466)" inkscape:r_cx="true" inkscape:r_cy="true">
          <rect ry="0.8749994" rx="0.89774978" y="-42.938244" x="108.97698" height="24" width="35.027027" id="rect6155" style="fill: url(#linearGradient35202) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <path inkscape:r_cy="true" inkscape:r_cx="true" id="path6157" d="M 118.56077,-31.886469 C 113.39199,-31.558514 109.27952,-27.231281 109.27952,-21.980219 C 109.27952,-21.777434 109.29872,-21.586244 109.31082,-21.386469 L 129.06082,-21.386469 C 129.07282,-21.586244 129.09212,-21.777434 129.09212,-21.980219 C 129.09212,-27.44474 124.65039,-31.886469 119.18587,-31.886469 C 118.97241,-31.886469 118.77098,-31.899799 118.56087,-31.886469 L 118.56077,-31.886469 z" style="overflow: visible; marker: none; fill: url(#radialGradient35204) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
          <rect ry="0" rx="0" y="-21.438248" x="109.47698" height="2" width="34" id="rect6159" style="fill: url(#linearGradient35206) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" id="path6161" d="M 132.03256,-20.465974 C 132.03256,-20.465974 131.47698,-23.549329 131.47698,-25.438246 C 131.49238,-26.299945 139.26369,-33.012855 139.28374,-34.01277 L 137.47698,-32.438246 L 136.21182,-35.880188 L 140.47698,-35.438246 L 142.47698,-37.438246 L 140.21182,-35.775333 L 139.43279,-35.95211 L 138.47698,-39.438246 L 138.96312,-36.040498 L 135.43279,-36.217275 L 136.53764,-33.405314 L 133.47698,-36.438246 L 136.71442,-32.216782 C 136.7145,-31.275254 130.33354,-25.52758 130.3444,-26.518649 L 127.69795,-30.068227 L 127.47698,-34.866817 L 129.47698,-35.438246 L 131.22913,-39.758867 L 128.91941,-35.765552 L 127.11625,-35.847252 L 123.07986,-39.256261 L 117.53764,-41.377582 L 122.27247,-38.775329 L 118.47698,-38.438242 L 123.47698,-38.438242 L 126.47698,-35.438242 L 126.83053,-30.256261 L 121.47698,-35.438242 L 123.72828,-32.731135 L 120.47698,-30.438242 L 124.04841,-32.438242 L 129.69795,-25.322125 L 129.47698,-20.46597 L 132.03256,-20.46597 L 132.03256,-20.465974 z" style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none;" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <path style="overflow: visible; marker: none; fill: rgb(254, 243, 158); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;" d="M 118.84471,-27.204578 C 116.02417,-27.025617 113.78005,-24.664299 113.78005,-21.798859 C 113.78005,-21.688202 113.79055,-21.583872 113.79705,-21.474857 L 124.57438,-21.474857 C 124.58138,-21.583872 124.59148,-21.688202 124.59148,-21.798859 C 124.59148,-24.780781 122.16768,-27.204578 119.18576,-27.204578 C 119.06928,-27.204578 118.95936,-27.211878 118.8447,-27.204578 L 118.84471,-27.204578 z" id="path6163" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <path inkscape:r_cy="true" inkscape:r_cx="true" id="path6165" d="M 118.92566,-25.906273 C 116.77457,-25.769787 115.06309,-23.968924 115.06309,-21.783592 C 115.06309,-21.699202 115.07109,-21.619632 115.07609,-21.536492 L 123.29544,-21.536492 C 123.30044,-21.619632 123.30844,-21.6992 123.30844,-21.783592 C 123.30844,-24.057759 121.45993,-25.906273 119.18576,-25.906273 C 119.09696,-25.906273 119.0131,-25.911773 118.92565,-25.906273 L 118.92566,-25.906273 z" style="overflow: visible; marker: none; fill: rgb(255, 251, 215); fill-opacity: 0.556818; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
        </g>
        <rect ry="0.46875" rx="0.46875009" inkscape:r_cy="true" inkscape:r_cx="true" y="359.05957" x="307" height="0.9375" width="16.771515" id="rect6823" style="overflow: visible; marker: none; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
      </g>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12376" id="use10163" transform="translate(-400, 300)" width="1600" height="900"/>
    <g style="display: inline;" id="g4348" transform="translate(151, 238)" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
      <g transform="translate(190)" id="g6263">
        <g id="g6265" transform="translate(-80, 239)" style="opacity: 0.25;">
          <rect ry="0.5" rx="0.5" y="5" x="45" height="1" width="8" id="rect6267" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
          <rect ry="0.5" rx="0.5" y="7" x="45" height="1" width="5" id="rect6269" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
          <rect ry="0.5" rx="0.5" y="9" x="54.01561" height="1" width="2.9843886" id="rect6271" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
          <rect ry="0.5" rx="0.5" y="11" x="54.01561" height="1" width="2.9843886" id="rect6273" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
          <rect ry="0.5" rx="0.5" y="13" x="54.01561" height="1" width="2.9843886" id="rect6275" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
          <rect ry="0.5" rx="0.5" y="15" x="45" height="1" width="12" id="rect6277" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
          <rect ry="0.5" rx="0.5" y="17" x="45" height="1" width="9" id="rect6279" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
        </g>
        <g id="g6281" transform="translate(0, -20)">
          <rect ry="0.18369773" rx="0.20544986" y="267.9747" x="-34.998573" height="5.0385695" width="8.0159283" id="rect6283" style="fill: url(#linearGradient6367-9) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <path inkscape:r_cy="true" inkscape:r_cx="true" id="path6285" d="M -32.805323,269.79491 C -33.988198,269.86371 -34.929336,270.77222 -34.929336,271.87463 C -34.929336,271.91723 -34.924936,271.95733 -34.922136,271.99929 L -30.402353,271.99929 C -30.399553,271.95739 -30.395153,271.91719 -30.395153,271.87463 C -30.395153,270.72741 -31.411642,269.79491 -32.662196,269.79491 C -32.711046,269.79491 -32.757146,269.79191 -32.805227,269.79491 L -32.805323,269.79491 z" style="overflow: visible; marker: none; fill: url(#radialGradient6369-6) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
          <rect ry="0" rx="0" y="271.9884" x="-34.884148" height="0.91988081" width="7.7808933" id="rect6287" style="fill: url(#linearGradient6371-7) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" id="path6289" d="M -29.722307,272.69254 C -29.722307,272.69254 -29.849451,272.04521 -29.849451,271.64865 C -29.845951,271.46775 -28.067464,270.05844 -28.062876,269.84852 L -28.476353,270.17907 L -28.765884,269.45647 L -27.789803,269.54927 L -27.332104,269.12939 L -27.850485,269.4785 L -28.028766,269.4414 L -28.247503,268.70952 L -28.13625,269.42284 L -28.944165,269.38574 L -28.69132,269.97609 L -29.391752,269.33935 L -28.650864,270.22561 C -28.650846,270.42327 -30.111127,271.62994 -30.108642,271.42187 L -30.714282,270.67667 L -30.764852,269.66926 L -30.307152,269.54929 L -29.906173,268.64222 L -30.434752,269.48058 L -30.847405,269.46338 L -31.771132,268.74769 L -33.039468,268.30234 L -31.955903,268.84866 L -32.8245,268.91946 L -31.680251,268.91946 L -30.993701,269.54928 L -30.912791,270.63719 L -32.137949,269.54928 L -31.62274,270.11761 L -32.366799,270.59898 L -31.549478,270.1791 L -30.256582,271.67306 L -30.307152,272.69257 L -29.722308,272.69257 L -29.722307,272.69254 z" style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none;" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <path style="overflow: visible; marker: none; fill: rgb(254, 243, 158); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;" d="M -32.740344,270.77783 C -33.385824,270.81543 -33.89939,271.31114 -33.89939,271.91271 C -33.89939,271.93591 -33.89699,271.95781 -33.89549,271.98071 L -31.429101,271.98071 C -31.427601,271.95781 -31.425201,271.93591 -31.425201,271.91271 C -31.425201,271.28668 -31.979888,270.77783 -32.662299,270.77783 C -32.688959,270.77783 -32.714109,270.77583 -32.740349,270.77783 L -32.740344,270.77783 z" id="path6291" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <path inkscape:r_cy="true" inkscape:r_cx="true" id="path6293" d="M -32.721818,271.0504 C -33.214095,271.079 -33.605767,271.45712 -33.605767,271.91591 C -33.605767,271.93361 -33.603967,271.95031 -33.602767,271.96781 L -31.72177,271.96781 C -31.72067,271.95041 -31.71877,271.93361 -31.71877,271.91591 C -31.71877,271.43847 -32.141801,271.0504 -32.662244,271.0504 C -32.682574,271.0504 -32.701754,271.0494 -32.721774,271.0504 L -32.721818,271.0504 z" style="overflow: visible; marker: none; fill: rgb(255, 251, 215); fill-opacity: 0.556818; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
          <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" id="path6295" d="M -29.722307,272.69254 C -29.722307,272.69254 -29.849451,272.04521 -29.849451,271.64865 C -29.845951,271.46775 -28.067464,270.05844 -28.062876,269.84852 L -28.476353,270.17907 L -28.765884,269.45647 L -27.789803,269.54927 L -27.332104,269.12939 L -27.850485,269.4785 L -28.028766,269.4414 L -28.247503,268.70952 L -28.13625,269.42284 L -28.944165,269.38574 L -28.69132,269.97609 L -29.391752,269.33935 L -28.650864,270.22561 C -28.650846,270.42327 -30.111127,271.62994 -30.108642,271.42187 L -30.714282,270.67667 L -30.764852,269.66926 L -30.307152,269.54929 L -29.906173,268.64222 L -30.434752,269.48058 L -30.847405,269.46338 L -31.771132,268.74769 L -33.039468,268.30234 L -31.955903,268.84866 L -32.8245,268.91946 L -31.680251,268.91946 L -30.993701,269.54928 L -30.912791,270.63719 L -32.137949,269.54928 L -31.62274,270.11761 L -32.366799,270.59898 L -31.549478,270.1791 L -30.256582,271.67306 L -30.307152,272.69257 L -29.722308,272.69257 L -29.722307,272.69254 z" style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" inkscape:r_cx="true" inkscape:r_cy="true"/>
        </g>
      </g>
      <rect style="opacity: 0.2; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" id="rect6827" width="8" height="1" x="45" y="5" rx="0.5" ry="0.5" transform="translate(110, 239)"/>
    </g>
    <g style="display: inline;" id="g6896" transform="translate(-33.0277, -1.02084)" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
      <g id="g6207" transform="translate(423, 146)">
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6209" width="10.027728" height="1" x="-82.000008" y="286.02084" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.5"/>
        <g inkscape:r_cy="true" inkscape:r_cx="true" transform="matrix(0.314043, 0, 0, 0.331887, -116.224, 306.323)" id="g6211">
          <rect inkscape:r_cy="true" inkscape:r_cx="true" style="fill: url(#linearGradient6916-96) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" id="rect6213" width="35.027027" height="24" x="108.97698" y="-42.938244" rx="0.89774978" ry="0.8749994"/>
          <path style="overflow: visible; marker: none; fill: url(#radialGradient6918-8) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;" d="M 118.56077,-31.886469 C 113.39199,-31.558514 109.27952,-27.231281 109.27952,-21.980219 C 109.27952,-21.777434 109.29872,-21.586244 109.31082,-21.386469 L 129.06082,-21.386469 C 129.07282,-21.586244 129.09212,-21.777434 129.09212,-21.980219 C 129.09212,-27.44474 124.65039,-31.886469 119.18587,-31.886469 C 118.97241,-31.886469 118.77098,-31.899799 118.56087,-31.886469 L 118.56077,-31.886469 z" id="path6215" inkscape:r_cx="true" inkscape:r_cy="true"/>
          <rect inkscape:r_cy="true" inkscape:r_cx="true" style="fill: url(#linearGradient34968) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" id="rect6217" width="34" height="2" x="109.47698" y="-21.438248" rx="0" ry="0"/>
          <path inkscape:r_cy="true" inkscape:r_cx="true" style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none;" d="M 132.03256,-20.465974 C 132.03256,-20.465974 131.47698,-23.549329 131.47698,-25.438246 C 131.49238,-26.299945 139.26369,-33.012855 139.28374,-34.01277 L 137.47698,-32.438246 L 136.21182,-35.880188 L 140.47698,-35.438246 L 142.47698,-37.438246 L 140.21182,-35.775333 L 139.43279,-35.95211 L 138.47698,-39.438246 L 138.96312,-36.040498 L 135.43279,-36.217275 L 136.53764,-33.405314 L 133.47698,-36.438246 L 136.71442,-32.216782 C 136.7145,-31.275254 130.33354,-25.52758 130.3444,-26.518649 L 127.69795,-30.068227 L 127.47698,-34.866817 L 129.47698,-35.438246 L 131.22913,-39.758867 L 128.91941,-35.765552 L 127.11625,-35.847252 L 123.07986,-39.256261 L 117.53764,-41.377582 L 122.27247,-38.775329 L 118.47698,-38.438242 L 123.47698,-38.438242 L 126.47698,-35.438242 L 126.83053,-30.256261 L 121.47698,-35.438242 L 123.72828,-32.731135 L 120.47698,-30.438242 L 124.04841,-32.438242 L 129.69795,-25.322125 L 129.47698,-20.46597 L 132.03256,-20.46597 L 132.03256,-20.465974 z" id="path6219" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"/>
          <path inkscape:r_cy="true" inkscape:r_cx="true" id="path6221" d="M 118.84471,-27.204578 C 116.02417,-27.025617 113.78005,-24.664299 113.78005,-21.798859 C 113.78005,-21.688202 113.79055,-21.583872 113.79705,-21.474857 L 124.57438,-21.474857 C 124.58138,-21.583872 124.59148,-21.688202 124.59148,-21.798859 C 124.59148,-24.780781 122.16768,-27.204578 119.18576,-27.204578 C 119.06928,-27.204578 118.95936,-27.211878 118.8447,-27.204578 L 118.84471,-27.204578 z" style="overflow: visible; marker: none; fill: rgb(254, 243, 158); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;"/>
          <path style="overflow: visible; marker: none; fill: rgb(255, 251, 215); fill-opacity: 0.556818; fill-rule: evenodd; stroke: none; stroke-width: 1; visibility: visible; display: inline;" d="M 118.92566,-25.906273 C 116.77457,-25.769787 115.06309,-23.968924 115.06309,-21.783592 C 115.06309,-21.699202 115.07109,-21.619632 115.07609,-21.536492 L 123.29544,-21.536492 C 123.30044,-21.619632 123.30844,-21.6992 123.30844,-21.783592 C 123.30844,-24.057759 121.45993,-25.906273 119.18576,-25.906273 C 119.09696,-25.906273 119.0131,-25.911773 118.92565,-25.906273 L 118.92566,-25.906273 z" id="path6223" inkscape:r_cx="true" inkscape:r_cy="true"/>
        </g>
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6227" width="6" height="1" x="-82" y="289" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.48957825"/>
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6229" width="4.0277281" height="1" x="-70.000008" y="293.02084" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.5"/>
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6231" width="4.0277281" height="1" x="-70.000008" y="295.02084" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.5"/>
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6233" width="4.0277281" height="1" x="-70.000008" y="297.02084" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.5"/>
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6235" width="4.0277281" height="1" x="-70.000008" y="299.02084" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.5"/>
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6237" width="16.027729" height="1" x="-82.000008" y="301.02084" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.5"/>
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6239" width="9" height="1" x="-82.000008" y="305.02084" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.5"/>
        <rect style="overflow: visible; marker: none; opacity: 0.510989; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect6241" width="16.027729" height="1" x="-82.000008" y="303.02084" inkscape:r_cx="true" inkscape:r_cy="true" rx="0.5" ry="0.5"/>
      </g>
      <rect ry="0.5" rx="0.5" inkscape:r_cy="true" inkscape:r_cx="true" y="432.02084" x="341" height="1" width="10.027728" id="rect6825" style="overflow: visible; marker: none; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12880" id="use10165" transform="translate(-400, 300)" width="1600" height="900"/>
    <g style="display: inline;" id="g8431" transform="translate(-23, 0.990051)" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
      <g transform="translate(323, 279.01)" style="opacity: 0.25;" id="g6315">
        <rect y="243" x="4" height="1" width="4" id="rect6317" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
        <rect y="245" x="4" height="1" width="4" id="rect6319" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
        <rect y="248" x="4" height="1" width="7" id="rect6321" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
        <rect y="250" x="9" height="1" width="2" id="rect6323" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
        <rect y="252" x="9" height="1" width="2" id="rect6325" style="fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      </g>
      <rect ry="0" rx="0" y="529.50995" x="327.5" height="2" width="3" id="rect6327" style="fill: url(#linearGradient8441-9) rgb(0, 0, 0); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; display: inline;" inkscape:r_cx="true" inkscape:r_cy="true"/>
      <rect style="opacity: 0.2; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" id="rect6829" width="4" height="1" x="327" y="522.00995"/>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12526" id="use10167" transform="translate(-400, 300)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12672" id="use10169" transform="translate(-400, 300)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g10-paper-sheet-orig" id="use3558" transform="translate(0, 314.363)" width="800" height="900" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g28-paper-sheet-orig" id="use3753" transform="translate(0, 314.363)" width="800" height="900" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g16-paper-sheet-orig" id="use3767" transform="translate(0, 314.363)" width="800" height="900" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
    <g id="g34970" transform="translate(-8, 29.625)">
      <rect ry="2" rx="2" y="510.36316" x="84" height="4" width="56" id="rect3805" style="opacity: 0.02; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <rect ry="1.375" rx="1.375" y="393.36313" x="83" height="66" width="94" id="rect4895" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: none; display: inline;" inkscape:r_cx="true" inkscape:r_cy="true"/>
      <rect style="overflow: visible; marker: none; opacity: 0.342342; fill: rgb(141, 141, 141); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;" id="rect3783" width="94.792824" height="3.6694095" x="84" y="338.69373" inkscape:r_cx="true" inkscape:r_cy="true" rx="2.4572313" ry="1.8347048"/>
      <path sodipodi:nodetypes="csccscccsccscccsccscccsccscccsccscccsccscccsccscccsccscccsccscccsccscccsccscccsccscc" id="rect3785" d="M 86.65625,358.36314 C 85.19287,358.36314 84,359.25514 84,360.36314 C 84,361.47114 85.19287,362.36314 86.65625,362.36314 L 209.34375,362.36314 C 210.80713,362.36314 211.96875,361.47114 211.96875,360.36314 C 211.96875,359.25514 210.80713,358.36314 209.34375,358.36314 L 86.65625,358.36314 z M 86.65625,370.36314 C 85.17892,370.36314 84,371.25514 84,372.36314 C 84,373.47114 85.17892,374.36314 86.65625,374.36314 L 219.5,374.36314 C 220.97733,374.36314 222.15625,373.47114 222.15625,372.36314 C 222.15625,371.25514 220.97734,370.36314 219.5,370.36314 L 86.65625,370.36314 z M 86.46875,382.36314 C 85.10617,382.36314 84,383.25514 84,384.36314 C 84,385.47114 85.10617,386.36314 86.46875,386.36314 L 201.53125,386.36314 C 202.89383,386.36314 204.00001,385.47114 204,384.36314 C 204,383.25514 202.89383,382.36314 201.53125,382.36314 L 86.46875,382.36314 z M 186.34375,394.36314 C 185.04531,394.36314 184,395.25514 184,396.36314 C 184,397.47114 185.04531,398.36314 186.34375,398.36314 L 221.65625,398.36314 C 222.95469,398.36314 224,397.47114 224,396.36314 C 224,395.25514 222.95469,394.36314 221.65625,394.36314 L 186.34375,394.36314 z M 186.34375,406.36314 C 185.04531,406.36314 184,407.25514 184,408.36314 C 184,409.47114 185.04531,410.36314 186.34375,410.36314 L 221.65625,410.36314 C 222.95469,410.36314 224,409.47114 224,408.36314 C 224,407.25514 222.95469,406.36314 221.65625,406.36314 L 186.34375,406.36314 z M 186.34375,418.36314 C 185.04531,418.36314 184,419.25514 184,420.36314 C 184,421.47114 185.04531,422.36314 186.34375,422.36314 L 221.65625,422.36314 C 222.95469,422.36314 224,421.47114 224,420.36314 C 224,419.25514 222.95469,418.36314 221.65625,418.36314 L 186.34375,418.36314 z M 186.34375,430.36314 C 185.04531,430.36314 184,431.25514 184,432.36314 C 184,433.47114 185.04531,434.36314 186.34375,434.36314 L 221.65625,434.36314 C 222.95469,434.36314 224,433.47114 224,432.36314 C 224,431.25514 222.95469,430.36314 221.65625,430.36314 L 186.34375,430.36314 z M 186.34375,442.36314 C 185.04531,442.36314 184,443.25514 184,444.36314 C 184,445.47114 185.04531,446.36314 186.34375,446.36314 L 208.75,446.36314 C 210.04844,446.36314 211.09374,445.47114 211.09375,444.36314 C 211.09375,443.25514 210.04843,442.36314 208.75,442.36314 L 186.34375,442.36314 z M 186.37505,454.36314 C 185.05311,454.36314 184.00005,455.25514 184.00005,456.36314 C 184.00005,457.47114 185.05311,458.36314 186.37505,458.36314 L 209.93755,458.36314 C 211.25949,458.36314 212.31255,457.47114 212.31255,456.36314 C 212.31255,455.25514 211.25949,454.36314 209.93755,454.36314 L 186.37505,454.36314 z M 86.4375,470.36314 C 85.09097,470.36314 84,471.25514 84,472.36314 C 84,473.47114 85.09097,474.36314 86.4375,474.36314 L 221.5625,474.36314 C 222.90903,474.36314 224,473.47114 224,472.36314 C 224,471.25514 222.90903,470.36314 221.5625,470.36314 L 86.4375,470.36314 L 86.4375,470.36314 z M 86.4375,482.36314 C 85.09097,482.36314 84,483.25514 84,484.36314 C 84,485.47114 85.09097,486.36314 86.4375,486.36314 L 221.5625,486.36314 C 222.90903,486.36314 224,485.47114 224,484.36314 C 224,483.25514 222.90903,482.36314 221.5625,482.36314 L 86.4375,482.36314 L 86.4375,482.36314 z M 86.4375,494.36314 C 85.08713,494.36314 84,495.25514 84,496.36314 C 84,497.47114 85.08713,498.36314 86.4375,498.36314 L 121.8125,498.36314 C 123.16288,498.36314 124.25,497.47114 124.25,496.36314 C 124.25,495.25514 123.16287,494.36314 121.8125,494.36314 L 86.4375,494.36314 z" style="overflow: visible; marker: none; opacity: 0.07; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; visibility: visible; display: inline;"/>
      <rect ry="0" rx="0" y="394.36313" x="84" height="64" width="92" id="rect3813" style="fill: url(#linearGradient35208) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" inkscape:r_cx="true" inkscape:r_cy="true"/>
      <g transform="translate(0, -32.6369)" clip-path="url(#clipPath4719-3)" id="g4713" style="display: inline;">
        <path transform="matrix(1.71312, 0, 0, 1.37852, -77.8045, -183.178)" d="M 124.80435,483.02795 A 14.009553,14.009553 0 1 1 96.785239,483.02795 A 14.009553,14.009553 0 1 1 124.80435,483.02795 z" sodipodi:ry="14.009553" sodipodi:rx="14.009553" sodipodi:cy="483.02795" sodipodi:cx="110.79479" id="path4639" style="fill: rgb(254, 243, 158); fill-opacity: 1; stroke: none; display: inline; filter: url(#filter4709-1);" sodipodi:type="arc"/>
        <g id="g4629">
          <path transform="matrix(1.14208, 0, 0, 1.14208, -14.5363, -68.6555)" d="M 124.80435,483.02795 A 14.009553,14.009553 0 1 1 96.785239,483.02795 A 14.009553,14.009553 0 1 1 124.80435,483.02795 z" sodipodi:ry="14.009553" sodipodi:rx="14.009553" sodipodi:cy="483.02795" sodipodi:cx="110.79479" id="path4565" style="fill: rgb(254, 243, 158); fill-opacity: 1; stroke: none;" sodipodi:type="arc"/>
          <path transform="matrix(0.994857, 0, 0, 0.994857, 1.775, 2.45615)" d="M 124.80435,483.02795 A 14.009553,14.009553 0 1 1 96.785239,483.02795 A 14.009553,14.009553 0 1 1 124.80435,483.02795 z" sodipodi:ry="14.009553" sodipodi:rx="14.009553" sodipodi:cy="483.02795" sodipodi:cx="110.79479" id="path4587" style="fill: rgb(255, 251, 215); fill-opacity: 1; stroke: none; display: inline; filter: url(#filter4608-6);" sodipodi:type="arc"/>
        </g>
      </g>
      <path id="path4416" d="M 112,441.30064 C 106.9975,441.30064 102.9375,445.36064 102.9375,450.36314 C 102.9375,450.65498 102.9415,450.95334 102.9688,451.23814 L 121.0313,451.23814 C 121.0583,450.95334 121.0626,450.65498 121.0626,450.36314 C 121.0626,445.36064 117.0026,441.30063 112.0001,441.30064 L 112,441.30064 z" style="fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline; filter: url(#filter4616-8);"/>
      <path sodipodi:nodetypes="cccccc" id="rect3817" d="M 84,451.48814 C 106.49807,448.07662 124.875,451.32147 144.875,451.36314 L 176,449.61314 L 176,458.36313 L 84,458.36313 L 84,451.48814 z" style="fill: url(#linearGradient35210) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <path id="path4732" d="M 109.40625,399.14439 C 114.35836,402.30064 119.50398,401.50443 123.21875,405.42564 C 123.42728,405.64576 123.63418,405.83899 123.84375,406.05064 C 122.93148,406.06384 120.48202,405.40593 118.03125,405.83189 C 115.99126,406.18644 114.0052,405.27756 111.59375,406.86314 C 114.40235,405.68618 116.65247,406.44657 118.90625,406.14439 C 120.66327,405.90881 123.76577,406.75013 125.75,407.89439 C 128.94912,410.81443 131.81811,412.89781 132.40625,414.92564 C 133.15781,417.51689 133.33687,425.10267 133.375,428.23814 C 133.03523,427.96412 132.71438,427.67364 132.40625,427.36314 C 131.71719,426.64993 131.05859,425.88535 130.25,425.30064 C 129.47302,424.73721 128.66733,424.2196 128.03125,423.48814 C 127.36639,422.59124 126.58416,421.79108 125.84375,420.95689 C 125.13783,420.23451 124.38729,419.56018 123.71875,418.80064 C 123.10321,418.04323 122.38261,417.37745 121.53125,416.89439 C 120.75544,416.42167 119.94845,415.89112 119,415.92564 C 118.52549,415.84654 118.04113,415.73437 117.6875,415.39439 C 117.08981,414.95264 116.36318,414.68102 115.625,414.61314 L 115.75,414.67564 C 116.6609,414.92045 117.43179,415.49714 118.15625,416.08189 C 118.98089,416.49287 120.02647,416.42304 120.6875,417.14439 C 121.39206,417.88847 122.44815,418.28796 122.96875,419.20689 C 123.17817,419.55712 123.41849,419.87147 123.6875,420.17564 C 122.98419,420.4546 122.30842,421.43765 121.8125,421.76939 C 120.51443,422.63775 117.20331,419.02187 114.3125,419.36314 C 116.39794,419.31624 120.06767,421.87157 120.78125,422.08189 C 121.33961,422.24648 119.11486,424.18546 117.40625,425.11314 C 118.92369,424.68176 121.38352,422.59591 121.84375,422.48814 C 122.42146,422.35287 123.00588,420.54088 124.28125,420.80064 C 124.54812,421.08296 124.82109,421.37319 125.0625,421.67564 C 125.75553,422.45596 126.44827,423.21593 127.03125,424.08189 C 127.88287,425.14366 128.98599,425.95976 129.90625,426.95689 C 130.65335,427.73719 131.30131,428.60264 132,429.42564 C 132.93323,430.55051 133.87928,431.67577 134.8125,432.80064 C 135.23394,433.67331 135.84424,434.411 136.46875,435.14439 C 137.13438,435.90438 137.77832,436.7022 138.28125,437.58189 C 138.88034,438.47327 139.39475,439.4233 139.78125,440.42564 C 140.08952,441.37392 140.2652,442.34709 140.40625,443.33189 C 140.59676,444.36891 140.75497,445.43099 140.65625,446.48814 C 140.51047,448.05964 140.34974,449.63433 140.21875,451.20689 C 140.19705,451.99119 140.0974,452.82824 140.46875,453.55064 C 141.3545,454.11129 142.41276,454.24239 143.4375,454.30064 C 144.30341,454.27704 145.16398,454.07603 145.90625,453.61314 C 146.22529,453.45083 146.54017,453.11836 146.375,452.73814 C 146.18833,451.72069 145.97205,450.70672 145.875,449.67564 C 145.7406,448.52293 145.61526,447.36462 145.53125,446.20689 C 145.43225,445.1118 145.38278,444.02432 145.34375,442.92564 C 145.37595,441.92366 145.42045,440.88973 145.71875,439.92564 C 146.04346,438.98341 146.37069,437.74217 146.96875,436.95689 C 147.81959,435.91408 149.08495,435.44065 150.0625,434.51939 C 150.88665,433.80201 151.75113,433.12957 152.53125,432.36314 C 153.29014,431.65011 154.16481,430.19215 154.84375,429.39439 C 155.60615,428.58793 156.33367,428.49585 157.0625,427.76939 C 157.25219,427.63966 157.45016,427.51153 157.65625,427.39439 C 158.1854,427.12647 158.69732,426.81847 159.375,426.76939 C 160.07529,426.80909 160.76899,426.57931 161.46875,426.67569 C 162.16882,426.73159 162.49808,427.40465 163.25,427.33194 C 163.91535,427.20873 164.60216,427.21173 165.28125,427.26944 C 165.06584,427.18594 164.83521,427.11499 164.59375,427.08194 C 164.10394,426.99154 163.61007,427.15774 163.125,427.11324 C 162.49293,427.05924 162.2941,426.55685 161.75,426.39449 C 161.08758,426.27861 160.39056,426.49577 159.71875,426.45699 C 159.18055,426.38329 158.66347,426.50249 158.125,426.48829 C 158.88909,425.36499 159.56823,424.04105 160.375,423.11329 C 161.7148,421.86857 163.36196,420.63107 164.40625,420.14454 C 165.79814,419.49605 166.79084,420.30273 168.625,419.39454 C 166.58522,420.2552 165.34448,419.11728 162.9375,420.51954 C 161.61116,421.28196 160.72504,421.7061 159.96875,422.23829 C 158.38064,420.89323 159.26424,416.17663 157.875,413.45704 C 157.9577,413.36124 158,413.24972 158,413.11329 C 159.54418,412.45501 161.85538,412.4875 163.34375,412.76954 C 165.15316,413.11239 164.48657,413.46675 165.40625,413.51954 C 166.21455,413.56594 167.61963,414.35304 168.75,414.80079 C 169.97261,415.28507 170.28834,414.77969 172.59375,416.01954 C 170.93851,414.89903 169.24462,414.88731 169,414.61329 C 169.7457,412.18385 172.79609,411.72593 174.0625,409.42579 C 172.29815,412.01848 170.00951,411.76564 168.78125,414.51954 C 167.55471,414.17547 166.33864,413.62656 165.71875,413.23829 C 167.21668,411.36349 164.03224,406.04865 163.9375,404.23829 C 163.82691,406.65138 166.76825,410.08534 165.1875,413.05079 C 162.01969,411.79212 159.43726,412.26193 157.75,412.64454 C 157.6872,412.60204 157.60897,412.56414 157.53125,412.55084 C 156.14638,410.50971 156.57841,409.00518 155.03125,406.76959 C 155.89106,408.80476 156.062,410.98413 156.90625,412.73834 C 156.92635,412.78024 156.94935,412.82104 156.96875,412.86334 C 156.93025,412.93824 156.90625,413.02336 156.90625,413.11334 C 156.90625,413.33975 157.05374,413.53028 157.25,413.61334 C 158.17516,416.33411 157.83242,419.7457 158.0625,422.26959 C 155.72301,418.43036 152.90632,418.36732 151.28125,412.01959 C 152.63031,419.78901 158.70949,420.48327 157.15625,425.36334 C 155.96704,426.60259 154.03903,428.69931 153.125,429.61334 C 152.36215,430.29202 151.52919,430.88169 150.6875,431.45709 C 149.81107,432.11098 149.89061,432.59028 148.96875,433.17584 C 148.28142,433.63847 146.72067,434.13772 146.125,434.61334 C 145.34586,435.23545 144.91464,436.08306 144.25,436.92584 C 143.89583,437.40501 143.01042,437.54042 142.6875,438.17584 C 142.35856,436.84345 141.40128,434.36701 139.59375,433.33209 C 138.70034,432.82055 137.6989,431.89339 136.96875,431.11334 C 136.80631,430.94348 136.64739,430.79606 136.46875,430.64459 C 135.22725,427.64392 135.09367,423.93553 134.8125,420.58209 C 134.9095,420.48989 134.98679,420.39133 135.09375,420.30084 C 135.63043,419.89585 136.12516,419.44152 137.03125,419.17584 C 138.03486,418.97911 138.67377,419.51119 139.71875,419.36334 C 140.73409,419.18062 141.5708,418.29881 142.5625,417.98834 C 143.39629,417.66296 144.63748,417.85011 145.625,417.67584 C 144.47692,417.73184 143.35991,417.52785 142.25,417.86334 C 141.33064,418.02527 140.78388,418.97989 139.90625,419.01959 C 138.89865,419.13829 138.27577,418.61271 137.3125,418.80084 C 136.50907,418.91485 135.85335,419.19809 135.09375,419.36334 C 134.99775,419.30224 134.68085,419.41294 134.6875,419.30084 C 134.6259,418.73507 134.55937,418.17339 134.46875,417.64459 C 134.40875,413.74787 138.74221,415.07444 139.625,414.39459 C 140.20633,413.94691 143.47953,411.34514 146.375,410.73834 C 142.93983,411.35798 139.47572,413.97439 139.8125,413.14459 C 140.24289,412.08416 140.57285,405.22658 142.65625,402.76959 C 139.42367,405.90737 140.71881,413.36717 138.375,414.08209 C 137.22567,414.43267 134.42684,414.07149 133.9375,415.45709 C 133.83261,415.15824 133.72546,414.88451 133.59375,414.61334 C 132.74532,412.86659 130.38568,410.94436 127.875,408.76959 C 127.62781,407.54628 129.58358,407.15606 129.78125,406.64459 C 129.93421,406.24882 132.20287,404.25576 132.78125,402.95709 C 131.69946,404.38331 129.60214,406.18007 129.5,405.67584 C 129.36947,405.03144 127.26817,401.59887 127.53125,399.76959 C 126.89752,402.2828 130.0437,405.48064 129.0625,406.55084 C 128.65818,406.99184 127.49423,407.55151 127.25,408.20709 C 126.03685,407.14133 124.83072,406.0267 123.71875,404.80084 C 120.4677,401.21679 117.97325,402.7691 109.40625,399.14459 L 109.40625,399.14439 z" style="fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;"/>
      <path id="path3791" d="M 142.90625,452.23814 C 141.91329,452.28614 140.92372,452.40106 140.34375,452.86314 C 140.36645,453.45852 140.92552,454.15425 141.375,454.80064 C 142.28296,455.99087 143.20177,457.17334 144.125,458.36314 L 149.09375,458.36314 C 148.66653,457.59744 148.27168,456.81303 147.875,456.05064 C 147.40968,455.20085 147.05576,454.35796 146.6875,453.51939 C 146.6453,453.20602 146.15757,452.9344 145.75,452.80064 C 144.75526,452.41914 143.78502,452.25758 142.90625,452.23814 z" style="opacity: 0.797297; fill: url(#linearGradient35212) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;"/>
      <path id="text4780" d="M 84,337.96205 C 86.25923,337.96227 84.15567,342.78964 86.95666,341.58663 C 84.14984,344.5025 83.27443,340.04665 84,337.96205 z M 89.33496,339.72572 C 86.10637,342.09209 92.41696,341.93266 89.33496,339.72572 z M 89.33496,338.97572 C 93.90553,339.34556 87.4041,345.23033 87.50674,340.57243 C 87.55884,339.67459 88.40764,338.84512 89.33496,338.97572 z M 94.33594,339.94838 C 92.52807,339.75535 92.22811,344.28996 91.69877,340.24199 C 91.67537,338.96243 94.72895,338.18861 94.33594,339.94838 z M 98.13867,340.68666 C 96.70893,340.56624 95.60909,341.60649 97.58077,342.03682 C 93.98389,344.60274 93.72876,337.06541 97.53967,339.32173 C 97.96126,339.62635 98.22034,340.16407 98.13871,340.68666 L 98.13867,340.68666 z M 97.06055,340.33802 C 96.28717,338.45072 94.93975,341.32759 97.06055,340.33802 z M 101.9707,339.59974 C 104.39671,336.43928 104.44006,344.95604 103.04707,340.66491 C 102.47318,339.04729 101.24165,344.24722 100.99459,341.20878 C 100.53869,338.07993 99.32197,344.40014 98.90753,341.07108 C 97.74751,339.18788 101.05708,338.24528 101.9707,339.59974 L 101.9707,339.59974 z M 107.27344,339.05482 C 110.24273,338.98352 106.6653,344.49974 107.27344,340.37958 L 107.27344,339.71719 L 107.27344,339.05482 L 107.27344,339.05482 z M 107.27344,337.77748 C 109.46768,336.94881 107.01197,340.0668 107.27344,337.77748 z M 110.38477,341.86146 C 109.90281,345.99445 107.34275,337.98952 110.9244,339.14149 C 114.12868,339.5216 112.7119,343.83841 110.38477,341.86146 z M 111.08203,339.73744 C 107.92945,342.07374 114.09903,341.91426 111.08203,339.73744 z M 116.2002,339.15736 C 114.98835,340.33719 114.6084,340.00468 116.2733,341.0221 C 116.7415,343.13029 111.32759,342.14953 114.88972,341.33798 C 112.11521,339.79648 113.84024,338.48348 116.20024,339.15736 L 116.2002,339.15736 z M 117.17578,341.05873 C 116.58092,338.84992 118.66338,339.56086 118.71294,341.25566 C 119.38372,339.34169 120.9098,338.57612 120.71272,341.24866 C 120.29298,342.84099 117.38492,342.75404 117.17578,341.05851 L 117.17578,341.05873 z M 124.5293,339.59974 C 126.95531,336.4393 126.99867,344.95604 125.60566,340.66493 C 125.03178,339.04728 123.80024,344.24722 123.55319,341.20877 C 123.09728,338.07992 121.88055,344.40014 121.46612,341.07107 C 120.3061,339.18787 123.61569,338.2453 124.5293,339.59974 L 124.5293,339.59974 z M 132.06445,339.53524 C 132.66774,335.41296 135.08068,343.8175 131.3058,342.34467 C 128.63561,342.26867 129.55762,337.38602 132.06445,339.53524 z M 131.37305,341.65926 C 134.50603,339.32248 128.36798,339.48528 131.37305,341.65926 z M 135.69434,339.72567 C 132.46573,342.09204 138.77635,341.93262 135.69434,339.72567 z M 135.69434,338.97567 C 140.2649,339.34551 133.76348,345.23027 133.86612,340.57238 C 133.91822,339.67454 134.76703,338.84507 135.69434,338.97567 z M 138.25781,337.77743 C 141.24945,337.81233 138.20481,344.71674 138.25781,340.23512 C 138.25781,339.41589 138.25781,338.59666 138.25781,337.77743 z M 141.88184,339.72567 C 138.65323,342.09204 144.96385,341.93262 141.88184,339.72567 z M 141.88184,338.97567 C 146.4524,339.34551 139.95098,345.23027 140.05362,340.57238 C 140.10572,339.67454 140.95453,338.84507 141.88184,338.97567 z M 146.88281,339.94833 C 145.07495,339.7553 144.77498,344.28991 144.24564,340.24194 C 144.22224,338.96238 147.27582,338.18856 146.88281,339.94833 z M 152.05957,339.15731 C 150.8477,340.33714 150.46779,340.00463 152.13267,341.02205 C 152.60087,343.13024 147.18697,342.14949 150.74908,341.33793 C 147.97457,339.79644 149.6996,338.48343 152.0596,339.15731 L 152.05957,339.15731 z M 153.07031,339.05477 C 156.03959,338.98357 152.46217,344.49968 153.07031,340.37953 L 153.07031,339.71714 L 153.07031,339.05477 L 153.07031,339.05477 z M 153.07031,337.77743 C 155.26455,336.94877 152.80881,340.06675 153.07031,337.77743 z M 156.27832,338.12313 C 157.48994,339.37397 156.6547,339.97322 156.60536,340.67984 C 157.64658,345.90398 152.49625,337.65374 156.27832,338.12313 z M 161.56055,340.85946 C 159.51957,341.46736 163.01148,341.65873 161.56055,340.85946 z M 163.16309,340.46395 C 164.23493,343.85587 157.50618,341.51337 161.5179,339.96912 C 158.31788,339.21228 163.09856,338.19425 163.25206,340.05432 L 163.16306,340.46395 L 163.16306,340.46395 L 163.16309,340.46395 z M 167.18555,339.59969 C 169.61157,336.43926 169.6549,344.956 168.26191,340.66486 C 167.68802,339.04722 166.4565,344.24717 166.20944,341.20873 C 165.75353,338.07988 164.5368,344.40009 164.12237,341.07102 C 162.96234,339.18782 166.27194,338.24525 167.18555,339.59969 L 167.18555,339.59969 z M 173.67773,340.68661 C 172.24799,340.56619 171.14815,341.60643 173.11983,342.03677 C 169.52296,344.60269 169.26782,337.06536 173.07873,339.32168 C 173.50032,339.62631 173.75939,340.16403 173.67777,340.68661 L 173.67773,340.68661 z M 172.59961,340.33797 C 171.82623,338.45067 170.47881,341.32754 172.59961,340.33797 z M 175.61426,338.12313 C 176.82588,339.37397 175.99062,339.97322 175.9413,340.67983 C 176.98254,345.90398 171.83219,337.65375 175.61426,338.12313 z M 177.44824,341.20223 C 180.13731,340.73243 176.91182,344.0208 177.44824,341.20223 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; fill: rgb(85, 87, 83); fill-opacity: 1; stroke: none; display: inline; font-family: Impact;"/>
      <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccsccccccccccccsccccccccccscccccccccccccccccccccsccccccccccccccccccccccccccsccccccccsccccscccccsccccccccccsccccsccccccccccccsccsccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccscccccsccccccccccccccccccccccccccccccscccccccccscccccsccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccsccsccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" id="flowRoot4793" d="M 99.53125,357.95689 C 99.16942,359.78307 101.09165,357.70765 99.53125,357.95689 z M 109.90625,357.95689 L 109.96875,359.11314 C 109.23402,364.97135 111.76102,360.55769 109.90625,357.95689 z M 111.5625,357.95689 C 111.20068,359.78307 113.1229,357.70765 111.5625,357.95689 z M 157.71875,357.95689 L 157.78125,359.11314 C 157.04652,364.97135 159.57352,360.55769 157.71875,357.95689 z M 166.375,357.95689 C 166.01317,359.78307 167.9354,357.70765 166.375,357.95689 z M 171.84375,357.95689 C 171.48193,359.78307 173.40415,357.70765 171.84375,357.95689 z M 180.75,357.95689 L 179.53125,358.23814 L 179,358.86314 C 179.3167,364.94424 179.51347,360.01347 180.75,357.95689 z M 192.5,357.95689 C 192.13818,359.78307 194.06039,357.70765 192.5,357.95689 z M 204.03125,357.95689 L 204.09375,359.11314 C 203.35902,364.97135 205.88602,360.55769 204.03125,357.95689 z M 84.40625,358.14439 C 84.0637,361.24671 85.11088,364.77592 85,359.51939 C 85.40295,360.71109 87.07759,362.74754 87.875,359.30064 C 87.01679,365.58471 89.91521,359.37104 87.7813,358.30064 C 85.95778,362.8014 86.68753,358.97325 84.4063,358.14439 L 84.40625,358.14439 z M 144.3125,358.30064 L 143.875,359.01939 C 144.18358,364.60112 145.90146,361.10832 144.59375,358.30064 L 144.3125,358.30064 z M 198.125,358.30064 L 197.6875,359.01939 C 197.99608,364.60112 199.71396,361.10832 198.40625,358.30064 L 198.125,358.30064 z M 125.65625,358.89439 C 123.60223,358.80929 124.35265,366.20514 125.53125,359.98814 C 127.90008,361.1102 125.83821,363.73982 128.0625,359.86314 C 129.50955,365.80733 130.04146,356.96139 127.09375,359.86314 C 126.5043,359.20168 126.03662,358.91014 125.65625,358.89439 z M 164.53125,359.08189 C 163.31132,359.05019 162.45517,360.46324 163.03125,361.70689 C 167.53861,364.8652 161.19904,359.89762 165.4375,359.36314 C 165.13396,359.18339 164.81277,359.08922 164.53125,359.08189 z M 169.34375,359.08189 C 168.19562,358.98919 167.13059,360.75022 168.28125,362.42564 C 168.64845,355.50258 171.0261,365.33604 170.75,360.51939 C 170.38597,359.545 169.86563,359.12402 169.34375,359.08189 z M 90.28125,359.11319 C 89.41059,359.09469 88.98286,359.50615 91.21875,360.11319 C 89.70918,360.31526 89.42675,360.90572 89.65625,361.45694 C 89.81631,361.29072 90.24153,361.08491 91.0625,360.86319 C 92.63936,361.90922 90.7111,362.11954 89.90625,361.86319 C 90.68697,362.71211 92.54187,363.06756 92.125,360.64444 C 92.47156,359.5729 91.15191,359.13165 90.28125,359.11319 z M 89.90625,361.86319 C 89.79193,361.73889 89.71379,361.59514 89.65625,361.45694 C 89.47892,361.64109 89.62975,361.77514 89.90625,361.86319 z M 101.75,359.11314 C 99.44644,359.19074 105.12206,362.88625 101.0625,362.08189 C 105.97162,363.43713 99.57403,359.70993 103.28125,359.33189 C 102.57591,359.17121 102.07908,359.10206 101.75,359.11314 z M 106.9375,359.11314 C 106.06685,359.09464 105.67036,359.5061 107.90625,360.11314 C 106.40246,360.31444 106.08797,360.90738 106.3125,361.45689 C 106.47256,361.29066 106.89778,361.08486 107.71875,360.86314 C 109.31384,361.92126 107.34968,362.10214 106.5625,361.83189 C 107.33261,362.69446 109.23249,363.08565 108.8125,360.64439 C 109.15905,359.57286 107.80815,359.1316 106.9375,359.11314 z M 106.5625,361.83189 C 106.45459,361.71102 106.36698,361.59023 106.3125,361.45689 C 106.14114,361.63485 106.3045,361.74322 106.5625,361.83189 z M 115.0625,359.11314 C 113.7772,359.08794 111.93022,362.83308 114.65625,362.23814 C 114.39659,362.27154 114.03177,361.92811 113.5625,360.86314 C 115.11423,357.44469 115.52235,361.68355 114.78125,362.20689 C 114.97123,362.15949 115.17348,362.10879 115.40625,362.01939 C 115.16084,365.3212 116.44651,362.71657 116,360.98814 C 115.9202,359.62396 115.52516,359.12222 115.0625,359.11314 z M 121.5625,359.11314 C 120.69185,359.09464 120.29536,359.5061 122.53125,360.11314 C 121.02746,360.31444 120.71297,360.90738 120.9375,361.45689 C 121.09756,361.29066 121.52278,361.08486 122.34375,360.86314 C 123.93884,361.92126 121.97468,362.10214 121.1875,361.83189 C 121.95761,362.69446 123.85749,363.08565 123.4375,360.64439 C 123.78405,359.57286 122.43315,359.1316 121.5625,359.11314 z M 121.1875,361.83189 C 121.07959,361.71102 120.99198,361.59023 120.9375,361.45689 C 120.76614,361.63485 120.9295,361.74322 121.1875,361.83189 z M 141.0625,359.11314 C 140.19184,359.09464 139.79535,359.5061 142.03125,360.11314 C 140.51783,360.31573 140.23593,360.90454 140.46875,361.45689 C 140.62881,361.29066 141.02278,361.08486 141.84375,360.86314 C 143.41775,361.90727 141.52621,362.11732 140.71875,361.86314 C 141.5012,362.70975 143.35384,363.06445 142.9375,360.64439 C 143.28406,359.57285 141.93316,359.1316 141.0625,359.11314 z M 140.71875,361.86314 C 140.60422,361.73921 140.52688,361.5948 140.46875,361.45689 C 140.29048,361.64202 140.43945,361.77521 140.71875,361.86314 z M 160.09375,359.11314 C 159.2231,359.09464 158.82661,359.5061 161.0625,360.11314 C 159.55871,360.31444 159.24422,360.90738 159.46875,361.45689 C 159.62881,361.29066 160.05403,361.08486 160.875,360.86314 C 162.47009,361.92126 160.50593,362.10214 159.71875,361.83189 C 160.48886,362.69446 162.35749,363.08565 161.9375,360.64439 C 162.28406,359.57286 160.9644,359.1316 160.09375,359.11314 z M 159.71875,361.83189 C 159.61084,361.71102 159.52323,361.59023 159.46875,361.45689 C 159.29739,361.63485 159.46075,361.74322 159.71875,361.83189 z M 174.21875,359.11314 C 173.34809,359.09464 172.9516,359.5061 175.1875,360.11314 C 173.67794,360.31521 173.36425,360.90567 173.59375,361.45689 C 173.75381,361.29066 174.17903,361.08486 175,360.86314 C 176.57686,361.90917 174.6486,362.11949 173.84375,361.86314 C 174.62447,362.71206 176.47937,363.06751 176.0625,360.64439 C 176.40906,359.57285 175.08941,359.1316 174.21875,359.11314 z M 173.84375,361.86314 C 173.72943,361.73884 173.65129,361.59509 173.59375,361.45689 C 173.41642,361.64105 173.56725,361.77509 173.84375,361.86314 z M 194.875,359.11314 C 194.00434,359.09464 193.60785,359.5061 195.84375,360.11314 C 194.33033,360.31573 194.04843,360.90454 194.28125,361.45689 C 194.44131,361.29066 194.83528,361.08486 195.65625,360.86314 C 197.23025,361.90727 195.33871,362.11732 194.53125,361.86314 C 195.3137,362.70975 197.16634,363.06445 196.75,360.64439 C 197.09656,359.57285 195.74566,359.1316 194.875,359.11314 z M 194.53125,361.86314 C 194.41672,361.73921 194.33938,361.5948 194.28125,361.45689 C 194.10298,361.64202 194.25195,361.77521 194.53125,361.86314 z M 210.65625,359.14439 C 204.59919,363.56322 216.50752,362.85832 210.65625,359.14439 z M 97.8125,359.17569 C 97.37188,359.24629 96.97007,359.55411 96.90625,360.05069 C 97.54192,364.79932 96.79408,359.64241 98.96875,359.73819 C 98.75236,359.28965 98.25312,359.10507 97.8125,359.17569 z M 135.59375,359.17569 C 134.33674,359.26899 132.90466,360.66463 134.3125,361.86319 C 139.96783,363.52784 131.42878,360.85277 137,360.73819 C 137.0165,359.53212 136.34795,359.11968 135.59375,359.17569 z M 138.65625,359.17569 C 138.21563,359.24629 137.81381,359.55411 137.75,360.05069 C 138.38566,364.79932 137.60659,359.64241 139.78125,359.73819 C 139.56486,359.28965 139.09687,359.10507 138.65625,359.17569 z M 149.6875,359.17569 C 148.4305,359.26909 146.9984,360.66463 148.40625,361.86319 C 154.06158,363.52783 145.55378,360.85278 151.125,360.73819 C 151.1415,359.53212 150.4417,359.11968 149.6875,359.17569 z M 182.59375,359.17569 C 181.33675,359.26909 179.90465,360.66463 181.3125,361.86319 C 186.96782,363.52783 178.42879,360.85278 184,360.73819 C 184.0165,359.53212 183.34795,359.11968 182.59375,359.17569 z M 207.0625,359.17569 C 205.8055,359.26899 204.40466,360.66463 205.8125,361.86319 C 211.46783,363.52785 202.92879,360.85278 208.5,360.73819 C 208.5165,359.53212 207.8167,359.11968 207.0625,359.17569 z M 190.375,359.20699 C 188.71128,359.43271 186.45337,362.26214 190.65625,362.30074 C 188.06449,363.35642 190.35282,364.66796 191.40625,362.11324 C 191.94149,360.04429 191.44125,359.27688 190.6875,359.20699 C 190.58386,359.19699 190.48591,359.19199 190.375,359.20699 z M 99.53125,359.23829 C 98.64613,363.67834 101.3353,361.88977 99.53125,359.23829 z M 111.5625,359.23829 C 110.67738,363.67834 113.36655,361.88976 111.5625,359.23829 z M 166.375,359.23829 C 165.48987,363.67834 168.17905,361.88977 166.375,359.23829 z M 171.84375,359.23829 C 170.95863,363.67834 173.6478,361.88977 171.84375,359.23829 z M 192.5,359.23829 C 191.6149,363.67834 194.30405,361.88976 192.5,359.23829 z M 95.65625,359.33199 C 95.29152,366.26826 92.91043,356.37988 93.1875,361.20699 C 94.35529,364.32724 97.32471,361.76298 95.65625,359.33199 z M 119.46875,359.33199 C 119.10403,366.26825 116.72292,356.3799 117,361.20699 C 118.1678,364.32724 121.13721,361.76297 119.46875,359.33199 z M 154.4375,359.33199 C 154.07277,366.26826 151.66043,356.37988 151.9375,361.20699 C 153.1053,364.32724 156.10596,361.76298 154.4375,359.33199 z M 187.3125,359.33199 C 186.94778,366.26826 184.56668,356.37988 184.84375,361.20699 C 186.01154,364.32724 188.98096,361.76298 187.3125,359.33199 z M 189.6875,359.48824 C 189.95075,359.35429 190.34978,359.6692 190.875,360.83199 C 189.29322,364.21091 188.89776,359.89008 189.6875,359.48824 z M 135.65625,359.61324 C 135.94655,359.64274 136.25194,359.91935 136.46875,360.58199 C 134.07217,361.49129 134.78536,359.52466 135.65625,359.61324 z M 149.75,359.61324 C 150.0403,359.64274 150.37694,359.91935 150.59375,360.58199 C 148.19716,361.4913 148.87911,359.52466 149.75,359.61324 z M 182.65625,359.61324 C 182.94655,359.64274 183.25194,359.91935 183.46875,360.58199 C 181.07217,361.49129 181.78536,359.52466 182.65625,359.61324 z M 207.15625,359.61324 C 207.44655,359.64274 207.75194,359.91935 207.96875,360.58199 C 205.57218,361.4913 206.28536,359.52466 207.15625,359.61324 z M 210.65625,359.61324 C 214.36717,362.58722 206.84182,362.36682 210.65625,359.61324 z M 130.53125,361.76949 C 129.14223,364.42863 132.41883,362.17303 130.53125,361.76949 z M 200.34375,361.76949 C 198.95472,364.42863 202.23133,362.17303 200.34375,361.76949 z M 88.1875,369.95699 C 87.82567,371.78317 89.7479,369.70775 88.1875,369.95699 z M 93,369.95699 L 93.0313,371.11324 C 92.29657,376.97145 94.85483,372.55778 93,369.95699 z M 121.15625,369.95699 C 120.79442,371.78317 122.71665,369.70775 121.15625,369.95699 z M 173.8125,369.95699 C 173.45068,371.78317 175.3729,369.70775 173.8125,369.95699 z M 180.1875,369.95699 C 179.82568,371.78317 181.7479,369.70775 180.1875,369.95699 z M 189.375,369.95699 C 189.01318,371.78317 190.9354,369.70775 189.375,369.95699 z M 119.0625,370.30074 L 118.59375,371.01949 C 118.90234,376.60121 120.62019,373.10843 119.3125,370.30074 L 119.0625,370.30074 z M 175.75,370.30074 L 175.28125,371.01949 C 175.58983,376.60122 177.30771,373.10842 176,370.30074 L 175.75,370.30074 z M 178.09375,370.30074 L 177.65625,371.01949 C 177.96484,376.60122 179.68272,373.10843 178.375,370.30074 L 178.09375,370.30074 z M 204.125,370.89449 C 202.07098,370.80939 202.8214,378.20524 204,371.98824 C 206.36884,373.11031 204.30694,375.73991 206.53125,371.86324 C 207.9783,377.80743 208.5102,368.9615 205.5625,371.86324 C 204.97305,371.20178 204.50537,370.91024 204.125,370.89449 z M 85.6875,371.08199 C 84.53937,370.98929 83.47434,372.75032 84.625,374.42574 C 84.99221,367.50268 87.4011,377.33615 87.125,372.51949 C 86.76097,371.54511 86.20938,371.12412 85.6875,371.08199 z M 105.09375,371.08199 C 103.94562,370.98929 102.91184,372.75032 104.0625,374.42574 C 104.42969,367.50269 106.80736,377.33613 106.53125,372.51949 C 106.16722,371.5451 105.61563,371.12412 105.09375,371.08199 z M 112.59375,371.08199 C 111.44562,370.98929 110.41184,372.75032 111.5625,374.42574 C 111.92969,367.50269 114.30736,377.33613 114.03125,372.51949 C 113.66722,371.5451 113.11563,371.12412 112.59375,371.08199 z M 129.15625,371.08199 C 128.00812,370.98929 126.9431,372.75033 128.09375,374.42574 C 128.46096,367.50269 130.86985,377.33614 130.59375,372.51949 C 130.22972,371.54511 129.67813,371.12412 129.15625,371.08199 z M 151.78125,371.08199 C 150.63312,370.98929 149.56809,372.75032 150.71875,374.42574 C 151.08597,367.50268 153.49485,377.33615 153.21875,372.51949 C 152.85472,371.54511 152.30313,371.12412 151.78125,371.08199 z M 159.46875,371.08199 C 158.24881,371.05029 157.36143,372.46334 157.9375,373.70699 C 162.44486,376.8653 156.10529,371.89771 160.34375,371.36324 C 160.04021,371.18349 159.75027,371.08932 159.46875,371.08199 z M 90.4375,371.11319 C 88.13394,371.19079 93.7783,374.8863 89.71875,374.08194 C 94.62787,375.43719 88.23028,371.70998 91.9375,371.33194 C 91.23216,371.17126 90.76658,371.10211 90.4375,371.11319 z M 115.8125,371.11319 C 114.94184,371.09469 114.54536,371.50615 116.78125,372.11319 C 115.27746,372.31449 114.96297,372.90743 115.1875,373.45694 C 115.34756,373.29071 115.77278,373.08491 116.59375,372.86319 C 118.16776,373.90731 116.27621,374.11737 115.46875,373.86319 C 116.2512,374.7098 118.10385,375.0645 117.6875,372.64444 C 118.03406,371.57291 116.68316,371.13165 115.8125,371.11319 z M 115.46875,373.86319 C 115.35129,373.7361 115.24536,373.59855 115.1875,373.45694 C 115.00924,373.64207 115.1895,373.77526 115.46875,373.86319 z M 123.375,371.11319 C 121.07144,371.19079 126.7158,374.8863 122.65625,374.08194 C 127.56537,375.43718 121.19902,371.70999 124.90625,371.33194 C 124.20091,371.17126 123.70408,371.10211 123.375,371.11319 z M 137.15625,371.11319 C 135.87048,371.08799 134.05096,374.83647 136.78125,374.23819 C 136.51993,374.30509 136.17554,373.97075 135.6875,372.86319 C 137.24102,369.44079 137.61961,373.6916 136.875,374.20694 C 137.07016,374.15934 137.25904,374.11204 137.5,374.01944 C 137.2546,377.32126 138.54026,374.71661 138.09375,372.98819 C 138.01395,371.62402 137.61891,371.12226 137.15625,371.11319 z M 163.75,371.11319 C 161.44643,371.19079 167.12204,374.8863 163.0625,374.08194 C 167.97161,375.43719 161.57404,371.70999 165.28125,371.33194 C 164.57591,371.17126 164.07908,371.10211 163.75,371.11319 z M 167.03125,371.11319 C 166.1606,371.09469 165.76411,371.50615 168,372.11319 C 166.49621,372.31449 166.18172,372.90743 166.40625,373.45694 C 166.56631,373.29071 166.99153,373.08491 167.8125,372.86319 C 169.40759,373.92131 167.44343,374.10219 166.65625,373.83194 C 167.42636,374.69451 169.29499,375.0857 168.875,372.64444 C 169.22156,371.57291 167.9019,371.13165 167.03125,371.11319 z M 166.65625,373.83194 C 166.54834,373.71107 166.46073,373.59028 166.40625,373.45694 C 166.23489,373.6349 166.39825,373.74327 166.65625,373.83194 z M 182.40625,371.11319 C 180.10269,371.19079 185.77829,374.8863 181.71875,374.08194 C 186.62786,375.43719 180.23029,371.70999 183.9375,371.33194 C 183.23216,371.17126 182.73533,371.10211 182.40625,371.11319 z M 191.59375,371.11319 C 189.29018,371.19079 194.93454,374.8863 190.875,374.08194 C 195.78412,375.43718 189.41779,371.70999 193.125,371.33194 C 192.41966,371.17126 191.92283,371.10211 191.59375,371.11319 z M 198.53125,371.11319 C 196.22768,371.19079 201.87204,374.8863 197.8125,374.08194 C 202.72162,375.43718 196.35529,371.70999 200.0625,371.33194 C 199.35716,371.17126 198.86033,371.10211 198.53125,371.11319 z M 209.5625,371.11319 C 208.69184,371.09469 208.29535,371.50615 210.53125,372.11319 C 209.02169,372.31526 208.708,372.90572 208.9375,373.45694 C 209.09756,373.29071 209.52278,373.08491 210.34375,372.86319 C 211.92061,373.90922 209.99235,374.11954 209.1875,373.86319 C 209.96822,374.71211 211.82312,375.06756 211.40625,372.64444 C 211.75281,371.5729 210.43316,371.13165 209.5625,371.11319 z M 209.1875,373.86319 C 209.07318,373.73889 208.99504,373.59514 208.9375,373.45694 C 208.76017,373.6411 208.911,373.77514 209.1875,373.86319 z M 213.09375,371.11319 C 210.79019,371.19079 216.43454,374.8863 212.375,374.08194 C 217.28412,375.43719 210.91778,371.70998 214.625,371.33194 C 213.91966,371.17126 213.42283,371.10211 213.09375,371.11319 z M 216.21875,371.11319 C 213.91519,371.19079 219.5908,374.8863 215.53125,374.08194 C 220.44037,375.43718 214.04279,371.70999 217.75,371.33194 C 217.04466,371.17126 216.54783,371.10211 216.21875,371.11319 z M 219.5,371.11319 C 218.62934,371.09469 218.23285,371.50615 220.46875,372.11319 C 218.95919,372.31526 218.6455,372.90572 218.875,373.45694 C 219.03506,373.29071 219.46028,373.08491 220.28125,372.86319 C 221.85811,373.90922 219.92985,374.11954 219.125,373.86319 C 219.90572,374.71211 221.76062,375.06756 221.34375,372.64444 C 221.69031,371.5729 220.37066,371.13165 219.5,371.11319 z M 219.125,373.86319 C 219.01068,373.73889 218.93254,373.59514 218.875,373.45694 C 218.69767,373.6411 218.8485,373.77514 219.125,373.86319 z M 101.5,371.17564 C 100.243,371.26904 98.81091,372.66458 100.21875,373.86314 C 105.87408,375.52778 97.33503,372.85273 102.90625,372.73814 C 102.92275,371.53207 102.2542,371.11963 101.5,371.17564 z M 109,371.17564 C 107.743,371.26904 106.31091,372.66458 107.71875,373.86314 C 113.37407,375.52778 104.83504,372.85273 110.40625,372.73814 C 110.42275,371.53207 109.7542,371.11963 109,371.17564 z M 133.03125,371.17564 C 131.77425,371.26894 130.34217,372.66458 131.75,373.86314 C 137.40532,375.5278 128.89753,372.85272 134.46875,372.73814 C 134.48525,371.53207 133.78545,371.11963 133.03125,371.17564 z M 144.34375,371.17564 C 143.08675,371.26894 141.65466,372.66458 143.0625,373.86314 C 148.71781,375.52779 140.21004,372.85273 145.78125,372.73814 C 145.79775,371.53207 145.09795,371.11963 144.34375,371.17564 z M 155.65625,371.17564 C 154.39924,371.26904 152.96715,372.66458 154.375,373.86314 C 160.03033,375.52778 151.52254,372.85273 157.09375,372.73814 C 157.11025,371.53207 156.41045,371.11963 155.65625,371.17564 z M 187.65625,371.17564 C 187.21563,371.24624 186.81382,371.55406 186.75,372.05064 C 187.38566,376.79928 186.60658,371.64235 188.78125,371.73814 C 188.56486,371.2896 188.09687,371.10502 187.65625,371.17564 z M 171.65625,371.20694 C 169.99596,371.43266 167.76588,374.26209 171.96875,374.30069 C 169.37698,375.35637 171.63408,376.66791 172.6875,374.11319 C 173.22274,372.04424 172.7225,371.27683 171.96875,371.20694 C 171.86511,371.19694 171.76694,371.19194 171.65625,371.20694 z M 88.1875,371.23814 C 87.30238,375.67819 89.99155,373.88962 88.1875,371.23814 z M 96.1875,371.23814 C 97.15542,374.62576 98.23678,376.25107 99.09375,371.61314 C 97.7887,373.6612 97.9202,373.60516 96.1875,371.23814 z M 121.15625,371.23814 C 120.27113,375.67819 122.96029,373.88961 121.15625,371.23814 z M 173.8125,371.23814 C 172.92738,375.67819 175.61655,373.88962 173.8125,371.23814 z M 180.1875,371.23814 C 179.30238,375.67819 181.99155,373.88962 180.1875,371.23814 z M 189.375,371.23814 C 188.48988,375.67819 191.17905,373.88962 189.375,371.23814 z M 141.59375,371.33184 C 141.22902,378.26811 138.81668,368.37973 139.09375,373.20684 C 140.26155,376.32709 143.26221,373.76283 141.59375,371.33184 z M 196.59375,371.33184 C 196.22903,378.26812 193.81668,368.37973 194.09375,373.20684 C 195.26154,376.32709 198.2622,373.76282 196.59375,371.33184 z M 170.96875,371.48809 C 171.232,371.35414 171.63103,371.66906 172.15625,372.83184 C 170.57447,376.21076 170.17901,371.88994 170.96875,371.48809 z M 101.5625,371.61309 C 101.8528,371.64259 102.15819,371.9192 102.375,372.58184 C 99.97842,373.49114 100.69161,371.52451 101.5625,371.61309 z M 109.0625,371.61309 C 109.3528,371.64259 109.65819,371.9192 109.875,372.58184 C 107.47842,373.49114 108.19161,371.52451 109.0625,371.61309 z M 133.125,371.61309 C 133.4153,371.64259 133.72069,371.9192 133.9375,372.58184 C 131.54094,373.49114 132.25411,371.52451 133.125,371.61309 z M 144.40625,371.61309 C 144.69655,371.64259 145.03319,371.9192 145.25,372.58184 C 142.85341,373.49115 143.53536,371.52451 144.40625,371.61309 z M 155.75,371.61309 C 156.0403,371.64259 156.34569,371.9192 156.5625,372.58184 C 154.16592,373.49114 154.87911,371.52451 155.75,371.61309 z M 146.8125,373.76934 C 145.42348,376.42847 148.70009,374.1729 146.8125,373.76934 z M 91.625,381.95684 L 91.6875,383.11309 C 90.95277,388.9713 93.47978,384.55763 91.625,381.95684 z M 95.1875,381.95684 C 94.82567,383.78302 96.7479,381.7076 95.1875,381.95684 z M 156.84375,381.95684 C 156.48193,383.78302 158.40415,381.7076 156.84375,381.95684 z M 172.28125,381.95684 L 172.31255,383.11309 C 171.57783,388.9713 174.13608,384.55763 172.28125,381.95684 z M 183.125,381.95684 C 182.76317,383.78302 184.6854,381.7076 183.125,381.95684 z M 117.3125,382.14434 C 116.83915,384.82764 118.14098,388.70759 117.84375,383.36309 C 119.35569,387.29221 121.88902,386.69159 120.28125,382.20684 C 119.98063,387.84076 119.94996,383.62839 117.3125,382.14434 z M 158.78125,382.30059 L 158.3125,383.01934 C 158.62108,388.60107 160.33895,385.10827 159.03125,382.30059 L 158.78125,382.30059 z M 181.03125,382.30059 L 180.5625,383.01934 C 180.87108,388.60107 182.58895,385.10827 181.28125,382.30059 L 181.03125,382.30059 z M 133.4375,382.39429 C 133.01712,382.42839 133.03194,385.35765 133.4688,386.42554 C 133.83603,379.50248 136.21365,389.33595 135.93755,384.51929 C 136.34787,383.08136 134.90039,383.01882 134.00005,383.48804 C 133.77014,382.68593 133.57768,382.38294 133.43755,382.39429 L 133.4375,382.39429 z M 147.03125,382.51929 C 146.92972,382.48569 146.81581,382.81695 146.6875,383.73804 C 145.57465,382.15432 143.63923,384.03734 144.4375,385.48804 C 147.39736,389.66381 147.4712,382.66495 147.03125,382.51929 z M 108.71875,382.89429 C 106.66472,382.80919 107.44639,390.20503 108.62505,383.98804 C 110.99389,385.11011 108.90075,387.73972 111.12505,383.86304 C 112.57209,389.80723 113.104,380.96131 110.1563,383.86304 C 109.56684,383.20158 109.09918,382.91004 108.7188,382.89429 L 108.71875,382.89429 z M 126.5625,382.89429 C 124.50848,382.80919 125.25888,390.20504 126.4375,383.98804 C 128.80635,385.11011 126.74444,387.73971 128.96875,383.86304 C 130.41578,389.80723 130.9477,380.96131 128,383.86304 C 127.41055,383.20158 126.94287,382.91004 126.5625,382.89429 z M 163.875,382.89429 C 161.82098,382.80919 162.57138,390.20504 163.75,383.98804 C 166.11885,385.1101 164.05695,387.73972 166.28125,383.86304 C 167.72829,389.80723 168.2602,380.96131 165.3125,383.86304 C 164.72305,383.20158 164.25537,382.91004 163.875,382.89429 z M 98.03125,382.92559 C 96.27464,382.92959 96.79835,389.9487 97.375,386.01934 C 98.47308,387.60462 100.41874,385.71313 99.625,384.26934 C 98.94678,383.30072 98.43662,382.92473 98.03125,382.92559 z M 142,383.08189 C 140.85186,382.98919 139.81809,384.75022 140.96875,386.42564 C 141.33598,379.50258 143.7136,389.33605 143.4375,384.51939 C 143.07347,383.54501 142.52188,383.12402 142,383.08189 z M 197.84375,383.08189 C 196.69562,382.98919 195.66185,384.75023 196.8125,386.42564 C 197.1797,379.50259 199.55735,389.33604 199.28125,384.51939 C 198.91722,383.54501 198.36563,383.12402 197.84375,383.08189 z M 101.25,383.11319 C 98.94644,383.19079 104.59079,386.8863 100.53125,386.08194 C 105.44036,387.43719 99.07404,383.70999 102.78125,383.33194 C 102.07591,383.17126 101.57908,383.10211 101.25,383.11319 z M 122.46875,383.11319 C 121.59809,383.09469 121.20161,383.50615 123.4375,384.11319 C 121.93371,384.31449 121.61922,384.90743 121.84375,385.45694 C 122.00381,385.29071 122.42903,385.08491 123.25,384.86319 C 124.824,385.90731 122.93246,386.11737 122.125,385.86319 C 122.90745,386.7098 124.7601,387.0645 124.34375,384.64444 C 124.69031,383.57291 123.33941,383.13165 122.46875,383.11319 z M 122.125,385.86319 C 122.00754,385.7361 121.90161,385.59855 121.84375,385.45694 C 121.66549,385.64207 121.84575,385.77526 122.125,385.86319 z M 178.1875,383.11319 C 175.88393,383.19079 181.55954,386.8863 177.5,386.08194 C 182.40911,387.43719 176.01154,383.70999 179.71875,383.33194 C 179.01341,383.17126 178.51658,383.10211 178.1875,383.11319 z M 201.0625,383.11319 C 200.19184,383.09469 199.79535,383.50615 202.03125,384.11319 C 200.51783,384.31578 200.23593,384.90459 200.46875,385.45694 C 200.62881,385.29071 201.02278,385.08491 201.84375,384.86319 C 203.41775,385.90732 201.52621,386.11737 200.71875,385.86319 C 201.5012,386.7098 203.35384,387.0645 202.9375,384.64444 C 203.28406,383.5729 201.93316,383.13165 201.0625,383.11319 z M 200.71875,385.86319 C 200.60422,385.73926 200.52688,385.59485 200.46875,385.45694 C 200.29048,385.64207 200.43945,385.77526 200.71875,385.86319 z M 169.875,383.14439 C 163.81794,387.56322 175.72627,386.85832 169.875,383.14439 z M 89.3125,383.17569 C 88.0555,383.26899 86.62341,384.66463 88.03125,385.86319 C 93.68658,387.52785 85.17878,384.85277 90.75,384.73819 C 90.7665,383.53212 90.0667,383.11968 89.3125,383.17569 z M 138.40625,383.17569 C 137.14924,383.26899 135.71716,384.66463 137.125,385.86319 C 142.78033,387.52784 134.24128,384.85277 139.8125,384.73819 C 139.829,383.53212 139.16045,383.11968 138.40625,383.17569 z M 149.09375,383.17569 C 148.65312,383.24629 148.25131,383.55411 148.1875,384.05069 C 148.82317,388.79932 148.04408,383.64241 150.21875,383.73819 C 150.00236,383.28965 149.53438,383.10507 149.09375,383.17569 z M 152.03125,383.17569 C 150.77425,383.26899 149.37341,384.66463 150.78125,385.86319 C 156.43658,387.52785 147.89754,384.85278 153.46875,384.73819 C 153.48525,383.53212 152.78545,383.11968 152.03125,383.17569 z M 155.125,383.17569 C 154.68438,383.24629 154.28257,383.55411 154.21875,384.05069 C 154.85441,388.79933 154.07533,383.6424 156.25,383.73819 C 156.03361,383.28965 155.56562,383.10507 155.125,383.17569 z M 175.3125,383.17569 C 174.0555,383.26899 172.62342,384.66463 174.03125,385.86319 C 179.68657,387.52785 171.17878,384.85277 176.75,384.73819 C 176.7665,383.53212 176.0667,383.11968 175.3125,383.17569 z M 186.15625,383.17569 C 184.89925,383.26899 183.46716,384.66463 184.875,385.86319 C 190.53031,387.52784 182.02254,384.85278 187.59375,384.73819 C 187.61025,383.53212 186.91045,383.11968 186.15625,383.17569 z M 194.96875,383.17569 C 194.52813,383.24629 194.12632,383.55411 194.0625,384.05069 C 194.69816,388.79932 193.91909,383.64241 196.09375,383.73819 C 195.87736,383.28965 195.40937,383.10507 194.96875,383.17569 z M 84,383.23814 C 84.96792,386.62576 86.04928,388.25107 86.90625,383.61314 C 85.6012,385.6612 85.7327,385.60516 84,383.23814 z M 95.1875,383.23814 C 94.30238,387.67819 96.99155,385.88962 95.1875,383.23814 z M 156.84375,383.23814 C 155.95863,387.67819 158.6478,385.88962 156.84375,383.23814 z M 183.125,383.23814 C 182.23988,387.67819 184.92904,385.88961 183.125,383.23814 z M 106.21875,383.33184 C 105.85403,390.26812 103.47293,380.37972 103.75,385.20684 C 104.91779,388.32709 107.88721,385.76283 106.21875,383.33184 z M 192.8125,383.33184 C 192.44776,390.26811 190.03544,380.37973 190.3125,385.20684 C 191.4803,388.32709 194.48096,385.76283 192.8125,383.33184 z M 98.0625,383.48809 C 98.1182,383.46869 98.18334,383.46539 98.25,383.48809 C 98.49613,383.57179 98.8243,383.96982 99.21875,384.86309 C 97.62231,388.38778 97.22643,383.77948 98.0625,383.48809 z M 145.8125,383.55059 C 146.87957,383.25892 146.55188,388.73956 144.84375,384.86309 C 145.2376,383.99544 145.56625,383.6179 145.8125,383.55059 z M 89.375,383.61309 C 89.6653,383.64259 90.00194,383.9192 90.21875,384.58184 C 87.82217,385.49114 88.50411,383.52451 89.375,383.61309 z M 138.46875,383.61309 C 138.75905,383.64259 139.06444,383.9192 139.28125,384.58184 C 136.88467,385.49114 137.59786,383.52451 138.46875,383.61309 z M 152.125,383.61309 C 152.4153,383.64259 152.72069,383.9192 152.9375,384.58184 C 150.54093,385.49115 151.25411,383.52451 152.125,383.61309 z M 169.875,383.61309 C 173.58592,386.58707 166.06057,386.36667 169.875,383.61309 z M 175.40625,383.61309 C 175.69655,383.64259 176.00194,383.9192 176.21875,384.58184 C 173.82219,385.49114 174.53536,383.52451 175.40625,383.61309 z M 186.21875,383.61309 C 186.50905,383.64259 186.84569,383.9192 187.0625,384.58184 C 184.66591,385.49115 185.34786,383.52451 186.21875,383.61309 z M 113.53125,385.76934 C 113.06287,387.55629 115.23397,385.52118 113.53125,385.76934 z M 204.125,385.76934 C 203.65663,387.55629 205.82773,385.52117 204.125,385.76934 z M 215.96875,393.36309 C 215.53457,395.09168 217.51601,393.1502 215.96875,393.36309 z M 185.71875,393.55059 C 185.39616,394.95279 184.40421,396.16769 184.25,397.61309 C 184.4865,397.49177 186.65062,396.00951 187.65625,397.58179 C 187.92667,398.0032 187.25045,393.79876 185.71875,393.55054 L 185.71875,393.55059 z M 186.0625,394.14434 C 186.22052,394.54353 186.32176,394.95404 186.53125,395.33184 C 186.99067,397.64937 184.10143,395.00573 186.0625,394.14434 z M 213.59375,394.42559 C 213.31422,394.46329 212.99855,394.69103 212.65625,395.26934 C 211.76859,393.72128 209.58127,394.61338 210.03125,396.45684 C 210.27971,398.47871 210.24319,397.47884 210.8125,396.14434 C 212.68271,393.48578 211.88503,399.98996 212.9375,396.55059 C 213.37414,394.10928 214.55638,395.75503 214.46875,397.33184 C 215.36887,398.14649 214.80503,394.26237 213.59375,394.42559 z M 189.875,394.51929 C 189.7857,394.51629 189.68147,394.53139 189.59375,394.55059 C 189.04792,394.6699 188.56076,395.23872 188.40625,396.23809 C 187.4506,398.24935 191.42817,398.31076 190.8125,397.70684 C 188.63165,397.57261 189.61952,395.71152 191.375,396.14434 C 191.12243,395.0962 190.50045,394.53809 189.875,394.51934 L 189.875,394.51929 z M 193.59375,394.51929 C 192.55664,394.51829 191.45684,395.69448 192.28125,397.26929 C 193.01052,397.82354 193.31562,393.26152 194.375,396.30054 C 194.75102,398.21421 194.9683,397.52912 194.96875,395.95679 C 194.80606,394.94984 194.21602,394.51991 193.59375,394.51929 z M 197.375,394.51929 C 197.2857,394.51629 197.18147,394.53139 197.09375,394.55059 C 196.54792,394.6699 196.06076,395.23872 195.90625,396.23809 C 194.9506,398.24935 198.92817,398.31076 198.3125,397.70684 C 196.13165,397.57261 197.11952,395.71152 198.875,396.14434 C 198.62243,395.0962 198.00045,394.53809 197.375,394.51934 L 197.375,394.51929 z M 204.78125,394.51929 C 203.74414,394.51829 202.64435,395.69448 203.46875,397.26929 C 204.19802,397.82354 204.47185,393.26152 205.53125,396.30054 C 205.90727,398.2142 206.15579,397.52911 206.15625,395.95679 C 205.99357,394.94984 205.40352,394.51991 204.78125,394.51929 z M 200.625,394.58179 C 200.32326,394.59989 200.02454,394.66529 199.78125,394.80054 C 201.42477,395.09343 202.06258,396.31018 199.90625,396.14429 C 198.58497,398.62437 203.78445,398.55565 202.3125,396.05059 C 202.49317,394.98613 201.53022,394.52742 200.625,394.58184 L 200.625,394.58179 z M 215.96875,394.64429 C 215.96875,395.16124 215.96875,395.68983 215.96875,396.20679 C 215.66387,399.91258 217.65293,395.24914 215.96875,394.64429 z M 221.875,394.70679 C 219.81577,394.84797 223.68544,397.14021 222.5625,397.39429 C 219.13178,397.30009 224.85911,398.92097 223.46875,396.39429 C 221.62574,396.25935 221.97489,395.0097 223.53125,394.73804 C 223.14423,394.70844 222.76335,394.70214 222.375,394.70674 C 222.1818,394.69564 222.01228,394.69774 221.875,394.70674 L 221.875,394.70679 z M 190.03125,395.08179 C 190.39394,395.06589 190.7632,395.28113 190.84375,395.98804 L 190.5,396.05054 L 190.1875,396.08184 C 188.36654,396.30431 189.23334,395.11686 190.03125,395.08184 L 190.03125,395.08179 z M 197.53125,395.08179 C 197.89394,395.06589 198.2632,395.28113 198.34375,395.98804 L 198,396.05054 L 197.6875,396.08184 C 195.86654,396.30431 196.73334,395.11686 197.53125,395.08184 L 197.53125,395.08179 z M 220.21875,395.11309 C 219.65276,395.34263 219.20424,399.07531 218.1875,396.26934 C 217.81099,394.35106 217.56288,395.07429 217.5625,396.64434 L 217.5625,396.98809 C 218.65744,399.28858 221.65507,397.22504 220.21875,395.11309 z M 201.25,396.26939 C 201.45916,396.45494 201.84418,396.67121 201.8125,397.01939 C 200.4676,398.22716 199.01072,396.49158 201.25,396.26939 z M 202.4375,405.70689 C 201.0688,406.23042 201.61195,410.10059 203.28125,409.86314 C 201.55235,408.47676 203.7647,407.04265 202.4375,405.70689 z M 223.125,405.73819 C 222.93826,405.81579 222.78207,406.41462 222.90625,407.14444 C 222.01215,405.68789 219.67534,407.57007 220.71875,408.86319 C 222.45727,411.44798 224.28711,409.02353 223.5,406.83194 C 223.4712,406.1119 223.34627,405.79247 223.21875,405.73819 C 223.19215,405.72689 223.15165,405.72709 223.12505,405.73819 L 223.125,405.73819 z M 188.5625,405.89444 C 188.08483,406.00168 188.39186,408.44358 188.40625,409.26944 C 189.13553,409.8237 189.40936,405.26164 190.46875,408.30069 C 190.84477,410.21435 191.0933,409.52926 191.09375,407.95694 C 191.29303,407.01175 190.17106,406.17193 189.34375,406.70694 C 188.97106,406.08335 188.72172,405.85869 188.5625,405.89444 z M 185.34375,406.51944 C 185.27985,406.51927 185.21342,406.53444 185.15625,406.55074 C 183.55548,407.00696 185.06215,413.32844 185.09375,409.42574 C 187.05829,411.07291 188.54767,407.59488 186.03125,406.76949 C 185.75461,406.60354 185.53555,406.51999 185.34375,406.51949 L 185.34375,406.51944 z M 199.5,406.51944 C 199.4107,406.51644 199.30647,406.53154 199.21875,406.55074 C 198.67291,406.67005 198.18576,407.23887 198.03125,408.23824 C 197.0756,410.2495 201.08442,410.31091 200.46875,409.70699 C 198.2879,409.57276 199.24452,407.71167 201,408.14449 C 200.74744,407.09635 200.12546,406.53824 199.5,406.51949 L 199.5,406.51944 z M 218.375,406.51944 C 218.2857,406.51644 218.18147,406.53154 218.09375,406.55074 C 217.54792,406.67005 217.06076,407.23887 216.90625,408.23824 C 215.95059,410.24949 219.95941,410.31091 219.34375,409.70699 C 217.1629,409.57276 218.11953,407.71167 219.875,408.14449 C 219.62243,407.09635 219.00045,406.53824 218.375,406.51949 L 218.375,406.51944 z M 193.0625,406.58194 C 192.76076,406.60004 192.46204,406.66544 192.21875,406.80069 C 193.86227,407.09358 194.50009,408.31033 192.34375,408.14444 C 191.02247,410.62452 196.22196,410.5558 194.75,408.05074 C 194.93068,406.98627 193.96773,406.52757 193.0625,406.58199 L 193.0625,406.58194 z M 196.90625,406.58194 C 196.80231,406.57594 196.69763,406.58894 196.59375,406.61324 C 195.90123,406.77489 195.32757,407.59501 195.84375,408.42574 C 196.29374,411.77999 195.87015,406.56611 197.75,407.14449 C 197.52018,406.77051 197.21806,406.6009 196.90625,406.58199 L 196.90625,406.58194 z M 205.28125,406.58194 C 205.17438,406.57594 205.07263,406.58894 204.96875,406.61324 C 204.27623,406.77489 203.70257,407.59501 204.21875,408.42574 C 204.66874,411.77999 204.27645,406.5661 206.15625,407.14449 C 205.92643,406.77051 205.60185,406.6009 205.28125,406.58199 L 205.28125,406.58194 z M 207.59375,406.58194 C 207.29201,406.60004 206.99329,406.66544 206.75,406.80069 C 208.39352,407.09358 209.03134,408.31033 206.875,408.14444 C 205.55372,410.62452 210.75321,410.5558 209.28125,408.05074 C 209.46194,406.98626 208.49898,406.52756 207.59375,406.58199 L 207.59375,406.58194 z M 214.375,406.70694 C 212.31577,406.84812 216.18544,409.14036 215.0625,409.39444 C 211.63178,409.30024 217.35911,410.92112 215.96875,408.39444 C 214.12574,408.2595 214.47489,407.00985 216.03125,406.73819 C 215.64423,406.70859 215.26335,406.70229 214.875,406.70689 C 214.6818,406.69579 214.51228,406.69789 214.375,406.70689 L 214.375,406.70694 z M 186.09375,407.08194 C 186.13765,407.06864 186.17345,407.07494 186.21875,407.08194 C 186.46056,407.11664 186.70443,407.46675 186.90625,408.30069 C 186.73545,408.67342 186.56178,409.0569 186.28125,409.36319 C 184.97701,409.56719 185.43483,407.28134 186.09375,407.08194 z M 199.6875,407.08194 C 200.05019,407.06604 200.3882,407.28128 200.46875,407.98819 L 200.125,408.05069 L 199.84375,408.08199 C 198.02279,408.30446 198.88959,407.11701 199.6875,407.08199 L 199.6875,407.08194 z M 218.53125,407.08194 C 218.89394,407.06604 219.2632,407.28128 219.34375,407.98819 L 219,408.05069 L 218.71875,408.08199 C 216.8978,408.30447 217.73334,407.11702 218.53125,407.08199 L 218.53125,407.08194 z M 222.03125,407.20694 C 223.43506,407.46001 221.92559,411.47369 221.09375,408.30069 C 221.26807,407.92164 221.4304,407.54751 221.71875,407.23819 C 221.83958,407.21859 221.93766,407.19009 222.03125,407.20689 L 222.03125,407.20694 z M 193.6875,408.26944 C 193.89666,408.45499 194.28166,408.67126 194.25,409.01944 C 192.90511,410.22721 191.44821,408.49163 193.6875,408.26944 z M 208.21875,408.26944 C 208.42791,408.45499 208.81291,408.67126 208.78125,409.01944 C 207.43636,410.22721 205.97946,408.49163 208.21875,408.26944 z M 194.09375,417.36314 C 194.18045,418.27584 194.04275,419.19997 194.03125,420.11314 C 194.02825,424.16235 195.64688,418.36723 194.09375,417.36314 z M 195.75,417.36314 C 195.8367,418.27585 195.7303,419.19997 195.7187,420.11314 C 195.7157,424.16235 197.30307,418.36723 195.75,417.36314 z M 197.40625,417.36314 C 196.97207,419.09173 198.95351,417.15025 197.40625,417.36314 z M 207.5625,417.36314 C 207.12832,419.09173 209.10976,417.15025 207.5625,417.36314 z M 221,417.36314 C 220.56582,419.09173 222.54726,417.15025 221,417.36314 z M 188.0625,418.42564 C 187.78297,418.46334 187.4673,418.69108 187.125,419.26939 C 186.23735,417.72133 184.05002,418.61346 184.5,420.45689 C 184.74846,422.47876 184.68069,421.4789 185.25,420.14439 C 187.12022,417.48583 186.32253,423.99001 187.375,420.55064 C 187.81165,418.10933 188.99386,419.75508 188.90625,421.33189 C 189.80637,422.14654 189.27378,418.26242 188.0625,418.42564 z M 218.625,418.42564 C 218.34547,418.46334 218.02981,418.69108 217.6875,419.26939 C 216.79984,417.72133 214.61252,418.61342 215.0625,420.45689 C 215.31096,422.47876 215.27445,421.47889 215.84375,420.14439 C 217.71397,417.48583 216.91629,423.99001 217.96875,420.55064 C 218.4054,418.10934 219.55637,419.75507 219.46875,421.33189 C 220.36888,422.14654 219.83628,418.26242 218.625,418.42564 z M 210.53125,418.51934 C 210.44195,418.51634 210.33772,418.53144 210.25,418.55064 C 209.70417,418.66995 209.21701,419.23877 209.0625,420.23814 C 208.10685,422.2494 212.11565,422.31081 211.5,421.70689 C 209.31915,421.57266 210.27577,419.71157 212.03125,420.14439 C 211.77868,419.09625 211.1567,418.53814 210.53125,418.51939 L 210.53125,418.51934 z M 191.6875,418.58184 C 190.57327,419.25187 188.85748,421.37152 191.1875,421.76934 C 193.93039,422.46981 193.76395,419.29529 191.6875,418.58184 z M 197.40625,418.64434 C 197.40625,419.16129 197.40625,419.68988 197.40625,420.20684 C 197.10137,423.91263 199.09043,419.2492 197.40625,418.64434 z M 207.5625,418.64434 C 207.5625,419.16129 207.5625,419.68988 207.5625,420.20684 C 207.25762,423.91263 209.24668,419.2492 207.5625,418.64434 z M 221,418.64434 C 221,419.16129 221,419.68988 221,420.20684 C 220.69512,423.91263 222.68419,419.24919 221,418.64434 z M 199.5,418.70684 C 197.44076,418.84802 201.31043,421.14026 200.1875,421.39434 C 196.75678,421.30014 202.48411,422.92102 201.09375,420.39434 C 199.25074,420.2594 199.59989,419.00975 201.15625,418.73809 C 200.76923,418.70849 200.38833,418.70219 200,418.70679 C 199.8068,418.69569 199.63728,418.69779 199.5,418.70679 L 199.5,418.70684 z M 204.875,418.70684 C 202.81577,418.84802 206.68544,421.14026 205.5625,421.39434 C 202.13178,421.30014 207.85911,422.92102 206.46875,420.39434 C 204.62574,420.2594 204.97489,419.00975 206.53125,418.73809 C 206.14423,418.70849 205.7321,418.70219 205.34375,418.70679 C 205.15055,418.69569 205.01228,418.69779 204.875,418.70679 L 204.875,418.70684 z M 191.6875,419.01934 C 192.16507,419.49314 192.84062,420.11356 192.6875,420.86309 C 191.31895,422.65409 189.48371,419.83281 191.6875,419.01934 z M 210.6875,419.08184 C 211.05019,419.06594 211.41945,419.28118 211.5,419.98809 L 211.15625,420.05059 L 210.875,420.08189 C 209.05404,420.30436 209.88959,419.11691 210.6875,419.08189 L 210.6875,419.08184 z M 223.03125,421.14434 C 222.95065,421.14534 222.82924,421.15604 222.71875,421.17564 C 222.25139,422.97242 224.24076,421.12414 223.03125,421.14434 z M 201,429.36314 C 200.56583,431.09174 202.54729,429.15023 201,429.36314 z M 185.96875,429.48814 C 185.83177,429.49614 185.72589,429.53154 185.59375,429.58184 C 182.09588,430.28765 188.1129,432.68677 186.09375,433.30059 C 182.0623,433.06033 188.46821,435.09843 187.28125,432.20684 C 185.64025,431.77239 184.51644,429.86476 187.21875,429.70684 C 186.8268,429.60974 186.37968,429.46541 185.96875,429.48809 L 185.96875,429.48814 z M 203.1875,429.70689 C 201.81882,430.23044 202.36196,434.10058 204.03125,433.86314 C 202.30236,432.47676 204.5147,431.04265 203.1875,429.70689 z M 220.75,429.70689 C 219.38129,430.23041 219.92444,434.10059 221.59375,433.86314 C 219.86487,432.47676 222.07719,431.04264 220.75,429.70689 z M 194.4375,429.73819 C 194.25077,429.81579 194.09457,430.41462 194.21875,431.14444 C 193.32465,429.68789 190.98783,431.57005 192.03125,432.86319 C 193.76977,435.44798 195.59961,433.02353 194.8125,430.83194 C 194.7837,430.1119 194.65876,429.79247 194.53125,429.73819 C 194.50465,429.72689 194.46415,429.72709 194.43755,429.73819 L 194.4375,429.73819 z M 214.1875,430.42569 C 213.90797,430.46339 213.59231,430.69113 213.25,431.26944 C 212.36236,429.72137 210.14377,430.61348 210.59375,432.45694 C 210.84221,434.47881 210.80568,433.47894 211.375,432.14444 C 213.24522,429.48588 212.44755,435.99005 213.5,432.55069 C 213.93666,430.10939 215.11886,431.75514 215.03125,433.33194 C 215.9314,434.14661 215.39879,430.26247 214.1875,430.42569 z M 189.6875,430.51939 C 189.5982,430.51639 189.49397,430.53149 189.40625,430.55069 C 188.86042,430.67 188.37326,431.23882 188.21875,432.23819 C 187.2631,434.24945 191.24067,434.31086 190.625,433.70694 C 188.44415,433.57271 189.43202,431.71162 191.1875,432.14444 C 190.93493,431.0963 190.31295,430.53819 189.6875,430.51944 L 189.6875,430.51939 z M 217.84375,430.51939 C 217.75445,430.51639 217.65022,430.53149 217.5625,430.55069 C 217.01667,430.67 216.52951,431.23882 216.375,432.23819 C 215.41934,434.24943 219.39689,434.31086 218.78125,433.70694 C 216.6004,433.5727 217.58828,431.71162 219.34375,432.14444 C 219.09118,431.0963 218.4692,430.53819 217.84375,430.51944 L 217.84375,430.51939 z M 207.875,430.58189 C 207.57326,430.59999 207.27454,430.66539 207.03125,430.80064 C 208.67477,431.09352 209.3126,432.31028 207.15625,432.14439 C 205.83497,434.62447 211.03446,434.55575 209.5625,432.05069 C 209.7432,430.98621 208.78023,430.52751 207.875,430.58194 L 207.875,430.58189 z M 201,430.64439 C 201,431.16134 201,431.68993 201,432.20689 C 200.69512,435.9127 202.68423,431.24921 201,430.64439 z M 198.3125,430.70689 C 196.25326,430.84807 200.09167,433.14031 198.96875,433.39439 C 195.53802,433.30019 201.26535,434.92108 199.875,432.39439 C 198.03199,432.25945 198.41239,431.00981 199.9687,430.73814 C 199.58168,430.70854 199.16953,430.70224 198.7812,430.70684 C 198.588,430.69574 198.44973,430.69784 198.31245,430.70684 L 198.3125,430.70689 z M 189.84375,431.08189 C 190.20644,431.06599 190.5757,431.28123 190.65625,431.98814 L 190.3125,432.05064 L 190,432.08194 C 188.17904,432.30441 189.04584,431.11696 189.84375,431.08194 L 189.84375,431.08189 z M 218,431.08189 C 218.36269,431.06599 218.7007,431.28123 218.78125,431.98814 L 218.46875,432.05064 L 218.15625,432.08194 C 216.33529,432.30441 217.20209,431.11697 218,431.08194 L 218,431.08189 z M 193.34375,431.20689 C 194.74755,431.45996 193.20685,435.47364 192.375,432.30064 C 192.54933,431.9216 192.7429,431.54746 193.03125,431.23814 C 193.15207,431.21854 193.25016,431.19004 193.34375,431.20684 L 193.34375,431.20689 z M 208.5,432.26939 C 208.70916,432.45494 209.09417,432.67118 209.0625,433.01939 C 207.7176,434.22715 206.26072,432.49157 208.5,432.26939 z M 185.78125,441.36314 C 183.73893,441.51929 184.49515,443.93339 184.84375,445.36314 C 185.56011,445.90659 185.11212,442.07461 186.21875,441.36314 C 186.05687,441.35254 185.9174,441.35274 185.78125,441.36314 z M 197.46875,441.36314 C 197.03457,443.09173 199.01602,441.15025 197.46875,441.36314 z M 199.59375,441.45684 C 198.78692,441.73075 198.97122,444.51972 199.3125,445.67559 C 202.17087,448.09048 202.86658,440.75063 199.65625,443.14434 C 199.49398,442.58597 199.853,441.99148 199.59375,441.45684 z M 195.5,442.48814 C 193.41816,442.51474 193.38383,446.65571 196.0625,445.95689 C 195.20962,445.88779 193.89251,442.5736 196.53125,442.76939 C 196.14299,442.5704 195.8034,442.48426 195.5,442.48814 z M 187.5625,442.58184 C 187.26076,442.59994 186.96204,442.66534 186.71875,442.80059 C 188.36227,443.09348 189.00009,444.31023 186.84375,444.14434 C 185.52246,446.62442 190.72196,446.5557 189.25,444.05064 C 189.43069,442.98617 188.46773,442.52747 187.5625,442.58189 L 187.5625,442.58184 z M 197.46875,442.64434 C 197.46875,443.16129 197.46875,443.68988 197.46875,444.20684 C 197.16388,447.91263 199.15295,443.24919 197.46875,442.64434 z M 207.1875,442.70684 C 205.12827,442.84802 208.99794,445.14026 207.875,445.39434 C 204.44428,445.30014 210.17161,446.92102 208.78125,444.39434 C 206.93824,444.2594 207.28739,443.00975 208.84375,442.73809 C 208.45673,442.70849 208.07585,442.70219 207.6875,442.70679 C 207.4943,442.69569 207.32478,442.69779 207.1875,442.70679 L 207.1875,442.70684 z M 200.65625,443.08184 C 200.70015,443.06854 200.73595,443.07484 200.78125,443.08184 C 201.02306,443.11654 201.29818,443.46665 201.5,444.30059 C 201.3292,444.67331 201.12427,445.0568 200.84375,445.36309 C 199.53951,445.5671 199.99734,443.28124 200.65625,443.08184 z M 192.9375,443.11314 C 192.3715,443.34266 191.923,447.07536 190.90625,444.26939 C 190.52974,442.35111 190.31288,443.07434 190.3125,444.64439 L 190.3125,444.98814 C 191.40745,447.28862 194.37381,445.2251 192.9375,443.11314 z M 205.53125,443.11314 C 204.96526,443.34268 204.51674,447.07536 203.5,444.26939 C 203.12349,442.35111 202.87538,443.07434 202.875,444.64439 L 202.875,444.98814 C 203.96994,447.28863 206.96757,445.22509 205.53125,443.11314 z M 188.15625,444.26939 C 188.36541,444.45494 188.78167,444.67121 188.75,445.01939 C 187.40511,446.22716 185.91696,444.49159 188.15625,444.26939 z M 202.5625,453.36314 C 202.6492,454.27585 202.5428,455.19997 202.5312,456.11314 C 202.5282,460.16235 204.11557,454.36723 202.5625,453.36314 z M 204.25,453.36314 C 204.3367,454.27585 204.2303,455.19997 204.2187,456.11314 C 204.2157,460.16235 205.80307,454.36723 204.25,453.36314 z M 205.90625,453.36314 C 205.47207,455.09173 207.45352,453.15025 205.90625,453.36314 z M 185.875,454.48814 C 183.8012,454.51464 183.79001,458.61589 186.4375,457.95689 C 185.58462,457.88779 184.29876,454.57361 186.9375,454.76939 C 186.54924,454.5704 186.1784,454.48426 185.875,454.48814 z M 192.875,454.51944 C 191.83789,454.51844 190.7381,455.69463 191.5625,457.26944 C 192.29178,457.82369 192.59686,453.26167 193.65625,456.30069 C 194.03227,458.21435 194.24955,457.52926 194.25,455.95694 C 194.08732,454.94999 193.49727,454.52006 192.875,454.51944 z M 189.15625,454.58194 C 188.04202,455.25197 186.32623,457.37162 188.65625,457.76944 C 191.39913,458.46991 191.2327,455.29539 189.15625,454.58194 z M 199.78125,454.58194 C 199.47951,454.60004 199.18079,454.66544 198.9375,454.80069 C 200.58102,455.09359 201.21884,456.31034 199.0625,456.14444 C 197.74122,458.62452 202.9407,458.5558 201.46875,456.05074 C 201.64943,454.98627 200.68648,454.52756 199.78125,454.58199 L 199.78125,454.58194 z M 194.96875,454.64444 C 195.28171,455.34055 195.47693,456.08931 195.75,456.80069 C 196.76973,460.79132 198.9061,452.51618 197.21875,455.73819 C 196.66445,458.61995 196.09861,455.04859 194.96875,454.64444 z M 205.90625,454.64444 C 205.90625,455.16139 205.90625,455.68998 205.90625,456.20694 C 205.60138,459.91273 207.59045,455.24929 205.90625,454.64444 z M 208,454.70684 C 205.94077,454.84802 209.81044,457.14025 208.6875,457.39434 C 205.25678,457.30014 210.98411,458.92102 209.59375,456.39434 C 207.75074,456.25939 208.09989,455.00975 209.65625,454.73809 C 209.26923,454.70849 208.88835,454.70219 208.5,454.70679 C 208.3068,454.69569 208.13728,454.69779 208,454.70679 L 208,454.70684 z M 189.15625,455.01934 C 189.63382,455.49314 190.30937,456.11356 190.15625,456.86309 C 188.78769,458.65409 186.95246,455.83281 189.15625,455.01934 z M 200.375,456.26934 C 200.58416,456.45489 201.00042,456.67116 200.96875,457.01934 C 199.62386,458.22711 198.13573,456.49153 200.375,456.26934 z M 211.0625,457.14434 C 210.9819,457.14534 210.89174,457.15604 210.78125,457.17564 C 210.31389,458.97242 212.27201,457.12414 211.0625,457.14434 z M 94.09375,469.36314 C 93.67226,471.08282 95.58143,469.14373 94.09375,469.36314 z M 102.90625,469.36314 C 102.97065,469.96265 102.93365,470.57552 102.90625,471.17564 C 102.4263,475.93588 104.64878,471.43291 102.90625,469.36314 z M 129.09375,469.36314 C 129.15815,469.96265 129.12105,470.57552 129.09375,471.17564 C 128.6138,475.93588 130.83628,471.43291 129.09375,469.36314 z M 130.75,469.36314 C 130.32851,471.08281 132.23764,469.14375 130.75,469.36314 z M 149.5625,469.36314 C 149.6269,469.96265 149.5899,470.5755 149.5625,471.17564 C 149.08255,475.93589 151.30507,471.43287 149.5625,469.36314 z M 219.78125,469.36314 C 219.35976,471.08282 221.26894,469.14373 219.78125,469.36314 z M 85.28125,469.48814 C 85.07659,469.49874 84.84494,469.50724 84.59375,469.55064 C 84.64325,470.05544 84.1701,474.78965 85.125,473.36314 C 86.35586,472.64609 88.35113,469.32977 85.28125,469.48814 z M 132.96875,469.70689 C 131.70404,470.14967 132.08029,474.02192 133.71875,473.86314 C 131.80815,472.41907 134.57946,471.10642 132.96875,469.70689 z M 188.09375,469.70689 C 186.82904,470.14966 187.23655,474.02191 188.875,473.86314 C 186.96443,472.41909 189.70443,471.10642 188.09375,469.70689 z M 217.9375,469.70689 C 216.67279,470.14967 217.0803,474.02191 218.71875,473.86314 C 216.80818,472.41909 219.54818,471.10642 217.9375,469.70689 z M 167.96875,469.89439 C 167.86302,469.88539 167.73622,470.24112 167.6875,471.14439 C 166.44462,469.33585 164.34052,472.06245 165.75,473.26939 C 168.96892,476.62415 168.42692,469.93381 167.96875,469.89439 z M 85.1875,470.05064 C 89.10015,469.74739 84.13849,473.80214 85.1875,470.05064 z M 97.03125,470.30064 C 95.44569,470.24934 95.27426,475.26635 96.375,472.48814 C 97.06239,468.35891 98.73627,476.58017 98.5,471.95689 L 98.34375,471.30064 C 97.82386,470.59281 97.39715,470.31248 97.03125,470.30064 z M 203.6875,470.30064 C 202.10194,470.24934 201.96175,475.26635 203.0625,472.48814 C 203.74989,468.35891 205.39252,476.58017 205.15625,471.95689 L 205.03125,471.30064 C 204.51136,470.59281 204.0534,470.31248 203.6875,470.30064 z M 211.1875,470.30064 C 209.60194,470.24934 209.46175,475.26635 210.5625,472.48814 C 211.24989,468.35891 212.89252,476.58017 212.65625,471.95689 L 212.53125,471.30064 C 212.01136,470.59281 211.5534,470.31248 211.1875,470.30064 z M 109.5625,470.48814 C 108.16443,470.5992 107.40944,472.73484 108.6875,473.76939 C 112.70279,475.56598 106.13571,471.10441 110.625,470.76939 C 110.25124,470.54264 109.88513,470.46251 109.5625,470.48814 z M 143.65625,470.48814 C 143.37448,470.50374 143.01605,470.70959 142.59375,471.26939 C 142.0701,469.8388 139.17196,470.66387 139.9375,472.36314 C 140.54297,476.32686 140.03854,470.01608 141.84375,471.86314 C 142.71146,476.43143 142.25451,470.21438 144.09375,471.73814 C 144.80084,476.63502 145.17782,470.4037 143.65625,470.48814 z M 126.65625,470.55064 C 124.97108,470.57524 123.51436,474.5407 127.875,473.73814 C 125.35265,473.52586 125.7603,472.08341 128.21875,472.14439 C 127.8138,470.94766 127.21797,470.54243 126.65625,470.55064 z M 152.46875,470.55064 C 150.78358,470.57524 149.32687,474.54071 153.6875,473.73814 C 151.16512,473.52586 151.57282,472.08341 154.03125,472.14439 C 153.62629,470.94766 153.03047,470.54243 152.46875,470.55064 z M 177.625,470.55064 C 175.93983,470.57524 174.48312,474.5407 178.84375,473.73814 C 176.32138,473.52586 176.72906,472.08342 179.1875,472.14439 C 178.78254,470.94766 178.18672,470.54243 177.625,470.55064 z M 181.4375,470.55064 C 179.86336,470.71138 178.10319,473.13561 182.15625,474.01939 C 178.47212,474.6827 182.66294,476.0761 182.78125,473.51939 C 183.27202,471.17125 182.38198,470.4542 181.4375,470.55064 z M 185.125,470.55064 C 183.43983,470.57524 181.98312,474.5407 186.34375,473.73814 C 183.82138,473.52586 184.22906,472.08342 186.6875,472.14439 C 186.28254,470.94766 185.68672,470.54243 185.125,470.55064 z M 200,470.55064 C 198.31483,470.57524 196.85811,474.54071 201.21875,473.73814 C 198.69638,473.52587 199.07281,472.08341 201.53125,472.14439 C 201.12629,470.94766 200.56172,470.54243 200,470.55064 z M 207.5,470.55064 C 205.81483,470.57524 204.35811,474.54071 208.71875,473.73814 C 206.19638,473.52587 206.57281,472.08341 209.03125,472.14439 C 208.62629,470.94766 208.06172,470.54243 207.5,470.55064 z M 89.0625,470.58194 C 88.42415,470.59434 87.74317,471.08404 87.875,471.80069 C 88.59453,476.07621 87.8581,470.99062 89.96875,471.14444 C 89.80895,470.7283 89.44551,470.57449 89.0625,470.58194 z M 91.34375,470.58194 C 91.00177,470.65214 90.70369,470.86025 90.5,471.14444 C 89.4448,473.64067 90.91035,473.88118 92.0625,473.30069 C 91.01061,473.53375 89.41241,472.72724 91.6875,471.01944 C 92.6454,471.80931 92.88055,472.38852 92.75,472.76944 C 93.40224,472.09389 93.48892,471.16225 91.6875,470.58194 C 91.57043,470.57394 91.45774,470.55854 91.34375,470.58194 z M 105.4375,470.61324 C 104.79003,470.68914 104.56333,471.18987 106.375,471.70699 C 101.57468,472.21074 108.1307,476.19738 107.15625,472.05074 C 107.17745,470.87845 106.08497,470.5373 105.4375,470.61324 z M 146.71875,470.61324 C 146.07128,470.68914 145.87582,471.18987 147.6875,471.70699 C 142.88719,472.21073 149.44321,476.19738 148.46875,472.05074 C 148.48995,470.87845 147.36622,470.5373 146.71875,470.61324 z M 162.71875,470.61324 C 162.07129,470.68914 161.8446,471.18986 163.65625,471.70699 C 158.85592,472.21073 165.41195,476.19739 164.4375,472.05074 C 164.4587,470.87846 163.36621,470.5373 162.71875,470.61324 z M 170.1875,470.61324 C 169.54003,470.68914 169.34459,471.18986 171.15625,471.70699 C 166.35593,472.21074 172.8807,476.19739 171.90625,472.05074 C 171.92745,470.87846 170.83497,470.5373 170.1875,470.61324 z M 214.59375,470.61324 C 213.94628,470.68914 213.71959,471.18987 215.53125,471.70699 C 210.73093,472.21074 217.28696,476.19739 216.3125,472.05074 C 216.3337,470.87845 215.24122,470.5373 214.59375,470.61324 z M 94.09375,470.64454 L 94.09375,471.23829 C 93.47462,475.29788 95.84518,472.53672 94.09375,470.64454 z M 121.46875,470.64454 L 121.875,471.58204 C 122.03381,476.02606 125.21773,472.16553 124.0625,470.98829 C 123.16676,474.65059 122.95452,471.86911 121.46875,470.64454 z M 130.75,470.64454 L 130.75,471.23829 C 130.13089,475.29786 132.50138,472.53675 130.75,470.64454 z M 194.8125,470.64454 L 195.1875,471.58204 C 195.34631,476.02606 198.56147,472.16553 197.40625,470.98829 C 196.51051,474.6506 196.29828,471.86911 194.8125,470.64454 z M 219.78125,470.64454 L 219.78125,471.23829 C 219.16212,475.29788 221.53268,472.53672 219.78125,470.64454 z M 116.53125,470.67584 C 115.4785,470.6766 114.37802,470.93593 115.78125,472.05084 C 118.74394,473.66773 114.21389,473.18736 115.90625,473.86334 C 120.15766,473.85254 113.57588,471.26843 117.46875,470.73834 C 117.22011,470.70704 116.88217,470.67564 116.53125,470.67584 z M 156.0625,470.67584 C 155.00975,470.6766 153.90927,470.93593 155.3125,472.05084 C 158.27518,473.66774 153.74513,473.18736 155.4375,473.86334 C 159.68891,473.85254 153.10712,471.26842 157,470.73834 C 156.75135,470.70704 156.41342,470.67564 156.0625,470.67584 z M 222.59375,470.67584 C 221.541,470.6766 220.44052,470.93593 221.84375,472.05084 C 224.80644,473.66774 220.27637,473.18736 221.96875,473.86334 C 226.22016,473.85254 219.63839,471.26844 223.53125,470.73834 C 223.2826,470.70704 222.94467,470.67564 222.59375,470.67584 z M 181.03125,470.89459 C 181.2849,470.7709 181.66066,471.07276 182.21875,472.23834 C 180.78827,475.52378 180.2703,471.26565 181.03125,470.89459 z M 166.75,471.01959 C 167.78761,470.76725 167.69457,476.19583 165.875,472.30084 C 166.23023,471.45548 166.51055,471.07782 166.75,471.01959 z M 126.84375,471.05089 C 127.13693,471.08119 127.42516,471.33306 127.65625,471.98839 C 125.25768,472.87743 125.96421,470.96009 126.84375,471.05089 z M 152.65625,471.05089 C 152.94943,471.08119 153.26891,471.33306 153.5,471.98839 C 151.10143,472.87742 151.77671,470.96009 152.65625,471.05089 z M 177.8125,471.05089 C 178.10568,471.08119 178.42515,471.33306 178.65625,471.98839 C 176.25768,472.87742 176.93296,470.96009 177.8125,471.05089 z M 185.3125,471.05089 C 185.60568,471.08119 185.92515,471.33306 186.15625,471.98839 C 183.75768,472.87742 184.43296,470.96009 185.3125,471.05089 z M 200.15625,471.05089 C 200.44943,471.08119 200.76891,471.33306 201,471.98839 C 198.60143,472.87742 199.2767,470.96009 200.15625,471.05089 z M 207.65625,471.05089 C 207.94943,471.08119 208.26891,471.33306 208.5,471.98839 C 206.10143,472.87742 206.7767,470.96009 207.65625,471.05089 z M 111.625,471.17589 C 111.49332,471.12009 111.44112,471.4866 111.5,472.64464 L 111.625,473.26964 C 114.40157,477.04068 114.93953,468.67598 113.59375,472.11339 C 113.0737,475.20787 112.02005,471.3434 111.625,471.17589 z M 158.125,471.17589 C 157.99332,471.12009 157.94112,471.4866 158,472.64464 L 158.125,473.26964 C 160.90157,477.04067 161.43951,468.67598 160.09375,472.11339 C 159.57369,475.20785 158.52005,471.3434 158.125,471.17589 z M 106.0625,472.26964 C 108.19836,474.14019 102.2598,473.07494 106.0625,472.26964 z M 147.375,472.26964 C 149.51082,474.14023 143.57228,473.0749 147.375,472.26964 z M 163.34375,472.26964 C 165.47963,474.14017 159.54105,473.07496 163.34375,472.26964 z M 170.84375,472.26964 C 172.97962,474.14017 167.04105,473.07496 170.84375,472.26964 z M 215.21875,472.26964 C 217.35461,474.1402 211.41603,473.07492 215.21875,472.26964 z M 92.71875,472.83214 C 92.54561,473.00127 92.34847,473.15007 92.125,473.26964 C 92.39418,473.19734 92.6155,473.04675 92.71875,472.83214 z M 134.90625,473.17589 C 133.63227,475.40154 136.61182,473.73838 134.90625,473.17589 z M 190.0625,473.17589 C 188.78853,475.40152 191.76804,473.73841 190.0625,473.17589 z M 103.3125,481.36314 C 102.89101,483.08281 104.80017,481.14374 103.3125,481.36314 z M 112.59375,481.36314 C 112.17226,483.08281 114.08142,481.14374 112.59375,481.36314 z M 120.53125,481.36314 C 120.10976,483.08282 122.01893,481.14373 120.53125,481.36314 z M 148.40625,481.36314 C 147.98476,483.08281 149.89389,481.14375 148.40625,481.36314 z M 192.8125,481.36314 C 192.39101,483.08284 194.30021,481.14371 192.8125,481.36314 z M 197.625,481.36314 C 197.6894,481.96265 197.6523,482.57552 197.625,483.17564 C 197.14505,487.93588 199.36753,483.43291 197.625,481.36314 z M 207.125,481.36314 C 206.70351,483.08282 208.61268,481.14373 207.125,481.36314 z M 161.65625,481.51939 C 160.35221,481.58789 159.12395,482.38702 161,483.55064 C 165.19519,485.27622 157.81703,485.76335 161.53125,485.70689 C 166.65343,485.12697 157.39647,482.28128 162.875,481.70689 C 162.53517,481.55431 162.09093,481.49655 161.65625,481.51939 z M 134.78125,481.70689 C 133.51652,482.14965 133.89279,486.02192 135.53125,485.86314 C 133.62067,484.41909 136.39193,483.10642 134.78125,481.70689 z M 93.8125,481.89439 C 93.70677,481.88539 93.57997,482.24112 93.53125,483.14439 C 92.28838,481.33585 90.18427,484.06249 91.59375,485.26939 C 94.81268,488.62416 94.27068,481.93381 93.8125,481.89439 z M 101.90625,481.89439 C 101.80052,481.88539 101.70497,482.24112 101.65625,483.14439 C 100.41337,481.33585 98.30927,484.06248 99.71875,485.26939 C 102.93769,488.62415 102.36443,481.9338 101.90625,481.89439 z M 170.15625,481.89439 C 170.05052,481.88539 169.92372,482.24112 169.875,483.14439 C 168.63213,481.33584 166.52802,484.06249 167.9375,485.26939 C 171.15644,488.62415 170.61443,481.9338 170.15625,481.89439 z M 110.0625,482.30064 C 108.47694,482.24934 108.30551,487.26635 109.40625,484.48814 C 110.09363,480.35891 111.73627,488.58017 111.5,483.95689 L 111.375,483.30064 C 110.85511,482.59281 110.4284,482.31248 110.0625,482.30064 z M 145.875,482.30064 C 144.28944,482.24934 144.118,487.26635 145.21875,484.48814 C 145.90612,480.35889 147.54877,488.58017 147.3125,483.95689 L 147.1875,483.30064 C 146.66761,482.59281 146.2409,482.31248 145.875,482.30064 z M 190.28125,482.30064 C 188.69569,482.24934 188.5555,487.26635 189.65625,484.48814 C 190.34364,480.35891 191.98627,488.58017 191.75,483.95689 L 191.625,483.30064 C 191.10511,482.59281 190.64715,482.31248 190.28125,482.30064 z M 125.78125,482.48814 C 125.49948,482.50374 125.17231,482.70959 124.75,483.26939 C 124.22637,481.83882 121.3282,482.66387 122.09375,484.36314 C 122.69922,488.32685 122.16355,482.01608 123.96875,483.86314 C 124.83645,488.43145 124.37952,482.2144 126.21875,483.73814 C 126.92584,488.63505 127.30283,482.4037 125.78125,482.48814 z M 153.6875,482.48814 C 153.40573,482.50374 153.04731,482.70959 152.625,483.26939 C 152.10135,481.83883 149.2032,482.66387 149.96875,484.36314 C 150.57423,488.32687 150.06979,482.01609 151.875,483.86314 C 152.74271,488.43143 152.28579,482.21441 154.125,483.73814 C 154.83209,488.63505 155.20908,482.40371 153.6875,482.48814 z M 184.375,482.48814 C 184.09323,482.50374 183.73481,482.70959 183.3125,483.26939 C 182.78886,481.83882 179.89071,482.66387 180.65625,484.36314 C 181.26171,488.32686 180.7573,482.01608 182.5625,483.86314 C 183.43021,488.43144 182.97328,482.21439 184.8125,483.73814 C 185.51959,488.63505 185.89658,482.4037 184.375,482.48814 z M 88.9375,482.55064 C 87.25233,482.57524 85.79561,486.54068 90.15625,485.73814 C 87.63388,485.52586 88.04156,484.08341 90.5,484.14439 C 90.09504,482.94766 89.49922,482.54243 88.9375,482.55064 z M 106.34375,482.55064 C 104.76961,482.71138 103.00943,485.13561 107.0625,486.01939 C 103.37837,486.6827 107.56918,488.07609 107.6875,485.51939 C 108.17828,483.17124 107.28824,482.4542 106.34375,482.55064 z M 142.15625,482.55064 C 140.47107,482.57524 139.01436,486.54068 143.375,485.73814 C 140.85262,485.52586 141.26031,484.08342 143.71875,484.14439 C 143.31378,482.94766 142.71798,482.54243 142.15625,482.55064 z M 165.28125,482.55064 C 163.59607,482.57524 162.13936,486.54068 166.5,485.73814 C 163.97762,485.52586 164.38531,484.08342 166.84375,484.14439 C 166.43879,482.94766 165.84298,482.54244 165.28125,482.55064 z M 178.3125,482.55064 C 176.62733,482.57524 175.17061,486.54068 179.53125,485.73814 C 177.00888,485.52586 177.41656,484.08341 179.875,484.14439 C 179.47004,482.94766 178.87422,482.54244 178.3125,482.55064 z M 213.59375,482.55064 C 211.90858,482.57524 210.45187,486.54068 214.8125,485.73814 C 212.29013,485.52587 212.69781,484.08341 215.15625,484.14439 C 214.75129,482.94766 214.15547,482.54243 213.59375,482.55064 z M 217.03125,482.58194 C 216.39289,482.59434 215.71192,483.08404 215.84375,483.80069 C 216.56328,488.07621 215.82685,482.99062 217.9375,483.14444 C 217.77771,482.7283 217.41426,482.57449 217.03125,482.58194 z M 219.40625,482.58194 C 218.7679,482.59434 218.08692,483.08404 218.21875,483.80069 C 218.93828,488.07621 218.20185,482.99061 220.3125,483.14444 C 220.1527,482.7283 219.78926,482.57449 219.40625,482.58194 z M 221.71875,482.61324 C 221.07128,482.68914 220.87584,483.18985 222.6875,483.70699 C 217.88718,484.21073 224.41195,488.19739 223.4375,484.05074 C 223.4587,482.87845 222.36622,482.5373 221.71875,482.61324 z M 103.3125,482.64454 L 103.3125,483.23829 C 102.69338,487.29787 105.06391,484.53673 103.3125,482.64454 z M 112.59375,482.64454 L 112.59375,483.23829 C 111.97463,487.29787 114.34516,484.53673 112.59375,482.64454 z M 120.53125,482.64454 L 120.53125,483.23829 C 119.91213,487.29788 122.28268,484.53672 120.53125,482.64454 z M 148.40625,482.64454 L 148.40625,483.23829 C 147.78714,487.29786 150.15763,484.53675 148.40625,482.64454 z M 192.8125,482.64454 L 192.8125,483.23829 C 192.19337,487.29791 194.56397,484.53669 192.8125,482.64454 z M 203.1875,482.64454 L 203.59375,483.58204 C 203.75257,488.02606 206.96772,484.16556 205.8125,482.98829 C 204.91676,486.6506 204.67327,483.86911 203.1875,482.64454 z M 207.125,482.64454 L 207.125,483.23829 C 206.50588,487.29788 208.87643,484.53672 207.125,482.64454 z M 208.40625,482.64454 L 208.8125,483.58204 C 208.97132,488.02606 212.18648,484.16556 211.03125,482.98829 C 210.13551,486.65059 209.89202,483.86911 208.40625,482.64454 z M 85.71875,482.67584 C 84.666,482.6766 83.56553,482.93593 84.96875,484.05084 C 87.93144,485.66774 83.40138,485.18739 85.09375,485.86334 C 89.34516,485.85254 82.76339,483.26844 86.65625,482.73834 C 86.40761,482.70704 86.06967,482.67564 85.71875,482.67584 z M 115.40625,482.67584 C 114.3535,482.6766 113.25302,482.93593 114.65625,484.05084 C 117.61894,485.66774 113.08888,485.18739 114.78125,485.86334 C 119.03265,485.85254 112.45089,483.26843 116.34375,482.73834 C 116.09511,482.70704 115.75717,482.67564 115.40625,482.67584 z M 118.53125,482.67584 C 117.4785,482.6766 116.37802,482.93593 117.78125,484.05084 C 120.74394,485.66774 116.21388,485.18739 117.90625,485.86334 C 122.15766,485.85254 115.57588,483.26843 119.46875,482.73834 C 119.22011,482.70704 118.88217,482.67564 118.53125,482.67584 z M 175.09375,482.67584 C 174.041,482.6766 172.94052,482.93593 174.34375,484.05084 C 177.30644,485.66774 172.77637,485.18739 174.46875,485.86334 C 178.72016,485.85254 172.13839,483.26844 176.03125,482.73834 C 175.7826,482.70704 175.44467,482.67564 175.09375,482.67584 z M 195.625,482.67584 C 194.57225,482.6766 193.47175,482.93593 194.875,484.05084 C 197.83769,485.66774 193.30763,485.18739 195,485.86334 C 199.25141,485.85254 192.66966,483.26844 196.5625,482.73834 C 196.31386,482.70704 195.97592,482.67564 195.625,482.67584 z M 105.9375,482.89459 C 106.19115,482.7709 106.56692,483.07276 107.125,484.23834 C 105.69453,487.52378 105.17656,483.26565 105.9375,482.89459 z M 92.59375,483.01959 C 93.63136,482.76725 93.53832,488.19583 91.71875,484.30084 C 92.07398,483.45548 92.3543,483.07782 92.59375,483.01959 z M 100.71875,483.01959 C 101.75636,482.76725 101.66332,488.19582 99.84375,484.30084 C 100.19898,483.45548 100.4793,483.07782 100.71875,483.01959 z M 168.9375,483.01959 C 169.97511,482.76725 169.88207,488.19583 168.0625,484.30084 C 168.41772,483.45548 168.69805,483.07782 168.9375,483.01959 z M 89.125,483.05089 C 89.41818,483.08119 89.73766,483.33306 89.96875,483.98839 C 87.57018,484.87743 88.24545,482.96009 89.125,483.05089 z M 142.34375,483.05089 C 142.63693,483.08119 142.95641,483.33306 143.1875,483.98839 C 140.78893,484.87743 141.46421,482.96009 142.34375,483.05089 z M 165.46875,483.05089 C 165.76193,483.08119 166.08141,483.33306 166.3125,483.98839 C 163.91393,484.87743 164.58921,482.96009 165.46875,483.05089 z M 178.5,483.05089 C 178.79318,483.08119 179.11265,483.33306 179.34375,483.98839 C 176.94518,484.87743 177.62046,482.96009 178.5,483.05089 z M 213.78125,483.05089 C 214.07443,483.08119 214.39391,483.33306 214.625,483.98839 C 212.22643,484.87743 212.90171,482.96009 213.78125,483.05089 z M 130.5,483.17564 C 130.36832,483.11984 130.31612,483.48635 130.375,484.64439 L 130.5,485.26939 C 133.27657,489.04041 133.81454,480.67577 132.46875,484.11314 C 131.9487,487.20763 130.89504,483.34315 130.5,483.17564 z M 222.375,484.26939 C 224.51084,486.13995 218.5723,485.07467 222.375,484.26939 z M 95.34375,485.17564 C 94.06978,487.40127 97.04929,485.73816 95.34375,485.17564 z M 136.71875,485.17564 C 135.44478,487.40127 138.42429,485.73816 136.71875,485.17564 z M 156,485.17564 C 155.52115,487.06612 157.74271,484.88138 156,485.17564 z M 199.40625,485.17564 C 198.13228,487.40125 201.11175,485.73818 199.40625,485.17564 z M 117.53125,493.36314 C 117.59565,493.96265 117.55855,494.57552 117.53125,495.17564 C 117.0513,499.93587 119.27376,495.43292 117.53125,493.36314 z M 119.21875,493.36314 C 118.79726,495.08283 120.70644,493.14372 119.21875,493.36314 z M 121.40625,493.70689 C 120.14156,494.14968 120.51779,498.02191 122.15625,497.86314 C 120.24567,496.41909 123.01693,495.10642 121.40625,493.70689 z M 107,493.89439 C 106.89426,493.88539 106.79872,494.24112 106.75,495.14439 C 105.50713,493.33584 103.37177,496.06249 104.78125,497.26939 C 108.0002,500.62415 107.45819,493.9338 107,493.89439 z M 85.84375,494.30064 C 84.25819,494.24934 84.08676,499.26635 85.1875,496.48814 C 85.87489,492.35891 87.51752,500.58017 87.28125,495.95689 L 87.15625,495.30064 C 86.63636,494.59281 86.20965,494.31248 85.84375,494.30064 z M 93.3125,494.30064 C 91.72694,494.24934 91.58676,499.26635 92.6875,496.48814 C 93.37489,492.35891 95.01753,500.58017 94.78125,495.95689 L 94.65625,495.30064 C 94.13636,494.59281 93.6784,494.31248 93.3125,494.30064 z M 102.15625,494.55064 C 100.47108,494.57524 99.01435,498.54068 103.375,497.73814 C 100.85262,497.52586 101.22906,496.08342 103.6875,496.14439 C 103.28254,494.94766 102.71797,494.54244 102.15625,494.55064 z M 115.09375,494.55064 C 113.40858,494.57524 111.95186,498.54068 116.3125,497.73814 C 113.79013,497.52586 114.19781,496.08342 116.65625,496.14439 C 116.25129,494.94766 115.65547,494.54244 115.09375,494.55064 z M 89.3125,494.58194 C 88.97052,494.65214 88.64119,494.86028 88.4375,495.14444 C 87.39026,497.62185 88.82062,497.86455 89.96875,497.30069 C 88.91822,497.49248 87.42315,496.69572 89.65625,495.01944 C 90.61414,495.80931 90.8493,496.38852 90.71875,496.76944 C 91.36939,496.09399 91.45607,495.16174 89.65625,494.58194 C 89.53918,494.57394 89.42649,494.55854 89.3125,494.58194 z M 109.90625,494.64444 L 110.3125,495.58194 C 110.4713,500.02596 113.65524,496.16543 112.5,494.98819 C 111.60426,498.6505 111.39203,495.86901 109.90625,494.64444 z M 119.21875,494.64444 L 119.21875,495.23819 C 118.59962,499.2978 120.9702,496.5366 119.21875,494.64444 z M 98.90625,494.67574 C 97.8535,494.6765 96.75302,494.93583 98.15625,496.05074 C 101.11895,497.66764 96.58887,497.18729 98.28125,497.86324 C 102.53266,497.85244 95.95089,495.26834 99.84375,494.73824 C 99.59511,494.70694 99.25717,494.67544 98.90625,494.67574 z M 105.8125,495.01949 C 106.85011,494.76715 106.72583,500.19573 104.90625,496.30074 C 105.26148,495.45538 105.57305,495.07772 105.8125,495.01949 z M 102.3125,495.05079 C 102.60568,495.08109 102.92515,495.33296 103.15625,495.98829 C 100.75768,496.87733 101.43296,494.95999 102.3125,495.05079 z M 115.28125,495.05079 C 115.57443,495.08109 115.89391,495.33296 116.125,495.98829 C 113.72643,496.87733 114.40171,494.95999 115.28125,495.05079 z M 90.6875,496.83204 C 90.50729,497.00913 90.26579,497.14687 90.03125,497.26954 C 90.32456,497.20164 90.57884,497.06255 90.6875,496.83204 z M 123.3125,497.17579 C 122.83367,499.06626 125.05523,496.88152 123.3125,497.17579 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-align: start; line-height: 200%; text-anchor: start; fill: rgb(125, 128, 122); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;"/>
      <path transform="translate(30, -33.6369)" clip-path="url(#clipPath4396-4)" id="path4380" d="M 80.40625,432.78125 C 85.35836,435.9375 90.50398,435.14129 94.21875,439.0625 C 94.38557,439.2386 94.55181,439.39762 94.71875,439.5625 C 95.18956,439.6267 95.58509,439.69125 95.84375,439.6875 C 95.63418,439.47585 95.42728,439.28262 95.21875,439.0625 C 92.2005,435.87652 88.22365,435.79534 84.1875,434.1875 C 84.15276,434.1737 84.1285,434.1391 84.09375,434.125 C 82.99196,433.76494 81.80013,433.37097 80.40625,432.78125 z M 98.53125,433.40625 C 97.89752,435.91946 101.0437,439.1173 100.0625,440.1875 C 99.77268,440.50362 99.10817,440.88282 98.65625,441.3125 C 98.77627,441.42007 98.9109,441.51853 99.03125,441.625 C 99.48629,440.97519 100.633,440.66485 100.78125,440.28125 C 100.82075,440.17895 100.99349,439.96365 101.25,439.6875 C 101.257,439.52857 101.237,439.34916 101.1875,439.15625 C 100.82001,439.40206 100.53414,439.48103 100.5,439.3125 C 100.36947,438.6681 98.26817,435.23553 98.53125,433.40625 z M 113.65625,436.40625 C 110.42367,439.54403 111.71881,447.00383 109.375,447.71875 C 108.50195,447.98506 106.69761,447.85248 105.65625,448.375 C 105.76189,448.60581 105.84865,448.84061 105.9375,449.09375 C 106.42684,447.7081 109.22567,448.06933 110.375,447.71875 C 110.77712,447.59609 111.08336,447.27635 111.3125,446.8125 C 110.93926,446.97529 110.72326,447.00113 110.8125,446.7812 C 111.24289,445.72077 111.57285,438.86319 113.65625,436.4062 L 113.65625,436.40625 z M 103.78125,436.59375 C 103.12492,437.45905 102.10658,438.45853 101.375,439 C 101.41,439.0884 101.48925,439.25945 101.5,439.3125 C 101.506,439.344 101.51,439.3608 101.5313,439.375 C 102.29146,438.57164 103.39901,437.45213 103.7813,436.59375 L 103.78125,436.59375 z M 134.9375,437.875 C 134.83069,440.20568 137.54949,443.48159 136.3125,446.375 C 136.5004,446.4333 136.68252,446.52326 136.875,446.59375 C 137.90588,444.51612 135.02785,439.60153 134.9375,437.875 z M 90.84375,439.3125 C 90.25522,439.3105 89.64394,439.3623 89.03125,439.46875 C 88.78671,439.51125 88.55631,439.54985 88.3125,439.56245 C 88.88574,439.57875 89.46008,439.56845 90.03125,439.46875 C 90.41145,439.40265 90.78184,439.36421 91.15625,439.34375 C 91.04688,439.34075 90.955,439.31275 90.84375,439.31245 L 90.84375,439.3125 z M 85.9375,439.53125 C 84.88456,439.54655 83.79948,439.70721 82.59375,440.5 C 83.32956,440.19165 84.01825,440.03385 84.6875,439.9375 C 85.34981,439.67753 85.97849,439.56292 86.59375,439.53125 C 86.37626,439.52525 86.15853,439.52825 85.9375,439.53125 z M 91.625,439.75 C 91.45731,439.748 91.30878,439.7695 91.15625,439.7813 C 92.90776,439.92147 95.1761,440.62367 96.75,441.5313 C 99.94912,444.45134 102.81811,446.53472 103.40625,448.56255 C 104.09968,450.95339 104.28607,457.46157 104.34375,460.93755 C 104.36395,460.95855 104.38595,460.97905 104.40625,461.00005 C 104.71438,461.31055 105.03523,461.60103 105.375,461.87505 C 105.3369,458.73958 105.15781,451.1538 104.40625,448.56255 C 103.81811,446.53472 100.94912,444.45134 97.75,441.5313 C 96.0138,440.53007 93.42303,439.76891 91.625,439.75005 L 91.625,439.75 z M 87.125,439.8125 C 87.78421,439.8311 88.42634,439.8672 89.0625,439.8438 C 88.4317,439.8289 87.79011,439.8022 87.125,439.8125 z M 126.03125,440.40625 C 126.89106,442.44142 127.062,444.62079 127.90625,446.375 C 127.92635,446.4169 127.94935,446.4577 127.96875,446.5 C 127.93015,446.5749 127.90625,446.66002 127.90625,446.75 C 127.90625,446.97641 128.05374,447.16694 128.25,447.25 C 129.00795,449.47902 128.93188,452.14913 129,454.4375 C 129.35884,454.87027 129.71896,455.34248 130.0625,455.90625 C 129.9815,455.01751 129.95683,454.00871 129.9375,452.96875 C 129.71632,451.05996 129.70757,448.7236 128.875,447.09375 C 128.9103,447.05285 128.9483,447.01605 128.9687,446.96875 C 128.9647,446.96075 128.9727,446.94605 128.9687,446.93745 C 128.9432,446.87625 128.9062,446.82022 128.9062,446.74995 C 128.9062,446.65995 128.9302,446.57484 128.9687,446.49995 C 128.9493,446.45765 128.9263,446.41685 128.9062,446.37495 C 128.8864,446.33385 128.8628,446.29155 128.8437,446.24995 C 128.815,446.25595 128.7782,446.27485 128.75,446.28125 C 128.6872,446.23875 128.60897,446.20085 128.53125,446.18755 C 127.14638,444.14642 127.57841,442.64189 126.03125,440.4063 L 126.03125,440.40625 z M 145.0625,443.0625 C 143.36492,445.55707 141.19432,445.43623 139.9375,447.875 C 139.9901,447.8936 140.04065,447.9194 140.09375,447.9375 C 140.99244,445.77281 143.8516,445.26181 145.0625,443.0625 z M 117.375,444.375 C 115.18034,444.77087 113.09458,445.92471 111.875,446.53125 C 111.8547,446.60715 111.8331,446.73062 111.8125,446.78125 C 111.7197,447.00999 111.97042,446.96223 112.375,446.78125 C 113.72868,445.86102 115.58312,444.75052 117.375,444.375 z M 122.28125,445.65625 C 123.63031,453.42567 129.70949,454.11993 128.15625,459 C 126.96704,460.23925 125.03903,462.33597 124.125,463.25 C 123.36215,463.92868 122.52919,464.51835 121.6875,465.09375 C 120.81107,465.74764 120.89061,466.22694 119.96875,466.8125 C 119.28142,467.27513 117.72067,467.77438 117.125,468.25 C 116.34586,468.87211 115.91464,469.71972 115.25,470.5625 C 115.07291,470.80209 114.77474,470.95182 114.46875,471.125 C 114.54345,471.35812 114.63986,471.61952 114.6875,471.8125 C 115.01042,471.17708 115.89583,471.04167 116.25,470.5625 C 116.91464,469.71972 117.34586,468.87211 118.125,468.25 C 118.72067,467.77438 120.28142,467.27513 120.96875,466.8125 C 121.89061,466.22694 121.81107,465.74764 122.6875,465.09375 C 123.52919,464.51835 124.36215,463.92868 125.125,463.25 C 126.03903,462.33597 127.96704,460.23925 129.15625,459 C 129.55034,457.76183 129.44915,456.78943 129.06255,455.90625 C 129.05755,455.89825 129.06755,455.88275 129.06255,455.87495 C 126.72587,452.05868 123.90308,451.99109 122.2813,445.6562 L 122.28125,445.65625 z M 131.90625,445.875 C 130.98128,445.881 130.20751,445.98676 129.5,446.125 C 129.5135,446.1454 129.5173,446.167 129.5313,446.1875 C 129.609,446.2008 129.6872,446.2388 129.75005,446.2812 C 130.48447,446.11466 131.38948,445.95605 132.43755,445.9062 C 132.25882,445.8992 132.07816,445.8739 131.9063,445.8749 L 131.90625,445.875 z M 132.6875,446.21875 C 132.6143,446.22175 132.5419,446.24565 132.46875,446.25005 C 133.14584,446.26605 133.80636,446.30445 134.34375,446.4063 C 136.15316,446.74915 135.48657,447.10351 136.40625,447.1563 C 137.21455,447.2027 138.61963,447.9898 139.75,448.43755 C 140.97261,448.92183 141.28834,448.41645 143.59375,449.6563 C 141.93851,448.53579 140.24462,448.52407 140,448.25005 C 140.0129,448.20815 140.017,448.16585 140.0313,448.12505 C 139.9664,448.09595 139.90913,448.06095 139.8438,448.03135 C 139.8231,448.07505 139.8015,448.11105 139.7813,448.15635 C 138.77461,447.87395 137.7938,447.45015 137.12505,447.09385 C 136.93851,447.04615 136.84072,446.97155 136.7188,446.8751 C 136.6214,446.7981 136.47374,446.71793 136.2188,446.6251 C 136.208,446.6462 136.1988,446.6666 136.1875,446.6876 C 135.94162,446.5899 135.70743,446.51532 135.46875,446.4376 C 135.42195,446.4276 135.39435,446.4159 135.34375,446.4063 C 134.59956,446.26528 133.64437,446.17989 132.6875,446.2188 L 132.6875,446.21875 z M 86.625,448.25 L 86.75,448.3125 C 87.6609,448.55731 88.43179,449.134 89.15625,449.71875 C 89.98089,450.12973 91.02647,450.0599 91.6875,450.78125 C 92.39206,451.52533 93.44815,451.92482 93.96875,452.84375 C 94.17817,453.19398 94.41849,453.50833 94.6875,453.8125 C 93.98419,454.09146 93.30842,455.07451 92.8125,455.40625 C 92.7941,455.41855 92.7692,455.42695 92.75,455.43755 C 93.01674,455.52045 93.2596,455.56186 93.46875,455.53125 C 93.82158,455.08175 94.25087,454.5438 94.84375,454.4375 C 95.11622,454.17484 95.39445,453.92873 95.6875,453.8125 C 95.41849,453.50833 95.17817,453.19398 94.96875,452.84375 C 94.44815,451.92482 93.39206,451.52533 92.6875,450.78125 C 92.02647,450.0599 90.98089,450.12973 90.15625,449.71875 C 90.08798,449.66365 90.00667,449.61719 89.9375,449.5625 C 89.48294,449.4837 89.02585,449.35654 88.6875,449.03125 C 88.08981,448.5895 87.36318,448.31788 86.625,448.25 z M 114.9375,451.3125 C 114.376,451.3105 113.80496,451.3323 113.25,451.5 C 112.3881,451.65181 111.84908,452.48682 111.0625,452.625 C 111.21962,452.6534 111.35823,452.6835 111.53125,452.6875 C 111.53925,452.6835 111.55445,452.6915 111.56255,452.6875 C 112.22654,452.34579 112.86151,451.84447 113.56255,451.625 C 113.85451,451.51107 114.19907,451.46327 114.56255,451.4375 C 115.01508,451.3389 115.48031,451.31082 115.93755,451.3125 C 115.60083,451.3075 115.27029,451.3135 114.93755,451.3125 L 114.9375,451.3125 z M 108.65625,452.40625 C 108.54506,452.41025 108.43291,452.41425 108.3125,452.43755 C 107.72584,452.52085 107.21459,452.69191 106.6875,452.8438 C 106.6905,452.8753 106.6845,452.9061 106.6875,452.9375 C 106.6805,453.04959 106.99774,452.9385 107.09375,453 C 107.82262,452.84143 108.45889,452.59083 109.21875,452.46875 C 109.03489,452.43585 108.85724,452.39925 108.65625,452.40625 z M 109.40625,452.78125 C 109.29069,452.78625 109.1567,452.78825 109.03125,452.81255 C 109.56155,452.90665 110.05867,453.09344 110.71875,453.00005 C 110.76105,452.99205 110.80205,452.97875 110.84375,452.96875 C 110.35637,452.89025 109.92627,452.7607 109.40625,452.78125 z M 85.84375,452.96875 C 85.66038,452.96075 85.49318,452.97875 85.3125,453.00005 C 87.39794,452.95315 91.06767,455.50848 91.78125,455.7188 C 92.33961,455.88339 90.11486,457.82237 88.40625,458.75005 C 89.73401,458.37259 91.79386,456.72739 92.59375,456.25005 C 92.61089,456.23985 92.60903,456.22795 92.625,456.21875 C 92.83946,455.94987 92.93972,455.76546 92.78125,455.71875 C 92.69205,455.69245 92.54771,455.62115 92.375,455.53125 C 90.97468,455.59525 88.30899,453.06992 85.84375,452.96875 z M 139.625,453.03125 C 138.73859,453.40526 137.9959,453.41461 137.25,453.40625 C 137.71305,453.37155 138.15399,453.37595 138.59375,453.37495 C 138.90744,453.30545 139.25221,453.21579 139.625,453.0312 L 139.625,453.03125 z M 137.25,453.40625 C 136.27945,453.39535 135.2985,453.36335 133.9375,454.15625 C 132.95224,454.72261 132.25166,455.09277 131.625,455.46875 C 131.7251,455.62278 131.83761,455.76393 131.96875,455.875 C 132.4016,455.57041 132.92391,455.28623 133.5,454.96875 C 133.5447,454.93565 133.5806,454.90735 133.625,454.87505 C 134.28535,454.39388 134.91697,454.00925 135.40625,453.7813 C 135.75422,453.61918 136.08879,453.56106 136.40625,453.5313 C 136.42425,453.5273 136.45085,453.5353 136.46875,453.5313 C 136.74431,453.467 136.99668,453.42526 137.25,453.4063 L 137.25,453.40625 z M 95.84375,454.4375 C 95.69029,454.465 95.53849,454.5151 95.40625,454.59375 C 95.62848,454.83032 95.86221,455.06157 96.0625,455.3125 C 96.75553,456.09282 97.44827,456.85279 98.03125,457.71875 C 98.88287,458.78052 99.98599,459.59662 100.90625,460.59375 C 101.65335,461.37405 102.30131,462.2395 103,463.0625 C 103.93323,464.18737 104.87928,465.31263 105.8125,466.4375 C 106.23394,467.31017 106.84424,468.04786 107.46875,468.78125 C 108.13438,469.54124 108.77832,470.33906 109.28125,471.21875 C 109.88034,472.11013 110.39475,473.06016 110.78125,474.0625 C 111.08952,475.01078 111.2652,475.98395 111.40625,476.96875 C 111.59676,478.00577 111.75497,479.06785 111.65625,480.125 C 111.51047,481.6965 111.34974,483.27119 111.21875,484.84375 C 111.19705,485.62805 111.0974,486.4651 111.46875,487.1875 C 112.3545,487.74815 113.41276,487.87925 114.4375,487.9375 C 114.59171,487.9335 114.75302,487.9222 114.90625,487.9062 C 114.0509,487.8288 113.20418,487.65295 112.46875,487.18745 C 112.0974,486.46505 112.19704,485.628 112.21875,484.8437 C 112.34974,483.27114 112.51047,481.69645 112.65625,480.12495 C 112.75495,479.0678 112.59675,478.00572 112.40625,476.9687 C 112.2652,475.9839 112.08952,475.01073 111.78125,474.06245 C 111.39475,473.06011 110.88034,472.11008 110.28125,471.2187 C 109.77832,470.33901 109.13438,469.54119 108.46875,468.7812 C 107.84424,468.04781 107.23394,467.31012 106.8125,466.43745 C 105.87928,465.31258 104.93323,464.18732 104,463.06245 C 103.30131,462.23945 102.65335,461.374 101.90625,460.5937 C 100.98599,459.59657 99.88287,458.78047 99.03125,457.7187 C 98.44827,456.85274 97.75553,456.09277 97.0625,455.31245 C 96.82109,455.01 96.54812,454.71977 96.28125,454.43745 C 96.12183,454.40495 95.98292,454.41255 95.84375,454.43745 L 95.84375,454.4375 z M 132.25,460 C 131.97199,460.006 131.68674,460.0349 131.40625,460.0625 C 131.50867,460.0645 131.61507,460.0795 131.71875,460.0938 C 132.05465,460.1132 132.40897,460.0663 132.75,460.0313 C 132.5844,460.0023 132.419,459.9966 132.25,460 z M 130.15625,460.0625 C 130.14345,460.0815 130.13785,460.1061 130.12495,460.125 C 130.32181,460.13 130.52548,460.1083 130.7187,460.0937 C 130.52847,460.0676 130.34303,460.0547 130.1562,460.0624 L 130.15625,460.0625 z M 132.9375,460.28125 C 132.79531,460.28725 132.6733,460.32805 132.53125,460.34375 C 133.18527,460.43585 133.52296,461.03905 134.25,460.96875 C 134.41682,460.93785 134.58094,460.92235 134.75,460.90625 C 134.63833,460.86555 134.53849,460.81045 134.4375,460.75 C 134.33155,460.755 134.23025,460.76 134.125,460.75 C 133.71564,460.715 133.47615,460.50944 133.21875,460.3125 C 133.12605,460.3085 133.0301,460.2773 132.9375,460.2812 L 132.9375,460.28125 z M 135.21875,460.6875 C 135.14675,460.6885 135.07196,460.7129 135,460.7188 C 135.0432,460.7278 135.0772,460.746 135.125,460.7501 C 135.28333,460.7646 135.43399,460.733 135.59375,460.7188 C 135.4713,460.6962 135.34151,460.6854 135.21875,460.6875 z M 136.1875,460.875 C 136.1234,460.877 136.06393,460.9026 136,460.9063 C 136.0927,460.9123 136.18873,460.8983 136.28125,460.9063 C 136.25145,460.8947 136.21785,460.8861 136.18755,460.875 L 136.1875,460.875 z" style="opacity: 0.491532; fill: rgb(252, 233, 79); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline; filter: url(#filter4412-3);"/>
      <rect ry="0" rx="0" y="393.36313" x="83" height="66" width="94" id="rect7287" style="opacity: 0.342342; fill: url(#linearGradient35214) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;" inkscape:r_cx="true" inkscape:r_cy="true"/>
      <rect y="505.36316" x="82" height="1" width="144" id="rect3789" style="opacity: 0.5; fill: rgb(211, 215, 207); fill-opacity: 1; stroke: none; display: inline;"/>
      <path id="text3788" d="M 84.74414,513.6089 C 87.29013,513.6197 83.91344,508.8673 86.34366,511.29324 C 85.41205,512.88848 88.25311,514.48198 85.26858,514.06846 C 84.9792,514.08306 84.6133,513.87613 84.74414,513.6089 z M 88.46191,513.41273 C 90.12201,513.21101 87.91252,514.78263 88.46191,513.41273 z M 92.73926,510.64757 C 94.3475,511.83564 91.77812,512.30523 93.33236,513.74154 C 92.896,515.16849 90.88152,510.69587 92.73926,510.64757 L 92.73926,510.64757 z M 96.05273,512.69108 C 92.00953,513.31973 98.24153,514.20385 96.05273,512.69108 z M 97.12793,512.51359 C 98.48202,515.24324 91.55493,513.24767 95.90572,512.42169 C 97.6515,511.91322 93.04738,511.54652 95.71289,511.3272 C 96.53108,511.21948 97.2589,511.88558 97.12793,512.51361 L 97.12793,512.51359 z M 98.7627,513.61358 C 97.98867,516.75017 97.37462,508.83358 100.99618,511.8844 C 101.78375,512.96001 100.18175,515.07088 98.7627,513.61358 z M 100.59668,512.70042 C 99.11681,509.27644 98.1895,515.99736 100.59668,512.70042 L 100.59668,512.70042 z M 102.0498,511.39024 C 103.74938,512.08646 101.66369,515.29552 102.0518,512.51597 L 102.0548,511.95325 L 102.0498,511.39024 L 102.0498,511.39024 z M 102.0498,510.37199 C 103.51517,510.24245 101.55514,511.59715 102.0498,510.37199 z M 104.98535,511.69151 C 102.10906,512.30673 106.85504,514.81963 105.85693,512.28413 C 105.77163,511.96859 105.41043,511.66734 104.98535,511.69151 z M 104.98535,511.32718 C 109.03097,511.58335 103.62758,516.08609 103.47949,512.70042 C 103.38369,512.02754 104.06239,511.25054 104.98535,511.32718 z M 109.74316,511.49067 C 107.43948,511.31579 107.18761,514.21928 109.71036,513.75296 C 106.39399,515.49168 106.44707,510.02863 109.74316,511.49067 z M 112.17773,512.69108 C 108.13453,513.31976 114.36656,514.20383 112.17773,512.69108 z M 113.25293,512.51359 C 114.60702,515.24324 107.67993,513.24767 112.03071,512.42169 C 113.77649,511.91322 109.17239,511.54652 111.83789,511.3272 C 112.65608,511.21948 113.3839,511.88558 113.25293,512.51361 L 113.25293,512.51359 z M 116.80957,510.64757 C 118.41781,511.83564 115.84843,512.30523 117.40267,513.74154 C 116.96631,515.16851 114.95183,510.69587 116.80957,510.64757 L 116.80957,510.64757 z M 120.12305,512.69108 C 116.07985,513.31973 122.31185,514.20385 120.12305,512.69108 z M 121.19824,512.51359 C 122.55233,515.24324 115.62525,513.24767 119.97603,512.42169 C 121.72183,511.91322 117.1177,511.54652 119.7832,511.3272 C 120.60139,511.21948 121.3292,511.88558 121.19824,512.51361 L 121.19824,512.51359 z M 124.21289,511.79194 C 122.14729,511.18189 122.85745,515.75108 122.12791,512.53546 C 121.95025,511.71981 123.78082,510.61532 124.21289,511.79194 L 124.21289,511.79194 z M 126.27539,512.69108 C 122.23219,513.31973 128.46418,514.20385 126.27539,512.69108 z M 127.35059,512.51359 C 128.70468,515.24324 121.77759,513.24769 126.12837,512.42169 C 127.87416,511.91322 123.27005,511.54651 125.93555,511.32719 C 126.75375,511.21947 127.48154,511.88558 127.35059,512.5136 L 127.35059,512.51359 z M 128.98535,513.61358 C 128.21133,516.75017 127.59728,508.83358 131.21884,511.8844 C 132.00641,512.96001 130.40441,515.07088 128.98535,513.61358 z M 130.81934,512.70042 C 129.33948,509.27645 128.41216,515.99734 130.81934,512.70042 L 130.81934,512.70042 z M 132.27246,511.39024 C 133.97202,512.08648 131.88634,515.29551 132.27446,512.51596 L 132.27746,511.95325 L 132.27246,511.39024 L 132.27246,511.39024 L 132.27246,511.39024 z M 132.27246,510.37199 C 133.73782,510.24245 131.77779,511.59714 132.27246,510.37199 z M 135.42773,512.69108 C 131.38453,513.31974 137.61653,514.20385 135.42773,512.69108 z M 136.50293,512.51359 C 137.85702,515.24324 130.92993,513.24767 135.28071,512.42169 C 137.02649,511.91322 132.42239,511.54652 135.08789,511.3272 C 135.90608,511.21948 136.6339,511.88558 136.50293,512.51361 L 136.50293,512.51359 z M 137.69238,513.41273 C 139.35249,513.21102 137.14298,514.78263 137.69238,513.41273 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; opacity: 0.6; fill: rgb(211, 215, 207); fill-opacity: 1; stroke: none; display: inline; font-family: Impact;"/>
      <rect ry="1.9570312" rx="2" y="518.36316" x="84" height="4" width="94.875" id="rect3807" style="opacity: 0.02; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <path id="text3792" d="M 85.15137,521.60723 C 88.40668,521.07499 85.47325,523.07052 84.83035,521.55753 C 85.56882,520.44741 87.71997,518.64744 84.73885,518.70373 C 88.82648,517.93982 87.11753,520.55356 85.15139,521.60722 L 85.15137,521.60723 z M 88.46191,521.41062 C 90.12201,521.20845 87.91252,522.78355 88.46191,521.41062 z M 92.72754,521.61192 C 91.95351,524.75547 91.33947,516.82131 94.96102,519.87891 C 95.74859,520.95689 94.1466,523.07245 92.72754,521.61192 z M 94.56152,520.69673 C 93.08166,517.26516 92.15435,524.00099 94.56152,520.69673 L 94.56152,520.69673 z M 97.91602,519.78624 C 95.85042,519.17483 96.56057,523.75415 95.83103,520.53139 C 95.65336,519.71394 97.48396,518.60699 97.91602,519.78624 z M 101.16504,520.58672 C 98.2926,520.4505 99.46344,521.7481 100.37839,521.92824 C 95.77175,522.71256 98.94248,517.39943 101.12664,520.09912 L 101.16504,520.58672 L 101.16504,520.58672 z M 100.62598,520.46033 C 100.24265,518.54197 96.7668,521.07575 100.62598,520.46033 z M 104.60449,519.88687 C 106.85418,517.28207 107.14711,524.11859 106.20078,520.5331 C 105.41604,517.96885 103.82242,523.82395 104.35757,520.77064 C 103.21699,518.86409 102.32302,521.06383 102.21744,521.69761 C 101.22366,519.97376 102.77848,518.29376 104.60449,519.88687 L 104.60449,519.88687 z M 109.38867,520.68738 C 105.34548,521.3174 111.57745,522.2035 109.38867,520.68738 z M 110.46387,520.50949 C 111.81796,523.24519 104.89087,521.24521 109.24165,520.41739 C 110.98745,519.9078 106.38333,519.54027 109.04883,519.32047 C 109.86702,519.21251 110.59483,519.8801 110.46387,520.50951 L 110.46387,520.50949 z M 112.11035,518.63933 C 113.7186,519.83004 111.14922,520.30067 112.70345,521.74017 C 112.2671,523.17028 110.2526,518.68773 112.11035,518.63933 z M 113.87695,520.97059 C 113.46051,519.25324 114.83489,519.54918 114.51276,521.08365 C 116.22171,522.69087 116.52598,517.56689 116.86884,520.7429 C 116.85574,522.21625 113.95528,522.51059 113.87695,520.97059 L 113.87695,520.97059 z M 119.64258,519.78624 C 117.57698,519.17485 118.28713,523.75416 117.55758,520.53139 C 117.37992,519.71394 119.21054,518.60697 119.64258,519.78624 z M 121.70508,520.68738 C 117.66188,521.31741 123.89388,522.2035 121.70508,520.68738 z M 122.78027,520.50949 C 124.13436,523.2452 117.20728,521.2452 121.55807,520.41739 C 123.30386,519.9078 118.69972,519.54029 121.36523,519.32048 C 122.18343,519.21252 122.91123,519.88011 122.78027,520.50952 L 122.78027,520.50949 z M 124.42676,518.63933 C 126.03501,519.83004 123.46561,520.30067 125.01986,521.74017 C 124.5835,523.17028 122.56904,518.68775 124.42676,518.63933 z M 127.74023,520.68738 C 123.69703,521.31745 129.92906,522.20348 127.74023,520.68738 z M 128.81543,520.50949 C 130.16952,523.24519 123.24243,521.2452 127.59321,520.41739 C 129.33899,519.9078 124.73489,519.54028 127.40039,519.32048 C 128.21858,519.21252 128.9464,519.8801 128.81543,520.50952 L 128.81543,520.50949 z M 131.83887,518.36314 C 133.53489,519.1075 131.63172,523.66659 131.83887,520.17969 C 131.83887,519.57417 131.83887,518.96866 131.83887,518.36314 z M 134.99414,520.68738 C 130.95094,521.31741 137.18293,522.20349 134.99414,520.68738 z M 136.06934,520.50949 C 137.42342,523.24519 130.49634,521.2452 134.84712,520.41739 C 136.59291,519.9078 131.9888,519.54028 134.6543,519.32048 C 135.47249,519.21252 136.20031,519.88011 136.06934,520.50952 L 136.06934,520.50949 z M 141.18457,519.46088 C 139.31622,519.89416 139.41834,520.40944 141.12417,520.83809 C 142.2224,522.41984 136.74059,521.93136 140.37168,521.52401 C 139.29483,520.26264 137.56313,518.93017 141.18455,519.46088 L 141.18457,519.46088 z M 142.16602,520.97059 C 141.74958,519.25324 143.12395,519.54918 142.80182,521.08365 C 144.51077,522.69087 144.81504,517.56689 145.1579,520.7429 C 145.1448,522.21625 142.24436,522.51059 142.16602,520.97059 L 142.16602,520.97059 z M 146.55176,521.61192 C 145.77774,524.75547 145.16369,516.82131 148.78524,519.87891 C 149.57281,520.95689 147.97081,523.07244 146.55176,521.61192 L 146.55176,521.61192 z M 148.38574,520.69673 C 146.90588,517.26515 145.97857,524.00098 148.38574,520.69673 L 148.38574,520.69673 z M 152.64551,520.58672 C 149.77307,520.4505 150.94391,521.7481 151.85886,521.92824 C 147.25222,522.71256 150.42295,517.39943 152.60711,520.09912 L 152.64551,520.58672 L 152.64551,520.58672 z M 152.10645,520.46033 C 151.72312,518.54197 148.24727,521.07575 152.10645,520.46033 z M 155.43164,519.78624 C 153.36604,519.17485 154.07621,523.75415 153.34665,520.53139 C 153.16898,519.71394 154.99958,518.60699 155.43164,519.78624 z M 158.23535,519.48429 C 155.93168,519.30904 155.6798,522.21896 158.20255,521.75162 C 154.88618,523.49418 154.93926,518.01902 158.23535,519.48429 z M 160.66992,520.68738 C 156.62673,521.31741 162.85871,522.20349 160.66992,520.68738 z M 161.74512,520.50949 C 163.09921,523.2452 156.17212,521.2452 160.5229,520.41739 C 162.26869,519.9078 157.66458,519.54028 160.33008,519.32048 C 161.14827,519.21252 161.87608,519.88011 161.74512,520.50952 L 161.74512,520.50949 z M 162.62402,519.38365 C 165.17027,518.49668 165.2482,520.80813 163.33594,521.55538 C 167.15189,521.60758 161.4485,522.78375 163.15476,521.03268 C 164.78325,519.58452 164.37424,519.73284 162.62402,519.38365 L 162.62402,519.38365 z M 165.77637,519.38365 C 168.32261,518.49668 168.40053,520.80813 166.48828,521.55538 C 170.30423,521.60758 164.60086,522.78375 166.30711,521.03268 C 167.9356,519.58452 167.52657,519.73284 165.77637,519.38365 L 165.77637,519.38365 z M 170.43457,519.68558 C 167.55828,520.30217 172.30426,522.82065 171.30615,520.27952 C 171.22085,519.96327 170.85966,519.66135 170.43457,519.68558 z M 170.43457,519.32045 C 174.48019,519.57719 169.0768,524.08992 168.92871,520.69673 C 168.83291,520.02236 169.51161,519.24363 170.43457,519.32045 z M 172.83105,518.36314 C 174.52707,519.1075 172.62391,523.66658 172.83105,520.17969 C 172.83105,519.57417 172.83105,518.96865 172.83105,518.36314 z M 175.98633,520.68738 C 171.94313,521.31741 178.17513,522.2035 175.98633,520.68738 z M 177.06152,520.50949 C 178.4156,523.2452 171.48852,521.2452 175.83932,520.41739 C 177.58511,519.9078 172.98097,519.54029 175.64648,519.32048 C 176.46467,519.21252 177.19248,519.88011 177.06152,520.50952 L 177.06152,520.50949 z M 178.25098,521.41062 C 179.91108,521.20847 177.70158,522.78355 178.25098,521.41062 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; opacity: 0.6; fill: rgb(211, 215, 207); fill-opacity: 1; stroke: none; display: inline; font-family: Impact;"/>
      <path sodipodi:nodetypes="cccccc" id="path4619" d="M 84,451.48814 C 106.49807,448.07662 124.875,451.32147 144.875,451.36314 L 176,449.61314 L 176,458.36313 L 84,458.36313 L 84,451.48814 z" style="fill: url(#radialGradient35216) rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12840" id="use5280" transform="translate(-400, 300)" width="1600" height="900"/>
  </g>
  <g inkscape:label="x-office-document-template" style="display: none;" inkscape:groupmode="layer" id="g8444">
    <g inkscape:label="plate 5" style="display: none;" inkscape:groupmode="layer" id="g8446">
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="332" x="424" id="rect8448"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="350" x="700" id="rect8450"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="425" x="700" id="rect8452"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="476" x="700" id="rect8454"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="477" x="701" id="rect8456"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="520" x="700" id="rect8458"/>
      <text y="320" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="420" id="text8460">
        <tspan id="tspan8462">mimetypes</tspan>
      </text>
      <text y="320" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="528" id="text8464">
        <tspan id="tspan8466">x-office-document-template</tspan>
      </text>
    </g>
  </g>
  <g inkscape:label="x-office-drawing" style="display: none;" inkscape:groupmode="layer" id="g8468">
    <g inkscape:label="plate 6" style="display: none;" inkscape:groupmode="layer" id="g8470">
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="332" x="824" id="rect8472"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="350" x="1100" id="rect8474"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="425" x="1100" id="rect8476"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="476" x="1100" id="rect8478"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="477" x="1101" id="rect8480"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="520" x="1100" id="rect8482"/>
      <text y="320" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="820" id="text8484">
        <tspan id="tspan8486">mimetypes</tspan>
      </text>
      <text y="320" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="1000" id="text8488">
        <tspan id="tspan8490">x-office-drawing</tspan>
      </text>
    </g>
  </g>
  <g inkscape:label="x-office-drawing-template" style="display: none;" inkscape:groupmode="layer" id="g8492">
    <g inkscape:label="plate 7" style="display: none;" inkscape:groupmode="layer" id="g8494">
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="332" x="1224" id="rect8496"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="350" x="1500" id="rect8498"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="425" x="1500" id="rect8500"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="476" x="1500" id="rect8502"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="477" x="1501" id="rect8504"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="520" x="1500" id="rect8506"/>
      <text y="320" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="1220" id="text8508">
        <tspan id="tspan8510">mimetypes</tspan>
      </text>
      <text y="320" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="1340" id="text8512">
        <tspan id="tspan8514">x-office-drawing-template</tspan>
      </text>
    </g>
  </g>
  <g style="display: inline;" inkscape:label="x-office-spreadsheet" id="layer1" inkscape:groupmode="layer">
    <use style="display: inline;" x="0" y="0" xlink:href="#g7897" id="use10305" transform="translate(800, 604)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8030" id="use10299" transform="translate(800, 604)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8146" id="use10309" transform="translate(800, 604)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8236" id="use10301" transform="translate(800, 604)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g8323" id="use10303" transform="translate(800, 604)" width="1600" height="900"/>
    <g id="g10408" style="opacity: 0.45;" transform="translate(-20)">
      <rect y="830.52124" x="1525.5013" height="1.96803" width="1.9987386" id="rect10335" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="828.52124" x="1525.5013" height="1.96803" width="1.9987386" id="rect10337" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="832.52124" x="1525.5013" height="1.96803" width="1.9987386" id="rect10339" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="830.52124" x="1523.5026" height="1.96803" width="1.9987386" id="rect10341" style="opacity: 1; fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="828.52124" x="1523.5026" height="1.96803" width="1.9987386" id="rect10343" style="opacity: 1; fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="834.52124" x="1525.5013" height="1.96803" width="1.9987386" id="rect10345" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="830.52124" x="1527.5026" height="1.96803" width="1.9987386" id="rect10347" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="830.52124" x="1529.5013" height="1.96803" width="1.9987386" id="rect10349" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="832.52124" x="1527.5026" height="1.96803" width="1.9987386" id="rect10351" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="832.52124" x="1529.5013" height="1.96803" width="1.9987386" id="rect10353" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="834.52124" x="1527.5026" height="1.96803" width="1.9987386" id="rect10359" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="834.52124" x="1529.5013" height="1.96803" width="1.9987386" id="rect10361" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="832.52124" x="1523.5026" height="1.96803" width="1.9987386" id="rect10363" style="opacity: 1; fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="834.52124" x="1523.5026" height="1.96803" width="1.9987386" id="rect10365" style="opacity: 1; fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="828.52124" x="1527.5013" height="1.96803" width="1.9987386" id="rect10404" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="828.52124" x="1529.5013" height="1.96803" width="1.9987386" id="rect10406" style="opacity: 1; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="826.5" x="1523.4998" height="1.9892286" width="2.00632" id="rect10355" style="opacity: 1; fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="826.5" x="1525.506" height="1.9892286" width="2.00632" id="rect10357" style="opacity: 1; fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <rect y="826.5" x="1527.506" height="1.9892286" width="2.00632" id="rect10400" style="opacity: 1; fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
      <path style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; display: inline;" d="M 1529.506,826.5 L 1531.5123,828.48923 L 1529.506,828.48923 L 1529.506,826.5 z" id="rect10402" sodipodi:nodetypes="cccc"/>
    </g>
    <g inkscape:label="plate 8" id="layer3" inkscape:groupmode="layer" style="display: none;">
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="636" x="1224" id="rect8496-0" inkscape:export-filename="/home/lapo/Dropbox/Icons/mango/test 64x64/x-office-spreadsheet.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="654" x="1500" id="rect8498-4"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="729" x="1500" id="rect8500-8"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="780" x="1500" id="rect8502-3"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="781" x="1501" id="rect8504-7"/>
      <rect style="fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="824" x="1500" id="rect8506-3"/>
      <text y="624" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="1220" id="text8508-5">
        <tspan id="tspan8510-7">mimetypes</tspan>
      </text>
      <text y="624" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="1364" id="text8512-7">
        <tspan id="tspan8514-3">x-office-spreadsheet</tspan>
      </text>
    </g>
    <g style="display: inline;" id="g4596" transform="translate(1114, 4)" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
      <g id="g5141" style="opacity: 0.6;" transform="translate(336, 240)">
        <g transform="translate(0, 50)" id="g6349">
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6240" width="5" height="3" x="78.500008" y="371.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5184" width="5" height="3" x="63.5" y="371.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5186" width="5" height="3" x="73.500008" y="371.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6242" width="5" height="3" x="78.500008" y="374.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5188" width="5" height="3" x="68.5" y="371.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5192" width="5" height="3" x="63.5" y="374.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5182" width="4" height="3" x="59.5" y="371.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5194" width="5" height="3" x="73.500008" y="374.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5196" width="5" height="3" x="68.5" y="374.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5200" width="5" height="3" x="63.5" y="377.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5190" width="4" height="3" x="59.5" y="374.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5202" width="5" height="3" x="73.500008" y="377.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6258" width="5" height="3" x="63.5" y="380.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5204" width="5" height="3" x="68.5" y="377.5"/>
          <rect style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5208" width="4" height="3" x="59.5" y="368.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5198" width="4" height="3" x="59.5" y="377.5"/>
          <rect style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5210" width="5" height="3" x="63.5" y="368.5"/>
          <rect style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5212" width="5" height="3" x="73.500008" y="368.5"/>
          <rect style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5214" width="5" height="3" x="68.5" y="368.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6244" width="5" height="3" x="78.500008" y="377.5"/>
          <rect style="fill: url(#linearGradient4664) rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient4666) rgb(0, 0, 0); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6246" width="5" height="3" x="78.500008" y="368.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6250" width="5" height="3" x="83.5" y="374.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6252" width="5" height="3" x="83.5" y="377.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6260" width="5" height="3" x="73.500008" y="380.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6262" width="5" height="3" x="68.5" y="380.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6264" width="5" height="3" x="78.500008" y="380.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6266" width="5" height="3" x="83.5" y="380.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6270" width="5" height="3" x="63.5" y="383.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6256" width="4" height="3" x="59.5" y="380.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6272" width="5" height="3" x="73.500008" y="383.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6274" width="5" height="3" x="68.5" y="383.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6276" width="5" height="3" x="78.500008" y="383.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6278" width="5" height="3" x="83.5" y="383.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect4111" width="5" height="3" x="63.5" y="386.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6268" width="4" height="3" x="59.5" y="383.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect4114" width="5" height="3" x="73.500008" y="386.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6286" width="5" height="3" x="68.5" y="386.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6288" width="5" height="3" x="78.500008" y="386.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6290" width="5" height="3" x="83.5" y="386.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6294" width="5" height="3" x="63.5" y="389.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6280" width="4" height="3" x="59.5" y="386.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6296" width="5" height="3" x="73.500008" y="389.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6298" width="5" height="3" x="68.5" y="389.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6300" width="5" height="3" x="78.500008" y="389.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6302" width="5" height="3" x="83.5" y="389.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6306" width="5" height="3" x="63.5" y="392.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6292" width="4" height="3" x="59.5" y="389.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6308" width="5" height="3" x="73.500008" y="392.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6310" width="5" height="3" x="68.5" y="392.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6312" width="5" height="3" x="78.500008" y="392.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6314" width="5" height="3" x="83.5" y="392.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6320" width="5" height="3" x="63.5" y="395.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6304" width="4" height="3" x="59.5" y="392.5"/>
          <rect style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6316" width="4" height="3" x="59.5" y="395.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6322" width="5" height="3" x="73.500008" y="395.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6324" width="5" height="3" x="68.5" y="395.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6329" width="5" height="3" x="78.500008" y="395.5"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect6331" width="5" height="3" x="83.5" y="395.5"/>
        </g>
        <g transform="translate(0, 50)" id="g5133">
          <rect style="fill: url(#linearGradient4668) rgb(0, 0, 0); fill-opacity: 1; stroke: rgb(46, 52, 54); stroke-width: 1; stroke-linecap: butt; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: 1, 2; stroke-dashoffset: 0.5; stroke-opacity: 1;" id="rect4351" width="20" height="18" x="68.5" y="380.5"/>
        </g>
      </g>
      <g id="g5652" transform="translate(336, 290)">
        <path id="path5633" d="M 70.5,391.5 L 75.5,388.5 L 77.5,390.5 L 81.5,386.5 L 83.5,388.5 L 85.5,386.5 L 86.5,387.5 L 86.5,396.5 L 70.5,396.5 L 70.5,391.5" style="fill: url(#linearGradient4670) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" sodipodi:nodetypes="cccccccccc"/>
        <g id="g5569">
          <path style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1px; stroke-linecap: square; stroke-linejoin: miter; stroke-opacity: 1; display: inline;" d="M 70.5,382.5 L 70.5,396.5 L 86.5,396.5" id="path5123"/>
        </g>
      </g>
    </g>
    <g style="display: inline;" id="g8040" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" transform="translate(1158, 5)">
      <g transform="translate(183, 417)" style="opacity: 0.5;" id="g5520">
        <g id="g6863" transform="translate(0, -30)">
          <rect y="395.5" x="171.5" height="2.0000079" width="3" id="rect5387" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="395.5" x="168.5" height="2" width="3" id="rect5389" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="395.5" x="174.5" height="2.0000079" width="3" id="rect5391" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="397.5" x="171.5" height="2.0145037" width="2.9978256" id="rect5393" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="397.5" x="168.5" height="2" width="3" id="rect5395" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="393.51077" x="168.49969" height="1.9892273" width="3.0003052" id="rect5397" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="397.5" x="174.5" height="2.0145037" width="2.9978256" id="rect5399" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="393.51077" x="171.49843" height="1.9892273" width="3.0015755" id="rect5401" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="393.51077" x="174.49843" height="1.9892273" width="3.0015755" id="rect5403" style="fill: url(#linearGradient8076) rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient8078) rgb(0, 0, 0); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5405" width="2.9978256" height="2.0145037" x="171.5" y="399.5"/>
          <rect style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5407" width="3" height="2" x="168.5" y="399.5"/>
          <rect style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5409" width="2.9978256" height="2.0145037" x="174.5" y="399.5"/>
          <rect style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5514" width="2.9978256" height="2.0145037" x="171.5" y="401.5"/>
          <rect style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5516" width="3" height="2" x="168.5" y="401.5"/>
          <rect style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5518" width="2.9978256" height="2.0145037" x="174.5" y="401.5"/>
          <rect y="403.5" x="171.5" height="2.0145037" width="2.9978256" id="rect5552" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="403.5" x="168.5" height="2" width="3" id="rect5554" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="403.5" x="174.5" height="2.0145037" width="2.9978256" id="rect5556" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="405.5" x="171.5" height="2.0145037" width="2.9978256" id="rect5566" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="405.5" x="168.5" height="2" width="3" id="rect5571" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="395.5" x="164.5" height="2" width="4" id="rect5481" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="397.5" x="164.5" height="2" width="4" id="rect5483" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="393.5" x="164.5" height="2" width="4" id="rect5485" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="399.5" x="164.5" height="2" width="4" id="rect5487" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" id="rect5521" width="4" height="2" x="164.5" y="401.5"/>
          <rect y="403.5" x="164.5" height="2" width="4" id="rect5564" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="405.5" x="174.5" height="2.0145037" width="2.9978256" id="rect5574" style="fill: none; stroke: rgb(157, 158, 154); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="405.5" x="164.5" height="2" width="4" id="rect5576" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
        </g>
        <g id="g5513">
          <rect y="369.52042" x="168.5" height="7.9796047" width="9" id="rect5505" style="fill: rgb(255, 255, 255); fill-opacity: 1; stroke: rgb(0, 0, 0); stroke-width: 1; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: 1, 1; stroke-dashoffset: 1.5; stroke-opacity: 1; display: inline;"/>
        </g>
      </g>
      <path sodipodi:nodetypes="ccc" id="path5507" d="M 353.5,788.5 L 353.5,792.5 L 358.5,792.5" style="opacity: 0.8; fill: none; stroke: rgb(136, 138, 133); stroke-width: 1px; stroke-linecap: square; stroke-linejoin: miter; stroke-opacity: 1; display: inline;"/>
      <path id="rect5167" d="M 358,788 L 358,789 L 357,789 L 357,790 L 356,790 L 356,789 L 355,789 L 355,790 L 354,790 L 354,792 L 355,792 L 356,792 L 357,792 L 358,792 L 359,792 L 359,788 L 358,788 z" style="fill: url(#linearGradient8080) rgb(0, 0, 0); fill-opacity: 1; stroke: none;"/>
    </g>
    <g style="display: inline;" id="g35481" transform="translate(1197, 10)">
      <rect ry="2" rx="2" y="852" x="221.1875" height="4" width="10.8125" id="rect4588" style="opacity: 0.03; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <rect ry="1.9375" rx="1.9375" y="656.125" x="192" height="3.875" width="32" id="rect4567" style="opacity: 0.03; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <path id="text4560" d="M 194.08691,659.50781 C 194.32064,660.23931 193.84792,662.22443 193.54492,660.62648 C 193.7572,659.39675 193.11233,657.40355 193.88204,656.66395 C 194.18121,657.70733 195.36768,655.82856 196.05386,657.03843 C 196.96881,658.02306 196.43597,660.3809 194.82032,660.05615 C 194.51356,659.98855 194.2319,659.79023 194.08691,659.50781 L 194.08691,659.50781 z M 195.9209,658.3623 C 196.17296,656.40316 193.23175,657.21402 194.10097,658.90363 C 194.59423,660.03284 196.12511,659.6548 195.9209,658.3623 z M 199.27539,657.22266 C 197.2757,656.52885 198.33238,659.62289 197.57728,660.02734 C 197.25164,659.22906 197.07197,657.14989 197.69377,656.66498 C 197.84795,657.92412 199.29708,655.46617 199.27539,657.22266 L 199.27539,657.22266 z M 202.52441,658.22461 C 202.15819,658.94689 198.81423,657.82018 200.5802,659.4587 C 201.28085,659.7972 203.34815,659.20055 201.79217,660.05367 C 199.72014,660.79273 198.52556,657.59651 200.45459,656.74371 C 201.4691,656.29319 202.64698,657.10872 202.52441,658.22461 z M 201.98535,658.06641 C 202.32534,656.07277 198.66414,657.99091 200.90072,658.06841 C 201.26227,658.06785 201.62381,658.06741 201.98535,658.06641 z M 205.96387,657.34863 C 206.79774,655.72156 208.85642,657.31203 208.17871,658.76221 C 208.52489,659.54594 207.67467,660.71801 207.63672,659.37843 C 207.94248,658.38315 207.35208,656.12024 206.18462,657.62633 C 205.76765,658.18202 206.49425,660.76691 205.48914,659.69287 C 205.77683,658.68529 205.41054,656.05266 204.0611,657.6269 C 203.64368,658.18255 204.37,660.76695 203.36512,659.69287 C 203.64092,658.96791 202.86333,656.3524 203.88594,656.85609 C 203.96484,657.44293 205.63844,655.74686 205.96387,657.34863 z M 210.74805,658.35059 C 209.22681,657.82646 209.49325,660.39481 210.83405,659.48818 C 211.23916,659.24178 211.64595,658.08966 210.74805,658.35059 z M 211.82324,658.12793 C 211.88814,658.80271 211.91964,660.82973 211.18622,659.64166 C 210.03419,661.25293 207.78739,658.4555 209.94525,657.98419 C 210.66206,658.03819 211.98958,657.87494 210.78991,657.17491 C 210.04901,657.26471 208.49728,657.18291 209.93055,656.65362 C 210.92309,656.47199 211.95192,656.9935 211.82324,658.12793 L 211.82324,658.12793 z M 213.46973,655.78711 C 212.86527,657.14786 214.48069,656.32264 214.58008,657.02953 C 213.10828,656.72718 213.27892,658.53829 213.69904,659.48984 C 214.68254,659.19479 214.90535,660.36229 213.71994,659.99768 C 212.16391,659.55105 213.5122,657.36949 212.52302,656.84207 C 213.4511,656.71653 212.34456,655.57008 213.46976,655.78711 L 213.46973,655.78711 z M 215.23633,658.70508 C 215.03913,657.98257 215.39284,655.66257 215.77539,657.34032 C 215.4537,658.37145 216.09489,660.59866 217.30002,659.11468 C 217.751,658.56798 216.99594,655.94992 218.00785,657.02669 C 217.73343,657.75102 218.50676,660.36353 217.49027,659.86321 C 217.22218,659.57838 215.59991,660.72348 215.29753,659.32707 C 215.22173,659.13009 215.20423,658.91299 215.23633,658.70508 L 215.23633,658.70508 z M 221.00195,657.22266 C 219.00227,656.52886 220.05894,659.62289 219.30384,660.02734 C 218.9782,659.22905 218.79853,657.14989 219.42033,656.66498 C 219.57452,657.92412 221.02362,655.46617 221.00195,657.22266 L 221.00195,657.22266 z M 223.06445,658.35059 C 221.54323,657.82645 221.80965,660.3948 223.15045,659.48818 C 223.55556,659.24178 223.96237,658.08967 223.06445,658.35059 z M 224.13965,658.12793 C 224.20455,658.80271 224.23605,660.82973 223.50263,659.64166 C 222.3506,661.25294 220.10378,658.45551 222.26166,657.98419 C 222.97846,658.03819 224.30599,657.87495 223.10631,657.17491 C 222.36541,657.26461 220.8137,657.18291 222.24696,656.65362 C 223.23949,656.47199 224.26833,656.9935 224.13965,658.12793 L 224.13965,658.12793 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-align: start; line-height: 125%; text-anchor: start; fill: rgb(211, 215, 207); fill-opacity: 1; stroke: none; font-family: Bitstream Vera Sans;"/>
      <rect y="664" x="70" height="1" width="162" id="rect3786" style="opacity: 0.5; fill: rgb(211, 215, 207); fill-opacity: 1; stroke: none;"/>
      <path id="path6576" d="M 140.50603,800.27306 L 166.43561,783.35441 L 176.80744,794.63351 L 197.55111,772.07531 L 207.92294,783.35441 L 218.29477,772.07531 L 223.48069,777.71486 L 223.48069,828.4708 L 140.50603,828.4708 L 140.50603,800.27306" style="opacity: 0.333333; fill: url(#linearGradient6588) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline; filter: url(#filter6920);" sodipodi:nodetypes="cccccccccc"/>
      <g transform="translate(0, 2)" style="opacity: 0.5;" id="g6506">
        <path style="fill: url(#linearGradient6479) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 166.4375,781.34375 L 140.5,798.28125 L 140.5,808.28125 L 166.4375,791.34375 L 166.4375,781.34375 z" id="path6467" sodipodi:nodetypes="ccccc"/>
        <path style="fill: url(#linearGradient6487) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 176.8125,792.625 L 166.4375,781.34375 L 166.4375,791.34375 L 176.8125,802.625 L 176.8125,792.625 z" id="path6469" sodipodi:nodetypes="ccccc"/>
        <path style="fill: url(#linearGradient6489) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 197.5625,770.0625 L 176.8125,792.625 L 176.8125,802.625 L 197.5625,780.0625 L 197.5625,770.0625 z" id="path6471" sodipodi:nodetypes="ccccc"/>
        <path style="fill: url(#linearGradient6492) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 197.5625,770.0625 L 197.5625,780.0625 L 207.9375,791.34375 L 207.9375,781.34375 L 197.5625,770.0625 z" id="path6473" sodipodi:nodetypes="ccccc"/>
        <path style="fill: url(#linearGradient6494) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 207.9375,791.34375 L 218.28125,780.0625 L 218.28125,770.0625 L 207.9375,781.34375 L 207.9375,791.34375 z" id="path6475" sodipodi:nodetypes="ccccc"/>
        <path style="fill: url(#linearGradient6462) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" d="M 218.28125,780.0625 L 223.46875,785.71875 L 223.46875,775.71875 L 218.28125,770.0625 L 218.28125,780.0625 z" id="path6477" sodipodi:nodetypes="ccccc"/>
      </g>
      <g style="opacity: 0.7;" transform="translate(240)" id="g7104">
        <g id="g5752" style="fill: none; stroke: rgb(136, 138, 133);" transform="translate(-240)">
          <rect y="684.50006" x="91.500008" height="11.999939" width="19.999992" id="rect4894" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="684.50006" x="111.50001" height="11.999939" width="19.999992" id="rect4896" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="684.50006" x="131.5" height="11.999939" width="19.999992" id="rect4898" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="684.50006" x="151.5" height="11.999939" width="19.999992" id="rect4900" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="684.50006" x="171.5" height="11.999939" width="19.999992" id="rect4902" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="684.50006" x="191.5" height="11.999939" width="19.999992" id="rect4904" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="684.50006" x="211.5" height="11.999939" width="19.999992" id="rect4906" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="696.50006" x="91.500008" height="11.999939" width="19.999992" id="rect4934" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="696.50006" x="111.50001" height="11.999939" width="19.999992" id="rect4936" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="696.50006" x="131.5" height="11.999939" width="19.999992" id="rect4938" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="696.50006" x="151.5" height="11.999939" width="19.999992" id="rect4940" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="696.50006" x="171.5" height="11.999939" width="19.999992" id="rect4942" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="696.50006" x="191.5" height="11.999939" width="19.999992" id="rect4944" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="696.50006" x="211.5" height="11.999939" width="19.999992" id="rect4946" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="708.50006" x="91.500008" height="11.999939" width="19.999992" id="rect4952" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="708.50006" x="111.50001" height="11.999939" width="19.999992" id="rect4954" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="708.50006" x="131.5" height="11.999939" width="19.999992" id="rect4956" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="708.50006" x="151.5" height="11.999939" width="19.999992" id="rect4958" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="708.50006" x="171.5" height="11.999939" width="19.999992" id="rect4960" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="708.50006" x="191.5" height="11.999939" width="19.999992" id="rect4962" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="708.50006" x="211.5" height="11.999939" width="19.999992" id="rect4964" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="720.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5073" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="720.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5075" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="720.50006" x="131.5" height="11.999939" width="19.999992" id="rect5077" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="720.50006" x="151.5" height="11.999939" width="19.999992" id="rect5079" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="720.50006" x="171.5" height="11.999939" width="19.999992" id="rect5081" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="720.50006" x="191.5" height="11.999939" width="19.999992" id="rect5083" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="720.50006" x="211.5" height="11.999939" width="19.999992" id="rect5085" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="732.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5089" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="732.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5091" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="732.50006" x="131.5" height="11.999939" width="19.999992" id="rect5093" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="732.50006" x="151.5" height="11.999939" width="19.999992" id="rect5095" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="732.50006" x="171.5" height="11.999939" width="19.999992" id="rect5097" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="732.50006" x="191.5" height="11.999939" width="19.999992" id="rect5099" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="732.50006" x="211.5" height="11.999939" width="19.999992" id="rect5101" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="744.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5105" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="744.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5107" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="756.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5121" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="756.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5123" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="768.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5139" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="768.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5141" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="780.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5155" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="780.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5157" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="792.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5172" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="792.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5174" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="804.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5189" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="804.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5191" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="816.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5207" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="816.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5209" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="828.50006" x="91.500008" height="11.999939" width="19.999992" id="rect5223" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="828.50006" x="111.50001" height="11.999939" width="19.999992" id="rect5225" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
        </g>
        <g id="g5845" style="fill: rgb(186, 189, 182); stroke: rgb(136, 138, 133);" transform="translate(-240)">
          <rect y="804.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5187" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="684.50006" x="72.500008" height="11.999939" width="18.999992" id="rect4892" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="696.50006" x="72.500008" height="11.999939" width="18.999992" id="rect4932" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="708.50006" x="72.500008" height="11.999939" width="18.999992" id="rect4950" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="720.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5071" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="732.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5087" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="744.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5103" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="756.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5119" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="768.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5137" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="780.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5153" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="792.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5170" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="816.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5205" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="828.50006" x="72.500008" height="11.999939" width="18.999992" id="rect5221" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
        </g>
        <g id="g5742" transform="translate(-240)">
          <rect y="672.50006" x="72.500008" height="11.999939" width="18.999992" id="rect4583" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="672.50006" x="91.500008" height="11.999939" width="19.999992" id="rect4864" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="672.50006" x="111.50001" height="11.999939" width="19.999992" id="rect4868" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="672.50006" x="131.5" height="11.999939" width="19.999992" id="rect4870" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="672.50006" x="151.5" height="11.999939" width="19.999992" id="rect4872" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="672.50006" x="171.5" height="11.999939" width="19.999992" id="rect4874" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="672.50006" x="191.5" height="11.999939" width="19.999992" id="rect4876" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          <rect y="672.50006" x="211.5" height="11.999939" width="19.999992" id="rect4878" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
        </g>
      </g>
      <path id="text6209" d="M 144.375,675.40625 C 144.06008,677.74831 144.79017,682.0383 144.9718,677.19138 C 144.97088,676.61336 145.14637,675.60776 144.375,675.40625 z M 159.5625,675.40625 C 159.5004,677.59309 159.4814,681.9422 160.50872,677.52194 C 162.42688,677.40458 162.25484,681.82956 162.13294,677.68499 C 160.8313,675.25706 160.15728,677.77819 159.5625,675.40625 L 159.5625,675.40625 z M 218.5625,675.40625 C 218.24758,677.74831 218.97767,682.0383 219.1593,677.19138 C 219.15838,676.61336 219.33387,675.60776 218.5625,675.40625 z M 220.21875,675.40625 C 219.78778,677.17375 221.67318,675.18329 220.21875,675.40625 z M 77.8125,675.75 C 76.193612,678.27314 80.690085,682.06283 78.210666,677.95467 C 79.80695,675.66882 79.7215,678.04317 77.8125,675.75 z M 100.59375,675.75 C 98.974864,678.27314 103.47133,682.06283 100.99191,677.95467 C 102.58817,675.66882 102.50278,678.04317 100.59375,675.75 z M 157.21875,675.75 C 155.5915,678.2763 160.08508,682.06591 157.61716,677.96802 C 159.18622,675.66374 159.15411,678.04802 157.21875,675.75 z M 81.3125,676.59375 C 78.984486,676.9201 84.168058,678.24859 80.34375,678.1875 C 80.188226,683.11707 85.676757,677.66656 81.3125,676.59375 z M 85.4375,676.59375 C 82.592701,675.80113 84.118498,682.64393 84.613004,677.9236 C 86.524043,675.58468 86.298059,683.23104 86.582885,677.9136 C 86.562965,677.37509 86.20215,676.26728 85.4375,676.59326 L 85.4375,676.59375 z M 98.53125,676.59375 C 95.244457,676.82031 101.28748,680.54378 97.25,679.28125 C 100.74762,681.97765 97.918568,676.28353 98.818938,677.17088 C 99.941776,677.43011 99.860279,676.30138 98.53125,676.59375 z M 122.0625,676.59375 C 119.64859,676.88745 124.9072,678.25713 121.0625,678.1875 C 120.90611,683.08291 126.36969,677.72291 122.0625,676.59375 z M 126.15625,676.59375 C 123.32204,675.81049 124.82439,682.62504 125.35897,677.94961 C 127.25151,675.56211 127.04431,683.24559 127.30136,677.87911 C 127.29006,677.34664 126.91147,676.22957 126.15625,676.5937 L 126.15625,676.59375 z M 139.71875,676.59375 C 136.8404,675.80878 138.29026,682.71173 139.01536,677.85847 L 139.58024,677.0573 L 139.71875,676.59375 L 139.71875,676.59375 z M 164.75,676.59375 C 159.69094,677.48529 168.60353,681.78648 163.91638,678.96949 C 165.44971,678.32068 167.77021,677.67163 164.75,676.59375 z M 182.59375,676.59375 C 176.71689,680.23435 188.59551,681.0133 182.59375,676.59375 z M 186.625,676.59375 C 183.71522,675.77101 185.16114,682.72042 185.91123,677.87157 L 186.46544,677.05671 L 186.625,676.59375 L 186.625,676.59375 z M 198.9375,676.59375 C 196.05915,675.80878 197.50901,682.71173 198.23411,677.85847 L 198.79899,677.0573 L 198.9375,676.59375 L 198.9375,676.59375 z M 200.9375,676.59375 C 195.06064,680.23435 206.93926,681.0133 200.9375,676.59375 z M 204.75,676.59375 C 200.03947,677.16551 207.86212,682.30783 203.73308,678.57024 C 203.32285,677.04206 207.0511,676.72149 204.75,676.59375 z M 223.03125,676.59375 C 220.61734,676.88745 225.87595,678.25713 222.03125,678.1875 C 221.91672,683.0942 227.31314,677.70066 223.03125,676.59375 z M 102.5625,676.68745 C 104.55937,678.76116 102.13036,683.56985 104.81678,679.26137 C 105.75805,676.77236 105.48227,676.43822 104.0351,678.76875 C 103.15223,678.35075 103.84462,676.35571 102.5625,676.68745 z M 115.6875,676.68745 C 115.84025,680.92192 117.68,678.94942 118.05305,678.15185 C 119.27587,683.57053 120.61996,673.1004 119.02425,678.92185 C 118.46632,675.39947 117.20501,677.9366 116.79938,678.6508 C 116.63439,677.98317 116.51571,676.92745 115.6875,676.68745 z M 140.53125,676.68745 C 138.93243,681.08006 145.64073,680.13985 142.79351,677.07011 C 142.19087,681.71933 141.36185,679.05526 140.53125,676.68745 z M 176.09375,676.68745 C 176.27489,680.9311 178.10693,678.91296 178.48095,678.16438 C 179.69949,683.58576 181.02475,673.11922 179.45069,678.90312 C 178.87519,674.9968 177.50599,678.48718 177.18713,678.74903 C 177.04709,678.02328 177.03712,676.85532 176.09375,676.68745 z M 220.21875,676.68745 C 220.22275,678.86002 219.58937,683.51943 220.84904,678.70685 C 220.81234,678.06887 220.99041,676.98635 220.21875,676.68745 z M 164.75,677.06245 C 167.96429,678.74732 161.45113,677.95306 164.75,677.06245 z M 182.59375,677.06245 C 186.43008,680.13196 178.87047,680.17254 182.59375,677.06245 z M 200.9375,677.06245 C 204.77383,680.13196 197.21422,680.17254 200.9375,677.06245 z M 81.65625,678.31245 C 83.878469,680.19561 78.260052,678.891 81.65625,678.31245 z M 122.40625,678.31245 C 124.51341,680.23603 119.05196,678.84652 122.40625,678.31245 z M 223.375,678.31245 C 225.48216,680.23603 220.02071,678.84652 223.375,678.31245 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; font-family: Impact;"/>
      <g id="g4671" transform="matrix(4.99151, 0, 0, 5.33346, -210.413, -1284.89)" style="fill: url(#linearGradient6631) rgb(0, 0, 0); fill-opacity: 1;">
        <rect y="380.5" x="68.5" height="18" width="20.033012" id="rect4673" style="fill: none; stroke: rgb(46, 52, 54); stroke-width: 0.193811; stroke-linecap: butt; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: 0.387623, 0.387623; stroke-dashoffset: 0.0969057; stroke-opacity: 1;"/>
      </g>
      <path id="path6991" d="M 70.5,391.5 L 75.5,388.5 L 77.5,390.5 L 81.5,386.5 L 83.5,388.5 L 85.5,386.5 L 86.5,387.5" style="fill: none; stroke: url(#radialGradient36072) rgb(0, 0, 0); stroke-width: 0.184912; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline; filter: url(#filter7025);" sodipodi:nodetypes="cccccccc" transform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1404.61)"/>
      <g id="g4675" transform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1404.61)">
        <path id="path4677" d="M 70.5,391.5 L 75.5,388.5 L 77.5,390.5 L 81.5,386.5 L 83.5,388.5 L 85.5,386.5 L 86.5,387.5 L 86.5,396.5 L 70.5,396.5 L 70.5,391.5" style="fill: url(#linearGradient6485) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none; display: inline;" sodipodi:nodetypes="cccccccccc"/>
        <g id="g4679"/>
      </g>
      <path id="text6264" d="M 162.25,688 C 161.9135,688.008 161.50065,688.0753 161,688.1875 C 164.74464,688.1526 161.20763,691.12474 162.25,691.71875 C 163.22959,690.22934 164.60548,687.94517 162.25,688 z M 126.78125,688.0937 C 126.6607,688.0867 126.53995,688.0987 126.46875,688.125 C 124.02685,688.2034 124.34565,689.97163 125.25,691.0625 C 125.1668,690.78397 125.38701,690.38728 126.21875,689.875 C 128.46703,691.36512 126.36375,691.81715 125.53125,691.375 C 126.38898,692.17047 127.52106,692.29785 127.5625,690.25 C 125.51473,689.74877 124.44836,688.67515 127.375,688.625 C 127.57812,688.30089 127.1429,688.11538 126.78125,688.09375 L 126.78125,688.0937 z M 186.78125,688.0937 C 186.6607,688.0867 186.53995,688.0987 186.46875,688.125 C 184.02685,688.2034 184.34565,689.97163 185.25,691.0625 C 185.1668,690.78397 185.38701,690.38728 186.21875,689.875 C 188.46703,691.36512 186.36375,691.81715 185.53125,691.375 C 186.38898,692.17047 187.52106,692.29785 187.5625,690.25 C 185.51473,689.74877 184.44836,688.67515 187.375,688.625 C 187.57813,688.30089 187.1429,688.11538 186.78125,688.09375 L 186.78125,688.0937 z M 96.46875,688.125 C 93.016232,688.65283 100.14093,688.78255 96.28125,690.375 C 92.632917,692.35962 100.7793,692.33427 96.3125,691.4375 C 96.77645,690.46622 99.814819,688.55232 96.46875,688.125 z M 102.40625,688.125 C 97.963503,688.82532 103.89188,694.78811 103.90625,690.09375 C 103.99115,689.2898 103.56328,688.03482 102.40625,688.125 z M 136.71875,688.125 L 136.40625,688.1875 C 134.961,688.29222 137.88941,690.75663 135.75,691.96875 C 139.14638,692.92524 136.19839,689.52658 136.71875,688.125 z M 142.34375,688.125 C 140.57947,688.56876 140.67968,690.2041 141.34375,691.1875 C 141.22528,690.95532 141.44734,690.62577 142.34375,690.21875 C 143.22354,690.69729 143.45162,691.02806 143.375,691.25 C 143.52991,690.95339 143.6599,690.56225 143.75,690.03125 C 143.43573,689.29354 144.07131,687.94807 142.34375,688.125 z M 145.78125,688.125 C 142.16972,689.75149 149.41547,691.17573 145.15625,691.90625 C 148.13869,693.00779 148.68214,687.86044 145.78125,688.125 z M 156.6875,688.125 C 152.27939,688.85556 158.17078,694.77777 158.21875,690.09375 C 158.28345,689.28592 157.8419,688.04115 156.6875,688.125 z M 182.3125,688.125 C 179.26493,688.89383 181.98678,693.89889 183.3125,691.3125 C 182.88216,691.91606 179.71098,691.43355 182.3125,690.21875 C 183.19572,690.69295 183.42176,691.02773 183.34375,691.25 C 183.4498,691.029 183.54217,690.76731 183.625,690.4375 C 183.39857,689.49 184.26382,688.02112 182.3125,688.125 z M 196.5,688.125 C 193.04749,688.65283 200.17218,688.78255 196.3125,690.375 C 192.66418,692.35962 200.81056,692.33427 196.3438,691.4375 C 196.80775,690.46622 199.84612,688.55232 196.50005,688.125 L 196.5,688.125 z M 206.25,688.125 C 201.83986,688.83964 207.73587,694.78122 207.75,690.09375 C 207.8349,689.2898 207.40703,688.03482 206.25,688.125 z M 222.1875,688.125 C 219.05195,688.4576 225.92108,689.31363 221.75,690.59375 C 218.72689,692.7884 226.59697,691.6959 222,691.625 C 222.17202,690.45722 225.7236,688.40356 222.1875,688.125 z M 226.34375,688.125 L 226.03125,688.1875 C 224.586,688.29222 227.51441,690.75663 225.375,691.96875 C 228.72747,692.92088 225.8359,689.49956 226.34375,688.125 z M 116.84375,688.1563 L 116.375,688.1876 C 114.73961,688.55062 117.76788,690.5912 115.8125,691.9376 C 119.24666,692.89036 115.9064,689.53677 116.84375,688.15635 L 116.84375,688.1563 z M 176.84375,688.1563 L 176.375,688.1876 C 174.73961,688.55062 177.76788,690.5912 175.8125,691.9376 C 179.24667,692.89036 175.9064,689.53677 176.84375,688.15635 L 176.84375,688.1563 z M 202.71875,688.1563 L 202.21875,688.1876 C 201.18277,688.38315 203.23541,690.82827 201.75,691.96885 C 205.1971,692.75143 201.5171,689.59452 202.71875,688.15635 L 202.71875,688.1563 z M 216.9375,688.1563 L 216.46875,688.1876 C 214.83336,688.55062 217.86163,690.5912 215.90625,691.9376 C 219.34042,692.89036 216.00015,689.53677 216.9375,688.15635 L 216.9375,688.1563 z M 106.4375,688.1876 C 104.47246,689.93389 104.28378,691.34186 107.125,691.78135 C 107.63282,691.31729 107.59952,688.45474 106.4375,688.1876 z M 122.53125,688.1876 C 120.57817,689.93348 120.36269,691.32709 123.1875,691.78135 C 123.7396,691.28188 123.61716,688.5386 122.53125,688.1876 z M 166.4375,688.1876 C 164.50924,689.92694 164.31104,691.34348 167.125,691.78135 C 167.6808,691.30009 167.57235,688.48106 166.4375,688.1876 z M 102.40625,688.5 C 105.48648,689.73205 100.75561,693.50718 101.53125,689.625 C 101.56635,689.1766 101.73875,688.50967 102.40625,688.5 z M 142.34375,688.5 C 145.21003,689.93517 139.48618,689.85503 142.34375,688.5 z M 146.09375,688.5 C 149.57034,690.80386 142.64276,690.62489 146.09375,688.5 z M 156.6875,688.5 C 159.80416,689.71551 155.02951,693.51725 155.8125,689.625 C 155.8476,689.1766 156.02,688.50967 156.6875,688.5 z M 182.3125,688.5 C 185.17878,689.93517 179.45493,689.85503 182.3125,688.5 z M 206.25,688.5 C 209.36666,689.71551 204.59201,693.51725 205.375,689.625 C 205.4101,689.1766 205.5825,688.50967 206.25,688.5 z M 106.59375,688.65625 C 108.02265,690.34616 103.88396,691.6463 106.125,689.28125 L 106.59375,688.65625 z M 122.6875,688.65625 C 124.1164,690.34616 119.97771,691.6463 122.21875,689.28125 L 122.6875,688.65625 z M 166.59375,688.65625 C 167.73209,690.85884 163.53411,691.67608 166.59375,688.65625 z M 125.25,691.09375 C 125.2912,691.19859 125.38486,691.27592 125.5,691.34375 C 125.4156,691.26325 125.32737,691.18577 125.25,691.09375 z M 185.25,691.09375 C 185.2912,691.19859 185.38486,691.27592 185.5,691.34375 C 185.4156,691.26325 185.32737,691.18577 185.25,691.09375 z M 143.34375,691.3125 C 143.09115,691.65755 141.94878,691.65271 141.5,691.3438 C 142.03971,692.00285 142.81647,692.25821 143.34375,691.3125 z M 99.21875,691.3438 C 98.837682,693.14756 100.99851,691.14659 99.21875,691.3438 z M 119.125,691.3438 C 118.74393,693.14756 120.90476,691.14659 119.125,691.3438 z M 139.15625,691.3438 C 138.77518,693.14756 140.93601,691.14659 139.15625,691.3438 z M 159.25,691.3438 C 158.86893,693.14756 161.02976,691.14659 159.25,691.3438 z M 179.125,691.3438 C 178.74393,693.14756 180.90476,691.14659 179.125,691.3438 z M 199.25,691.3438 C 198.86893,693.14756 201.02976,691.14659 199.25,691.3438 z M 219.21875,691.3438 C 218.83768,693.14756 220.99851,691.14659 219.21875,691.3438 z M 166.25,700 C 165.92148,700.0121 165.51337,700.0684 165.03125,700.1875 C 168.80651,700.1443 165.19707,703.03672 166.3125,703.5625 C 167.34796,702.23055 168.54964,699.91546 166.25,700 z M 102.125,700.0937 C 101.85286,700.1088 101.5593,700.1296 101.21875,700.1874 C 105.4268,699.70995 100.18994,705.74801 103.125,702.53115 C 104.27501,700.89161 104.02996,699.98812 102.125,700.09365 L 102.125,700.0937 z M 122.125,700.0937 C 121.85286,700.1088 121.5593,700.1296 121.21875,700.1874 C 125.4268,699.70995 120.18994,705.74801 123.125,702.53115 C 124.27501,700.89161 124.02996,699.98812 122.125,700.09365 L 122.125,700.0937 z M 222.125,700.0937 C 221.85286,700.1088 221.5593,700.1296 221.21875,700.1874 C 225.42681,699.70995 220.18993,705.74801 223.125,702.53115 C 224.27501,700.89161 224.02995,699.98812 222.125,700.09365 L 222.125,700.0937 z M 107.09375,700.125 C 106.9708,700.12 106.85609,700.13 106.78125,700.1563 C 104.34565,700.2446 104.6851,701.90987 105.59375,702.93755 C 105.50565,702.67512 105.70532,702.30846 106.53125,701.81255 C 108.72943,703.14609 106.85719,703.61849 105.96875,703.2813 C 106.8148,703.96052 107.86796,704.02312 107.90625,702.1563 C 105.81943,701.69102 104.84025,700.60805 107.75,700.5938 C 107.93262,700.27603 107.46259,700.1413 107.09375,700.12505 L 107.09375,700.125 z M 162.96875,700.125 C 162.85596,700.1141 162.73985,700.134 162.625,700.1563 C 160.93604,700.81205 161.02869,702.01626 161.625,702.8438 C 161.6888,702.64816 161.98156,702.41133 162.625,702.12505 C 164.93156,703.27281 163.01019,703.60085 162.0625,703.31255 C 162.94365,704.00962 164.15558,703.92429 163.8125,701.5938 C 164.41616,701.00897 163.7583,700.20114 162.96875,700.12505 L 162.96875,700.125 z M 126.46875,700.1563 C 124.70655,700.57626 124.80678,702.0992 125.46875,703.0313 C 125.35028,702.81133 125.57234,702.51068 126.46875,702.12505 C 127.38571,702.59759 127.6082,702.91594 127.5,703.12505 C 127.65766,702.84301 127.7837,702.47861 127.875,701.9688 C 127.56548,701.27005 128.17117,700.00943 126.46875,700.1563 z M 127.5,703.125 C 127.31066,703.49094 126.0904,703.49107 125.625,703.1875 C 126.17262,703.82107 126.97318,704.06744 127.5,703.125 z M 142.4375,700.15625 C 138.98424,700.65489 146.12475,700.77633 142.25,702.28125 C 138.55523,704.16033 146.76011,704.13012 142.2813,703.28125 C 142.74579,702.36094 145.78374,700.56128 142.43755,700.15625 L 142.4375,700.15625 z M 146.3125,700.15625 C 143.08798,700.17455 149.69742,701.55138 145.75,701.6875 C 149.46751,702.76518 142.77127,704.2853 146.59375,703.9375 C 148.10012,703.46854 148.44638,699.9601 146.3125,700.15625 z M 182.75,700.15625 L 182.4375,700.18755 C 180.99319,700.28655 183.91901,702.63328 181.78125,703.7813 C 185.17744,704.68736 182.22883,701.48311 182.75,700.1563 L 182.75,700.15625 z M 186.71875,700.15625 L 186.25,700.18755 C 184.61594,700.53178 187.63978,702.50618 185.6875,703.7813 C 189.12002,704.68373 185.7827,701.46366 186.71875,700.1563 L 186.71875,700.15625 z M 202.25,700.15625 C 198.3377,701.72292 206.24871,702.98381 201.5,703.6875 C 204.53638,704.92889 205.22492,699.92363 202.25,700.15625 z M 216.78125,700.15625 C 213.54309,700.17335 220.14392,701.54088 216.21875,701.6875 C 219.97277,702.71999 213.14123,704.33815 217.09375,703.9375 C 218.51436,703.42684 218.91199,699.97891 216.78125,700.15625 z M 226.46875,700.15625 C 224.70655,700.57621 224.80678,702.09915 225.46875,703.03125 C 225.35028,702.81128 225.57234,702.51063 226.46875,702.125 C 227.38571,702.59754 227.6082,702.91589 227.5,703.125 C 227.65766,702.84296 227.7837,702.47856 227.875,701.96875 C 227.56549,701.27 228.17117,700.00938 226.46875,700.15625 z M 227.5,703.125 C 227.31066,703.49094 226.0904,703.49107 225.625,703.1875 C 226.17262,703.82107 226.97318,704.06744 227.5,703.125 z M 95.65625,700.1875 C 94.446228,701.94556 100.26321,703.01541 95.5625,703.625 C 99.26559,704.31993 98.649866,701.57638 96.28125,700.96875 C 98.221317,699.95054 98.537934,700.29876 95.65625,700.1875 z M 117.125,700.1875 C 115.1716,701.84168 114.95634,703.16378 117.78125,703.59375 C 118.33269,703.12203 118.21181,700.51911 117.125,700.1875 z M 137.125,700.1875 C 135.1716,701.84168 134.95634,703.16378 137.78125,703.59375 C 138.3327,703.12203 138.21182,700.51911 137.125,700.1875 z M 155.65625,700.1875 C 154.44623,701.94556 160.26321,703.01541 155.56255,703.625 C 159.26564,704.31993 158.64992,701.57638 156.2813,700.96875 C 158.22136,699.95055 158.53799,700.29876 155.6563,700.1875 L 155.65625,700.1875 z M 175.65625,700.1875 C 174.44623,701.94556 180.26321,703.01541 175.56255,703.625 C 179.26564,704.31993 178.64992,701.57638 176.2813,700.96875 C 178.22136,699.95055 178.53799,700.29876 175.6563,700.1875 L 175.65625,700.1875 z M 197.125,700.1875 C 195.1716,701.84168 194.95634,703.16378 197.78125,703.59375 C 198.3327,703.12203 198.21182,700.51911 197.125,700.1875 z M 205.1875,700.1875 C 203.98676,701.95946 209.85929,703.01882 205.0938,703.625 C 208.8186,704.33066 208.18948,701.60262 205.8438,700.96875 C 207.86805,699.94838 208.00775,700.29767 205.18755,700.1875 L 205.1875,700.1875 z M 126.46875,700.5 C 129.33503,701.85977 123.61118,701.78382 126.46875,700.5 z M 162.625,700.5 C 165.61893,702.17177 159.79777,701.65847 162.625,700.5 z M 202.5625,700.5 C 206.08058,702.63402 199.13813,702.55541 202.5625,700.5 z M 226.46875,700.5 C 229.33503,701.85977 223.61118,701.78382 226.46875,700.5 z M 117.28125,700.625 C 118.43919,702.72645 114.15868,703.48107 117.28125,700.625 z M 137.28125,700.625 C 138.43919,702.72645 134.15868,703.48107 137.28125,700.625 z M 197.28125,700.625 C 198.43919,702.72645 194.15868,703.48107 197.28125,700.625 z M 161.625,702.875 C 161.576,703.07424 161.74992,703.22165 162.03125,703.3125 C 161.87471,703.18587 161.74914,703.04337 161.625,702.875 z M 105.59375,702.9687 C 105.63945,703.07392 105.74693,703.15444 105.875,703.2187 C 105.7802,703.136 105.68018,703.06507 105.59375,702.9687 z M 99.46875,703.2187 C 99.087573,704.92798 101.24881,703.03184 99.46875,703.2187 z M 119.46875,703.2187 C 119.08757,704.92798 121.24881,703.03184 119.46875,703.2187 z M 139.46875,703.2187 C 139.08757,704.92798 141.24881,703.03184 139.46875,703.2187 z M 159.46875,703.2187 C 159.08757,704.92798 161.24881,703.03184 159.46875,703.2187 z M 179.46875,703.2187 C 179.08757,704.92798 181.24881,703.03184 179.46875,703.2187 z M 199.46875,703.2187 C 199.08757,704.92798 201.24881,703.03184 199.46875,703.2187 z M 219.46875,703.2187 C 219.08757,704.92798 221.24881,703.03184 219.46875,703.2187 z M 182.96875,711.99995 C 182.85596,711.98875 182.73985,712.00895 182.625,712.03125 C 180.93255,712.70732 181.02529,713.96099 181.625,714.8125 C 181.674,714.60752 181.9576,714.36801 182.625,714.0625 C 184.93156,715.24338 183.01019,715.57787 182.0625,715.28125 C 182.94365,715.99843 184.15558,715.92898 183.8125,713.53125 C 184.41616,712.92952 183.7583,712.07829 182.96875,712 L 182.96875,711.99995 z M 181.625,714.81245 C 181.576,715.01743 181.74992,715.18773 182.03125,715.2812 C 181.86976,715.1468 181.75164,714.99227 181.625,714.81245 z M 96.34375,712.0312 C 94.613412,712.22224 99.618546,713.50106 96.21875,713.81245 C 100.18448,714.44799 92.981852,716.36822 97.09375,715.93745 C 98.51435,715.41206 98.911988,711.84875 96.78125,712.0312 C 96.60151,712.0332 96.459106,712.0185 96.34375,712.0312 z M 103.5,712.0312 C 103.15871,712.0252 102.23053,712.15662 101.375,712.0625 C 100.15567,713.87985 106.02766,714.96686 101.2813,715.59375 C 105.08078,716.35285 104.28068,713.45022 102.0938,712.875 C 103.60246,712.18031 103.84134,712.03766 103.50005,712.03125 L 103.5,712.0312 z M 116.34375,712.0312 C 114.61341,712.22224 119.61855,713.50106 116.21875,713.81245 C 120.18448,714.44799 112.98185,716.36822 117.09375,715.93745 C 118.51435,715.41206 118.91199,711.84875 116.78125,712.0312 C 116.60151,712.0332 116.45911,712.0185 116.34375,712.0312 z M 126.25,712.0312 C 123.6378,712.36083 127.75029,713.03499 127.1875,713.93745 C 127.99704,713.03805 128.47431,712.16894 126.25,712.0312 z M 127.1875,713.93745 C 127.05762,714.14571 126.67345,714.36253 125.90625,714.5937 C 122.42925,716.35035 130.6411,715.67422 125.90625,715.37495 C 126.12637,714.96626 126.71727,714.45987 127.1875,713.93745 z M 136.34375,712.0312 C 134.61341,712.22224 139.61855,713.50106 136.21875,713.81245 C 140.18448,714.44799 132.98185,716.36822 137.09375,715.93745 C 138.51436,715.41206 138.91199,711.84875 136.78125,712.0312 C 136.60151,712.0332 136.45911,712.0185 136.34375,712.0312 z M 142.625,712.0312 C 138.21689,712.74338 144.10828,718.50335 144.15625,713.93745 C 144.22095,713.15 143.7794,711.94947 142.625,712.0312 z M 166.25,712.0312 C 163.6378,712.36083 167.75029,713.03499 167.1875,713.93745 C 167.99705,713.03805 168.47431,712.16894 166.25,712.0312 z M 167.1875,713.93745 C 167.05762,714.14571 166.67345,714.36253 165.90625,714.5937 C 162.42925,716.35036 170.64111,715.67421 165.90625,715.37495 C 166.12638,714.96626 166.71727,714.45987 167.1875,713.93745 z M 186.0625,712.0312 C 182.41422,713.676 189.74263,714.94377 185.5,715.68745 C 188.478,716.77226 188.92384,711.75362 186.0625,712.0312 z M 202.0625,712.0312 C 200.3361,712.22267 205.35995,713.51127 201.9375,713.81245 C 205.95418,714.46925 198.72742,716.40693 202.8125,715.93745 C 204.23311,715.41206 204.63074,711.84875 202.5,712.0312 C 202.32038,712.0332 202.17759,712.0184 202.0625,712.0312 z M 206.46875,712.0312 C 204.70655,712.46328 204.80678,714.04096 205.46875,714.99995 C 205.35028,714.77363 205.57234,714.4592 206.46875,714.06245 C 207.34854,714.52892 207.57662,714.84611 207.5,715.06245 C 207.65349,714.77388 207.78552,714.38898 207.875,713.87495 C 207.56549,713.15605 208.17117,711.88011 206.46875,712.0312 z M 217.34375,712.0312 C 215.61341,712.22224 220.61855,713.50106 217.21875,713.81245 C 221.18448,714.44799 213.98185,716.36822 218.09375,715.93745 C 219.51436,715.41206 219.91199,711.84875 217.78125,712.0312 C 217.60151,712.0332 217.45911,712.0185 217.34375,712.0312 z M 223.25,712.0312 C 219.33296,713.63183 227.22742,714.94286 222.53125,715.6562 C 225.55344,716.94221 226.20795,711.77813 223.25,712.0312 z M 106.65625,712.0625 C 104.72591,713.75854 104.52901,715.13853 107.34375,715.5625 C 107.89531,715.10355 107.7968,712.34243 106.65625,712.0625 z M 122.4375,712.0625 C 121.3504,712.18348 123.41366,714.70312 121.9375,715.78125 C 125.40921,716.55342 121.74432,713.47164 122.9375,712.0625 L 122.4375,712.0625 z M 146.65625,712.0625 C 144.72591,713.75853 144.52901,715.13853 147.34375,715.5625 C 147.89532,715.10355 147.7968,712.34243 146.65625,712.0625 z M 157.125,712.0625 C 155.16985,713.76483 154.95575,715.12248 157.78125,715.5625 C 158.32912,715.08585 158.21662,712.39834 157.125,712.0625 z M 162.4375,712.0625 C 161.3504,712.18348 163.41366,714.70312 161.9375,715.78125 C 165.40922,716.55342 161.74432,713.47164 162.9375,712.0625 L 162.4375,712.0625 z M 177.125,712.0625 C 175.16985,713.76483 174.95575,715.12248 177.78125,715.5625 C 178.32912,715.08585 178.21662,712.39834 177.125,712.0625 z M 197.125,712.0625 C 195.16985,713.76483 194.95575,715.12248 197.78125,715.5625 C 198.32912,715.08585 198.21662,712.39834 197.125,712.0625 z M 227.25,712.0625 C 225.48486,712.43802 229.01635,714.49503 226.6875,715.71875 C 230.01161,716.83664 227.05021,713.55048 227.65625,712.0625 L 227.25,712.0625 z M 142.625,712.40625 C 145.74166,713.59112 140.96701,717.29409 141.75,713.5 C 141.7851,713.06285 141.9575,712.41568 142.625,712.40625 z M 182.625,712.40625 C 185.67528,714.05886 179.71845,713.68001 182.625,712.40625 z M 186.375,712.40625 C 189.92408,714.54919 182.99148,714.57853 186.375,712.40625 z M 206.46875,712.40625 C 209.54862,713.88162 203.51163,713.86036 206.46875,712.40625 z M 223.5625,712.40625 C 227.08058,714.60183 220.13813,714.52096 223.5625,712.40625 z M 106.8125,712.53125 C 107.97177,714.70074 103.69225,715.46254 106.8125,712.53125 z M 146.8125,712.53125 C 147.97177,714.70074 143.69225,715.46253 146.8125,712.53125 z M 157.28125,712.53125 C 158.44052,714.70074 154.161,715.46253 157.28125,712.53125 z M 177.28125,712.53125 C 178.44052,714.70074 174.161,715.46253 177.28125,712.53125 z M 197.28125,712.53125 C 198.44052,714.70074 194.161,715.46253 197.28125,712.53125 z M 207.5,715.09375 C 207.31066,715.47025 206.0904,715.46858 205.625,715.15625 C 206.17158,715.80686 206.97309,716.05703 207.5,715.09375 z M 99.46875,715.18745 C 99.086951,716.94775 101.25052,714.99502 99.46875,715.18745 z M 119.46875,715.18745 C 119.08696,716.94775 121.25052,714.99502 119.46875,715.18745 z M 139.46875,715.18745 C 139.08696,716.94775 141.25052,714.99502 139.46875,715.18745 z M 159.46875,715.18745 C 159.08696,716.94775 161.25052,714.99502 159.46875,715.18745 z M 179.46875,715.18745 C 179.08696,716.94775 181.25052,714.99502 179.46875,715.18745 z M 199.46875,715.18745 C 199.08696,716.94775 201.25052,714.99502 199.46875,715.18745 z M 220.46875,715.18745 C 220.08696,716.94775 222.25052,714.99502 220.46875,715.18745 z M 166.25,724 C 165.92148,724.0121 165.51337,724.0684 165.03125,724.1875 C 168.80651,724.1443 165.19707,727.03672 166.3125,727.5625 C 167.34796,726.23055 168.54964,723.91546 166.25,724 z M 102.125,724.0937 C 101.85286,724.1088 101.5593,724.1296 101.21875,724.1874 C 105.4268,723.70995 100.18994,729.74801 103.125,726.53115 C 104.27501,724.89161 104.02996,723.98812 102.125,724.09365 L 102.125,724.0937 z M 122.125,724.0937 C 121.85286,724.1088 121.5593,724.1296 121.21875,724.1874 C 125.4268,723.70995 120.18994,729.74801 123.125,726.53115 C 124.27501,724.89161 124.02996,723.98812 122.125,724.09365 L 122.125,724.0937 z M 222.125,724.0937 C 221.85286,724.1088 221.5593,724.1296 221.21875,724.1874 C 225.42681,723.70995 220.18993,729.74801 223.125,726.53115 C 224.27501,724.89161 224.02995,723.98812 222.125,724.09365 L 222.125,724.0937 z M 107.09375,724.125 C 106.9708,724.12 106.85609,724.13 106.78125,724.1563 C 104.34565,724.2446 104.6851,725.90987 105.59375,726.93755 C 105.50565,726.67512 105.70532,726.30846 106.53125,725.81255 C 108.72943,727.14609 106.85719,727.61849 105.96875,727.2813 C 106.8148,727.96052 107.86796,728.02312 107.90625,726.1563 C 105.81943,725.69102 104.84025,724.60805 107.75,724.5938 C 107.93262,724.27603 107.46259,724.1413 107.09375,724.12505 L 107.09375,724.125 z M 162.96875,724.125 C 162.85596,724.1141 162.73985,724.134 162.625,724.1563 C 160.93604,724.81205 161.02869,726.01626 161.625,726.8438 C 161.6888,726.64816 161.98156,726.41133 162.625,726.12505 C 164.93156,727.27281 163.01019,727.60085 162.0625,727.31255 C 162.94365,728.00962 164.15558,727.92429 163.8125,725.5938 C 164.41616,725.00897 163.7583,724.20114 162.96875,724.12505 L 162.96875,724.125 z M 126.46875,724.1563 C 124.70655,724.57626 124.80678,726.0992 125.46875,727.0313 C 125.35028,726.81133 125.57234,726.51068 126.46875,726.12505 C 127.38571,726.59759 127.6082,726.91594 127.5,727.12505 C 127.65766,726.84301 127.7837,726.47861 127.875,725.9688 C 127.56548,725.27005 128.17117,724.00943 126.46875,724.1563 z M 127.5,727.125 C 127.31066,727.49094 126.0904,727.49107 125.625,727.1875 C 126.17262,727.82107 126.97318,728.06744 127.5,727.125 z M 142.4375,724.15625 C 138.98424,724.65489 146.12475,724.77633 142.25,726.28125 C 138.55523,728.16033 146.76011,728.13012 142.2813,727.28125 C 142.74579,726.36094 145.78374,724.56128 142.43755,724.15625 L 142.4375,724.15625 z M 146.3125,724.15625 C 143.08798,724.17455 149.69742,725.55138 145.75,725.6875 C 149.46751,726.76518 142.77127,728.2853 146.59375,727.9375 C 148.10012,727.46854 148.44638,723.9601 146.3125,724.15625 z M 182.75,724.15625 L 182.4375,724.18755 C 180.99319,724.28655 183.91901,726.63328 181.78125,727.7813 C 185.17744,728.68736 182.22883,725.48311 182.75,724.1563 L 182.75,724.15625 z M 186.71875,724.15625 L 186.25,724.18755 C 184.61594,724.53178 187.63978,726.50618 185.6875,727.7813 C 189.12002,728.68373 185.7827,725.46366 186.71875,724.1563 L 186.71875,724.15625 z M 202.25,724.15625 C 198.3377,725.72292 206.24871,726.98381 201.5,727.6875 C 204.53638,728.92889 205.22492,723.92363 202.25,724.15625 z M 216.78125,724.15625 C 213.54309,724.17335 220.14392,725.54088 216.21875,725.6875 C 219.97277,726.71999 213.14123,728.33815 217.09375,727.9375 C 218.51436,727.42684 218.91199,723.97891 216.78125,724.15625 z M 226.46875,724.15625 C 224.70655,724.57621 224.80678,726.09915 225.46875,727.03125 C 225.35028,726.81128 225.57234,726.51063 226.46875,726.125 C 227.38571,726.59754 227.6082,726.91589 227.5,727.125 C 227.65766,726.84296 227.7837,726.47856 227.875,725.96875 C 227.56549,725.27 228.17117,724.00938 226.46875,724.15625 z M 227.5,727.125 C 227.31066,727.49094 226.0904,727.49107 225.625,727.1875 C 226.17262,727.82107 226.97318,728.06744 227.5,727.125 z M 95.65625,724.1875 C 94.446228,725.94556 100.26321,727.01541 95.5625,727.625 C 99.26559,728.31993 98.649866,725.57638 96.28125,724.96875 C 98.221317,723.95054 98.537934,724.29876 95.65625,724.1875 z M 117.125,724.1875 C 115.1716,725.84168 114.95634,727.16378 117.78125,727.59375 C 118.33269,727.12203 118.21181,724.51911 117.125,724.1875 z M 137.125,724.1875 C 135.1716,725.84168 134.95634,727.16378 137.78125,727.59375 C 138.3327,727.12203 138.21182,724.51911 137.125,724.1875 z M 155.65625,724.1875 C 154.44623,725.94556 160.26321,727.01541 155.56255,727.625 C 159.26564,728.31993 158.64992,725.57638 156.2813,724.96875 C 158.22136,723.95055 158.53799,724.29876 155.6563,724.1875 L 155.65625,724.1875 z M 175.65625,724.1875 C 174.44623,725.94556 180.26321,727.01541 175.56255,727.625 C 179.26564,728.31993 178.64992,725.57638 176.2813,724.96875 C 178.22136,723.95055 178.53799,724.29876 175.6563,724.1875 L 175.65625,724.1875 z M 197.125,724.1875 C 195.1716,725.84168 194.95634,727.16378 197.78125,727.59375 C 198.3327,727.12203 198.21182,724.51911 197.125,724.1875 z M 205.1875,724.1875 C 203.98676,725.95946 209.85929,727.01882 205.0938,727.625 C 208.8186,728.33066 208.18948,725.60262 205.8438,724.96875 C 207.86805,723.94838 208.00775,724.29767 205.18755,724.1875 L 205.1875,724.1875 z M 126.46875,724.5 C 129.33503,725.85977 123.61118,725.78382 126.46875,724.5 z M 162.625,724.5 C 165.61893,726.17177 159.79777,725.65847 162.625,724.5 z M 202.5625,724.5 C 206.08058,726.63402 199.13813,726.55541 202.5625,724.5 z M 226.46875,724.5 C 229.33503,725.85977 223.61118,725.78382 226.46875,724.5 z M 117.28125,724.625 C 118.43919,726.72645 114.15868,727.48107 117.28125,724.625 z M 137.28125,724.625 C 138.43919,726.72645 134.15868,727.48107 137.28125,724.625 z M 197.28125,724.625 C 198.43919,726.72645 194.15868,727.48107 197.28125,724.625 z M 161.625,726.875 C 161.576,727.07424 161.74992,727.22165 162.03125,727.3125 C 161.87471,727.18587 161.74914,727.04337 161.625,726.875 z M 105.59375,726.9687 C 105.63945,727.07392 105.74693,727.15444 105.875,727.2187 C 105.7802,727.136 105.68018,727.06507 105.59375,726.9687 z M 99.46875,727.2187 C 99.087573,728.92798 101.24881,727.03184 99.46875,727.2187 z M 119.46875,727.2187 C 119.08757,728.92798 121.24881,727.03184 119.46875,727.2187 z M 139.46875,727.2187 C 139.08757,728.92798 141.24881,727.03184 139.46875,727.2187 z M 159.46875,727.2187 C 159.08757,728.92798 161.24881,727.03184 159.46875,727.2187 z M 179.46875,727.2187 C 179.08757,728.92798 181.24881,727.03184 179.46875,727.2187 z M 199.46875,727.2187 C 199.08757,728.92798 201.24881,727.03184 199.46875,727.2187 z M 219.46875,727.2187 C 219.08757,728.92798 221.24881,727.03184 219.46875,727.2187 z M 162.25,736 C 161.9135,736.008 161.50065,736.0753 161,736.1875 C 164.74464,736.1526 161.20763,739.12474 162.25,739.71875 C 163.22959,738.22934 164.60548,735.94517 162.25,736 z M 126.78125,736.0937 C 126.6607,736.0867 126.53995,736.0987 126.46875,736.125 C 124.02685,736.2034 124.34565,737.97163 125.25,739.0625 C 125.1668,738.78397 125.38701,738.38728 126.21875,737.875 C 128.46703,739.36512 126.36375,739.81715 125.53125,739.375 C 126.38898,740.17047 127.52106,740.29785 127.5625,738.25 C 125.51473,737.74877 124.44836,736.67515 127.375,736.625 C 127.57812,736.30089 127.1429,736.11538 126.78125,736.09375 L 126.78125,736.0937 z M 186.78125,736.0937 C 186.6607,736.0867 186.53995,736.0987 186.46875,736.125 C 184.02685,736.2034 184.34565,737.97163 185.25,739.0625 C 185.1668,738.78397 185.38701,738.38728 186.21875,737.875 C 188.46703,739.36512 186.36375,739.81715 185.53125,739.375 C 186.38898,740.17047 187.52106,740.29785 187.5625,738.25 C 185.51473,737.74877 184.44836,736.67515 187.375,736.625 C 187.57813,736.30089 187.1429,736.11538 186.78125,736.09375 L 186.78125,736.0937 z M 96.46875,736.125 C 93.016232,736.65283 100.14093,736.78255 96.28125,738.375 C 92.632917,740.35962 100.7793,740.33427 96.3125,739.4375 C 96.77645,738.46622 99.814819,736.55232 96.46875,736.125 z M 102.40625,736.125 C 97.963503,736.82532 103.89188,742.78811 103.90625,738.09375 C 103.99115,737.2898 103.56328,736.03482 102.40625,736.125 z M 136.71875,736.125 L 136.40625,736.1875 C 134.961,736.29222 137.88941,738.75663 135.75,739.96875 C 139.14638,740.92524 136.19839,737.52658 136.71875,736.125 z M 142.34375,736.125 C 140.57947,736.56876 140.67968,738.2041 141.34375,739.1875 C 141.22528,738.95532 141.44734,738.62577 142.34375,738.21875 C 143.22354,738.69729 143.45162,739.02806 143.375,739.25 C 143.52991,738.95339 143.6599,738.56225 143.75,738.03125 C 143.43573,737.29354 144.07131,735.94807 142.34375,736.125 z M 145.78125,736.125 C 142.16972,737.75149 149.41547,739.17573 145.15625,739.90625 C 148.13869,741.00779 148.68214,735.86044 145.78125,736.125 z M 156.6875,736.125 C 152.27939,736.85556 158.17078,742.77777 158.21875,738.09375 C 158.28345,737.28592 157.8419,736.04115 156.6875,736.125 z M 182.3125,736.125 C 179.26493,736.89383 181.98678,741.89889 183.3125,739.3125 C 182.88216,739.91606 179.71098,739.43355 182.3125,738.21875 C 183.19572,738.69295 183.42176,739.02773 183.34375,739.25 C 183.4498,739.029 183.54217,738.76731 183.625,738.4375 C 183.39857,737.49 184.26382,736.02112 182.3125,736.125 z M 196.5,736.125 C 193.04749,736.65283 200.17218,736.78255 196.3125,738.375 C 192.66418,740.35962 200.81056,740.33427 196.3438,739.4375 C 196.80775,738.46622 199.84612,736.55232 196.50005,736.125 L 196.5,736.125 z M 206.25,736.125 C 201.83986,736.83964 207.73587,742.78122 207.75,738.09375 C 207.8349,737.2898 207.40703,736.03482 206.25,736.125 z M 222.1875,736.125 C 219.05195,736.4576 225.92108,737.31363 221.75,738.59375 C 218.72689,740.7884 226.59697,739.6959 222,739.625 C 222.17202,738.45722 225.7236,736.40356 222.1875,736.125 z M 226.34375,736.125 L 226.03125,736.1875 C 224.586,736.29222 227.51441,738.75663 225.375,739.96875 C 228.72747,740.92088 225.8359,737.49956 226.34375,736.125 z M 116.84375,736.1563 L 116.375,736.1876 C 114.73961,736.55062 117.76788,738.5912 115.8125,739.9376 C 119.24666,740.89036 115.9064,737.53677 116.84375,736.15635 L 116.84375,736.1563 z M 176.84375,736.1563 L 176.375,736.1876 C 174.73961,736.55062 177.76788,738.5912 175.8125,739.9376 C 179.24667,740.89036 175.9064,737.53677 176.84375,736.15635 L 176.84375,736.1563 z M 202.71875,736.1563 L 202.21875,736.1876 C 201.18277,736.38315 203.23541,738.82827 201.75,739.96885 C 205.1971,740.75143 201.5171,737.59452 202.71875,736.15635 L 202.71875,736.1563 z M 216.9375,736.1563 L 216.46875,736.1876 C 214.83336,736.55062 217.86163,738.5912 215.90625,739.9376 C 219.34042,740.89036 216.00015,737.53677 216.9375,736.15635 L 216.9375,736.1563 z M 106.4375,736.1876 C 104.47246,737.93389 104.28378,739.34186 107.125,739.78135 C 107.63282,739.31729 107.59952,736.45474 106.4375,736.1876 z M 122.53125,736.1876 C 120.57817,737.93348 120.36269,739.32709 123.1875,739.78135 C 123.7396,739.28188 123.61716,736.5386 122.53125,736.1876 z M 166.4375,736.1876 C 164.50924,737.92694 164.31104,739.34348 167.125,739.78135 C 167.6808,739.30009 167.57235,736.48106 166.4375,736.1876 z M 102.40625,736.5 C 105.48648,737.73205 100.75561,741.50718 101.53125,737.625 C 101.56635,737.1766 101.73875,736.50967 102.40625,736.5 z M 142.34375,736.5 C 145.21003,737.93517 139.48618,737.85503 142.34375,736.5 z M 146.09375,736.5 C 149.57034,738.80386 142.64276,738.62489 146.09375,736.5 z M 156.6875,736.5 C 159.80416,737.71551 155.02951,741.51725 155.8125,737.625 C 155.8476,737.1766 156.02,736.50967 156.6875,736.5 z M 182.3125,736.5 C 185.17878,737.93517 179.45493,737.85503 182.3125,736.5 z M 206.25,736.5 C 209.36666,737.71551 204.59201,741.51725 205.375,737.625 C 205.4101,737.1766 205.5825,736.50967 206.25,736.5 z M 106.59375,736.65625 C 108.02265,738.34616 103.88396,739.6463 106.125,737.28125 L 106.59375,736.65625 z M 122.6875,736.65625 C 124.1164,738.34616 119.97771,739.6463 122.21875,737.28125 L 122.6875,736.65625 z M 166.59375,736.65625 C 167.73209,738.85884 163.53411,739.67608 166.59375,736.65625 z M 125.25,739.09375 C 125.2912,739.19859 125.38486,739.27592 125.5,739.34375 C 125.4156,739.26325 125.32737,739.18577 125.25,739.09375 z M 185.25,739.09375 C 185.2912,739.19859 185.38486,739.27592 185.5,739.34375 C 185.4156,739.26325 185.32737,739.18577 185.25,739.09375 z M 143.34375,739.3125 C 143.09115,739.65755 141.94878,739.65271 141.5,739.3438 C 142.03971,740.00285 142.81647,740.25821 143.34375,739.3125 z M 99.21875,739.3438 C 98.837682,741.14756 100.99851,739.14659 99.21875,739.3438 z M 119.125,739.3438 C 118.74393,741.14756 120.90476,739.14659 119.125,739.3438 z M 139.15625,739.3438 C 138.77518,741.14756 140.93601,739.14659 139.15625,739.3438 z M 159.25,739.3438 C 158.86893,741.14756 161.02976,739.14659 159.25,739.3438 z M 179.125,739.3438 C 178.74393,741.14756 180.90476,739.14659 179.125,739.3438 z M 199.25,739.3438 C 198.86893,741.14756 201.02976,739.14659 199.25,739.3438 z M 219.21875,739.3438 C 218.83768,741.14756 220.99851,739.14659 219.21875,739.3438 z M 102.125,748.0938 C 101.85286,748.1089 101.5593,748.1297 101.21875,748.1875 C 105.4268,747.71005 100.18994,753.74811 103.125,750.53125 C 104.27501,748.89171 104.02996,747.98822 102.125,748.09375 L 102.125,748.0938 z M 106.46875,748.1563 C 104.70655,748.57626 104.80678,750.0992 105.46875,751.0313 C 105.35028,750.81133 105.57234,750.51068 106.46875,750.12505 C 107.38571,750.59759 107.6082,750.91594 107.5,751.12505 C 107.65766,750.84301 107.7837,750.47861 107.875,749.9688 C 107.56548,749.27005 108.17117,748.00943 106.46875,748.1563 z M 107.5,751.125 C 107.31066,751.49094 106.0904,751.49107 105.625,751.1875 C 106.17262,751.82107 106.97318,752.06744 107.5,751.125 z M 122.4375,748.15625 C 118.98424,748.65489 126.12475,748.77633 122.25,750.28125 C 118.55522,752.16033 126.76011,752.13012 122.2813,751.28125 C 122.74579,750.36094 125.78374,748.56128 122.43755,748.15625 L 122.4375,748.15625 z M 126.3125,748.15625 C 123.08798,748.17455 129.69742,749.55138 125.75,749.6875 C 129.46751,750.76518 122.77127,752.2853 126.59375,751.9375 C 128.10012,751.46854 128.44638,747.9601 126.3125,748.15625 z M 97.125,748.18755 C 95.1716,749.84173 94.95634,751.16383 97.78125,751.5938 C 98.332687,751.12208 98.21181,748.51916 97.125,748.18755 z M 117.125,748.18755 C 115.1716,749.84173 114.95634,751.16383 117.78125,751.5938 C 118.3327,751.12208 118.21182,748.51916 117.125,748.18755 z M 106.46875,748.5 C 109.33503,749.85977 103.61118,749.78382 106.46875,748.5 z M 97.28125,748.625 C 98.43919,750.72645 94.15868,751.48107 97.28125,748.625 z M 117.28125,748.625 C 118.43919,750.72645 114.15868,751.48107 117.28125,748.625 z M 99.46875,751.21875 C 99.08757,752.92803 101.24881,751.03189 99.46875,751.21875 z M 119.46875,751.21875 C 119.08757,752.92803 121.24881,751.03189 119.46875,751.21875 z M 106.25,760 C 105.92148,760.0121 105.51337,760.0684 105.03125,760.1875 C 108.80651,760.1443 105.19707,763.03672 106.3125,763.5625 C 107.34796,762.23055 108.54964,759.91546 106.25,760 z M 102.96875,760.125 C 102.85596,760.1141 102.73985,760.134 102.625,760.1563 C 100.93604,760.81205 101.02869,762.01626 101.625,762.8438 C 101.6888,762.64816 101.98156,762.41133 102.625,762.12505 C 104.93156,763.27281 103.01019,763.60085 102.0625,763.31255 C 102.94365,764.00962 104.15558,763.92429 103.8125,761.5938 C 104.41616,761.00897 103.7583,760.20114 102.96875,760.12505 L 102.96875,760.125 z M 122.75,760.1563 L 122.4375,760.1876 C 120.99319,760.2866 123.91901,762.63333 121.78125,763.78135 C 125.17745,764.68741 122.22883,761.48316 122.75,760.15635 L 122.75,760.1563 z M 126.71875,760.1563 L 126.25,760.1876 C 124.61594,760.53183 127.63978,762.50623 125.6875,763.78135 C 129.12002,764.68378 125.7827,761.46371 126.71875,760.15635 L 126.71875,760.1563 z M 95.65625,760.1876 C 94.44623,761.94566 100.26321,763.01551 95.5625,763.6251 C 99.265593,764.32003 98.64987,761.57648 96.28125,760.96885 C 98.221309,759.95065 98.53794,760.29886 95.65625,760.1876 z M 115.65625,760.1876 C 114.44623,761.94566 120.26321,763.01551 115.56255,763.6251 C 119.26564,764.32003 118.64992,761.57648 116.2813,760.96885 C 118.22136,759.95065 118.53799,760.29886 115.6563,760.1876 L 115.65625,760.1876 z M 102.625,760.5 C 105.61893,762.17177 99.79777,761.65847 102.625,760.5 z M 101.625,762.875 C 101.576,763.07424 101.74992,763.22165 102.03125,763.3125 C 101.87471,763.18587 101.74914,763.04337 101.625,762.875 z M 99.46875,763.21875 C 99.08757,764.92803 101.24881,763.03189 99.46875,763.21875 z M 119.46875,763.21875 C 119.08757,764.92803 121.24881,763.03189 119.46875,763.21875 z M 122.125,772.09375 C 121.85286,772.10885 121.5593,772.12965 121.21875,772.18745 C 125.42681,771.71 120.18993,777.74806 123.125,774.5312 C 124.27501,772.89166 124.02995,771.98817 122.125,772.0937 L 122.125,772.09375 z M 102.25,772.15625 C 98.3377,773.72292 106.24871,774.98381 101.5,775.6875 C 104.53637,776.92889 105.22492,771.92363 102.25,772.15625 z M 116.78125,772.15625 C 113.54309,772.17335 120.14392,773.54088 116.21875,773.6875 C 119.97277,774.71999 113.14123,776.33815 117.09375,775.9375 C 118.51435,775.42684 118.91199,771.97891 116.78125,772.15625 z M 126.46875,772.15625 C 124.70655,772.57621 124.80678,774.09915 125.46875,775.03125 C 125.35028,774.81128 125.57234,774.51063 126.46875,774.125 C 127.38571,774.59754 127.6082,774.91589 127.5,775.125 C 127.65766,774.84296 127.7837,774.47856 127.875,773.96875 C 127.56548,773.27 128.17117,772.00938 126.46875,772.15625 z M 127.5,775.125 C 127.31066,775.49094 126.0904,775.49107 125.625,775.1875 C 126.17262,775.82107 126.97318,776.06744 127.5,775.125 z M 97.125,772.1875 C 95.1716,773.84168 94.95634,775.16378 97.78125,775.59375 C 98.332697,775.12203 98.21182,772.51911 97.125,772.1875 z M 105.1875,772.1875 C 103.98676,773.95946 109.85929,775.01882 105.0938,775.625 C 108.8186,776.33066 108.18948,773.60262 105.8438,772.96875 C 107.86806,771.94838 108.00775,772.29767 105.18755,772.1875 L 105.1875,772.1875 z M 102.5625,772.5 C 106.08058,774.63402 99.13813,774.55541 102.5625,772.5 z M 126.46875,772.5 C 129.33503,773.85977 123.61118,773.78382 126.46875,772.5 z M 97.28125,772.625 C 98.43919,774.72645 94.15868,775.48107 97.28125,772.625 z M 99.46875,775.21875 C 99.08757,776.92803 101.24881,775.03189 99.46875,775.21875 z M 119.46875,775.21875 C 119.08757,776.92803 121.24881,775.03189 119.46875,775.21875 z M 96.34375,784.03125 C 94.613412,784.22229 99.618546,785.50111 96.21875,785.8125 C 100.18448,786.44804 92.981852,788.36827 97.09375,787.9375 C 98.51435,787.41211 98.911988,783.8488 96.78125,784.03125 C 96.60151,784.03325 96.459106,784.01855 96.34375,784.03125 z M 103.5,784.03125 C 103.15871,784.02525 102.23053,784.15667 101.375,784.06255 C 100.15567,785.8799 106.02766,786.96691 101.2813,787.5938 C 105.08078,788.3529 104.28068,785.45027 102.0938,784.87505 C 103.60246,784.18036 103.84134,784.03771 103.50005,784.0313 L 103.5,784.03125 z M 116.34375,784.03125 C 114.61341,784.22229 119.61855,785.50111 116.21875,785.8125 C 120.18448,786.44804 112.98185,788.36827 117.09375,787.9375 C 118.51435,787.41211 118.91199,783.8488 116.78125,784.03125 C 116.60151,784.03325 116.45911,784.01855 116.34375,784.03125 z M 126.25,784.03125 C 123.6378,784.36088 127.75029,785.03504 127.1875,785.9375 C 127.99704,785.0381 128.47431,784.16899 126.25,784.03125 z M 127.1875,785.9375 C 127.05762,786.14576 126.67345,786.36258 125.90625,786.59375 C 122.42925,788.3504 130.6411,787.67427 125.90625,787.375 C 126.12637,786.96631 126.71727,786.45992 127.1875,785.9375 z M 106.65625,784.0625 C 104.72591,785.75854 104.52901,787.13853 107.34375,787.5625 C 107.89531,787.10355 107.7968,784.34243 106.65625,784.0625 z M 122.4375,784.0625 C 121.3504,784.18348 123.41366,786.70312 121.9375,787.78125 C 125.40921,788.55342 121.74432,785.47164 122.9375,784.0625 L 122.4375,784.0625 z M 106.8125,784.53125 C 107.97177,786.70074 103.69225,787.46254 106.8125,784.53125 z M 99.46875,787.1875 C 99.086951,788.9478 101.25052,786.99507 99.46875,787.1875 z M 119.46875,787.1875 C 119.08696,788.9478 121.25052,786.99507 119.46875,787.1875 z M 96.34375,796.03125 C 94.613408,796.22229 99.618547,797.50111 96.21875,797.8125 C 100.18448,798.44804 92.98185,800.36827 97.09375,799.9375 C 98.514349,799.41211 98.91199,795.8488 96.78125,796.03125 C 96.601509,796.03325 96.459106,796.01855 96.34375,796.03125 z M 102.625,796.03125 C 98.21689,796.74343 104.10828,802.5034 104.15625,797.9375 C 104.22095,797.15005 103.7794,795.94952 102.625,796.03125 z M 126.25,796.03125 C 123.6378,796.36088 127.75029,797.03504 127.1875,797.9375 C 127.99705,797.0381 128.47431,796.16899 126.25,796.03125 z M 127.1875,797.9375 C 127.05762,798.14576 126.67345,798.36258 125.90625,798.59375 C 122.42925,800.35041 130.64111,799.67426 125.90625,799.375 C 126.12637,798.96631 126.71727,798.45992 127.1875,797.9375 z M 106.65625,796.0625 C 104.72591,797.75853 104.52901,799.13853 107.34375,799.5625 C 107.89532,799.10355 107.7968,796.34243 106.65625,796.0625 z M 117.125,796.0625 C 115.16985,797.76483 114.95575,799.12248 117.78125,799.5625 C 118.32913,799.08585 118.21662,796.39834 117.125,796.0625 z M 122.4375,796.0625 C 121.3504,796.18348 123.41366,798.70312 121.9375,799.78125 C 125.40921,800.55342 121.74432,797.47164 122.9375,796.0625 L 122.4375,796.0625 z M 102.625,796.40625 C 105.74166,797.59112 100.96701,801.29409 101.75,797.5 C 101.7851,797.06285 101.9575,796.41568 102.625,796.40625 z M 106.8125,796.53125 C 107.97177,798.70074 103.69225,799.46253 106.8125,796.53125 z M 117.28125,796.53125 C 118.44052,798.70074 114.161,799.46253 117.28125,796.53125 z M 99.46875,799.1875 C 99.08696,800.9478 101.25052,798.99507 99.46875,799.1875 z M 119.46875,799.1875 C 119.08696,800.9478 121.25052,798.99507 119.46875,799.1875 z M 102.125,808.09375 C 101.85286,808.10885 101.5593,808.12965 101.21875,808.18745 C 105.4268,807.71 100.18994,813.74806 103.125,810.5312 C 104.27501,808.89166 104.02996,807.98817 102.125,808.0937 L 102.125,808.09375 z M 122.125,808.09375 C 121.85286,808.10885 121.5593,808.12965 121.21875,808.18745 C 125.4268,807.71 120.18994,813.74806 123.125,810.5312 C 124.27501,808.89166 124.02996,807.98817 122.125,808.0937 L 122.125,808.09375 z M 107.09375,808.12505 C 106.9708,808.12005 106.85609,808.13005 106.78125,808.15635 C 104.34565,808.24465 104.6851,809.90992 105.59375,810.9376 C 105.50565,810.67517 105.70532,810.30851 106.53125,809.8126 C 108.72943,811.14614 106.85719,811.61854 105.96875,811.28135 C 106.8148,811.96057 107.86796,812.02317 107.90625,810.15635 C 105.81943,809.69107 104.84025,808.6081 107.75,808.59385 C 107.93262,808.27608 107.46259,808.14135 107.09375,808.1251 L 107.09375,808.12505 z M 126.46875,808.15635 C 124.70655,808.57631 124.80678,810.09925 125.46875,811.03135 C 125.35028,810.81138 125.57234,810.51073 126.46875,810.1251 C 127.38571,810.59764 127.6082,810.91599 127.5,811.1251 C 127.65766,810.84306 127.7837,810.47866 127.875,809.96885 C 127.56548,809.2701 128.17117,808.00948 126.46875,808.15635 z M 127.5,811.125 C 127.31066,811.49094 126.0904,811.49107 125.625,811.1875 C 126.17262,811.82107 126.97318,812.06744 127.5,811.125 z M 95.65625,808.1875 C 94.446228,809.94556 100.26321,811.01541 95.5625,811.625 C 99.26559,812.31993 98.649866,809.57638 96.28125,808.96875 C 98.221317,807.95054 98.537934,808.29876 95.65625,808.1875 z M 117.125,808.1875 C 115.1716,809.84168 114.95634,811.16378 117.78125,811.59375 C 118.33269,811.12203 118.21181,808.51911 117.125,808.1875 z M 126.46875,808.5 C 129.33503,809.85977 123.61118,809.78382 126.46875,808.5 z M 117.28125,808.625 C 118.43919,810.72645 114.15868,811.48107 117.28125,808.625 z M 105.59375,810.96875 C 105.63945,811.07397 105.74693,811.15449 105.875,811.21875 C 105.7802,811.13605 105.68018,811.06512 105.59375,810.96875 z M 99.46875,811.21875 C 99.087573,812.92803 101.24881,811.03189 99.46875,811.21875 z M 119.46875,811.21875 C 119.08757,812.92803 121.24881,811.03189 119.46875,811.21875 z M 106.25,820 C 105.92148,820.0121 105.51337,820.0684 105.03125,820.1875 C 108.80651,820.1443 105.19707,823.03672 106.3125,823.5625 C 107.34796,822.23055 108.54964,819.91546 106.25,820 z M 102.96875,820.125 C 102.85596,820.1141 102.73985,820.134 102.625,820.1563 C 100.93604,820.81205 101.02869,822.01626 101.625,822.8438 C 101.6888,822.64816 101.98156,822.41133 102.625,822.12505 C 104.93156,823.27281 103.01019,823.60085 102.0625,823.31255 C 102.94365,824.00962 104.15558,823.92429 103.8125,821.5938 C 104.41616,821.00897 103.7583,820.20114 102.96875,820.12505 L 102.96875,820.125 z M 122.75,820.1563 L 122.4375,820.1876 C 120.99319,820.2866 123.91901,822.63333 121.78125,823.78135 C 125.17745,824.68741 122.22883,821.48316 122.75,820.15635 L 122.75,820.1563 z M 126.71875,820.1563 L 126.25,820.1876 C 124.61594,820.53183 127.63978,822.50623 125.6875,823.78135 C 129.12002,824.68378 125.7827,821.46371 126.71875,820.15635 L 126.71875,820.1563 z M 95.65625,820.1876 C 94.44623,821.94566 100.26321,823.01551 95.5625,823.6251 C 99.265593,824.32003 98.64987,821.57648 96.28125,820.96885 C 98.221309,819.95065 98.53794,820.29886 95.65625,820.1876 z M 115.65625,820.1876 C 114.44623,821.94566 120.26321,823.01551 115.56255,823.6251 C 119.26564,824.32003 118.64992,821.57648 116.2813,820.96885 C 118.22136,819.95065 118.53799,820.29886 115.6563,820.1876 L 115.65625,820.1876 z M 102.625,820.5 C 105.61893,822.17177 99.79777,821.65847 102.625,820.5 z M 101.625,822.875 C 101.576,823.07424 101.74992,823.22165 102.03125,823.3125 C 101.87471,823.18587 101.74914,823.04337 101.625,822.875 z M 99.46875,823.21875 C 99.08757,824.92803 101.24881,823.03189 99.46875,823.21875 z M 119.46875,823.21875 C 119.08757,824.92803 121.24881,823.03189 119.46875,823.21875 z M 122.125,832.09375 C 121.85286,832.10885 121.5593,832.12965 121.21875,832.18745 C 125.42681,831.71 120.18993,837.74806 123.125,834.5312 C 124.27501,832.89166 124.02995,831.98817 122.125,832.0937 L 122.125,832.09375 z M 102.25,832.15625 C 98.3377,833.72292 106.24871,834.98381 101.5,835.6875 C 104.53637,836.92889 105.22492,831.92363 102.25,832.15625 z M 116.78125,832.15625 C 113.54309,832.17335 120.14392,833.54088 116.21875,833.6875 C 119.97277,834.71999 113.14123,836.33815 117.09375,835.9375 C 118.51435,835.42684 118.91199,831.97891 116.78125,832.15625 z M 126.46875,832.15625 C 124.70655,832.57621 124.80678,834.09915 125.46875,835.03125 C 125.35028,834.81128 125.57234,834.51063 126.46875,834.125 C 127.38571,834.59754 127.6082,834.91589 127.5,835.125 C 127.65766,834.84296 127.7837,834.47856 127.875,833.96875 C 127.56548,833.27 128.17117,832.00938 126.46875,832.15625 z M 127.5,835.125 C 127.31066,835.49094 126.0904,835.49107 125.625,835.1875 C 126.17262,835.82107 126.97318,836.06744 127.5,835.125 z M 97.125,832.1875 C 95.1716,833.84168 94.95634,835.16378 97.78125,835.59375 C 98.332697,835.12203 98.21182,832.51911 97.125,832.1875 z M 105.1875,832.1875 C 103.98676,833.95946 109.85929,835.01882 105.0938,835.625 C 108.8186,836.33066 108.18948,833.60262 105.8438,832.96875 C 107.86806,831.94838 108.00775,832.29767 105.18755,832.1875 L 105.1875,832.1875 z M 102.5625,832.5 C 106.08058,834.63402 99.13813,834.55541 102.5625,832.5 z M 126.46875,832.5 C 129.33503,833.85977 123.61118,833.78382 126.46875,832.5 z M 97.28125,832.625 C 98.43919,834.72645 94.15868,835.48107 97.28125,832.625 z M 99.46875,835.21875 C 99.08757,836.92803 101.24881,835.03189 99.46875,835.21875 z M 119.46875,835.21875 C 119.08757,836.92803 121.24881,835.03189 119.46875,835.21875 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; fill: rgb(186, 189, 182); fill-opacity: 1; stroke: none; font-family: Impact;"/>
      <path id="text6299" d="M 78.53125,688.5625 C 75.06072,689.4888 79.245542,692.61153 79.338535,692.12332 C 75.684321,694.69529 82.726124,691.23147 79.750101,688.72617 L 79.238762,688.48209 L 78.53125,688.56249 L 78.53125,688.5625 z M 82.375,688.5625 C 80.036706,688.83986 85.17288,690.19957 81.40625,690.125 C 81.178052,695.01613 86.755587,689.68972 82.375,688.5625 z M 86.53125,688.5625 C 83.629716,687.6684 85.060274,694.66577 85.817235,689.82972 L 86.374038,689.01168 L 86.53125,688.5625 z M 78.65625,689 C 82.477417,691.94295 75.019451,692.10907 78.65625,689 z M 82.71875,690.25 C 84.870225,692.19072 79.362491,690.81355 82.71875,690.25 z M 82.84375,699.34375 C 82.529766,701.68998 83.256013,705.97653 83.441167,701.12714 C 83.440434,700.55059 83.619047,699.53954 82.84375,699.34375 z M 84.5,699.34375 C 84.06818,701.11417 85.955586,699.11851 84.5,699.34375 z M 78.96875,700.625 C 77.348439,705.06168 84.126778,704.03901 81.258574,701.02401 C 80.592466,705.75062 79.776287,702.97283 78.96875,700.625 z M 84.5,700.625 C 84.057231,703.31085 85.260302,704.84324 85.081863,701.20153 C 85.303289,700.79639 84.83238,700.41473 84.5,700.625 z M 78.1875,711.34375 C 78.360858,713.57692 77.674156,716.65773 79.210822,714.74395 C 82.886077,717.48319 77.515502,713.89633 80.705033,712.74253 C 77.051625,714.88621 80.037661,713.98795 78.1875,711.34375 L 78.1875,711.34375 z M 85.28125,711.34375 C 84.967266,713.68998 85.693513,717.97653 85.878667,713.12714 C 85.877934,712.55059 86.056547,711.53954 85.28125,711.34375 z M 82.75,712.5625 C 80.336905,712.82501 85.590877,714.20738 81.75,714.125 C 81.554008,719.01676 87.074166,713.69127 82.75,712.5625 z M 83.09375,714.25 C 85.201808,716.17596 79.744052,714.81778 83.09375,714.25 z M 77.875,723.34375 C 77.561016,725.68998 78.287263,729.97653 78.472417,725.12714 C 78.471684,724.55059 78.650297,723.53954 77.875,723.34375 z M 80.6875,724.5625 C 78.283776,724.82638 83.524277,726.20723 79.6875,726.125 C 79.545914,731.025 84.980933,725.66713 80.6875,724.5625 z M 84.78125,724.5625 C 81.989769,724.01304 82.884556,731.50605 84.65031,727.43976 C 86.385314,729.11601 86.730488,724.25423 84.78125,724.5625 z M 84.65625,725 C 88.372806,728.12284 81.017288,728.13764 84.65625,725 z M 81.03125,726.25 C 83.139308,728.17596 77.681552,726.81778 81.03125,726.25 z M 78.21875,735.34375 C 77.78693,737.11417 79.674336,735.11851 78.21875,735.34375 z M 83.53125,735.34375 C 83.705913,737.58477 83.01357,740.64764 84.561425,738.74915 C 88.086386,741.3941 83.020443,737.98256 86.05311,736.74048 C 82.394527,738.88082 85.381738,737.9961 83.53125,735.34375 L 83.53125,735.34375 z M 81.03125,736.5625 C 78.588983,736.81943 83.879346,738.18818 80.0625,738.125 C 79.831549,743.01925 85.355376,737.68144 81.03125,736.5625 z M 78.21875,736.625 C 78.218303,738.7987 77.60357,743.46635 78.849951,738.64698 C 78.810451,738.00985 78.993368,736.92105 78.21875,736.625 z M 81.375,738.25 C 83.483058,740.17596 78.025302,738.81778 81.375,738.25 z M 86.65625,747.34375 C 87.25837,749.32096 81.593064,749.87285 85.484776,751.90418 C 87.868318,753.04569 87.686111,747.45427 86.65625,747.34375 z M 78.15625,748.5625 C 75.713983,748.81943 81.004346,750.18818 77.1875,750.125 C 76.956549,755.01925 82.480376,749.68144 78.15625,748.5625 z M 82.28125,748.5625 C 79.420774,747.73828 80.882534,754.57279 81.494082,749.8472 C 83.402002,748.25859 83.231709,754.64337 83.368411,749.69735 C 83.299401,749.23583 83.009781,748.20908 82.28125,748.5625 L 82.28125,748.5625 z M 85.75,749 C 89.486367,752.15394 82.061249,752.10512 85.75,749 z M 78.5,750.25 C 80.608058,752.17596 75.150302,750.81778 78.5,750.25 z M 81.1875,759.34375 C 80.761099,761.13435 82.705414,759.07454 81.1875,759.34375 z M 78.84375,759.6875 C 77.205779,762.22853 81.707428,766.02731 79.240958,761.91663 C 80.898838,759.63537 80.749371,761.99833 78.84375,759.6875 z M 83.96875,760.5625 C 80.494363,761.49099 84.690825,764.61057 84.773047,764.12436 C 81.134595,766.6956 88.158676,763.23091 85.187761,760.72628 L 84.676879,760.4837 L 83.96875,760.5625 L 83.96875,760.5625 z M 81.1875,760.625 C 80.71578,763.3394 82.000183,764.84046 81.800974,761.18687 C 82.022326,760.75265 81.51476,760.41616 81.1875,760.625 z M 84.09375,761 C 87.914917,763.94295 80.456951,764.10907 84.09375,761 z M 78.03125,771.34375 C 77.95663,773.53968 77.95557,777.88474 79.028047,773.49179 C 80.967462,773.34618 80.398607,777.82669 80.79895,774.1096 C 79.757438,772.3462 78.727025,772.46024 78.03125,771.34375 z M 85.40625,771.34375 C 85.068765,773.73647 85.854278,777.98225 86.03764,773.10756 C 86.04084,772.53554 86.211916,771.49095 85.40625,771.34375 z M 81.46875,772.625 C 83.452928,774.71602 81.050247,779.50966 83.747515,775.21519 C 84.773333,772.84964 84.24739,772.10437 83.037092,774.7855 C 82.086851,774.47429 82.81102,772.32378 81.46875,772.625 L 81.46875,772.625 z M 79.15625,784.5625 C 76.282597,783.70756 77.72857,790.65847 78.444655,785.81071 L 79.008604,785.01039 L 79.15625,784.5625 L 79.15625,784.5625 z M 81.15625,784.5625 C 78.827331,784.84606 83.961168,786.1928 80.1875,786.125 C 79.959302,791.01613 85.536837,785.68972 81.15625,784.5625 z M 84.96875,784.5625 C 79.072941,788.16537 90.990936,788.93506 84.96875,784.5625 z M 84.96875,785 C 88.794322,788.066 81.236286,788.13587 84.96875,785 z M 81.5,786.25 C 83.651475,788.19072 78.143741,786.81355 81.5,786.25 z M 85.8125,795.34375 C 86.42204,797.31181 80.80364,797.89044 84.664457,799.89995 C 87.041193,801.0568 86.907337,795.38151 85.8125,795.34375 z M 79.28125,796.5625 C 76.376072,795.67007 77.819062,802.66678 78.55863,797.82384 L 79.111166,797.00986 L 79.28125,796.5625 z M 81.28125,796.5625 C 75.294254,800.10436 87.327077,800.99291 81.28125,796.5625 z M 81.28125,797 C 85.056217,800.10047 77.560513,800.0975 81.28125,797 z M 84.90625,797 C 88.674159,800.08728 81.25525,800.1769 84.90625,797 z M 80.0625,807.34375 C 80.0139,809.52799 79.946988,813.86453 81.044433,809.49085 C 83.004482,809.32532 82.432721,813.83581 82.827877,810.10469 C 81.802986,808.29178 80.701608,808.54804 80.0625,807.34375 z M 77.71875,807.6875 C 76.08803,810.21903 80.590548,814.01998 78.113532,809.90958 C 79.794424,807.63892 79.604648,809.99408 77.71875,807.6875 z M 85.15625,808.5625 C 79.231608,812.223 91.278603,812.88709 85.15625,808.5625 z M 85.15625,809 C 88.981822,812.066 81.423786,812.13587 85.15625,809 z M 77.15625,819.34375 C 77.349948,821.55953 76.618508,824.63366 78.155175,822.74915 C 81.679857,825.40546 76.604378,821.95279 79.674831,820.73622 C 76.040886,822.77824 78.907353,822.12904 77.15625,819.34375 z M 81.8125,820.5625 C 76.700121,821.39831 85.70337,825.78116 80.964824,822.90374 C 82.572312,822.3581 84.759657,821.55019 81.8125,820.5625 z M 85.71875,820.5625 C 82.858274,819.73828 84.320034,826.57279 84.931582,821.8472 C 86.839502,820.25859 86.669209,826.64337 86.805911,821.69735 C 86.736901,821.23583 86.447281,820.20908 85.71875,820.5625 L 85.71875,820.5625 z M 81.8125,821 C 85.110451,822.30374 78.196778,822.29413 81.8125,821 z M 78.5,831.6875 C 76.862029,834.22853 81.363678,838.02731 78.897208,833.91663 C 80.555088,831.63537 80.405621,833.99833 78.5,831.6875 z M 82.5,832.5625 C 79.592312,831.63839 81.047167,838.66826 81.738417,833.82658 L 82.293571,833.02878 L 82.5,832.5625 z M 84.5,832.5625 C 82.090162,832.82703 87.338954,834.20508 83.5,834.125 C 83.304008,839.01676 88.824166,833.69127 84.5,832.5625 z M 84.8125,834.25 C 87.035368,836.13528 81.421163,834.86218 84.8125,834.25 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; fill: rgb(186, 189, 182); fill-opacity: 1; stroke: none; font-family: Impact;"/>
      <path id="path6514" d="M 70.5,391.5 L 75.5,388.5 L 77.5,390.5 L 81.5,386.5 L 83.5,388.5 L 85.5,386.5 L 86.5,387.5" style="opacity: 0.635135; fill: none; stroke: url(#radialGradient6530) rgb(0, 0, 0); stroke-width: 0.184912; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;" sodipodi:nodetypes="cccccccc" transform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1404.61)"/>
      <g style="opacity: 0.333333;" id="g6571">
        <path sodipodi:type="arc" style="fill: url(#radialGradient6547) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" id="path6532" sodipodi:cx="197.375" sodipodi:cy="775.5" sodipodi:rx="2.375" sodipodi:ry="2.375" d="M 199.75,775.5 A 2.375,2.375 0 1 1 195,775.5 A 2.375,2.375 0 1 1 199.75,775.5 z" transform="matrix(1.73684, 0, 0, 1.73684, -145.434, -571.421)"/>
        <path sodipodi:type="arc" style="fill: url(#radialGradient6545) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" id="path6535" sodipodi:cx="218.25" sodipodi:cy="775.5" sodipodi:rx="2.125" sodipodi:ry="2.125" d="M 220.375,775.5 A 2.125,2.125 0 1 1 216.125,775.5 A 2.125,2.125 0 1 1 220.375,775.5 z" transform="matrix(1.47059, 0, 0, 1.47059, -102.706, -364.941)"/>
        <path sodipodi:type="arc" style="fill: url(#radialGradient6549) rgb(0, 0, 0); fill-opacity: 1; stroke: none;" id="path6537" sodipodi:cx="166.25" sodipodi:cy="786.875" sodipodi:rx="3.375" sodipodi:ry="3.375" d="M 169.625,786.875 A 3.375,3.375 0 1 1 162.875,786.875 A 3.375,3.375 0 1 1 169.625,786.875 z" transform="translate(0, -0.25)"/>
      </g>
      <path id="path7299" d="M 70.5,391.5 L 75.5,388.5 L 77.5,390.5 L 81.5,386.5 L 83.5,388.5 L 85.5,386.5 L 86.5,387.5" style="opacity: 0.635135; fill: none; stroke: rgb(32, 74, 135); stroke-width: 0.184912; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline; filter: url(#filter7361);" sodipodi:nodetypes="cccccccc" transform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1403.61)"/>
      <path id="path6614" d="M 70.5,391.5 L 75.5,388.5 L 77.5,390.5 L 81.5,386.5 L 83.5,388.5 L 85.5,386.5 L 86.5,387.5" style="opacity: 0.635135; fill: none; stroke: url(#radialGradient6989) rgb(0, 0, 0); stroke-width: 0.184912; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline; filter: url(#filter6620);" sodipodi:nodetypes="cccccccc" transform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1404.61)"/>
      <path style="fill: none; stroke: rgb(255, 255, 255); stroke-width: 0.184912px; stroke-linecap: square; stroke-linejoin: miter; stroke-opacity: 1; display: inline; filter: url(#filter7183);" d="M 70.5,382.5 L 70.5,396.5 L 86.5,396.5" id="path7181" transform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1404.61)"/>
      <path sodipodi:nodetypes="ccc" style="fill: none; stroke: rgb(186, 189, 182); stroke-width: 0.184912px; stroke-linecap: square; stroke-linejoin: miter; stroke-opacity: 1; display: inline;" d="M 70.5,382.5 L 70.5,396.5 L 86.5,396.5" id="path4681" transform="matrix(5.18592, 0, 0, 5.63955, -225.101, -1404.61)"/>
      <g id="g6658-8">
        <rect style="opacity: 0.25; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" id="rect6656" width="12" height="4" x="216" y="676" rx="2" ry="2"/>
        <rect style="opacity: 0.25; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none;" id="rect6642" width="12" height="4" x="76" y="676" rx="2" ry="2"/>
        <rect style="opacity: 0.25; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" id="rect6644" width="12" height="4" x="96" y="676" rx="2" ry="2"/>
        <rect style="opacity: 0.25; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" id="rect6646" width="12" height="4" x="116" y="676" rx="2" ry="2"/>
        <rect style="opacity: 0.25; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" id="rect6648" width="12" height="4" x="136" y="676" rx="2" ry="2"/>
        <rect style="opacity: 0.25; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" id="rect6650" width="12" height="4" x="156" y="676" rx="2" ry="2"/>
        <rect style="opacity: 0.25; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" id="rect6652" width="12" height="4" x="176" y="676" rx="2" ry="2"/>
        <rect style="opacity: 0.25; fill: rgb(255, 255, 255); fill-opacity: 1; stroke: none; display: inline;" id="rect6654" width="12" height="4" x="196" y="676" rx="2" ry="2"/>
      </g>
      <path id="rect6670" d="M 78,688 C 76.892,688 76,688.892 76,690 C 76,691.108 76.892,692 78,692 L 86,692 C 87.108,692 88,691.108 88,690 C 88,688.892 87.108,688 86,688 L 78,688 z M 98,688 C 96.892,688 96,688.892 96,690 C 96,691.108 96.892,692 98,692 L 106,692 C 107.108,692 108,691.108 108,690 C 108,688.892 107.108,688 106,688 L 98,688 z M 118,688 C 116.892,688 116,688.892 116,690 C 116,691.108 116.892,692 118,692 L 126,692 C 127.108,692 128,691.108 128,690 C 128,688.892 127.108,688 126,688 L 118,688 z M 138,688 C 136.892,688 136,688.892 136,690 C 136,691.108 136.892,692 138,692 L 146,692 C 147.108,692 148,691.108 148,690 C 148,688.892 147.108,688 146,688 L 138,688 z M 158,688 C 156.892,688 156,688.892 156,690 C 156,691.108 156.892,692 158,692 L 166,692 C 167.108,692 168,691.108 168,690 C 168,688.892 167.108,688 166,688 L 158,688 z M 178,688 C 176.892,688 176,688.892 176,690 C 176,691.108 176.892,692 178,692 L 186,692 C 187.108,692 188,691.108 188,690 C 188,688.892 187.108,688 186,688 L 178,688 z M 198,688 C 196.892,688 196,688.892 196,690 C 196,691.108 196.892,692 198,692 L 206,692 C 207.108,692 208,691.108 208,690 C 208,688.892 207.108,688 206,688 L 198,688 z M 218,688 C 216.892,688 216,688.892 216,690 C 216,691.108 216.892,692 218,692 L 226,692 C 227.108,692 228,691.108 228,690 C 228,688.892 227.108,688 226,688 L 218,688 z M 78,700 C 76.892,700 76,700.892 76,702 C 76,703.108 76.892,704 78,704 L 86,704 C 87.108,704 88,703.108 88,702 C 88,700.892 87.108,700 86,700 L 78,700 z M 98,700 C 96.892,700 96,700.892 96,702 C 96,703.108 96.892,704 98,704 L 106,704 C 107.108,704 108,703.108 108,702 C 108,700.892 107.108,700 106,700 L 98,700 z M 118,700 C 116.892,700 116,700.892 116,702 C 116,703.108 116.892,704 118,704 L 126,704 C 127.108,704 128,703.108 128,702 C 128,700.892 127.108,700 126,700 L 118,700 z M 138,700 C 136.892,700 136,700.892 136,702 C 136,703.108 136.892,704 138,704 L 146,704 C 147.108,704 148,703.108 148,702 C 148,700.892 147.108,700 146,700 L 138,700 z M 158,700 C 156.892,700 156,700.892 156,702 C 156,703.108 156.892,704 158,704 L 166,704 C 167.108,704 168,703.108 168,702 C 168,700.892 167.108,700 166,700 L 158,700 z M 178,700 C 176.892,700 176,700.892 176,702 C 176,703.108 176.892,704 178,704 L 186,704 C 187.108,704 188,703.108 188,702 C 188,700.892 187.108,700 186,700 L 178,700 z M 198,700 C 196.892,700 196,700.892 196,702 C 196,703.108 196.892,704 198,704 L 206,704 C 207.108,704 208,703.108 208,702 C 208,700.892 207.108,700 206,700 L 198,700 z M 218,700 C 216.892,700 216,700.892 216,702 C 216,703.108 216.892,704 218,704 L 226,704 C 227.108,704 228,703.108 228,702 C 228,700.892 227.108,700 226,700 L 218,700 z M 78,712 C 76.892,712 76,712.892 76,714 C 76,715.108 76.892,716 78,716 L 86,716 C 87.108,716 88,715.108 88,714 C 88,712.892 87.108,712 86,712 L 78,712 z M 98,712 C 96.892,712 96,712.892 96,714 C 96,715.108 96.892,716 98,716 L 106,716 C 107.108,716 108,715.108 108,714 C 108,712.892 107.108,712 106,712 L 98,712 z M 118,712 C 116.892,712 116,712.892 116,714 C 116,715.108 116.892,716 118,716 L 126,716 C 127.108,716 128,715.108 128,714 C 128,712.892 127.108,712 126,712 L 118,712 z M 138,712 C 136.892,712 136,712.892 136,714 C 136,715.108 136.892,716 138,716 L 146,716 C 147.108,716 148,715.108 148,714 C 148,712.892 147.108,712 146,712 L 138,712 z M 158,712 C 156.892,712 156,712.892 156,714 C 156,715.108 156.892,716 158,716 L 166,716 C 167.108,716 168,715.108 168,714 C 168,712.892 167.108,712 166,712 L 158,712 z M 178,712 C 176.892,712 176,712.892 176,714 C 176,715.108 176.892,716 178,716 L 186,716 C 187.108,716 188,715.108 188,714 C 188,712.892 187.108,712 186,712 L 178,712 z M 198,712 C 196.892,712 196,712.892 196,714 C 196,715.108 196.892,716 198,716 L 206,716 C 207.108,716 208,715.108 208,714 C 208,712.892 207.108,712 206,712 L 198,712 z M 218,712 C 216.892,712 216,712.892 216,714 C 216,715.108 216.892,716 218,716 L 226,716 C 227.108,716 228,715.108 228,714 C 228,712.892 227.108,712 226,712 L 218,712 z M 78,724 C 76.892,724 76,724.892 76,726 C 76,727.108 76.892,728 78,728 L 86,728 C 87.108,728 88,727.108 88,726 C 88,724.892 87.108,724 86,724 L 78,724 z M 98,724 C 96.892,724 96,724.892 96,726 C 96,727.108 96.892,728 98,728 L 106,728 C 107.108,728 108,727.108 108,726 C 108,724.892 107.108,724 106,724 L 98,724 z M 118,724 C 116.892,724 116,724.892 116,726 C 116,727.108 116.892,728 118,728 L 126,728 C 127.108,728 128,727.108 128,726 C 128,724.892 127.108,724 126,724 L 118,724 z M 138,724 C 136.892,724 136,724.892 136,726 C 136,727.108 136.892,728 138,728 L 146,728 C 147.108,728 148,727.108 148,726 C 148,724.892 147.108,724 146,724 L 138,724 z M 158,724 C 156.892,724 156,724.892 156,726 C 156,727.108 156.892,728 158,728 L 166,728 C 167.108,728 168,727.108 168,726 C 168,724.892 167.108,724 166,724 L 158,724 z M 178,724 C 176.892,724 176,724.892 176,726 C 176,727.108 176.892,728 178,728 L 186,728 C 187.108,728 188,727.108 188,726 C 188,724.892 187.108,724 186,724 L 178,724 z M 198,724 C 196.892,724 196,724.892 196,726 C 196,727.108 196.892,728 198,728 L 206,728 C 207.108,728 208,727.108 208,726 C 208,724.892 207.108,724 206,724 L 198,724 z M 218,724 C 216.892,724 216,724.892 216,726 C 216,727.108 216.892,728 218,728 L 226,728 C 227.108,728 228,727.108 228,726 C 228,724.892 227.108,724 226,724 L 218,724 z M 78,736 C 76.892,736 76,736.892 76,738 C 76,739.108 76.892,740 78,740 L 86,740 C 87.108,740 88,739.108 88,738 C 88,736.892 87.108,736 86,736 L 78,736 z M 98,736 C 96.892,736 96,736.892 96,738 C 96,739.108 96.892,740 98,740 L 106,740 C 107.108,740 108,739.108 108,738 C 108,736.892 107.108,736 106,736 L 98,736 z M 118,736 C 116.892,736 116,736.892 116,738 C 116,739.108 116.892,740 118,740 L 126,740 C 127.108,740 128,739.108 128,738 C 128,736.892 127.108,736 126,736 L 118,736 z M 138,736 C 136.892,736 136,736.892 136,738 C 136,739.108 136.892,740 138,740 L 146,740 C 147.108,740 148,739.108 148,738 C 148,736.892 147.108,736 146,736 L 138,736 z M 158,736 C 156.892,736 156,736.892 156,738 C 156,739.108 156.892,740 158,740 L 166,740 C 167.108,740 168,739.108 168,738 C 168,736.892 167.108,736 166,736 L 158,736 z M 178,736 C 176.892,736 176,736.892 176,738 C 176,739.108 176.892,740 178,740 L 186,740 C 187.108,740 188,739.108 188,738 C 188,736.892 187.108,736 186,736 L 178,736 z M 198,736 C 196.892,736 196,736.892 196,738 C 196,739.108 196.892,740 198,740 L 206,740 C 207.108,740 208,739.108 208,738 C 208,736.892 207.108,736 206,736 L 198,736 z M 218,736 C 216.892,736 216,736.892 216,738 C 216,739.108 216.892,740 218,740 L 226,740 C 227.108,740 228,739.108 228,738 C 228,736.892 227.108,736 226,736 L 218,736 z M 78,748 C 76.892,748 76,748.892 76,750 C 76,751.108 76.892,752 78,752 L 86,752 C 87.108,752 88,751.108 88,750 C 88,748.892 87.108,748 86,748 L 78,748 z M 98,748 C 96.892,748 96,748.892 96,750 C 96,751.108 96.892,752 98,752 L 106,752 C 107.108,752 108,751.108 108,750 C 108,748.892 107.108,748 106,748 L 98,748 z M 118,748 C 116.892,748 116,748.892 116,750 C 116,751.108 116.892,752 118,752 L 126,752 C 127.108,752 128,751.108 128,750 C 128,748.892 127.108,748 126,748 L 118,748 z M 78,760 C 76.892,760 76,760.892 76,762 C 76,763.108 76.892,764 78,764 L 86,764 C 87.108,764 88,763.108 88,762 C 88,760.892 87.108,760 86,760 L 78,760 z M 98,760 C 96.892,760 96,760.892 96,762 C 96,763.108 96.892,764 98,764 L 106,764 C 107.108,764 108,763.108 108,762 C 108,760.892 107.108,760 106,760 L 98,760 z M 118,760 C 116.892,760 116,760.892 116,762 C 116,763.108 116.892,764 118,764 L 126,764 C 127.108,764 128,763.108 128,762 C 128,760.892 127.108,760 126,760 L 118,760 z M 78,772 C 76.892,772 76,772.892 76,774 C 76,775.108 76.892,776 78,776 L 86,776 C 87.108,776 88,775.108 88,774 C 88,772.892 87.108,772 86,772 L 78,772 z M 98,772 C 96.892,772 96,772.892 96,774 C 96,775.108 96.892,776 98,776 L 106,776 C 107.108,776 108,775.108 108,774 C 108,772.892 107.108,772 106,772 L 98,772 z M 118,772 C 116.892,772 116,772.892 116,774 C 116,775.108 116.892,776 118,776 L 126,776 C 127.108,776 128,775.108 128,774 C 128,772.892 127.108,772 126,772 L 118,772 z M 78,784 C 76.892,784 76,784.892 76,786 C 76,787.108 76.892,788 78,788 L 86,788 C 87.108,788 88,787.108 88,786 C 88,784.892 87.108,784 86,784 L 78,784 z M 98,784 C 96.892,784 96,784.892 96,786 C 96,787.108 96.892,788 98,788 L 106,788 C 107.108,788 108,787.108 108,786 C 108,784.892 107.108,784 106,784 L 98,784 z M 118,784 C 116.892,784 116,784.892 116,786 C 116,787.108 116.892,788 118,788 L 126,788 C 127.108,788 128,787.108 128,786 C 128,784.892 127.108,784 126,784 L 118,784 z M 78,796 C 76.892,796 76,796.892 76,798 C 76,799.108 76.892,800 78,800 L 86,800 C 87.108,800 88,799.108 88,798 C 88,796.892 87.108,796 86,796 L 78,796 z M 98,796 C 96.892,796 96,796.892 96,798 C 96,799.108 96.892,800 98,800 L 106,800 C 107.108,800 108,799.108 108,798 C 108,796.892 107.108,796 106,796 L 98,796 z M 118,796 C 116.892,796 116,796.892 116,798 C 116,799.108 116.892,800 118,800 L 126,800 C 127.108,800 128,799.108 128,798 C 128,796.892 127.108,796 126,796 L 118,796 z M 78,808 C 76.892,808 76,808.892 76,810 C 76,811.108 76.892,812 78,812 L 86,812 C 87.108,812 88,811.108 88,810 C 88,808.892 87.108,808 86,808 L 78,808 z M 98,808 C 96.892,808 96,808.892 96,810 C 96,811.108 96.892,812 98,812 L 106,812 C 107.108,812 108,811.108 108,810 C 108,808.892 107.108,808 106,808 L 98,808 z M 118,808 C 116.892,808 116,808.892 116,810 C 116,811.108 116.892,812 118,812 L 126,812 C 127.108,812 128,811.108 128,810 C 128,808.892 127.108,808 126,808 L 118,808 z M 78,820 C 76.892,820 76,820.892 76,822 C 76,823.108 76.892,824 78,824 L 86,824 C 87.108,824 88,823.108 88,822 C 88,820.892 87.108,820 86,820 L 78,820 z M 98,820 C 96.892,820 96,820.892 96,822 C 96,823.108 96.892,824 98,824 L 106,824 C 107.108,824 108,823.108 108,822 C 108,820.892 107.108,820 106,820 L 98,820 z M 118,820 C 116.892,820 116,820.892 116,822 C 116,823.108 116.892,824 118,824 L 126,824 C 127.108,824 128,823.108 128,822 C 128,820.892 127.108,820 126,820 L 118,820 z M 78,832 C 76.892,832 76,832.892 76,834 C 76,835.108 76.892,836 78,836 L 86,836 C 87.108,836 88,835.108 88,834 C 88,832.892 87.108,832 86,832 L 78,832 z M 98,832 C 96.892,832 96,832.892 96,834 C 96,835.108 96.892,836 98,836 L 106,836 C 107.108,836 108,835.108 108,834 C 108,832.892 107.108,832 106,832 L 98,832 z M 118,832 C 116.892,832 116,832.892 116,834 C 116,835.108 116.892,836 118,836 L 126,836 C 127.108,836 128,835.108 128,834 C 128,832.892 127.108,832 126,832 L 118,832 z" style="opacity: 0.05; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline;"/>
      <rect ry="1.9375" rx="1.9375" y="656.125" x="72" height="3.875" width="68" id="rect4558" style="opacity: 0.03; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none;"/>
      <path id="text3778" d="M 74.306641,658.35059 C 70.541101,658.70917 76.513603,660.8934 74.306641,658.35059 z M 75.381836,658.12793 C 76.842462,661.80405 69.763423,659.12335 73.948845,657.99137 C 76.618348,657.33371 70.676148,657.07082 74.148362,656.65288 C 75.109557,656.5278 75.449629,657.3424 75.381836,658.12793 z M 79.222656,658.01953 C 79.654349,660.06329 78.321954,660.62657 78.711202,658.31974 C 78.020606,655.54017 76.472049,658.58022 76.881488,660 C 75.919748,659.32 76.40822,656.00247 77.305724,656.88854 C 78.105992,656.22779 79.456928,656.96654 79.222656,658.01953 z M 80.836914,655.78711 C 80.167166,657.06821 83.421224,656.80729 80.933824,657.28064 C 79.511436,658.77842 83.476016,660.72008 80.580858,659.65276 C 80.44887,658.68984 79.371843,655.8497 80.836914,655.78711 z M 84.150391,658.35059 C 80.384851,658.70917 86.357353,660.8934 84.150391,658.35059 z M 85.225586,658.12793 C 86.686212,661.80405 79.607173,659.12335 83.792595,657.99137 C 86.462098,657.33371 80.519898,657.07082 83.992112,656.65288 C 84.953307,656.5278 85.293379,657.3424 85.225586,658.12793 z M 89.066406,658.01953 C 89.498099,660.06329 88.165704,660.62657 88.554952,658.31974 C 87.864356,655.54017 86.315799,658.58022 86.725238,660 C 85.763498,659.32 86.25197,656.00247 87.149474,656.88854 C 87.949742,656.22779 89.300678,656.96654 89.066406,658.01953 z M 90.147461,656.71875 C 91.865645,657.43848 89.749031,662.31817 90.147461,658.0216 L 90.147461,657.37017 L 90.147461,656.71875 L 90.147461,656.71875 z M 90.147461,655.44141 C 91.527979,655.32814 89.773248,656.91215 90.147461,655.44141 z M 91.949219,659.25586 C 93.836349,659.40961 90.942645,662.00247 91.949219,659.25586 z M 96.165039,655.78711 C 95.495291,657.06821 98.749349,656.80729 96.261949,657.28064 C 94.839561,658.77842 98.804141,660.72008 95.908983,659.65276 C 95.776995,658.68984 94.699968,655.8497 96.165039,655.78711 z M 99.478516,658.35059 C 95.712968,658.70917 101.68549,660.8934 99.478516,658.35059 z M 100.55371,658.12793 C 102.01434,661.80405 94.935297,659.12336 99.12072,657.99137 C 101.79022,657.33371 95.848022,657.07082 99.320237,656.65288 C 100.28143,656.5278 100.62151,657.34239 100.55371,658.12793 z M 102.18848,659.50781 C 102.18348,664.46104 100.4136,655.71793 102.60585,656.91201 C 105.78397,655.36747 104.62862,662.14563 102.18848,659.50781 z M 104.02246,658.3623 C 103.47245,654.79083 100.68264,660.75271 103.75017,659.33116 L 103.91551,659.03518 L 104.02246,658.3623 L 104.02246,658.3623 z M 105.47559,656.71875 C 107.19376,657.4385 105.07717,662.31817 105.47559,658.0216 L 105.47559,657.37017 L 105.47559,656.71875 L 105.47559,656.71875 z M 105.47559,655.44141 C 106.8561,655.32814 105.10137,656.91213 105.47559,655.44141 z M 108.41113,657.09668 C 105.59143,657.85899 109.89977,661.37523 109.30767,657.9278 C 109.22197,657.51255 108.89165,657.05958 108.41113,657.09668 z M 108.41113,656.63965 C 112.25282,657.16378 107.49981,662.84839 106.8924,658.42188 C 106.8396,657.55825 107.42856,656.53959 108.41113,656.63965 z M 113.16895,656.84473 C 111.98401,656.81163 109.78125,658.57046 112.03057,659.50971 C 115.05433,660.09855 109.04208,660.48892 110.64838,657.89429 C 110.88129,656.74057 112.20685,656.19987 113.16895,656.84473 L 113.16895,656.84473 z M 115.38379,657.09668 C 112.56408,657.85899 116.87243,661.37524 116.28033,657.9278 C 116.19463,657.51255 115.86431,657.05958 115.38379,657.09668 z M 115.38379,656.63965 C 119.22548,657.16377 114.47245,662.84839 113.86505,658.42187 C 113.81225,657.55824 114.40122,656.53958 115.38379,656.63965 z M 120.22363,655.78711 C 119.55389,657.06821 122.80793,656.80728 120.32053,657.28064 C 118.89815,658.77841 122.86271,660.72008 119.96756,659.65275 C 119.83558,658.68983 118.75855,655.8497 120.22362,655.78711 L 120.22363,655.78711 z M 123.53711,658.35059 C 119.77157,658.70917 125.74405,660.8934 123.53711,658.35059 z M 124.6123,658.12793 C 126.07291,661.80404 118.9939,659.12335 123.17931,657.99137 C 125.84882,657.33371 119.90661,657.07083 123.37883,656.65288 C 124.34001,656.5278 124.68011,657.34239 124.6123,658.12793 z M 127.62695,657.22266 C 125.53521,656.36059 126.36112,662.42293 125.72973,658.69216 C 124.58256,656.99432 127.44736,655.8366 127.62695,657.22266 z M 129.68945,658.35059 C 125.92392,658.70917 131.8964,660.8934 129.68945,658.35059 z M 130.76465,658.12793 C 132.22528,661.80405 125.14623,659.12336 129.33166,657.99137 C 132.00117,657.33372 126.05896,657.07082 129.53118,656.65288 C 130.49237,656.5278 130.83246,657.34239 130.76465,658.12793 L 130.76465,658.12793 z M 132.39941,659.50781 C 132.39441,664.46104 130.62454,655.71793 132.81679,656.91201 C 135.99491,655.36748 134.83955,662.14563 132.39941,659.50781 z M 134.2334,658.3623 C 133.68338,654.79084 130.89358,660.75271 133.9611,659.33116 L 134.12645,659.03518 L 134.2334,658.3623 L 134.2334,658.3623 z M 135.68652,656.71875 C 137.40471,657.43849 135.28809,662.31817 135.68652,658.0216 L 135.68652,657.37017 L 135.68652,656.71875 L 135.68652,656.71875 z M 135.68652,655.44141 C 137.06705,655.32814 135.31231,656.91215 135.68652,655.44141 z M 138.8418,658.35059 C 135.07623,658.70918 141.0488,660.89339 138.8418,658.35059 z M 139.91699,658.12793 C 141.37762,661.80405 134.29858,659.12335 138.484,657.99137 C 141.15351,657.33371 135.2113,657.07082 138.68352,656.65288 C 139.64471,656.5278 139.98479,657.34239 139.91699,658.12793 L 139.91699,658.12793 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; fill: rgb(211, 215, 207); fill-opacity: 1; stroke: none; font-family: Impact;"/>
      <rect y="848" x="70" height="1" width="164" id="rect4569" style="opacity: 0.5; fill: rgb(211, 215, 207); fill-opacity: 1; stroke: none; display: inline;"/>
      <path id="text4571" d="M 221.76065,855.48511 C 222.17463,855.65344 222.88176,855.42291 222.74282,854.87771 C 222.69562,854.40329 222.76412,853.91829 222.68832,853.44931 C 222.63732,852.9978 221.96158,852.6984 222.10026,852.28087 C 222.44957,852.15514 222.99558,852.07679 223.28859,852.32687 C 223.42009,852.72471 223.26079,853.15028 223.31209,853.5612 C 223.31009,854.17428 223.31124,854.78742 223.32439,855.40038 C 223.56826,855.52727 224.4579,855.40338 224.06,855.87082 C 223.59288,856.11249 223.07435,855.76429 222.59018,855.92172 C 222.27129,855.98942 221.66659,855.96562 221.76067,855.48517 L 221.76065,855.48511 z M 227.1044,852.5343 C 226.77253,853.10116 226.27732,853.54941 225.93448,854.1087 C 225.79208,854.65132 226.57997,854.54333 226.91735,854.59516 C 227.30926,854.4888 227.01585,853.9278 227.1044,853.61555 C 227.1044,853.25514 227.1044,852.89471 227.1044,852.5343 z M 226.94913,852.08148 C 227.42195,851.82249 227.96105,852.4713 227.71525,852.91419 C 227.70115,853.42796 227.64235,853.949 227.74525,854.45756 C 228.16505,854.41146 228.4718,855.01827 227.90448,855.04975 C 227.45263,855.18489 227.91988,855.79127 227.4744,855.90874 C 226.88372,855.99574 227.32617,855.18982 226.86982,855.04425 C 226.42915,854.82955 225.91523,855.17181 225.4818,854.89762 C 225.11565,854.65713 225.37447,854.18323 225.5348,853.89328 C 225.94892,853.24733 226.4823,852.68803 226.9491,852.08148 L 226.94913,852.08148 z M 231.09171,853.85144 C 231.91428,853.85544 232.33438,855.11274 231.65208,855.59094 C 231.05935,856.06024 230.24304,856.0662 229.53528,855.91765 C 228.88907,856.08334 229.37329,854.9452 229.7396,855.51177 C 230.29762,855.65441 231.03984,855.60447 231.3623,855.05742 C 231.58386,854.53334 230.96093,853.92397 230.43915,854.13232 C 230.03095,854.31251 229.71095,853.56929 230.27704,853.64506 C 230.64145,853.66486 231.42638,853.56256 231.21455,853.03754 C 230.90823,852.74965 230.48541,852.6088 230.09951,852.4539 C 229.90614,852.3896 229.30745,852.18437 229.78792,852.10045 C 230.19133,852.05865 230.60832,851.98801 231.01148,852.05365 C 231.54594,852.16634 232.05928,852.73523 231.84308,853.29878 C 231.71584,853.60049 231.41087,853.80592 231.09171,853.85146 L 231.09171,853.85144 z" style="font-size: 6px; font-style: normal; font-variant: normal; font-weight: bold; font-stretch: normal; line-height: 125%; fill: rgb(211, 215, 207); fill-opacity: 1; stroke: none; font-family: Impact;"/>
    </g>
    <g style="display: inline;" id="g7641" inkscape:export-filename="/home/lapo/Scrivania/use4934.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" transform="translate(1157, 4)">
      <g id="g5443" style="opacity: 0.5;" transform="translate(233, 366)">
        <g transform="translate(0, -40)" id="g7434">
          <g id="g7121" style="opacity: 0.9;">
            <rect y="407.5" x="128.5" height="2" width="4" id="rect5725" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="409.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect5745" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="407.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect5276" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="407.5" x="124.5" height="2" width="4" id="rect5280" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="409.5" x="128.5" height="2" width="4" id="rect5741" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="409.5" x="132.5" height="2" width="3" id="rect5928" style="fill: none; stroke: url(#linearGradient7758) rgb(0, 0, 0); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="409.5" x="124.5" height="2" width="4" id="rect5749" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="411.5" x="128.5" height="2" width="4" id="rect5751" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="411.5" x="132.5" height="2" width="3" id="rect5930" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="411.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect5755" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="411.5" x="124.5" height="2" width="4" id="rect5759" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="413.5" x="128.5" height="2" width="4" id="rect5761" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="413.5" x="132.5" height="2" width="3" id="rect5932" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="413.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect5765" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="413.5" x="124.5" height="2" width="4" id="rect5769" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="415.5" x="128.5" height="2" width="4" id="rect5771" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="415.5" x="132.5" height="2" width="3" id="rect5934" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="415.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect5775" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="415.5" x="124.5" height="2" width="4" id="rect5779" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="417.5" x="128.5" height="2" width="4" id="rect5781" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="417.5" x="132.5" height="2" width="3" id="rect5936" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="417.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect5785" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="417.5" x="124.5" height="2" width="4" id="rect5789" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="419.5" x="128.5" height="2" width="4" id="rect5791" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="419.5" x="132.5" height="2" width="3" id="rect5938" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="419.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect5795" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="419.5" x="124.5" height="2" width="4" id="rect7196" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="421.5" x="128.5" height="2" width="4" id="rect7198" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="421.5" x="132.5" height="2" width="3" id="rect5940" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="421.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect7201" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="421.5" x="124.5" height="2" width="4" id="rect7203" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="423.5" x="128.5" height="2" width="4" id="rect5942" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="423.5" x="132.5" height="2" width="3" id="rect5944" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="423.5336" x="120.50542" height="1.9664001" width="3.9945831" id="rect5948" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="423.5" x="124.5" height="2" width="4" id="rect5952" style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          </g>
          <g id="g7092">
            <rect y="407.5" x="116.49999" height="2.0000155" width="4.0000119" id="rect5274" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="409.5" x="116.5" height="1.9999982" width="3.9999986" id="rect5743" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="411.5" x="116.5" height="1.9999982" width="3.9999986" id="rect5753" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="413.5" x="116.5" height="1.9999982" width="3.9999986" id="rect5763" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="415.5" x="116.5" height="1.9999982" width="3.9999986" id="rect5773" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="417.5" x="116.5" height="1.9999982" width="3.9999986" id="rect5783" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="419.5" x="116.5" height="1.9999982" width="3.9999986" id="rect5793" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="421.5" x="116.5" height="1.9999982" width="3.9999986" id="rect7217" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="423.5" x="116.5" height="1.9999982" width="3.9999986" id="rect5946" style="fill: rgb(186, 189, 182); fill-opacity: 1; stroke: rgb(85, 87, 83); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          </g>
          <g id="g7085">
            <rect y="405.5" x="120.5" height="2" width="4" id="rect5302" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="405.5" x="116.49999" height="2" width="4.00001" id="rect5300" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="405.5" x="124.5" height="2" width="4" id="rect5306" style="fill: rgb(114, 159, 207); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
            <rect y="405.5" x="128.5" height="2" width="4" id="rect5731" style="fill: url(#linearGradient7760) rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient7762) rgb(0, 0, 0); stroke-width: 1; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"/>
          </g>
        </g>
        <g id="g5435">
          <rect style="fill: rgb(255, 255, 255); fill-opacity: 1; stroke: rgb(0, 0, 0); stroke-width: 1; stroke-linecap: butt; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: 1, 2; stroke-dashoffset: 0.5; stroke-opacity: 1;" id="rect5340" width="11" height="10.000001" x="124.5" y="375.5"/>
        </g>
      </g>
      <path style="fill: url(#linearGradient7764) rgb(0, 0, 0); fill-opacity: 1; fill-rule: evenodd; stroke: none;" d="M 359.5,747.5 L 361.5,744.5 L 363.5,745.5 L 365.5,743.5 L 367.5,745.5 L 367.5,749.5 L 359.5,749.5 L 359.5,747.5 z" id="path4385" sodipodi:nodetypes="cccccccc"/>
      <path style="fill: none; stroke: rgb(136, 138, 133); stroke-width: 1px; stroke-linecap: square; stroke-linejoin: miter; stroke-opacity: 1; display: inline;" d="M 359.5,743.5 L 359.5,749.5 L 366.5,749.5" id="path5351" sodipodi:nodetypes="ccc"/>
    </g>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12840" id="use10307" transform="translate(800, 604)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12376" id="use10311" transform="translate(800, 604)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12880" id="use10313" transform="translate(800, 604)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12526" id="use10315" transform="translate(800, 604)" width="1600" height="900"/>
    <use style="display: inline;" x="0" y="0" xlink:href="#g12672" id="use10317" transform="translate(800, 604)" width="1600" height="900"/>
  </g>
  <g style="display: none;" inkscape:label="x-office-spreadsheet-template" id="layer4" inkscape:groupmode="layer">
    <g style="display: none;" inkscape:label="plate 9" id="layer5" inkscape:groupmode="layer">
      <rect style="opacity: 1; fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="256" height="256" inkscape:label="256x256" y="636" x="824" id="rect8496-0-7"/>
      <rect style="opacity: 1; fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="48" height="48" inkscape:label="48x48" y="654" x="1100" id="rect8498-4-9"/>
      <rect style="opacity: 1; fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="32" height="32" inkscape:label="32x32" y="729" x="1100" id="rect8500-8-0"/>
      <rect style="opacity: 1; fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="24" height="24" inkscape:label="24x24" y="780" x="1100" id="rect8502-3-3"/>
      <rect style="opacity: 1; fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="22" height="22" inkscape:label="22x22" y="781" x="1101" id="rect8504-7-5"/>
      <rect style="opacity: 1; fill: rgb(238, 238, 236); fill-opacity: 1; fill-rule: nonzero; stroke: none; visibility: visible; display: inline;" width="16" height="16" inkscape:label="16x16" y="824" x="1100" id="rect8506-3-4"/>
      <text y="624" inkscape:label="context" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="820" id="text8508-5-4">
        <tspan id="tspan8510-7-8">mimetypes</tspan>
      </text>
      <text y="624" inkscape:label="icon-name" style="font-size: 18px; font-style: normal; font-weight: normal; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; display: inline; font-family: Bitstream Vera Sans;" x="930" id="text8512-7-9">
        <tspan id="tspan8514-3-9">x-office-spreadsheet-template</tspan>
      </text>
    </g>
  </g>
</svg>