summaryrefslogtreecommitdiffstats
path: root/PerformanceTests/PageLoad/svg/files/42450-under the see.svg
blob: 2ca69d6759224b16ceefb57c4a2106c0b68866b5 (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
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="1280"
   height="800"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.44+devel"
   version="1.0"
   sodipodi:docbase="/home/it-s/Media/Pictures/Vector"
   sodipodi:docname="under the see.svg"
   inkscape:export-filename="/home/it-s/Media/Pictures/Vector/under the see.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs4">
    <linearGradient
       inkscape:collect="always"
       id="linearGradient9539">
      <stop
         style="stop-color:black;stop-opacity:1;"
         offset="0"
         id="stop9541" />
      <stop
         style="stop-color:black;stop-opacity:0;"
         offset="1"
         id="stop9543" />
    </linearGradient>
    <linearGradient
       id="linearGradient8471">
      <stop
         id="stop8473"
         offset="0"
         style="stop-color:white;stop-opacity:0;" />
      <stop
         style="stop-color:white;stop-opacity:0.34117648;"
         offset="0.285"
         id="stop8475" />
      <stop
         id="stop8477"
         offset="0.57999998"
         style="stop-color:white;stop-opacity:0.4627451;" />
      <stop
         style="stop-color:white;stop-opacity:0.19607843;"
         offset="0.8488"
         id="stop8479" />
      <stop
         id="stop8481"
         offset="1"
         style="stop-color:white;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient7357">
      <stop
         style="stop-color:white;stop-opacity:1;"
         offset="0"
         id="stop7359" />
      <stop
         style="stop-color:white;stop-opacity:0;"
         offset="1"
         id="stop7361" />
    </linearGradient>
    <linearGradient
       id="linearGradient7337">
      <stop
         style="stop-color:#2e4a4d;stop-opacity:1;"
         offset="0"
         id="stop7339" />
      <stop
         style="stop-color:#7babb1;stop-opacity:1;"
         offset="1"
         id="stop7341" />
    </linearGradient>
    <linearGradient
       id="linearGradient6134">
      <stop
         style="stop-color:white;stop-opacity:0.18556701;"
         offset="0"
         id="stop6136" />
      <stop
         id="stop6288"
         offset="0.40060797"
         style="stop-color:white;stop-opacity:0.13402061;" />
      <stop
         id="stop6142"
         offset="0.66767997"
         style="stop-color:white;stop-opacity:0.25773194;" />
      <stop
         style="stop-color:white;stop-opacity:0;"
         offset="0.8471328"
         id="stop6290" />
      <stop
         style="stop-color:white;stop-opacity:0;"
         offset="1"
         id="stop6138" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3886">
      <stop
         style="stop-color:#8cecc8;stop-opacity:1;"
         offset="0"
         id="stop3888" />
      <stop
         style="stop-color:#8cecc8;stop-opacity:0;"
         offset="1"
         id="stop3890" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient2806">
      <stop
         style="stop-color:#0378a3;stop-opacity:1;"
         offset="0"
         id="stop2808" />
      <stop
         style="stop-color:#0378a3;stop-opacity:0;"
         offset="1"
         id="stop2810" />
    </linearGradient>
    <linearGradient
       id="linearGradient2790">
      <stop
         style="stop-color:#76dbbc;stop-opacity:0;"
         offset="0"
         id="stop2792" />
      <stop
         id="stop2798"
         offset="0.285"
         style="stop-color:#76dbbc;stop-opacity:0.34020618;" />
      <stop
         style="stop-color:#76dbbc;stop-opacity:0.46391752;"
         offset="0.57999998"
         id="stop2800" />
      <stop
         id="stop2802"
         offset="0.8488"
         style="stop-color:#76dbbc;stop-opacity:0.19587629;" />
      <stop
         style="stop-color:#76dbbc;stop-opacity:0;"
         offset="1"
         id="stop2794" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient2780">
      <stop
         style="stop-color:#64d0b6;stop-opacity:1;"
         offset="0"
         id="stop2782" />
      <stop
         style="stop-color:#04639d;stop-opacity:1"
         offset="1"
         id="stop2784" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2780"
       id="linearGradient2786"
       x1="31.428572"
       y1="61.428562"
       x2="328.57153"
       y2="847.14288"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="radialGradient2812"
       cx="58.571445"
       cy="921.59631"
       fx="58.571445"
       fy="921.59631"
       r="655.71429"
       gradientTransform="matrix(1,0,0,0.62963,0,149.7355)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient2820"
       x1="51.42857"
       y1="398.57144"
       x2="351.42856"
       y2="278.57144"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient2824"
       gradientUnits="userSpaceOnUse"
       x1="51.42857"
       y1="398.57144"
       x2="351.42856"
       y2="278.57144"
       gradientTransform="translate(180,5.714286)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient2828"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(34.28571,20)"
       x1="-14.285711"
       y1="387.14285"
       x2="114.28571"
       y2="361.42856" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient2840"
       x1="882.35712"
       y1="385.71429"
       x2="1063.3572"
       y2="97.142883"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient2848"
       x1="625.71429"
       y1="748.57141"
       x2="851.42853"
       y2="548.57141"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient2852"
       gradientUnits="userSpaceOnUse"
       x1="625.71429"
       y1="748.57141"
       x2="851.42853"
       y2="548.57141"
       gradientTransform="translate(191.4286,-11.42857)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="radialGradient2856"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.62963,0,149.7355)"
       cx="818.57147"
       cy="930.67194"
       fx="818.57147"
       fy="930.67194"
       r="655.71429" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="radialGradient2860"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.62963,0,149.7355)"
       cx="1267.1429"
       cy="377.05881"
       fx="1267.1429"
       fy="377.05881"
       r="655.71429" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3886"
       id="radialGradient3892"
       cx="704.72589"
       cy="292.62759"
       fx="704.72589"
       fy="292.62759"
       r="273.724"
       gradientTransform="matrix(1,0,0,0.28453,0,209.3661)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3886"
       id="radialGradient3896"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.28453,0,209.3661)"
       cx="704.72589"
       cy="292.62759"
       fx="704.72589"
       fy="292.62759"
       r="273.724" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3886"
       id="radialGradient3900"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.28453,0,209.3661)"
       cx="704.72589"
       cy="292.62759"
       fx="704.72589"
       fy="292.62759"
       r="273.724" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3886"
       id="radialGradient3904"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.28453,0,209.3661)"
       cx="704.72589"
       cy="292.62759"
       fx="704.72589"
       fy="292.62759"
       r="273.724" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient3928"
       x1="43.596298"
       y1="368.40231"
       x2="1177.4886"
       y2="368.40231"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient3936"
       x1="55.698612"
       y1="239.78107"
       x2="1123.2231"
       y2="239.78107"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-78.63894,-7.561437)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient3944"
       x1="29.395649"
       y1="185.90901"
       x2="967.62439"
       y2="185.90901"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient3952"
       x1="314.18854"
       y1="175.35481"
       x2="1168.2363"
       y2="175.35481"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient3960"
       x1="464.27377"
       y1="110.63812"
       x2="1075.2878"
       y2="110.63812"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2790"
       id="linearGradient3968"
       x1="715.1944"
       y1="140.54684"
       x2="1210.8529"
       y2="140.54684"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient3976"
       x1="812.52185"
       y1="31.37809"
       x2="1047.408"
       y2="31.37809"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(33.27032,16.63516)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3886"
       id="linearGradient3984"
       x1="1075.8986"
       y1="38.363842"
       x2="1292.7272"
       y2="38.363842"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-1.512287,-6.049149)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6150"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6152"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6154"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6156"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6158"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6160"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6162"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6164"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6166"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6168"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6170"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6172"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6174"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6176"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6178"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6180"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6182"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6184"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6186"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6188"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6190"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6192"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6194"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6196"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6198"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6200"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6202"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6204"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6206"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6208"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6210"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6212"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6214"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6216"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6218"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6220"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6222"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6224"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6226"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6228"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6230"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6232"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6234"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6236"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6238"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6240"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6242"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6244"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6246"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6248"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6250"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6252"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6254"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6256"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6258"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6260"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6262"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6264"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6266"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6268"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6270"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6272"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6274"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6276"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6278"
       cx="514.93384"
       cy="765.21741"
       fx="514.93384"
       fy="765.21741"
       r="9.8298674"
       gradientTransform="matrix(1,0,0,0.923077,0,58.86287)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6280"
       cx="484.68808"
       cy="779.58411"
       fx="484.68808"
       fy="779.58411"
       r="6.8052931"
       gradientTransform="matrix(1,0,0,1.222222,0,-173.2409)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6282"
       cx="480.15121"
       cy="733.45935"
       fx="480.15121"
       fy="733.45935"
       r="6.8052931"
       gradientTransform="matrix(1,0,0,1.333333,0,-244.4864)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6284"
       cx="489.22495"
       cy="751.60681"
       fx="489.22495"
       fy="751.60681"
       r="9.8298674"
       gradientTransform="matrix(1,0,0,0.923077,0,57.8159)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6286"
       cx="472.58978"
       cy="741.02081"
       fx="472.58978"
       fy="741.02081"
       r="5.2930055"
       gradientTransform="matrix(1,0,0,0.571429,0,317.5803)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6294"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6298"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6302"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6306"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6310"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6314"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6318"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6322"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6326"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6330"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6334"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6338"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6342"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6346"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6350"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6354"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6358"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6362"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6366"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6370"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6374"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6378"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.857143,0,80.58331)"
       cx="336.48392"
       cy="564.08319"
       fx="336.48392"
       fy="564.08319"
       r="5.2930055" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6382"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6386"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6390"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6394"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6398"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6402"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6406"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6410"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6414"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6418"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6422"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6426"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6430"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6434"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6438"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6442"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6134"
       id="radialGradient6446"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.8,0,153.0435)"
       cx="493.76181"
       cy="765.21741"
       fx="493.76181"
       fy="765.21741"
       r="11.342155" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8403"
       gradientUnits="userSpaceOnUse"
       x1="-569.71979"
       y1="329.35635"
       x2="-562.20435"
       y2="358.02646" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8405"
       gradientUnits="userSpaceOnUse"
       x1="-573.33948"
       y1="310.92227"
       x2="-582.91736"
       y2="264.49591" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8407"
       gradientUnits="userSpaceOnUse"
       x1="-564.42023"
       y1="304.25351"
       x2="-599.84094"
       y2="280.64008" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="radialGradient8409"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.484735,1.59224e-2,-5.029442e-3,0.153114,-293.1255,247.5181)"
       cx="-570.72424"
       cy="188.52875"
       fx="-570.72424"
       fy="188.52875"
       r="149.3989" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8455"
       gradientUnits="userSpaceOnUse"
       x1="-466.77103"
       y1="373.58478"
       x2="-468.20392"
       y2="338.46484" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8457"
       gradientUnits="userSpaceOnUse"
       x1="-496.10175"
       y1="363.76495"
       x2="-491.88474"
       y2="378.70709" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="radialGradient8459"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.499567,-2.259573e-2,9.432005e-3,0.208532,-238.4118,266.645)"
       cx="-544.82623"
       cy="296.77731"
       fx="-544.82623"
       fy="296.77731"
       r="104.51332" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath8540">
      <path
         style="fill:url(#radialGradient8543);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 602.6198,279.1202 C 622.64374,272.64187 620.87691,275.58656 625.58844,269.69717 C 630.29994,263.80778 635.60041,256.15158 653.2686,246.13961 C 670.93677,236.12764 673.88146,233.18293 703.91738,221.99309 C 733.95329,210.80323 746.90996,207.26959 781.65737,199.02445 C 816.40481,190.77929 809.33753,190.77929 819.93845,181.35626 C 830.53936,171.93323 838.19556,160.15443 852.91905,152.49823 C 867.64253,144.84202 862.34208,151.32035 861.1642,157.79868 C 859.98633,164.27701 858.80845,180.76732 865.87572,187.24565 C 872.943,193.72399 878.83239,192.54612 906.51255,196.07974 C 934.19269,199.61338 964.81755,205.50278 988.37513,210.21429 C 1011.9327,214.92581 1030.1898,220.22626 1037.846,228.47142 C 1045.5022,236.71656 1058.4589,243.1949 1061.4036,242.01703 C 1064.3483,240.83914 1067.293,235.5387 1077.305,229.64929 C 1087.3169,223.7599 1098.5068,220.22626 1102.6294,220.8152 C 1106.7519,221.40414 1106.163,221.40414 1102.0404,226.11565 C 1097.9179,230.82717 1092.6174,233.18293 1096.74,238.48339 C 1100.8626,243.78384 1110.2856,250.85111 1107.3409,252.61793 C 1104.3962,254.38475 1109.6966,253.79581 1112.0524,260.27414 C 1114.4082,266.75248 1121.4754,276.17551 1130.8985,283.24278 C 1140.3215,290.31006 1152.6892,291.48794 1150.9224,294.43264 C 1149.1556,297.37733 1130.3095,299.73308 1109.6966,290.31006 C 1089.0838,280.88703 1077.8939,266.16353 1072.0045,264.98567 C 1066.1151,263.80778 1057.281,267.34142 1049.0359,267.93036 C 1040.7907,268.5193 1006.0433,257.91839 994.26452,257.91839 C 982.48573,257.91839 961.28391,263.21884 950.09405,265.57459 C 938.90421,267.93036 911.813,269.10823 897.67844,272.05293 C 883.54389,274.99764 814.63798,292.66581 786.3689,294.43264 C 758.09981,296.19945 718.64085,298.5552 704.50632,297.96627 C 690.37177,297.37733 652.67964,291.48794 639.13404,290.31006 C 625.58844,289.13217 599.6751,290.899 592.60783,290.899 C 585.54055,290.899 585.54055,286.18748 589.66313,283.24278 C 593.7857,280.29809 603.79767,279.70914 602.6198,279.1202 z "
         id="path8538"
         sodipodi:nodetypes="csssssssssssssssssssssssssssssssc" />
    </clipPath>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="radialGradient8543"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.589974,0,0,0.419966,1466.005,128.2767)"
       cx="-519.21252"
       cy="151.11502"
       fx="-519.21252"
       fy="151.11502"
       r="177.43268" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient8607"
       gradientUnits="userSpaceOnUse"
       spreadMethod="reflect"
       x1="547.3725"
       y1="275.42459"
       x2="593.26471"
       y2="377.59872"
       gradientTransform="translate(7.561437,-3.024575)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8618"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8627"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8639"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8648"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8650"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9539"
       id="linearGradient9545"
       x1="880.15125"
       y1="-107.37241"
       x2="911.90936"
       y2="-266.91873"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9539"
       id="linearGradient9579"
       gradientUnits="userSpaceOnUse"
       x1="993.57281"
       y1="-204.1588"
       x2="1049.5275"
       y2="-359.16827"
       gradientTransform="translate(-1894.896,494.518)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient9589"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient9591"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient9593"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient9595"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient9597"
       gradientUnits="userSpaceOnUse"
       x1="507.5433"
       y1="52.739708"
       x2="1413.5743"
       y2="52.739708" />
    <mask
       maskUnits="userSpaceOnUse"
       id="mask9581">
      <g
         id="g8609"
         transform="matrix(-1,0,0,-1,-15.12287,294.896)">
        <path
           style="opacity:0.2;fill:url(#linearGradient9589);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 749.40625,-72.34375 C 737.38062,-70.675704 725.65083,-66.21066 713.3125,-66.625 C 717.06052,-63.568604 722.87803,-62.275044 725.09375,-57.71875 C 723.21896,-53.551015 717.47864,-57.651713 714.30132,-58.003728 C 710.7486,-58.862414 705.03882,-61.733002 702.59375,-61.875 C 708.65115,-55.185721 716.87996,-50.927289 725.53125,-49 C 735.63746,-44.76009 731.03085,-28.810946 742,-25.78125 C 750.77582,-22.600809 757.6866,-30.053012 763.65625,-35.375 C 770.83269,-40.673052 781.26403,-39.061866 787.96875,-44.65625 C 791.23691,-48.163707 795.4491,-50.759794 799.25,-53.71875 C 791.43515,-51.123078 783.04974,-50.19253 775,-49.21875 C 764.48105,-46.76227 756.57696,-38.359697 746.59375,-35 C 741.42587,-34.113032 741.62866,-40.77547 743.09375,-43.9375 C 745.45687,-55.721072 759.08525,-58.155578 767.96875,-63.3125 C 769.42976,-64.514997 773.54918,-65.87702 773.34375,-67.75 C 766.49003,-70.047014 758.8497,-70.378832 752.03125,-72.375 C 751.15709,-72.407406 750.27774,-72.45137 749.40625,-72.34375 z M 1372.4688,-34.59375 C 1378.2197,-29.068373 1386.252,-25.449098 1393.8125,-24.3125 C 1391.1634,-26.142448 1392.3416,-30.488562 1388.375,-30.9375 C 1382.9656,-33.214186 1377.2709,-34.315141 1371.5312,-35.4375 L 1372.2745,-34.768535 L 1372.4688,-34.59375 z M 630.6875,-25.8125 C 623.87834,-23.076552 616.72108,-21.324389 609.4375,-20.75 C 606.65715,-20.007473 601.84731,-18.766071 601.15625,-15.65625 C 604.05719,-16.217068 605.51684,-12.628304 602.3125,-11.75 C 597.05761,-8.9370973 589.73339,-7.8170944 586.0625,-3 C 587.14167,0.78366255 592.76402,-2.147085 595.5625,-2.0625 C 605.70667,-5.0564358 615.51817,-10.503476 626.52918,-8.6856177 C 634.02645,-8.825843 642.68435,-5.5622736 649.625,-9.03125 C 650.63025,-11.747981 647.24917,-14.360938 645.84375,-16.1875 C 639.20244,-14.0116 635.44319,-21.3457 632.375,-25.5625 C 631.86786,-25.851687 631.31124,-25.969465 630.6875,-25.8125 z M 530,-19.0625 C 537.21993,-14.917395 547.17832,-15.618674 552.21875,-8.21875 C 555.13895,-5.5385624 557.02009,1.5528012 551.5,2.28125 C 537.82312,2.47432 524.54522,-1.7347238 510.96875,-2.65625 C 515.9009,0.2046194 522.23124,-0.96529947 527.03125,1.6875 C 528.07576,6.0717732 520.92794,5.1013333 518.21875,5.90625 C 514.98368,6.5348466 508.48919,4.489806 509.0625,9.8125 C 509.04274,14.970803 510.66003,19.804467 512.3125,24.625 C 525.13788,20.902121 538.22199,16.89113 548.96875,8.875 C 553.12622,6.4009572 559.3603,8.5986009 561.46875,3.0625 C 566.82328,-2.2426532 574.64545,3.8082738 580.15625,5.71875 C 581.54542,6.4189072 588.01951,8.4692583 584.3125,5.625 C 581.45371,2.8266536 579.28188,0.014650432 575.1875,-0.65625 C 569.1435,-3.6659153 561.79996,-6.9285434 559.15625,-13.40625 C 558.50961,-15.865289 561.80384,-17.599807 562.1875,-19.03125 C 551.03493,-20.493075 539.4344,-19.0792 528.125,-19.9375 C 528.75,-19.645833 529.375,-19.354167 530,-19.0625 z M 709.96875,-19.25 C 707.26078,-17.562812 702.66883,-15.808536 701.59375,-12.9375 C 706.22779,-11.763575 712.52826,-10.700718 716.53125,-13.9375 C 717.10858,-17.238991 712.30747,-18.702099 709.96875,-19.25 z M 774.625,-16.8125 C 772.14178,-12.653368 768.24278,-8.8392871 763.03125,-8.59375 C 758.43287,-7.8182078 752.32105,-6.4834888 749.0625,-4.4375 C 765.90955,-0.66681333 782.96851,2.6565729 799.65625,6.875 C 806.53826,8.3821107 811.28566,14.971912 817.375,17.125 C 822.34073,15.264378 824.25187,7.1478352 818.8125,4.75 C 806.18327,-0.016823739 791.66947,4.2784694 779.0625,-0.34375 C 776.004,-3.357418 781.76471,-5.298068 784.125,-5.4375 C 789.92213,-6.6419656 795.82668,-7.2357379 801.75,-7.6875 C 792.60524,-10.364643 783.47907,-13.526823 774.6875,-16.84375 L 774.65625,-16.84375 L 774.625,-16.8125 z M 827.46875,-5.6875 C 824.06355,-5.2465779 816.77655,-4.753902 817,-0.0625 C 821.21703,2.823011 827.52449,-0.3432878 832.30775,-0.034861325 C 836.47685,-0.69239898 842.4161,-0.56188348 845.5,-0.90625 C 840.40269,-5.0512538 833.88723,-6.1083572 827.46875,-5.6875 z M 1006,10.71875 C 1004.7183,11.934937 1000.2396,15.949822 1004.5312,16.28125 C 1009.3479,16.884847 1015.8345,15.647745 1019.4062,14.40625 C 1015.0883,13.179646 1010.3967,9.8027781 1006,10.71875 z M 634.65625,15.28125 C 623.12034,15.748841 611.67696,16.520789 600.71875,20.34375 C 595.01013,22.743124 586.87188,22.870255 583.1875,28.34375 C 586.74699,32.918042 594.32474,30.734533 598.34375,27.625 C 603.55128,23.517036 608.61112,18.714257 615.6875,18.28125 C 622.31592,17.030229 628.94481,16.258043 635.5625,15.21875 L 634.65625,15.28125 z M 898,19.96875 C 891.55795,21.518285 884.8782,23.252263 878.1875,24.40625 C 888.11723,26.528096 898.51274,26.092155 908.625,25.25 C 905.43405,22.888512 902.36433,19.203142 898,19.96875 z M 1042,27.84375 C 1038.3683,27.709194 1041.2155,31.162091 1043.1875,31.5 C 1048.4065,34.040861 1054.6755,33.540584 1059.8438,31.5625 C 1054.0143,29.829045 1048.156,27.788221 1042,27.84375 z M 1080.4375,30.90625 C 1077.6775,31.882717 1074.6889,34.630215 1078.4375,36.53125 C 1092.1859,34.082115 1106.5242,37.83703 1120.1875,40.1875 C 1128.4971,42.37711 1136.5998,45.633519 1145.437,44.279731 C 1151.8132,43.461299 1157.8865,45.667783 1162.7812,49.46875 C 1170.9383,54.321879 1180.1972,55.02784 1189.2898,56.711433 C 1197.1386,58.646217 1207.6126,61.17333 1214.4688,59.59375 C 1205.5725,52.912961 1194.1191,54.838363 1183.6562,54.59375 C 1176.1871,55.174345 1169.1443,51.794548 1165.1562,45.5 C 1158.7636,39.104737 1148.8083,43.092167 1140.8506,40.976909 C 1124.4778,39.197924 1108.2768,35.578066 1091.9375,33.65625 C 1087.8423,35.116638 1084.1489,32.597243 1080.7188,30.875 L 1080.5625,30.875 L 1080.4375,30.90625 z M 830.03125,34.75 C 828.43387,34.779633 823.36803,34.656229 827.15625,36.71875 C 830.99332,39.5582 835.54218,41.245982 839.3125,44.21875 C 836.36622,44.991592 830.11156,42.259381 834.59375,46.4375 C 839.86533,52.165942 843.25404,61.151142 851.9375,62.1875 C 862.72337,65.388693 874.37074,63.191378 885.25,65.21875 C 890.24269,65.876401 890.91608,72.931502 896.09375,72.4375 C 903.6389,74.195797 913.17892,76.600043 919.15625,69.9375 C 927.01327,62.7304 939.00898,67.715761 947.84375,64.84375 C 941.67234,60.760031 931.88871,65.254684 927.78125,57.875 C 924.67556,52.454909 917.29689,55.474905 912.32863,53.571115 C 904.67411,51.75533 896.64189,50.375984 889.4375,47.5625 C 887.07792,44.334242 893.34942,42.90044 892.8125,40.09375 C 884.6946,39.824524 876.37447,40.216994 868.46875,38.28125 C 863.94413,37.160275 862.04278,41.813894 858.84375,43.5625 C 854.68811,43.011168 851.95864,38.49676 847.59375,37.78125 C 842.05241,35.719764 836.03371,34.621404 830.03125,34.75 z M 601.65625,41.40625 C 593.33728,44.217563 587.22809,52.906032 577.59375,51.5625 C 563.32039,52.100762 549.36079,56.70339 535.5625,60.03125 C 548.41062,59.758477 560.49826,55.411765 572.90625,52.84375 C 577.58941,51.897036 581.46028,54.835431 583.78125,58.5 C 591.29281,57.024613 599.05258,52.072393 602.40625,45.03125 C 602.60442,44.182271 603.35307,41.093962 601.65625,41.40625 z M 990.84375,43.5625 C 983.67309,42.672541 980.54901,51.771714 973.28125,50.625 C 970.94229,50.742974 967.05927,50.819063 966.25,53.5625 C 976.79249,53.403986 987.74353,51.057156 997.71875,55.65625 C 1001.9814,58.113777 1005.6678,54.980822 1008,51.65625 C 1011.0532,48.87423 1015.6688,47.450924 1019.0625,46.21875 C 1009.6872,45.11499 1000.3106,43.477297 990.84375,43.5625 z M 1136.8125,55.46875 C 1144.7904,58.644871 1153.2399,59.470032 1161.6875,60.3125 C 1169.4407,62.218149 1177.4331,65.294467 1184.125,69.25 C 1184.8563,72.823845 1178.8906,70.990047 1177,73.3125 C 1172.9142,74.981395 1179.0305,76.929058 1180.5312,77.4375 C 1188.7432,79.6227 1198.4628,81.603093 1206.5,79.375 C 1204.4278,76.940301 1202.3807,73.933452 1200.625,71.59375 C 1194.6245,69.485262 1185.7855,72.477094 1182.2188,65.625 C 1180.2894,57.965187 1170.7326,59.705167 1164.7501,59.462293 C 1155.064,60.193973 1145.7283,57.836923 1136.4375,55.34375 L 1136.8125,55.46875 z M 1203.5312,63.59375 C 1209.6854,66.769269 1214.4547,74.301086 1221.75,74.46875 C 1224.3088,72.658888 1219.219,69.63492 1217.8438,68.59375 C 1213.2236,65.710988 1207.9692,63.890088 1202.625,62.9375 L 1203.4349,63.52401 L 1203.5312,63.59375 z M 1241.25,65.71875 C 1250.3026,71.284033 1260.3224,76.551236 1271.0312,77.25 C 1275.694,77.263804 1269.5865,75.462027 1268.2039,74.704533 C 1263.631,72.236142 1256.7564,71.45823 1253.4062,68.03125 C 1250.4691,65.343977 1244.8437,66.334068 1240.9688,65.5 L 1241.25,65.71875 z M 1092.2812,67.46875 C 1093.7644,68.939915 1099.2294,70.424808 1102.3311,71.480502 C 1106.4572,72.653561 1112.0289,74.548708 1115.8438,72.0625 C 1108.6418,68.592558 1100.2755,67.186194 1092.2812,67.46875 z M 751.1875,67.9375 C 748.83085,67.951139 743.454,69.977134 744.71875,72.90625 C 747.08294,73.262922 752.29032,74.666673 749.59375,77.9375 C 742.42543,84.741227 732.13433,80.67455 725.15625,75.90625 C 720.89395,70.351657 712.89416,73.219278 707.125,74.1875 C 704.71841,75.008997 700.44947,75.657356 699.21875,77.21875 C 707.85951,82.581617 718.5294,83.217453 727.78125,86.71875 C 731.45104,89.271388 724.45823,91.745914 726.75,94.25 C 733.02775,90.990136 740.34202,82.863739 747.96875,87.59375 C 756.88249,93.173129 760.64326,104.5183 769.5,109.84375 C 783.61989,111.90781 798.1094,112.69134 811.96875,115.6875 C 814.49302,118.56377 809.70554,119.03237 807.71875,118.875 C 814.79389,125.01788 823.80328,129.67132 832.75,132.1875 C 831.56211,126.55645 825.01803,123.21093 824.40625,117.59375 C 827.25905,114.0438 832.09335,119.49426 835.22899,120.18388 C 843.15406,123.49012 850.17072,129.33234 858.53125,131.125 C 863.89415,128.70714 869.74257,130.51457 875.14853,131.37597 C 884.62583,129.11813 896.39754,131.28789 903.8125,123.96875 C 905.88254,122.47464 905.84153,118.01467 902.34375,119.53125 C 893.3443,121.17749 885.05286,127.26829 875.71875,127.59375 C 872.56638,124.11946 879.43242,122.26994 881.60951,120.73303 C 894.87691,114.66548 907.73782,107.07 921.8125,103.15625 C 920.2431,105.03811 925.72239,101.3846 926.8125,101.53125 C 928.89679,100.71533 931.72565,100.19614 933.5,99.875 C 927.89212,96.943003 920.58149,91.542389 914.625,96.75 C 911.2136,99.092599 909.26308,103.13946 904.59375,102.71875 C 897.81322,103.50308 887.06071,105.44407 883.96875,97.40625 C 881.81151,92.717056 887.72754,86.928734 884.53125,82.84375 C 881.07881,81.737332 875.14023,83.482258 873.28125,83.96875 C 880.26824,87.127243 883.06085,96.00772 882.9375,103.15625 C 880.17329,110.44633 870.37313,109.23732 864.00008,109.82532 C 845.58401,110.57136 830.12657,98.794479 814.70221,90.333948 C 808.32255,85.316512 800.15915,84.011789 792.34375,85.5 C 788.20432,85.42124 787.06119,80.222255 783.15625,79.15625 C 773.39284,73.815061 762.4843,67.994829 751.1875,67.9375 z M 1203.5312,68.90625 C 1206.1577,70.552353 1205.1584,68.756881 1203.5312,68.90625 z M 951.75,71.375 C 948.17106,71.249876 949.05883,71.93768 952.0625,72.125 C 954.45635,71.723583 960.3523,72.671738 956.84375,75.6875 C 953.72393,77.133796 949.28317,77.770845 946.84375,78.75 C 950.09368,78.898272 952.28829,82.362582 951.1875,85.09375 C 962.1308,86.805547 973.76202,84.433701 984.09375,80.59375 C 985.53173,79.979502 989.60914,78.29914 986.3125,77.03125 C 980.31047,73.149171 972.75137,74.364725 966.0625,72.5625 C 961.32568,71.878643 956.54517,71.277346 951.75,71.375 z M 840.40625,74.375 C 844.51805,76.326489 848.79792,77.574699 853.3125,78.125 C 849.39148,76.569621 844.13769,74.149641 840.40625,74.375 z M 638.4375,78 C 625.64497,78.551894 612.93053,80.3735 600.15625,81.28125 C 619.312,82.260922 638.55281,80.176665 657.65625,81.8125 C 663.20033,82.152249 667.91918,85.218925 671.25,89.40625 C 678.77611,91.815932 687.43783,87.801172 694.875,91.5 C 701.43483,95.285946 708.61113,97.693684 716.3125,97.125 C 723.27566,96.892549 727.52089,102.82016 731.375,107.59375 C 739.91873,115.70527 753.17514,115.98748 761.3125,124.78125 C 770.10087,129.39373 780.8337,128.93412 789.0625,135.03125 C 799.27191,140.64257 805.60961,150.8718 813.90625,158.4375 C 818.28824,160.8437 825.2068,162.10979 829.21875,158.625 C 829.62514,154.99059 823.91892,154.02387 822.04248,151.51823 C 808.86852,140.44544 795.39256,125.3431 776.71875,125.09375 C 773.51946,125.6232 766.62235,127.67058 767.125,122.03125 C 768.92558,116.65806 765.20975,111.64778 759.95192,110.45913 C 735.12097,100.67817 708.58811,95.119042 684.5,83.71875 C 669.73658,79.017082 653.92913,78.021036 638.4375,78 z M 862.25,82.75 C 863.27267,85.087871 867.72149,85.102122 868.25,84.03125 C 865.74317,83.561955 863.44736,82.464233 861.125,81.5625 L 861.81274,82.288453 L 862.25,82.75 z M 980.9375,105.46875 C 976.38944,106.52287 971.0274,109.53586 968.59375,113.46875 C 966.74843,117.04798 971.34119,118.17596 974,116.96875 C 981.64119,115.27487 990.1336,112.43815 996.5625,108.8125 C 991.18072,108.57869 986.2878,105.41673 980.9375,105.46875 z M 951.03125,107.125 C 951.06056,107.18066 951.25078,107.23567 951.03125,107.125 z M 951.0625,107.15625 C 951.15785,107.21439 951.14953,107.33476 951.0625,107.15625 z M 950.65625,105.84375 L 950.90625,105.8125 L 950.65625,105.84375 z M 949.53125,105.875 C 950.08197,105.93067 951.72279,105.74868 949.53125,105.875 z M 947.875,105.90625 C 949.85018,105.86827 949.51087,105.87479 947.875,105.90625 z M 946.21875,105.96875 C 948.19331,105.89281 947.85499,105.90582 946.21875,105.96875 z M 944.5625,106.0625 C 946.53602,105.94864 946.19937,105.96807 944.5625,106.0625 z M 942.90625,106.1875 C 944.87832,106.0358 944.54399,106.06152 942.90625,106.1875 z M 939.78125,106.5 C 941.70379,106.30382 941.28878,106.34617 939.78125,106.5 z M 938.34375,106.6875 C 939.81787,106.47072 939.62995,106.49835 938.34375,106.6875 z M 936.96875,106.84375 C 938.80972,106.62968 938.22885,106.69723 936.96875,106.84375 z M 917.84375,107.65625 C 915.1208,110.30507 911.22501,113.16772 910.09375,116.65625 C 919.20234,118.65821 929.07883,117.20871 938.15625,115.84375 C 942.26141,114.75204 935.89844,112.33226 934.6875,111.9375 C 931.75817,110.69227 921.59048,109.16831 929.75128,108.16912 C 935.8468,107.16464 933.39593,107.0688 928.625,107.21875 C 925.45032,106.32337 920.87699,110.02483 918.75,106.90625 L 917.97961,107.54382 L 917.84375,107.65625 z M 1069.9062,108.90625 C 1063.024,110.09775 1055.3251,112.90849 1049.4062,115.21875 C 1061.7225,117.19792 1073.3579,110.4299 1085.4688,108.875 C 1080.283,108.90152 1075.0866,108.82565 1069.9062,108.90625 z M 1030.5625,109.8125 C 1021.6957,109.71878 1012.8203,110.66514 1004.4062,113.46875 C 1012.0987,117.15642 1021.6515,117.31127 1028.3692,111.50548 C 1028.8278,111.0582 1033.4651,109.13368 1030.5625,109.8125 z M 1207.0312,140.90625 C 1206.1266,143.33678 1204.9521,148.51287 1207.75,150.03125 C 1210.4912,149.51108 1214.7768,146.17638 1213.375,143.34375 C 1211.2749,142.56001 1209.074,141.54324 1207.0312,140.90625 z M 1165.2812,141.1875 C 1161.2949,141.43118 1157.0477,141.1241 1153.25,142.3125 C 1161.8935,148.10719 1173.0489,144.28132 1182.0312,148.59375 C 1185.8491,151.59455 1193.2377,154.70454 1196.7188,149.96875 C 1197.5384,146.2173 1194.2726,140.33953 1189.8753,141.69603 C 1181.6777,141.52062 1173.4844,140.95039 1165.2812,141.1875 z M 1293.2812,148.375 C 1290.6782,148.1918 1295.0145,151.06073 1294.9062,152.625 C 1297.1302,155.28275 1293.9943,158.73401 1291.4688,156.21875 C 1286.4688,153.03941 1280.239,145.81192 1274.0312,151.03125 C 1271.0428,152.21894 1268.3361,157.53501 1272.7812,158.625 C 1283.7309,160.49846 1292.4616,167.881 1299.7812,175.9375 C 1328.9479,176.57292 1358.1146,177.20833 1387.2812,177.84375 C 1385.2667,175.0953 1383.4399,170.35285 1380.125,169.5625 C 1374.273,174.78765 1365.4671,170.61946 1358.5625,173.1875 C 1342.9153,171.92837 1328.7015,161.71281 1312.6562,163.09375 C 1308.3467,162.94328 1308.6854,157.51702 1311.625,155.625 C 1313.6521,153.46575 1316.3817,151.45941 1318.4688,149.75 C 1310.3193,147.96351 1301.6358,148.50179 1293.2812,148.375 z M 993.8125,162 C 1004.9896,170.08818 1021.5257,176.85294 1034.2188,168 C 1038.556,165.73267 1041.0464,163.71165 1034.4485,165.0687 C 1022.2282,166.54863 1009.6977,166.58318 997.99303,162.43721 C 997.06085,162.38127 993.80983,161.38174 993.8125,162 z "
           id="path8611" />
        <path
           style="opacity:0.2;fill:url(#linearGradient9591);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 749.3125,-73.09375 C 737.33223,-71.487858 725.75999,-66.943255 713.46875,-67.40625 C 709.90266,-67.44244 713.87747,-65.306509 714.99282,-64.655473 C 718.08928,-62.439153 722.36879,-61.122082 724.28125,-57.71875 C 722.83418,-55.045574 718.84827,-57.938985 716.59378,-58.058104 C 711.32705,-59.333013 705.93163,-62.388098 700.875,-63.15625 C 706.46373,-55.432926 715.49602,-50.482183 724.65625,-48.5625 C 733.15224,-45.264694 731.63801,-34.196287 736.65625,-28.09375 C 742.9752,-21.86605 753.39575,-24.138747 758.94649,-30.145231 C 763.64087,-36.061159 770.85748,-38.369091 778.03125,-39.59375 C 782.22524,-41.025567 787.15512,-41.540755 789.71875,-45.40625 C 793.75828,-48.949842 798.27436,-51.938111 802.5,-55.25 C 794.1975,-53.312148 785.90665,-50.589272 777.25,-50.4375 C 765.99158,-48.63267 757.30829,-40.066782 747.0625,-35.84375 C 743.43203,-34.441471 742.04681,-39.005065 743.28125,-41.625 C 744.12318,-48.521434 749.03866,-53.888527 755.34375,-56.40625 C 761.56969,-60.011346 769.77376,-61.679001 774.40625,-67.375 C 773.72543,-69.703439 769.64963,-69.372349 767.66613,-70.027581 C 761.95434,-70.306311 756.78607,-72.496882 751.28173,-73.151769 C 750.62407,-73.179862 749.96745,-73.155424 749.3125,-73.09375 z M 1370,-35.875 C 1376.7737,-28.688996 1385.9979,-24.611738 1395.6562,-23 C 1400.5917,-21.543069 1395.0297,-23.688664 1393.9062,-25.21875 C 1391.8898,-26.742173 1393.028,-30.057576 1390.25,-30.875 C 1383.7125,-34.084316 1376.3621,-35.22628 1369.25,-36.625 L 1369.7803,-36.09467 L 1370,-35.875 z M 630.59375,-26.5625 C 624.21199,-24.312569 617.70325,-21.948993 610.76078,-21.748277 C 607.24156,-20.963989 600.52803,-19.697149 600.5,-15.1875 C 601.68101,-14.756092 604.88097,-14.705339 602.84375,-12.875 C 597.13146,-9.6771712 589.43016,-8.6508961 585.28125,-3.3125 C 585.94786,-2.131692 585.52046,0.24463058 587.625,-0.5 C 600.25354,0.083817594 610.79271,-9.5365706 623.59375,-8.09375 C 632.21855,-8.3015532 641.51746,-4.873446 649.75,-8.09375 C 652.43711,-10.804137 648.16535,-14.544544 646.53125,-16.65625 C 644.15504,-16.597985 640.60872,-16.304624 638.625,-18.59375 C 635.31395,-20.490375 635.03707,-27.071551 630.59375,-26.5625 z M 524.53125,-20.90625 C 531.30338,-16.98691 538.96571,-14.994095 546.1875,-12.53125 C 550.12132,-9.8693095 555.08535,-5.5568168 554.125,-0.3125 C 551.70002,3.387442 546.02427,0.93946314 542.41191,1.0642534 C 531.1087,0.05925644 519.87213,-3.4439981 508.5625,-3.21875 C 513.74243,0.52469124 520.50735,0.1291684 526.28125,1.96875 C 527.49253,4.4935728 522.65662,4.3151586 521.25,4.78125 C 517.4179,6.020781 512.6375,4.2311508 509.25,6.375 C 506.66023,12.00455 509.88734,18.639053 511.34375,24.1875 C 512.34712,27.431302 517.34798,22.929917 519.8125,23.15625 C 529.90498,19.965369 540.14415,16.409306 548.59375,9.9375 C 552.68375,6.9244911 559.42128,9.5624306 561.71875,3.9375 C 565.54286,-0.80318504 572.126,3.1102573 576.46875,4.90625 C 579.75715,6.2415343 583.60193,8.5302078 587.03125,7.6875 C 585.47336,4.702579 581.80436,3.3086578 580.375,0.3125 C 572.72518,-2.0097 564.70946,-5.9679817 560.125,-12.65625 C 558.55787,-15.621094 563.40516,-17.513089 563.28125,-19.46875 C 550.45184,-21.826047 536.95657,-19.181066 523.96875,-21.1875 L 524.53125,-20.90625 z M 587.0625,7.75 L 587.0625,7.71875 L 587.0625,7.75 z M 709.625,-19.9375 C 706.64236,-17.947723 701.68303,-16.396601 700.75,-12.71875 C 704.92526,-10.460563 710.69468,-10.780192 715.21875,-12.09375 C 719.74137,-13.319008 716.05309,-19.054899 712.81949,-19.103038 C 711.81892,-19.152836 710.55989,-20.467802 709.625,-19.9375 z M 774.53125,-17.5625 C 771.92274,-15.71591 771.09285,-11.531228 767.5,-10.625 C 760.67027,-8.2831751 752.3906,-8.2121194 746.65625,-3.9375 C 762.04912,-1.4626426 777.17147,2.9912957 792.46875,5.71875 C 800.53982,6.9820066 807.59553,10.993545 813.6875,16.25 C 815.4285,17.251745 817.25639,19.257647 818.65625,17.09375 C 824.0636,14.623842 824.50342,5.461875 818.28125,3.6875 C 805.85761,-0.40529927 791.96189,3.2271051 779.53125,-0.90625 C 777.40208,-3.0571599 781.71609,-4.2792392 783.34375,-4.46875 C 790.22466,-6.2071159 797.51415,-6.3571314 804.53125,-7.3125 C 794.96963,-11.104359 784.78899,-13.207 775.5,-17.5625 C 775.18077,-17.571778 774.84858,-17.635913 774.53125,-17.5625 z M 827.40625,-6.4375 C 823.40343,-5.9994495 817.22243,-5.4156314 816.09375,-0.75 C 816.74895,3.0937321 822.29537,1.4734117 825,1.53125 C 832.76662,0.58305626 840.56925,-0.22934005 848.40625,0.03125 C 842.20719,-4.7780175 835.35937,-7.229041 827.40625,-6.4375 z M 1006.0938,9.5 C 1004.9637,11.300535 1000.3453,13.946192 1002.5,16.3125 C 1009.0327,18.594949 1016.7647,15.971952 1022.75,14.3125 C 1016.9546,13.643449 1011.9513,9.6403004 1006.0938,9.5 z M 642.125,14.03125 C 630.0048,15.275791 617.60259,14.430082 605.8934,18.132731 C 598.23884,20.732329 589.46577,21.57446 583.125,26.8125 C 580.65483,30.030082 586.44269,31.67657 588.8125,31.65625 C 599.33892,32.084575 604.3781,19.99092 614.5625,19.25 C 624.13385,17.061074 634.29118,17.082634 643.5625,14 C 643.08313,14.002008 642.60335,13.986348 642.125,14.03125 z M 897.96875,19.21875 C 890.50485,21.145769 882.71676,22.609451 875.34375,24.40625 C 886.70861,27.657885 898.91576,26.754598 910.625,25.875 C 906.72226,23.252726 903.2524,18.37852 897.96875,19.21875 z M 1041.9062,27.09375 C 1039.3446,26.598455 1038.3405,29.93687 1040.8125,30.90625 C 1047.2775,35.61105 1055.654,34.021122 1062.7188,31.65625 C 1055.832,29.679601 1049.0904,27.014268 1041.9062,27.09375 z M 1080.375,30.15625 C 1078.2853,30.605446 1076.9825,32.757924 1075.125,33.65625 C 1076.3266,36.08154 1078.4622,38.496687 1081.4062,36.90625 C 1091.3829,35.32222 1101.6771,38.024504 1111.625,39.25 C 1119.1308,40.244618 1126.3989,42.848517 1133.5938,44.71875 C 1142.6932,46.235499 1153.3826,42.419891 1160.9062,49.28125 C 1168.6948,53.953461 1177.6937,55.963781 1186.5771,56.875897 C 1196.5219,59.049164 1206.9563,62.442012 1217.125,59.96875 C 1211.1011,56.911915 1205.1875,53.325898 1198.1875,53.84375 C 1188.9602,53.060049 1177.9693,56.188892 1170.1875,49.9375 C 1166.479,45.827147 1162.7156,40.694231 1156.375,41.09375 C 1134.8729,40.949145 1113.8017,35.678774 1092.5938,32.875 C 1088.7122,33.901477 1084.8965,32.904712 1081.875,30.375 C 1081.4106,30.179997 1080.8781,30.064424 1080.375,30.15625 z M 1070.5625,32.65625 C 1073.3111,33.283688 1069.2098,32.163941 1070.5625,32.65625 z M 830.03125,34 C 828.55863,34.370503 825.07573,33.522766 824.75,35.34375 C 827.71977,39.124815 832.94925,40.563508 836.8125,43.46875 C 834.95695,44.257649 832.48751,42.44097 831.21875,42.6875 C 834.81384,48.447527 839.44037,53.816941 843.6875,59.1875 C 853.32293,65.788503 865.87347,64.639126 877.0625,65.15625 C 882.80539,64.5051 888.95691,66.456335 891.8125,71.78125 C 894.17876,74.15283 898.21183,72.748387 901.03125,74.1875 C 907.63329,76.173931 915.67807,75.346124 920.4375,69.84375 C 927.88534,64.036912 937.92611,68.141512 946.45812,65.9054 C 949.57576,65.936263 950.52457,64.872511 947.28125,63.71875 C 942.0021,60.55458 934.99388,63.46374 930.15625,59.65625 C 928.04493,56.754241 925.69484,53.16253 921.4375,53.8125 C 910.76771,53.483131 900.31092,49.859281 890.21875,47.21875 C 887.95486,44.236995 895.22486,42.703437 893.40625,39.5625 C 886.17224,38.408859 878.3227,40.135376 871.09375,37.84375 C 866.79598,36.599641 862.05829,38.221844 859.78125,42.21875 C 856.80989,44.386551 854.62673,39.309057 851.8125,38.84375 C 845.0823,35.465312 837.56218,33.881244 830.03125,34 z M 601.65625,40.65625 C 593.42461,43.05222 587.74151,51.693509 578.53125,50.78125 C 564.50518,51.081499 550.99928,55.527085 537.40625,58.71875 C 536.19975,59.210525 530.36788,60.416154 531.625,60.8125 C 545.16297,61.002029 558.27599,57.311752 571.15625,53.8125 C 575.81094,52.550609 580.76831,54.400172 582.875,58.75 C 585.47954,60.448811 588.81823,57.474492 591.34375,56.59375 C 596.69359,53.410566 604.45784,48.652071 603.21875,41.40625 C 602.95598,40.724272 602.39026,40.523509 601.65625,40.65625 z M 990.8125,42.8125 C 985.56759,42.058068 982.48325,46.587334 978.5,48.875 C 974.5847,50.999243 967.17611,48.24464 965.5,53.59375 C 966.62137,55.586596 970.53747,53.518239 972.4375,54.15625 C 980.86831,53.131889 989.53582,52.987543 997.46875,56.375 C 1001.3455,58.481457 1005.7393,56.561526 1007.8125,52.875 C 1011.7699,48.904811 1018.0048,47.467564 1022.8125,45.90625 C 1012.1671,44.752078 1001.5518,42.738956 990.8125,42.8125 z M 1127.9062,52.90625 C 1137.8703,56.990318 1148.2875,60.436167 1159.1562,60.625 C 1167.6569,62.017642 1175.8877,65.761844 1183.4375,69.5625 C 1183.4061,71.823859 1179.2669,70.452689 1177.75,72.03125 C 1176.1628,72.523064 1173.2148,74.688956 1175.7188,76 C 1184.2295,80.562803 1194.4351,81.285393 1204,80.875 C 1205.8159,80.911341 1208.8331,80.074577 1206.5312,78.0625 C 1204.7195,75.865762 1202.5659,73.805065 1201.6875,71.03125 C 1196.5463,69.142115 1190.4855,70.786786 1185.5938,68.25 C 1181.8848,66.04903 1182.2024,59.940139 1177.125,59.5 C 1166.536,57.538503 1155.3995,60.197155 1145.0216,56.696106 C 1139.1094,55.250761 1133.2417,53.620283 1127.2812,52.625 L 1127.9062,52.90625 z M 1200.2812,62 C 1206.4743,66.115455 1211.7962,71.704075 1218.6562,74.84375 C 1220.6428,76.276715 1224.6297,74.816235 1222.875,72.1875 C 1217.4946,65.555114 1208.258,62.997246 1200.0625,61.8125 L 1200.2812,62 z M 1239.5938,64.6875 C 1238.5133,65.186359 1241.9732,66.9611 1242.6562,67.59375 C 1251.4235,72.401377 1260.8898,77.502996 1271.0625,78 C 1272.4363,77.827976 1276.892,77.592606 1273.4375,76.25 C 1267.3268,72.962474 1259.8126,71.249516 1254.1562,67.96875 C 1253.0608,65.009442 1248.2363,66.063167 1245.7565,65.183046 C 1243.714,64.959441 1241.6446,64.66355 1239.5938,64.6875 z M 1092.2188,66.71875 C 1089.0563,66.438709 1090.5053,68.028229 1092.5312,68.6875 C 1099.8386,71.286857 1107.9292,75.754643 1115.8125,73.125 C 1118.4027,71.604052 1113.9944,70.301646 1112.8438,69.9375 C 1106.2653,67.577384 1099.2393,66.415122 1092.2188,66.71875 z M 751.0625,67.1875 C 748.12271,67.343014 742.74627,69.521965 743.875,73.125 C 745.26657,74.874981 750.23893,73.605542 749.4375,76.9375 C 745.6216,80.923294 739.52638,81.944026 734.5,79.71875 C 729.7641,78.435057 725.73157,75.41304 722.125,72.5 C 714.01368,70.924854 705.45727,73.304583 698.09375,76.65625 C 698.69251,78.933719 702.74575,79.68326 704.80301,80.74381 C 711.93291,83.805008 720.08439,84.652996 727.3125,87.28125 C 730.05076,89.778559 722.82965,92.407697 726.375,94.96875 C 732.45316,93.026322 737.1639,86.109047 744.34375,86.9375 C 753.04482,89.666602 757.33572,99.278669 763.2397,105.50556 C 765.81067,109.12906 769.60075,111.60015 774.21354,111.21325 C 786.64968,113.00308 799.49187,113.63047 811.65625,116.4375 C 813.01883,119.42918 806.68369,116.74255 806.875,118.90625 C 813.04615,125.33251 821.76131,128.8378 829.90433,132.28306 C 831.31228,133.15439 834.70429,133.51172 833.1875,130.96875 C 831.37418,126.11058 826.67022,122.84736 825.0625,118.03125 C 826.42293,115.56899 829.7829,118.65108 831.54295,119.15358 C 840.30886,123.13695 848.49979,128.81814 857.53125,131.8125 C 861.0714,131.82189 864.48182,129.59286 868.21875,130.875 C 872.61403,132.1601 877.09643,132.4429 881.70823,131.30781 C 889.90588,129.67838 900.7732,130.83575 905.65625,122.5625 C 907.02656,120.18562 904.87622,117.55702 902.25,118.8125 C 893.22841,120.38448 885.24088,126.276 876.03125,126.84375 C 874.25407,124.55048 879.02255,123.39313 880.31467,122.26586 C 893.10027,115.87916 906.03847,109.46266 919.37797,104.39762 C 919.65155,105.85408 915.13695,108.64501 913.4375,110.71875 C 912.28277,112.49047 908.57269,114.92925 909.53125,117.1875 C 916.98265,119.72876 925.44948,117.65539 933.25,117.46875 C 935.22501,116.90197 940.52124,117.40531 940.34375,114.46875 C 937.3808,111.10618 932.47374,110.77422 928.5,109.25 C 933.21137,107.95329 938.08857,107.42674 942.9375,106.9375 C 935.33798,106.20715 927.44962,106.24394 920.0625,107.34375 C 918.23573,105.31673 922.90662,104.18734 924.1875,103.375 C 927.6492,101.65465 932.17987,100.79043 935.5625,100.46875 C 931.03979,97.464313 925.6996,94.255167 920.125,93.75 C 914.95171,93.89585 911.74486,98.895183 907.875,101.375 C 901.09411,102.2719 893.00521,104.4576 886.875,100.4375 C 882.50802,96.926511 885.01243,91.348093 886.03125,86.9375 C 887.13844,84.155531 885.408,81.066508 882.28125,81.71875 C 876.00974,81.918833 869.41225,85.275788 863.46875,81.6875 C 855.25845,78.982486 847.48138,72.905842 838.59375,73.78125 C 839.14475,75.206317 842.66178,76.064946 844.40625,76.84375 C 848.77447,78.820707 853.70849,78.232673 858.0625,79.875 C 861.25368,82.166238 864.03428,87.589745 868.75,84.8125 C 875.51803,82.598845 879.8758,90.508345 881.28125,96.0625 C 883.03037,99.966649 883.00651,105.88061 878,107.21875 C 870.19031,109.58367 861.46135,109.67049 853.42864,108.2556 C 836.44747,104.07278 822.37553,92.980002 806.90625,85.375 C 801.70236,82.817119 795.85519,85.418211 790.5,84.375 C 784.88124,77.935411 776.46959,74.556501 768.65625,71.21875 C 762.93859,69.282336 757.15646,66.624723 751.0625,67.1875 z M 1203.125,67.96875 C 1201.4514,70.48422 1206.5547,70.432292 1208.0938,71 C 1211.9328,72.123894 1205.4129,68.568548 1204.0312,68.09375 C 1203.7564,67.968117 1203.4442,67.886717 1203.125,67.96875 z M 951.71875,70.625 C 950.18309,70.750086 947.92268,70.634656 946.78125,71.40625 C 949.74895,73.621124 954.1088,72.163427 957.125,73.65625 C 957.11476,76.325228 952.28172,75.895356 950.375,76.9375 C 948.28213,77.731796 938.72761,79.139332 945.1875,79.21875 C 948.28618,79.06139 952.14444,81.797301 950.1875,85.1875 C 953.22982,87.496421 958.35927,86.200363 962.15317,86.213348 C 971.0672,84.984419 980.97869,84.377873 988.34375,78.75 C 988.56671,76.066744 984.01406,75.468947 982.25,74.25 C 977.86682,73.119343 972.8195,73.3413 968.25,72.125 C 962.78027,71.301192 957.26405,70.51742 951.71875,70.625 z M 638.4375,77.25 C 620.95325,78.257283 603.5436,80.497077 586.0625,81.6875 C 608.1084,82.594417 630.17362,81.941591 652.21875,82.03125 C 658.66702,82.380715 666.08801,83.381674 669.875,89.25 C 675.25758,93.210797 682.52669,89.354892 688.65625,90.71875 C 696.82915,91.48971 703.1501,98.436143 711.6875,97.71875 C 717.84411,97.247744 724.50454,98.921942 727.73786,104.53248 C 735.4009,116.12268 751.46074,115.386 760.5,125.15625 C 768.24305,129.92878 778.07123,129.06012 785.84375,134.09375 C 797.02882,139.43395 804.18637,149.90867 812.6875,158.46875 C 817.08355,161.78468 823.78934,162.25905 828.65625,160.1875 C 832.30907,158.0554 828.15998,154.43829 825.78125,153.4375 C 811.89252,142.69839 799.36076,127.4402 781.15625,124.5625 C 777.00891,123.34043 772.76514,125.91 768.84375,124.78125 C 766.28998,121.96405 769.84118,117.05613 766.8125,114.09375 C 761.41948,108.48249 752.91106,107.50307 745.97432,104.5804 C 725.73742,97.766065 704.78283,92.461758 685.5625,83.28125 C 670.48412,78.317386 654.27134,77.254577 638.4375,77.25 z M 1042.875,102.46875 C 1038.3305,105.58381 1033.9182,110.18253 1027.8125,109.09375 C 1019.3703,109.32265 1010.2221,110.06666 1002.7188,113.5625 C 1010.4372,117.29973 1020.4266,118.79581 1027.5135,112.86768 C 1033.0195,109.1063 1040.4949,107.0339 1044.4688,101.71875 C 1044.541,100.81082 1043.192,102.51219 1042.875,102.46875 z M 980.84375,104.71875 C 976.04114,105.67876 971.54673,108.81022 968.25,112.3125 C 966.50685,114.83619 967.81579,118.83771 971.40625,118.03125 C 980.99107,116.4961 990.80046,113.37894 998.90625,108.1875 C 992.59785,108.49347 987.00794,104.71454 980.84375,104.71875 z M 946.78125,106.6875 C 950.65684,106.10589 952.84339,107.66808 947.3996,106.75868 L 946.78125,106.6875 z M 951.0625,107.15625 C 951.15785,107.21439 951.14953,107.33476 951.0625,107.15625 z M 944.59375,106.8125 C 946.76614,106.69178 946.79945,106.68603 944.59375,106.8125 z M 1069.8125,108.15625 C 1062.4027,109.53585 1054.873,112.19173 1047.9688,115 C 1047.2929,116.01766 1050.6262,116.085 1051.3125,116.28125 C 1063.5362,116.97847 1074.8225,111.04112 1086.8084,109.36391 C 1093.7292,108.13388 1092.181,107.94237 1085.875,108.125 C 1080.5218,108.14921 1075.1623,108.07876 1069.8125,108.15625 z M 1206.5938,140.125 C 1205.2395,143.14422 1204.1514,148.57654 1207.25,150.75 C 1210.7811,150.65696 1215.1526,146.89476 1214.3438,143.25 C 1212.4348,141.53468 1208.6583,140.72534 1206.5938,140.125 z M 1165.2812,140.4375 C 1161.1038,140.98785 1155.6146,139.81778 1152.1562,142.28125 C 1158.7953,147.29853 1167.9712,146.70621 1175.9688,147.40625 C 1182.3343,147.99536 1186.7146,154.5949 1193.5312,152.90625 C 1198.2347,152.66876 1198.8086,146.62506 1195.8125,143.75 C 1194.5465,141.07126 1192.2497,140.42089 1189.5,140.9375 C 1181.4277,140.74654 1173.3593,140.21216 1165.2812,140.4375 z M 1293.2812,147.625 C 1289.4546,146.92954 1291.3678,148.81836 1292.8438,150.46875 C 1293.8566,151.82322 1296.4695,156.24573 1293.3125,156.28125 C 1287.7706,154.04018 1282.9966,146.34403 1276.25,149 C 1273.0042,150.23316 1267.4301,154.40702 1270.5625,158.1875 C 1275.4228,161.01508 1281.5886,161.11234 1286.1791,164.72165 C 1291.5063,167.81734 1295.1609,173.71544 1300.2498,176.70381 C 1329.5287,177.19635 1359.8259,178.28764 1388.4688,178.40625 C 1386.0151,175.08744 1384.3513,169.79994 1380.0312,168.6875 C 1374.5584,174.05911 1365.77,169.85274 1359.0625,172.375 C 1348.7828,172.1369 1339.3625,166.72644 1329.4351,164.38771 C 1323.8712,162.35073 1317.9188,162.45362 1312.1562,162.21875 C 1308.4666,161.48187 1310.5146,157.06537 1312.625,155.6875 C 1314.4106,153.30607 1318.2571,151.69207 1319.6875,149.5 C 1311.4812,146.79588 1301.8988,147.96083 1293.2812,147.625 z M 992.53125,161.0625 C 991.40954,161.741 994.69427,163.37595 995.28125,164.03125 C 1004.8153,169.97324 1016.7326,175.41113 1028.0312,171.8125 C 1033.0644,169.74714 1037.8487,166.96138 1042.125,163.59375 C 1027.898,164.91537 1013.0464,167.08656 999.32604,161.9487 C 997.10765,161.51189 994.85057,160.89693 992.53125,161.0625 z "
           id="path8620" />
        <path
           style="opacity:0.2;fill:url(#linearGradient9593);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 1389.8339,179.39504 C 1389.8339,179.39504 1382.2394,164.61658 1379.0019,168.56442 C 1375.7645,172.51227 1366.0578,169.51631 1359.583,171.49023 C 1353.1081,173.46415 1328.2942,160.64793 1316.4236,161.63489 C 1304.553,162.62185 1314.2831,154.75211 1319.6788,150.80427 C 1325.0745,146.85643 1304.5842,146.85187 1294.872,146.85187 C 1285.1597,146.85187 1291.5912,147.80831 1293.7495,153.73008 C 1295.9078,159.65185 1287.3157,149.80107 1280.841,147.82714 C 1274.3661,145.85322 1261.3808,157.69874 1274.3306,160.65962 C 1287.2803,163.6205 1291.6395,170.53577 1299.1935,177.4445 L 1389.8339,179.39504 z M 1022.3336,173.74875 C 1024.4559,173.63742 1026.4616,173.25705 1028.2827,172.51683 C 1037.995,168.56898 1044.5027,162.61015 1044.5027,162.61015 C 1023.9988,164.58408 1014.2546,165.57104 1004.5423,162.61015 C 994.8299,159.64927 986.19973,158.69025 994.83278,164.61202 C 1001.8473,169.42346 1013.1375,174.23114 1022.3336,173.74875 z M 823.1494,162.09685 C 824.4856,162.05252 825.9644,161.88163 827.58311,161.63489 C 827.58311,161.63489 835.13713,158.66488 827.58311,153.73008 C 820.02908,148.79527 817.85865,144.86428 804.90904,134.99466 C 791.95934,125.12505 781.15854,122.19012 772.52554,124.16405 C 763.89234,126.13797 773.63794,117.25333 765.00494,111.33157 C 756.37164,105.40979 705.63624,92.535715 690.52824,84.640025 C 675.42034,76.744325 641.98364,75.799585 632.27144,76.786545 C 622.55914,77.773505 580.44624,81.714215 572.89214,81.714215 C 565.33814,81.714215 605.29004,83.676445 641.98094,82.689485 C 678.67174,81.702525 660.32784,93.543485 679.75234,91.569555 C 699.17684,89.595635 695.93604,98.499095 713.20234,98.499095 C 730.46854,98.499095 721.81434,108.36355 743.39704,116.25924 C 764.97994,124.15493 753.10084,126.11915 772.52554,130.06699 C 791.95004,134.01483 802.78134,148.79527 807.09794,153.73008 C 810.87484,158.04804 813.79544,162.40721 823.1494,162.09685 z M 1191.716,153.83274 C 1199.1535,153.85804 1201.4933,147.32454 1193.3997,139.92233 C 1191.2414,140.90929 1176.1497,138.93537 1158.8834,139.92233 C 1141.6171,140.90929 1157.832,147.82714 1170.7817,147.82714 C 1183.7314,147.82714 1181.5675,152.74311 1190.2006,153.73008 C 1190.7402,153.79176 1191.2201,153.83105 1191.716,153.83274 z M 1207.3746,151.52289 C 1211.3168,151.92698 1218.3251,144.32992 1213.9411,141.9242 L 1206.3643,138.94706 C 1206.3643,138.94706 1203.1397,143.85592 1205.298,149.77768 C 1205.7026,150.88801 1206.4648,151.42964 1207.3746,151.52289 z M 832.35374,133.66008 C 837.03062,134.0379 832.30435,127.23205 827.58311,121.18691 C 822.18747,114.27819 829.74348,119.21755 841.61412,125.13932 C 853.48476,131.06108 856.71661,133.99145 861.03304,132.01753 C 865.34965,130.0436 873.99779,133.04413 873.99779,133.04412 C 873.99779,133.04412 890.15361,131.05395 895.54942,130.06699 C 900.94505,129.08003 908.53949,124.11985 906.38127,119.18505 C 904.22306,114.25023 885.88603,125.12762 877.25298,126.11459 C 868.61975,127.10155 918.22354,105.3773 918.22354,105.3773 C 918.22354,105.3773 909.59318,112.31139 908.51399,116.25924 C 907.43479,120.20709 921.45036,119.19673 933.32082,118.20978 C 945.19146,117.22282 943.05874,112.29058 931.1881,109.3297 C 931.1881,109.3297 940.90753,107.37917 949.54076,107.37917 C 958.1738,107.37917 930.09903,104.37864 922.545,106.35257 C 914.99097,108.3265 927.96847,101.4249 934.4433,101.4249 C 940.91813,101.4249 931.16529,96.480965 923.61145,93.520095 C 916.05742,90.559205 908.51399,100.44963 908.51399,100.44963 C 908.51399,100.44963 891.27896,104.40916 886.96235,99.474365 C 882.64574,94.539565 886.96235,91.548745 886.96235,84.640025 C 886.96235,77.731295 875.07195,82.689485 869.67614,82.689485 C 864.28051,82.689485 847.03543,71.847175 839.4814,72.834145 C 831.92738,73.821085 848.10385,79.712345 854.57886,79.712345 C 861.05369,79.712345 861.05585,88.627505 868.60988,85.666615 C 876.1639,82.705725 880.43921,93.540905 881.51841,100.44963 C 882.59743,107.35836 873.99563,108.35444 859.96677,108.35444 C 845.93792,108.35444 823.29002,93.550615 811.41934,86.641885 C 799.54894,79.733155 791.96994,86.637335 789.81174,82.689485 C 787.65334,78.741645 770.37774,69.840765 757.42804,66.879875 C 744.47844,63.918995 739.11114,73.797715 745.58594,74.784675 C 752.06084,75.771645 747.71364,77.738425 743.39704,79.712345 C 739.08044,81.686255 727.21554,76.781975 723.97814,72.834145 C 720.74074,68.886285 703.50064,72.799075 698.10504,75.759945 C 692.70924,78.720835 713.19964,84.667965 722.91184,86.641885 C 732.62414,88.615815 722.88614,89.611875 725.04454,94.546695 C 727.20284,99.481495 734.76404,87.617155 743.39704,87.617155 C 752.03024,87.617155 762.85154,110.34461 769.32634,111.33157 C 775.80124,112.31852 821.10109,117.23451 809.23064,117.23451 C 797.36004,117.23451 821.13881,130.08325 829.77203,133.04412 C 830.85105,133.41423 831.68546,133.60611 832.35374,133.66008 z M 971.37292,118.77441 C 972.46469,118.76092 973.79515,118.5799 975.41385,118.20978 C 988.36351,115.24889 1005.642,107.37917 998.08797,107.37917 C 990.53394,107.37917 984.06486,102.42812 978.66905,104.40203 C 973.27342,106.37596 967.89323,111.33157 967.89323,111.33157 C 967.89323,111.33157 963.73035,118.86885 971.37292,118.77441 z M 1015.7109,117.64515 C 1018.9421,117.72033 1022.251,117.0832 1025.0837,115.23264 C 1032.6376,110.29784 1048.8191,103.41052 1044.5027,100.44963 C 1032.632,108.34532 1035.8622,108.35444 1026.15,108.35444 C 1016.4378,108.35444 998.093,112.28345 1002.4096,114.25738 C 1005.1073,115.49108 1010.3257,117.51986 1015.7109,117.64515 z M 1054.8294,117.13185 C 1058.0726,117.03666 1062.0074,116.46635 1066.0542,115.23264 C 1079.0039,111.28481 1100.6266,107.37917 1100.6266,107.37917 C 1100.6266,107.37917 1088.7212,107.37917 1070.3758,107.37917 C 1067.1383,107.37917 1058.5236,110.32123 1049.8905,113.28211 C 1043.9552,115.31771 1047.6943,117.34124 1054.8294,117.13185 z M 956.61239,87.257845 C 964.52669,87.248205 976.92049,85.156885 982.99069,82.689485 C 992.70294,78.741645 990.51401,76.781975 980.80176,72.834145 C 978.64355,73.821085 964.61038,69.857005 952.73974,69.857005 C 940.86928,69.857005 946.29544,73.809405 954.92867,73.809405 C 963.56171,73.809405 933.36913,79.712345 938.76494,79.712345 C 944.16057,79.712345 951.69897,79.705215 949.54076,84.640025 C 948.73131,86.490575 951.86366,87.263625 956.61239,87.257845 z M 1200.8081,81.816875 C 1201.6245,81.800005 1202.3672,81.775895 1203.1091,81.714215 C 1214.0812,80.801975 1203.8793,76.520765 1202.2673,70.421635 C 1198.7488,69.630925 1194.8095,68.881735 1191.267,68.881735 C 1189.1087,68.881735 1184.7821,68.849245 1182.6239,62.927465 C 1180.4656,57.005705 1170.7411,57.999815 1159.9497,57.999795 C 1149.1583,57.999795 1143.7966,55.057765 1128.6886,52.096855 C 1113.5806,49.135985 1144.8623,60.976935 1153.4955,60.976935 C 1162.1286,60.976935 1169.6692,63.958635 1178.3023,67.906465 C 1186.9354,71.854325 1181.522,67.899325 1175.0471,72.834145 C 1168.977,77.460515 1188.561,82.069895 1200.8081,81.816875 z M 1202.2673,70.421635 C 1207.9753,71.704405 1212.4135,73.057545 1211.4716,71.602225 C 1206.5375,68.338805 1202.0428,65.131055 1202.0428,68.881735 C 1202.0428,69.404675 1202.1353,69.922165 1202.2673,70.421635 z M 1211.4716,71.602225 C 1215.6262,74.350005 1220.0616,77.113395 1222.5281,75.759945 C 1227.9238,72.799075 1218.2477,64.913085 1205.298,61.952195 C 1192.3483,58.991305 1202.0655,63.935245 1209.6195,69.857005 C 1210.6709,70.681175 1211.2255,71.221885 1211.4716,71.602225 z M 1270.1213,78.788415 C 1270.467,78.791185 1270.828,78.767925 1271.1315,78.737085 C 1280.8438,77.750115 1275.4154,75.802155 1254.9116,67.906465 C 1254.9116,65.932545 1252.7512,64.941025 1240.8806,63.954065 C 1229.381,62.997945 1259.4036,78.702505 1270.1213,78.788415 z M 909.07523,75.913935 C 912.52133,75.798285 916.05239,74.768435 919.2898,71.807545 C 927.92303,63.911855 932.26155,69.852435 950.60702,65.904605 C 951.68622,64.917655 946.28826,60.976935 936.57601,60.976935 C 926.86377,60.976935 931.19098,53.072125 921.47873,53.072125 C 911.76631,53.072125 897.74607,48.156145 892.35026,47.169185 C 886.95463,46.182225 894.48297,44.187485 894.48297,40.239645 C 894.48297,36.291795 884.75852,40.223415 871.80886,37.262515 C 858.8592,34.301636 861.02801,45.162755 856.71158,41.214915 C 852.39496,37.267065 840.53277,32.374456 827.58311,33.361436 C 814.63344,34.348406 840.52504,45.202365 832.97101,42.241515 C 825.41699,39.280625 836.21849,50.104125 841.61412,57.999795 C 847.00993,65.895485 867.51505,65.904585 879.38569,65.904605 C 891.25616,65.904605 889.08734,73.809405 894.48297,73.809405 C 897.85527,73.809405 903.33172,76.106685 909.07523,75.913935 z M 1111.9076,74.733345 C 1117.6742,74.502025 1119.5138,71.337455 1114.6576,69.857005 C 1114.6576,69.857005 1105.9868,65.904585 1094.1162,65.904605 C 1082.2457,65.904605 1094.1567,70.848535 1104.9482,73.809405 C 1107.646,74.549625 1109.9853,74.810445 1111.9076,74.733345 z M 1209.3389,61.592885 C 1212.9136,61.639145 1216.3613,61.235375 1219.329,60.001665 C 1208.5376,56.053805 1210.6965,53.072125 1195.5885,53.072125 C 1180.4805,53.072125 1173.9886,54.077915 1168.5928,47.169185 C 1163.1971,40.260455 1159.9526,40.239645 1150.2403,40.239645 C 1140.528,40.239645 1100.6344,33.321806 1095.2387,32.334836 C 1089.843,31.347876 1088.7361,34.332156 1083.3404,30.384306 C 1079.0812,27.267946 1077.5125,32.139076 1073.8555,33.361436 C 1074.1628,33.650166 1074.4501,33.959836 1074.6973,34.336706 C 1077.9348,39.271505 1077.9447,38.249475 1083.3404,37.262515 C 1088.7361,36.275565 1118.9764,40.244215 1128.6886,44.192045 C 1138.4009,48.139905 1151.3422,43.209635 1157.817,48.144455 C 1164.2919,53.079235 1177.2282,57.024525 1182.6239,57.024525 C 1186.6706,57.024525 1198.6149,61.454105 1209.3389,61.592885 z M 1073.8555,33.361436 C 1071.9933,31.611836 1069.0934,31.411426 1065.7736,31.872866 C 1067.4649,32.425216 1069.3308,33.042876 1070.3758,33.361436 C 1071.7395,33.777166 1072.8797,33.687566 1073.8555,33.361436 z M 1065.7736,31.872866 C 1056.9849,29.002636 1041.8297,24.096446 1039.1147,27.407166 C 1035.8773,31.355026 1047.7244,36.310615 1055.2784,34.336706 C 1058.7597,33.427026 1062.4677,32.332376 1065.7736,31.872866 z M 533.60534,61.592885 C 540.32894,61.506145 553.90574,59.750355 565.37154,56.049255 C 583.71704,50.127475 579.39484,60.988605 584.79044,60.001665 C 590.18634,59.014695 604.20944,51.112485 604.20944,43.216785 C 604.20944,35.321085 595.55644,43.209615 586.92324,48.144455 C 584.76494,50.118365 578.33124,50.094985 574.01464,50.094985 C 569.69804,50.094985 538.35314,57.040775 530.79914,60.001665 C 527.96634,61.111995 529.57124,61.644945 533.60534,61.592885 z M 1002.2412,57.948465 C 1004.056,57.734485 1005.774,56.638165 1007.7975,54.047395 C 1013.1932,47.138645 1031.528,46.154285 1022.8948,45.167315 C 1014.2618,44.180355 995.93245,41.254545 988.3786,42.241515 C 980.82457,43.228445 981.91437,49.119725 973.28114,49.119725 C 964.64809,49.119725 963.54609,54.087025 965.70448,55.073995 C 979.73334,55.073995 981.87809,53.100065 990.51131,55.073995 C 995.90695,56.307695 999.21656,58.305085 1002.2412,57.948465 z M 589.44884,32.437496 C 596.40434,32.477266 602.40624,26.180626 607.46464,22.479496 C 612.86044,18.531656 638.71784,17.535576 644.11374,14.574686 C 649.50934,11.613796 632.24374,14.574686 620.37314,14.574686 C 616.05654,14.574686 599.90354,18.531676 589.11214,22.479496 C 578.32064,26.427346 580.49164,31.347876 588.04564,32.334836 C 588.51784,32.396516 588.98514,32.434856 589.44884,32.437496 z M 913.9019,27.407166 C 914.53444,26.828706 913.96386,26.635316 912.77941,26.585886 C 913.16429,26.875356 913.48613,27.102996 913.9019,27.407166 z M 912.77941,26.585886 C 903.17385,19.361336 902.75485,16.655546 893.41671,19.502366 C 883.70446,22.463236 868.57647,23.482706 876.1305,25.456636 C 883.68453,27.430556 890.18414,27.407166 897.73817,27.407166 C 903.07848,27.407166 909.92239,26.466676 912.77941,26.585886 z M 511.38024,26.431896 C 511.38024,26.431896 537.31964,19.532876 545.95264,12.624156 C 554.58584,5.7154256 557.79974,11.628076 562.11634,4.7193456 C 566.43294,-2.1893844 578.30294,8.6717456 585.85694,8.6717456 C 592.70264,8.6717456 579.14644,0.57693561 581.36704,-0.20832439 C 577.14984,-1.0724244 570.37224,-4.1113444 565.37154,-8.1131344 C 556.73854,-15.021864 562.09084,-15.047224 564.24904,-18.995074 C 566.40744,-22.942914 534.05724,-19.946954 524.34494,-21.920884 C 514.63254,-23.894804 536.22264,-14.027784 542.69744,-13.040804 C 549.17224,-12.053844 557.81534,-0.22002439 551.34054,0.76694561 C 544.86574,1.7539056 517.86784,-4.1607344 510.31394,-4.1607344 C 502.75994,-4.1607344 512.49984,0.75523561 522.21224,1.7422156 C 531.92454,2.7291756 520.01344,4.7193456 511.38024,4.7193456 C 502.74714,4.7193456 511.38024,26.431896 511.38024,26.431896 z M 817.87373,19.502366 C 816.79454,17.528456 825.41986,16.579116 823.26164,7.6964856 C 821.10325,-1.1861744 800.59814,1.7656056 785.49004,-0.20832439 C 770.38224,-2.1822544 787.68114,-5.1756344 801.71004,-6.1625944 C 815.73887,-7.1495644 788.74814,-12.058394 779.03594,-16.993214 C 769.32344,-21.928014 775.76564,-12.037584 762.81594,-10.063674 C 749.86634,-8.0897444 742.33564,-3.1854444 746.65224,-3.1854644 C 750.96884,-3.1854644 768.24164,1.7467756 788.74524,5.6946156 C 809.24894,9.6424656 806.00314,13.580586 817.87373,19.502366 z M 1006.5066,17.962466 C 1014.6802,18.151356 1029.6829,13.599406 1024.0173,13.599426 C 1017.5425,13.599426 1015.3771,9.6587156 1005.6648,8.6717456 C 1005.6648,9.6587156 997.00105,15.577896 1003.4759,17.551826 C 1004.2853,17.798566 1005.339,17.935476 1006.5066,17.962466 z M 821.85845,2.5121556 C 827.09604,2.3193856 834.97891,0.76694561 843.74683,0.76694561 C 840.50942,0.76694561 863.21191,0.76694561 854.57886,0.76694561 C 845.94564,0.76694561 845.92067,-6.1509244 832.97101,-7.1378644 C 820.02136,-8.1248344 813.58264,-3.1809144 815.74102,0.76694561 C 816.55028,2.2473756 818.71586,2.6278156 821.85845,2.5121556 z M 589.84164,0.25364561 C 594.04654,0.060875612 598.92294,-1.0764744 606.34214,-4.1607344 C 618.21274,-9.0955344 624.69694,-7.1495644 638.72574,-6.1625944 C 652.75464,-5.1756344 654.93564,-9.0858044 646.30244,-17.968474 C 644.14424,-16.981514 639.84324,-16.027044 635.52664,-23.922744 C 631.21004,-31.818444 627.94784,-23.883114 613.91894,-22.896154 C 599.89014,-21.909184 596.62484,-14.016074 602.02064,-14.016074 C 607.41624,-14.016074 581.55304,-7.1449944 584.79044,-2.2101944 C 585.68814,-0.84207439 585.22244,-0.18318439 583.94874,-0.054334388 C 585.89124,0.19924561 587.78724,0.34782561 589.84164,0.25364561 z M 583.94874,-0.054334388 C 583.50564,-0.11215439 583.05254,-0.13960439 582.60174,-0.20832439 C 582.07244,-0.28899439 581.71774,-0.26138439 581.47924,-0.20832439 C 582.47544,-0.011024388 583.31294,0.0099656125 583.94874,-0.054334388 z M 709.27364,-10.371654 C 716.15324,-10.464174 721.80984,-13.073314 715.33504,-18.995074 L 709.94714,-20.945614 C 709.94714,-20.945614 693.79344,-13.064184 702.42654,-11.090274 C 704.58484,-10.596794 706.98054,-10.340804 709.27364,-10.371654 z M 1413.5743,-17.968474 C 1413.151,-18.162074 1412.0602,-18.459164 1410.712,-18.789754 C 1411.6583,-18.522184 1412.6043,-18.234624 1413.5743,-17.968474 z M 1410.712,-18.789754 C 1401.1307,-21.498994 1393.0329,-24.359194 1393.0329,-28.850424 C 1393.033,-33.785234 1367.1597,-37.730494 1367.1597,-37.730494 C 1367.1598,-37.730494 1375.8,-27.858894 1385.5123,-24.898014 C 1393.3195,-22.517914 1405.1872,-20.144554 1410.712,-18.789754 z M 746.48394,-23.563444 C 750.95594,-23.641514 755.82714,-25.804464 760.68324,-30.800954 C 769.31644,-39.683614 773.63724,-35.749424 788.74524,-42.658164 C 787.66604,-43.645114 796.30144,-49.580574 802.77634,-54.515374 C 809.25114,-59.450175 789.80164,-51.538244 781.16864,-51.538244 C 772.53544,-51.538244 763.89784,-46.589764 753.10664,-39.681034 C 742.31514,-32.772304 742.34854,-37.727914 745.58594,-46.610574 C 748.82344,-55.493225 762.81314,-57.461975 772.52554,-64.370725 C 782.23774,-71.279445 762.84934,-70.289925 755.29534,-73.250795 C 747.74134,-76.211674 731.55284,-68.323145 717.52394,-68.323125 C 703.49514,-68.323125 715.37054,-64.377885 721.84544,-59.443055 C 728.32024,-54.508244 714.28424,-59.447595 703.49294,-63.395455 C 692.70154,-67.343295 709.97494,-50.535034 721.84544,-48.561104 C 733.71604,-46.587184 730.46784,-31.783374 736.94284,-26.848554 C 739.77544,-24.689574 743.00574,-23.502714 746.48394,-23.563444 z "
           id="path8629" />
        <path
           style="opacity:0.2;fill:url(#linearGradient9595);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 749.1875,-74.59375 C 737.16451,-72.963086 725.59729,-68.441677 713.28125,-68.90625 C 710.78242,-69.343338 708.97041,-66.395563 711.5625,-65.09375 C 714.88697,-62.688136 719.01575,-60.929289 722.1875,-58.15625 C 714.83798,-59.311967 707.88814,-63.619127 700.5625,-64.71875 C 697.40431,-63.341009 701.46916,-59.736711 702.84375,-58.40625 C 708.82986,-52.689101 716.45975,-48.660259 724.53125,-47 C 733.54886,-42.496221 729.58304,-28.196122 739.40625,-24.4375 C 747.79777,-20.003081 757.19329,-25.293163 762.75,-31.75 C 769.92623,-38.491327 780.82349,-37.12826 789.0625,-41.96875 C 789.46593,-42.766594 790.6268,-44.700975 792.40625,-45.75 C 796.26347,-49.300649 801.591,-51.669129 804.8125,-55.71875 C 803.9798,-58.458564 799.76048,-55.691707 797.8275,-55.692902 C 790.77552,-53.377566 783.4546,-52.424764 776.15625,-51.75 C 765.14498,-49.719848 756.67383,-41.535256 746.6875,-37.3125 C 743.04461,-36.249193 744.76425,-41.577536 745.25,-43.28125 C 747.0889,-53.202952 758.34738,-55.761251 766,-59.75 C 769.39482,-61.92397 775.05144,-63.376506 775.9375,-67.78125 C 774.37616,-71.712792 768.63357,-70.877984 765.26718,-71.945134 C 759.65035,-72.021096 754.81976,-75.234819 749.1875,-74.59375 z M 1366.625,-37.1875 C 1373.6917,-29.147202 1383.2678,-23.528009 1393.9686,-21.878945 C 1401.0148,-20.553567 1408.0563,-18.013615 1415.0938,-17.46875 C 1410.7785,-20.695085 1404.6227,-20.631847 1399.8438,-23.25 C 1396.6699,-24.386537 1393.7014,-26.681258 1393.375,-30.15625 C 1388.637,-34.978206 1380.9701,-35.299736 1374.7646,-37.115837 C 1371.5362,-37.764796 1368.304,-38.391495 1365.0312,-38.78125 C 1365.5625,-38.25 1366.0937,-37.71875 1366.625,-37.1875 z M 630.40625,-28.0625 C 623.95578,-25.843528 617.52859,-23.432391 610.54092,-23.254947 C 606.13552,-22.36349 599.43187,-20.733922 598.8125,-15.40625 C 598.53992,-13.913433 602.0565,-13.419313 599.46875,-12.96875 C 594.25924,-10.286562 587.12875,-9.1076813 583.875,-3.84375 C 583.02765,-2.7174527 585.78053,-0.409898 583.34375,-0.875 C 575.18759,-1.7804248 567.30996,-6.520263 561.90625,-12.5625 C 559.46294,-15.755365 567.26628,-17.575675 564.375,-20.59375 C 556.09919,-23.156237 546.94273,-21.383081 538.34375,-21.90625 C 532.76406,-21.544981 527.06113,-22.640056 521.625,-22.75 C 520.01565,-20.538447 524.62212,-19.47441 526.05058,-18.424276 C 532.19622,-15.177083 538.98115,-13.379973 545.4375,-11.21875 C 548.87188,-8.8936432 553.23706,-5.2728061 552.6875,-0.75 C 549.45993,1.4632584 544.75111,-0.7141188 541.11074,-0.61973989 C 530.20824,-1.7030219 519.40303,-5.0045045 508.4375,-4.75 C 505.55858,-4.4053789 507.4647,-1.1432483 509.4375,-0.9375 C 513.96436,1.2969717 519.00251,2.1757076 524,2.75 C 519.13539,4.3694767 513.65496,2.9845041 508.9375,4.65625 C 504.73967,8.7447005 507.5618,15.57609 508.59385,20.498608 C 509.84923,22.944428 509.58515,28.861463 513.43989,26.637709 C 526.20961,22.886283 539.24357,18.930149 549.96875,10.875 C 554.4323,8.8215822 560.86681,10.268745 563.125,4.59375 C 566.9501,0.94150039 572.59013,5.2848962 576.52652,6.5916022 C 580.09179,7.8136032 584.76518,10.998715 588.375,8.53125 C 588.94824,4.9929715 584.11679,3.2322019 582.34375,0.6875 C 591.90521,2.2389337 601.14389,-1.0077294 609.8125,-4.65625 C 622.47103,-9.6801205 636.32621,-3.0973508 649.25,-6.15625 C 653.20664,-7.2024256 652.56025,-12.258447 650.15625,-14.59375 C 648.4538,-16.733224 646.93334,-19.766641 643.96875,-18.09375 C 636.81956,-17.453824 637.15309,-28.878776 630.40625,-28.0625 z M 709.59375,-21.59375 C 705.86163,-19.265742 700.37224,-17.556202 699.15625,-12.90625 C 700.2335,-9.291107 705.40371,-10.100109 708.40625,-9.625 C 712.12228,-9.6424651 718.88874,-9.8974731 718.90625,-14.90625 C 718.06908,-19.265501 713.42763,-21.076014 709.59375,-21.59375 z M 774.28125,-19.0625 C 770.7655,-17.776043 770.39607,-12.34497 766.15625,-11.6875 C 759.08532,-9.6630781 750.66371,-9.499831 744.875,-4.34375 C 744.01571,-1.4398713 748.81466,-2.7547823 750.25,-2 C 766.09169,1.7512639 782.07097,4.8573584 797.8125,8.65625 C 806.10066,10.582072 811.40358,17.9002 819.1875,21.03125 C 816.93514,17.877231 822.39877,17.389637 823.125,14.8125 C 825.33621,11.196033 824.65697,5.4810129 820.78125,3.28125 C 832.03193,2.3503631 843.26601,0.94495461 854.59375,1.53125 C 858.20312,-0.13473263 851.63728,0.14176869 850.25,-0.78125 C 844.7017,-4.1414903 839.15381,-8.1139317 832.28358,-7.9340269 C 826.26809,-8.0849521 818.13222,-8.0241071 814.8125,-2.125 C 813.70605,-0.77208948 816.37576,2.1729046 813.73055,0.93000195 C 802.79924,-0.82539657 791.29732,0.84694065 780.625,-2.03125 C 788.58711,-5.1509984 797.73003,-4.2296999 805.875,-6.25 C 807.75893,-8.8314071 802.50722,-9.5726322 800.97599,-10.330921 C 792.30857,-12.870442 783.85551,-15.617652 775.625,-19.0625 C 775.18028,-19.072238 774.72344,-19.141695 774.28125,-19.0625 z M 579.28125,-0.25 C 578.21796,1.0403823 578.00101,-1.642355 579.28125,-0.25 z M 1004.9375,8.46875 C 1003.1831,10.686344 998.41185,14.105933 1001.25,17.25 C 1007.1348,20.507401 1014.4811,17.745605 1020.6562,16.5625 C 1021.907,15.984764 1027.4235,15.349053 1025.4375,13.0625 C 1018.2905,12.957907 1012.3154,7.9696071 1005.0938,7.8125 L 1004.9375,8.46875 z M 642.0625,12.53125 C 630.59789,13.788096 618.83943,12.870189 607.69862,16.135246 C 599.17774,18.839917 589.51696,19.947681 582.34375,25.4375 C 579.27781,27.89911 581.89129,32.099059 585.25,32.5 C 594.50276,35.648887 601.94276,27.369805 608.71875,22.59375 C 620.21765,18.042302 633.50324,19.602439 644.9375,14.96875 C 647.76476,12.936557 643.7175,12.088745 642.0625,12.53125 z M 897.78125,17.71875 C 889.97001,19.876293 881.87317,20.988937 874.1875,23.28125 C 871.63921,24.948214 875.91277,26.619739 877.375,26.5625 C 888.92569,29.134534 900.84887,28.024458 912.53125,27.34375 C 914.78626,30.129678 915.94815,25.317814 913.0625,25.875 C 908.31212,22.742088 904.14848,16.759887 897.78125,17.71875 z M 1041.8125,25.59375 C 1038.2917,25.14694 1036.29,29.781922 1039.4375,31.75 C 1045.8707,36.792516 1054.806,36.063393 1062.0938,33.34375 C 1066.0618,31.431864 1069.9433,35.054556 1073.7812,34.34375 C 1075.2238,37.347345 1078.1858,40.196267 1081.7188,38.34375 C 1092.6747,36.919952 1104.0077,39.869105 1114.8438,41.34375 C 1123.8481,42.486663 1131.9522,47.572422 1141.2187,46.613283 C 1147.4903,46.480121 1154.5184,45.682331 1159.4375,50.15625 C 1167.6737,55.277346 1177.3633,57.466734 1186.8438,58.4375 C 1190.4331,59.568765 1195.4124,59.985333 1198.2188,61.40625 C 1198.5105,63.80739 1203.2412,65.325949 1203.25,66.4375 C 1200.4458,66.050846 1202.3912,70.883642 1199.6875,69.09375 C 1194.5333,67.223728 1186.7376,70.208314 1183.9375,64.0625 C 1181.8462,56.495575 1172.4456,57.232712 1166.2501,57.199795 C 1152.051,58.714001 1138.8604,52.563637 1125.0625,50.875 C 1122.1305,51.690388 1125.8182,54.112761 1127.3438,54.28125 C 1137.4187,58.447942 1147.9623,61.902644 1158.9375,62.125 C 1166.4013,63.203789 1173.3836,66.510577 1180.25,69.59375 C 1177.5228,70.343797 1172.1565,72.07912 1173.4688,75.78125 C 1178.0302,80.684458 1185.7392,80.858922 1192,82.09375 C 1197.3266,82.227596 1203.7123,83.843341 1208.4375,80.875 C 1210.0624,77.471063 1204.9063,75.107812 1203.875,72.25 C 1203.3993,70.577879 1208.2193,73.011688 1209.875,72.90625 C 1214.3182,72.458243 1217.8426,78.320512 1222.625,76.53125 C 1226.3146,75.155638 1224.5523,70.371883 1221.9062,68.8125 C 1218.3382,65.773321 1213.9995,63.82453 1209.5625,62.34375 C 1213.6841,62.461825 1217.7113,61.691041 1221.4375,60 C 1213.9584,57.642581 1207.6462,51.843302 1199.4375,52.40625 C 1190.2442,51.469245 1179.8352,54.554444 1171.6562,49.28125 C 1167.7178,45.028035 1163.6578,39.373329 1157.0348,39.645925 C 1135.2996,39.494049 1114.0101,34.123218 1092.5625,31.375 C 1088.8993,32.330768 1085.3522,31.430242 1082.5312,29.03125 C 1079.1253,27.271776 1076.6132,31.308636 1073.9375,32.46875 C 1069.9854,29.53637 1064.6586,32.152006 1060.5,29.40625 C 1054.3341,27.643712 1048.2678,25.43202 1041.8125,25.59375 z M 829.96875,32.5 C 827.70182,32.463649 821.99726,32.493589 823.46875,36.15625 C 824.85101,38.600062 828.53121,39.826081 829.875,41.5 C 829.12418,45.015247 833.33745,47.548033 834.8701,50.39359 C 839.07071,55.323011 842.09985,62.13642 849,63.6875 C 860.19627,67.48352 872.26341,65.849868 883.8125,67.15625 C 889.15609,67.758973 889.96684,75.558935 895.78125,74.65625 C 903.5123,76.466291 913.31537,78.807615 919.78125,72.375 C 926.46772,65.411881 936.78819,69.441599 945.18146,67.623776 C 946.88238,66.945477 952.69804,67.735728 951.125,64.625 C 946.36343,59.74262 938.75975,60.89482 932.6875,59.5625 C 929.26491,57.527121 928.05576,52.302537 923.21875,52.40625 C 912.26406,52.366001 901.54879,48.561657 891.21875,46.03125 C 893.40721,44.5353 897.37921,40.089298 893.75,38.03125 C 886.18177,36.986781 878.2341,38.569719 870.75,36.28125 C 865.95578,35.001035 861.13823,37.176168 858.5625,41.28125 C 855.81436,40.107863 853.33322,37.308013 850.125,36.40625 C 843.77845,33.69082 836.88529,32.344139 829.96875,32.5 z M 601.4375,39.15625 C 593.21704,41.218279 587.56494,50.127767 578.46875,49.28125 C 564.83013,49.467276 551.71147,53.905946 538.48893,56.889402 C 535.43379,58.289356 530.4824,57.948393 528.625,60.9375 C 530.09163,63.630265 534.67684,61.805145 537.2175,62.175553 C 548.92784,61.61071 560.22451,58.238972 571.40625,55.3125 C 575.36187,54.168084 579.82351,55.65613 581.5,59.46875 C 584.3851,62.679979 588.95096,59.196014 592.03125,57.90625 C 597.88802,54.500554 605.65464,49.46277 604.84375,41.71875 C 604.61249,40.02995 603.20706,38.7755 601.4375,39.15625 z M 990.75,41.3125 C 985.59946,40.753682 981.98757,44.470112 978.28125,47.3125 C 973.8616,49.403794 966.49897,47.03889 964.15625,52.5625 C 963.1088,55.524962 966.66214,56.591392 968.96846,55.791675 C 978.12416,55.370319 987.65514,53.69515 996.27699,57.57178 C 1000.5034,59.751842 1005.9029,58.791052 1008.4062,54.5 C 1012.7533,49.256107 1020.3649,49.165451 1025.9062,46.125 C 1025.4152,43.239935 1020.632,44.83509 1018.6,43.872432 C 1009.3499,42.765877 1000.0922,41.207857 990.75,41.3125 z M 1239.4688,63.1875 C 1236.2873,63.190942 1237.9487,66.892009 1239.9688,67.5625 C 1249.1008,73.308851 1259.3131,78.337613 1270.125,79.53125 C 1272.0321,79.309904 1277.4533,79.581193 1276.25,76.46875 C 1270.2591,71.798528 1261.7842,70.709438 1255.4688,66.9375 C 1252.945,63.309799 1247.3261,64.349315 1243.476,63.415668 C 1242.141,63.374575 1240.804,63.073353 1239.4688,63.1875 z M 1092.0938,65.21875 C 1090.2049,64.734349 1086.9228,66.699782 1089.2812,68.46875 C 1096.0972,72.36934 1104.031,75.189219 1111.9375,75.46875 C 1114.4768,75.685274 1119.7633,73.997791 1117.625,70.6875 C 1110.4318,66.29382 1101.3977,65.249127 1093,65.15625 L 1092.2518,65.207852 L 1092.0938,65.21875 z M 750.90625,65.6875 C 746.15071,64.939271 738.17872,72.318762 744.5625,75.3125 C 745.75283,75.627095 749.96493,75.925993 746.71875,77.28125 C 740.51002,81.740563 732.71261,77.936779 727,74.46875 C 724.5576,71.959503 721.47771,69.839129 717.625,70.40625 C 710.51131,70.945975 702.79479,72.007532 696.78125,75.875 C 695.53283,79.3706 700.99104,80.531652 703.2261,81.751033 C 710.57428,84.960011 719.02559,86.022878 726.53125,88.59375 C 723.67028,90.206491 722.67478,96.349 726.9375,96.5 C 733.19368,94.488346 738.28875,86.533401 745.59375,88.875 C 755.33954,94.15767 758.97582,106.46996 768.5,111.90625 C 781.07824,113.80278 794.0337,114.86768 806.5,116.875 C 803.12294,118.75307 807.68646,122.15817 809.4375,123.34375 C 816.76264,127.88427 824.29143,132.75819 832.8125,134.4375 C 836.71397,134.12486 834.42392,129.30541 833.03125,127.46875 C 831.43485,124.52182 828.01549,121.15269 826.96875,118.71875 C 837.127,122.93446 846.54318,129.49604 856.90625,133.25 C 860.68032,133.84937 864.11404,130.94842 868,132.375 C 872.02998,133.38122 876.12616,134.27434 880.40766,132.99665 C 889.41589,131.26876 901.32292,132.44505 906.84375,123.5625 C 908.80169,120.62024 906.53304,116.13588 902.78125,117.1875 C 894.28167,118.6134 886.43368,123.52291 878.25,125.1875 C 889.7732,118.706 902.01167,113.55125 914.03125,108.03125 C 911.87604,110.80418 906.93459,113.74846 908.03125,117.75 C 911.90447,121.11019 918.09613,119.40505 922.87378,119.70721 C 929.01039,118.73946 936.4048,120.31144 941.5625,116.28125 C 943.28696,112.77166 937.97518,110.74618 935.4375,109.8125 C 934.46137,108.91453 941.07764,108.83343 943.09375,108.4375 C 945.92351,107.73352 949.3754,108.937 951.90625,107.5625 C 951.02592,104.85808 946.23616,106.35065 943.9084,105.5057 C 937.41555,104.90672 929.03208,104.73259 923.5625,105.28125 C 927.70558,102.97397 932.40629,102.55471 936.84375,101.6875 C 938.55414,99.209201 933.79774,97.702524 932.40625,96.65625 C 927.00815,93.955761 920.29538,89.843761 914.5,94.125 C 910.5437,96.153235 908.5632,101.11183 903.50785,100.57698 C 898.1426,100.93651 890.82182,102.82535 886.84375,98.125 C 883.29267,92.961986 890.78962,86.166224 886.3125,81.3125 C 879.7939,77.654934 871.6504,84.513557 864.90625,80.65625 C 856.26127,77.807977 848.04314,71.48844 838.65625,72.21875 C 835.91386,72.325283 836.67687,75.60936 838.84375,76.09375 C 844.3998,79.09087 850.7918,80.111593 856.90625,80.96875 C 860.33249,83.244553 863.18048,88.751445 868.1875,86.625 C 874.09347,83.631123 878.38174,90.922462 879.625,95.78125 C 880.97628,99.1247 882.10975,104.57065 877.4375,105.84375 C 866.48487,108.85217 854.10823,108.34244 843.74768,103.43711 C 830.99456,98.283022 819.78274,89.888504 807.40625,83.9375 C 802.22223,81.579653 796.47641,83.415345 791.125,83 C 784.58866,75.476731 774.35173,72.02346 765.28125,68.375 C 760.56254,66.930956 755.90755,65.116942 750.90625,65.6875 z M 951.65625,69.125 C 949.75458,69.270329 944.29998,68.971065 945.4375,72.125 C 947.51774,74.154947 950.73024,74.238768 953.5,74.53125 C 948.21257,76.281418 942.40123,76.875156 937.375,79.09375 C 937.61236,81.974836 942.08701,79.744633 944.03125,80.625 C 946.43398,80.469877 950.70136,81.773922 948.65625,84.96875 C 949.25971,88.646691 954.57889,87.770409 957.37484,87.984697 C 968.16388,87.252508 979.8465,86.346059 989.03125,80.25 C 992.11177,77.196665 986.82783,74.383084 984.375,73.53125 C 979.92589,71.271326 974.65475,72.317243 969.79176,70.843606 C 963.79795,69.886796 957.74091,69.018003 951.65625,69.125 z M 638.40625,75.75 C 616.23013,77.06771 594.15318,80.146688 571.9375,81 C 567.35819,82.574603 576.21871,82.931168 578.15625,82.875 C 602.79749,84.118112 627.47595,83.510348 652.125,83.53125 C 658.26084,83.872946 665.25503,84.712072 668.84375,90.34375 C 674.66516,95.090883 682.84969,90.582261 689.5625,92.375 C 696.95552,93.625273 703.0135,99.67398 710.90557,99.188136 C 716.81849,98.879518 723.5549,99.835152 726.55036,105.46998 C 733.27812,115.74627 746.57527,116.61415 756,123.21875 C 763.28403,131.60936 775.47976,129.56051 784.41783,135.02883 C 795.6459,140.26153 802.95179,150.5724 811.28125,159.25 C 816.03044,163.27898 823.40839,163.82786 829.09375,161.71875 C 832.39368,160.26841 832.38801,155.77264 829.28125,154.03125 C 814.64001,143.71639 802.52278,127.97821 784.28125,123.5625 C 779.487,122.14372 774.39321,123.24846 769.71875,123.5625 C 768.84588,120.68693 770.67764,116.38103 768.28125,113.53125 C 763.33169,107.51857 754.5246,106.48363 747.58421,103.50724 C 726.97649,96.55272 705.71073,91.23947 686.09375,81.875 C 670.82191,76.817125 654.43051,75.750439 638.40625,75.75 z M 1044.0625,99.8125 C 1038.7844,102.81831 1034.5574,108.74775 1027.8125,107.59375 C 1018.9665,107.87417 1009.6158,108.5166 1001.625,112.4375 C 999.46305,115.01564 1004.5599,115.81999 1006.1562,116.5625 C 1013.5479,119.39559 1022.304,119.14999 1028.625,113.96875 C 1034.2703,110.10553 1041.8995,108.1151 1045.8438,102.34375 C 1046.4147,101.19612 1045.1419,99.238384 1044.0625,99.8125 z M 980.71875,103.21875 C 975.46025,104.14348 970.65887,107.62743 967.03125,111.375 C 965.08718,114.27158 965.82544,119.40599 970.03125,119.46875 C 979.59911,119.11433 988.7418,115.07019 997.3125,111.0625 C 999.09629,110.69583 1002.4203,107.52543 999.3125,106.71875 C 992.81997,107.03643 987.14615,103.13418 980.71875,103.21875 z M 1069.6562,106.65625 C 1061.9772,108.18461 1054.1297,110.63923 1047.0312,113.84375 C 1044.4362,116.15096 1048.8735,117.94649 1050.8692,117.74928 C 1063.372,118.68447 1074.9003,112.5211 1087.1209,110.80141 C 1092.132,109.43363 1097.7386,109.38525 1102.5,107.1875 C 1091.8298,105.88839 1080.8073,106.98988 1070,106.625 L 1069.6562,106.65625 z M 1205.75,138.5 C 1203.5526,142.37674 1202.363,149.2367 1206.5,152.09375 C 1211.118,152.85852 1216.1288,148.11849 1216.0312,143.5625 C 1214.8296,139.55371 1209.0608,140.12111 1206.0938,138.03125 L 1205.75,138.5 z M 1165.25,138.9375 C 1160.6379,139.63395 1154.337,138.04211 1150.7812,141.5 C 1150.3597,145.12067 1155.7438,145.79983 1158.2875,146.81692 C 1166.6914,149.95678 1176.844,146.35882 1184.125,152.59375 C 1188.5943,155.26321 1197.3802,156.10307 1199.125,149.8125 C 1199.7128,145.58474 1196.4409,140.80726 1193,139.25 C 1183.8061,139.80064 1174.4836,138.47119 1165.25,138.9375 z M 1293.25,146.125 C 1291.506,145.56491 1287.2934,146.70974 1289.625,148.96875 C 1291.0074,150.45688 1293.1767,153.0273 1293,154.53125 C 1287.7491,151.34225 1281.7887,144.27526 1274.9688,147.90625 C 1271.045,149.55633 1265.7325,154.64452 1269.25,159 C 1273.6421,162.53286 1280.2081,161.98522 1284.75,165.625 C 1290.2273,168.81306 1294.2428,174.3596 1299.1562,178.1875 C 1329.8125,178.85508 1360.4689,179.51535 1391.125,180.1875 C 1388.2087,175.55938 1386.0141,169.24001 1380.5938,167.15625 C 1378.0231,167.33967 1376.5973,170.51919 1373.6562,169.90625 C 1368.1794,169.94689 1362.6748,169.93164 1357.3125,170.9375 C 1342.389,168.64957 1328.508,159.68703 1313,160.875 C 1309.8806,160.65297 1312.9529,157.1676 1314.1562,156.28125 C 1315.8316,153.57227 1320.8375,152.6393 1321.2812,149.3125 C 1319.2033,146.06529 1314.1028,147.16508 1310.7812,146.4375 C 1304.945,146.08134 1299.0941,146.09242 1293.25,146.125 z M 992.34375,159.5625 C 989.13604,159.82298 991.08547,163.48339 992.96875,164.21875 C 1002.8442,170.89657 1015.6252,176.86192 1027.8438,173.5 C 1034.7859,170.75022 1041.2332,166.73511 1046.7188,161.65625 C 1031.1128,162.8948 1014.8009,166.08163 999.69943,160.51767 C 997.29468,159.98615 994.85619,159.36419 992.34375,159.5625 z "
           id="path8632" />
        <path
           style="opacity:0.2;fill:url(#linearGradient9597);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 749.125,-75.34375 C 737.05943,-73.708932 725.43517,-69.220053 713.125,-69.625 C 709.98737,-70.07787 708.014,-66.049511 711.15625,-64.5 C 713.54401,-62.702974 716.28528,-61.414274 718.78125,-59.75 C 712.40718,-60.918845 706.46214,-65.345977 700.03125,-65.375 C 696.01327,-62.586112 702.03295,-58.281325 704.0625,-56.28125 C 709.88915,-51.177556 717.08299,-47.886723 724.5,-46.15625 C 732.84355,-41.280953 729.24679,-27.361202 739.0625,-23.78125 C 748.05329,-18.944302 758.11514,-25.052554 764,-31.84375 C 771.56397,-37.824228 782.07121,-36.778711 790.28338,-41.699394 C 790.20351,-43.306421 793.67997,-45.982367 796.125,-47.65625 C 798.86765,-50.839161 805.0582,-52.065069 805.5625,-56.59375 C 801.68818,-59.524127 796.39015,-55.090204 792.15738,-54.966328 C 783.05938,-52.374771 772.96353,-53.692218 764.63997,-48.265293 C 757.95562,-45.510257 752.31048,-39.257898 745.34375,-38.03125 C 744.74001,-45.097241 749.57067,-52.070854 756.34375,-54.40625 C 762.96936,-58.301675 772.13729,-59.86923 776.53125,-66.65625 C 777.3654,-71.632734 770.04478,-71.716738 766.84375,-72.4375 C 760.65376,-72.55236 755.23324,-75.944558 749.125,-75.34375 z M 1366.0938,-36.65625 C 1373.969,-27.376743 1385.1938,-22.194398 1397.0732,-20.360241 C 1403.6216,-19.477926 1410.0321,-16.154621 1416.625,-16.96875 C 1411.1979,-22.365248 1402.1059,-21.213969 1396.1875,-26.21875 C 1393.9442,-27.928171 1394.7012,-31.887995 1391.3438,-32.84375 C 1382.4843,-37.009055 1372.5413,-38.396058 1362.9375,-39.8125 C 1363.9896,-38.760417 1365.0417,-37.708333 1366.0938,-36.65625 z M 630.3125,-28.8125 C 623.61707,-26.539707 617.12225,-24.17977 609.96875,-23.90625 C 605.28948,-23.012024 597.46026,-20.633711 598.28125,-14.59375 C 599.97171,-12.217851 594.06923,-12.382447 592.68052,-10.936308 C 589.18554,-8.9397324 581.88665,-6.9769004 583.34375,-1.6875 C 575.45489,-2.5191216 566.98052,-7.3884289 562.15625,-13.625 C 562.91237,-16.041833 568.61504,-19.412462 564.03125,-21.625 C 550.17879,-24.188692 535.61139,-21.365284 521.75,-23.65625 C 517.86996,-21.274832 523.78766,-18.561196 525.93202,-17.659451 C 532.24569,-14.005721 539.71908,-12.935309 546.1875,-9.84375 C 548.65198,-7.8490418 552.98234,-4.0559788 551.75,-0.90625 C 537.23926,-0.025311844 522.98395,-5.8214836 508.4375,-5.53125 C 504.77556,-5.233105 506.23866,-0.67811704 509.09375,-0.28125 C 512.13056,1.2786508 515.53359,2.149155 518.90625,2.78125 C 514.5989,3.4462553 507.1025,1.6619853 506.28125,7.75 C 505.35911,14.830018 508.14415,21.689144 510.4375,28.25 C 524.55355,24.292909 538.90904,20.011157 550.84375,11.3125 C 555.756,10.061627 561.70389,10.057931 564.15625,4.625 C 570.1028,2.1701533 575.90268,8.3214128 581.65625,9.4375 C 584.33438,11.115723 591.4433,10.31647 588.625,5.90625 C 587.497,3.8023863 582.03035,0.80380944 586.78125,1.71875 C 600.69673,2.7823782 612.2436,-8.2981311 626.37279,-5.683481 C 634.57125,-5.8519065 644.23399,-2.0722636 651.65625,-6.78125 C 655.36235,-11.296587 649.6115,-16.567707 646.6875,-19.75 C 641.30132,-16.368527 637.59142,-23.02467 635.4375,-26.78125 C 634.22969,-28.321997 632.25876,-29.177967 630.3125,-28.8125 z M 709.25,-22.28125 C 705.41981,-19.736485 698.41582,-17.678221 698.5,-12.15625 C 701.39297,-7.8269749 708.07671,-9.0318019 712.625,-9.125 C 716.698,-9.0717507 721.83197,-13.031515 718.78125,-17.3125 C 716.86546,-20.698508 712.71667,-22.03123 709.25,-22.28125 z M 774.34375,-19.8125 C 770.18197,-18.722392 769.76232,-12.474909 765.03125,-12.0625 C 757.96879,-10.396668 749.57201,-9.9624382 744.15625,-4.59375 C 743.09964,-0.29337404 749.55744,-2.1564867 751.84375,-0.875 C 768.02922,3.3535439 784.86869,5.5943645 800.75,10.46875 C 807.90517,13.553906 813.09602,19.741556 820.46875,22.5625 C 817.20069,18.265165 824.12394,17.37674 824.625,13.4375 C 825.76121,10.313137 824.81688,6.1283672 823,3.96875 C 833.75773,2.3247532 844.80035,2.4333824 855.50224,1.8633444 C 860.4652,0.24501046 853.04385,-0.8503821 850.9375,-1.3125 C 845.00854,-4.763216 839.10925,-9.0571724 831.8125,-8.71875 C 825.49305,-8.8474287 815.82197,-8.4806193 813.84375,-1.125 C 814.1576,1.8034792 808.95907,-1.2676216 806.90728,-0.51415766 C 798.9937,-0.99234468 790.82376,-0.7422345 783.09375,-2.125 C 790.63999,-4.4638847 799.03373,-3.352393 806.4375,-5.71875 C 809.06791,-9.5824892 802.0522,-10.498644 799.71875,-11.53125 C 791.45833,-13.73812 783.46679,-16.758246 775.625,-19.8125 C 775.20424,-19.821903 774.75995,-19.894925 774.34375,-19.8125 z M 577.0625,-0.28125 C 574.63542,1.5297037 574.67992,-2.360329 577.0625,-0.28125 z M 1004.2188,8.21875 C 1001.5441,10.334576 996.95133,15.960099 1001.75,18.46875 C 1009.5002,20.954215 1018.2446,18.254347 1025.5938,15.59375 C 1028.6739,13.61215 1024.8312,11.284334 1022.5,12 C 1016.6078,10.733627 1010.9403,7.0360157 1004.5312,7 L 1004.2829,7.9686639 L 1004.2188,8.21875 z M 642.03125,11.78125 C 628.32111,12.861969 614.34829,12.454022 601.22549,17.085504 C 594.31278,19.826198 584.70202,20.117849 580.4375,26.96875 C 579.11987,32.809114 587.27092,34.568757 591.59375,33.75 C 601.30416,32.475967 606.26857,21.597104 616.25,21.21875 C 626.00548,18.718501 636.92986,19.789962 645.9375,15.15625 C 648.38371,12.357747 644.11671,11.304893 642.03125,11.78125 z M 897.6875,16.96875 C 889.78642,19.280633 881.20843,20.04341 873.4375,22.875 C 870.41816,26.320391 877.27615,27.515574 879.57346,27.762896 C 890.30652,29.691698 901.4019,28.835299 912.25,28.0625 C 915.10538,31.869408 917.35626,24.659313 913.3125,25.125 C 908.51346,21.864976 904.18042,15.941891 897.6875,16.96875 z M 1041.7812,24.84375 C 1037.1772,24.35115 1035.3051,30.693201 1039.4688,32.71875 C 1046.9505,38.29501 1056.6866,36.011245 1064.8125,33.53125 C 1067.6285,33.745009 1070.6639,35.452663 1073.4688,35.21875 C 1075.0497,38.942912 1078.9477,40.753105 1082.7188,38.90625 C 1097.3596,38.328149 1112.0378,41.244292 1126.1875,44.875 C 1135.6361,49.883865 1146.9546,44.855317 1156.4062,49 C 1161.182,52.534492 1166.6773,54.811614 1172.3125,56.5625 C 1160.9892,56.783641 1149.6251,56.514633 1138.7812,52.8125 C 1133.8368,52.288869 1128.3232,48.993448 1123.5,50.71875 C 1122.2082,54.876976 1129.1211,55.195242 1131.6875,56.84375 C 1140.9277,60.497943 1150.6969,62.668918 1160.5439,63.160762 C 1166.5507,64.346638 1172.787,66.892585 1177.9375,69.5 C 1174.4059,70.176781 1170.0417,74.795187 1174.125,77.625 C 1183.3122,82.900491 1194.7254,83.752469 1205.1875,82.96875 C 1208.7552,83.264709 1211.2235,79.207114 1208.2812,76.65625 C 1207.0451,75.025867 1202.6468,71.100636 1207.6562,73.21875 C 1212.4337,72.95955 1215.6175,76.792553 1220.1875,77.5625 C 1224.5456,78.57542 1227.4829,72.806768 1224,69.875 C 1221.2668,66.648525 1216.9829,64.517532 1213.4375,62.9375 C 1217.0014,62.678495 1220.2633,61.329861 1223.5625,59.96875 C 1214.8262,57.467917 1207.7612,50.68477 1198.2188,51.59375 C 1188.8156,50.628572 1176.5273,54.646712 1169.75,46.21875 C 1165.5188,39.138346 1156.8023,38.131374 1149.2812,38.71875 C 1130.1998,37.317249 1111.4592,33.159437 1092.5312,30.625 C 1088.6593,31.868444 1085.3959,30.237511 1082.2812,28.125 C 1078.879,26.682295 1076.3727,30.580275 1073.875,31.46875 C 1069.4658,29.065909 1064.1987,31.161324 1059.7643,28.389225 C 1053.8898,26.729192 1047.9689,24.652579 1041.7812,24.84375 z M 829.96875,31.75 C 826.96152,31.272838 820.40159,32.639775 823.0625,36.875 C 824.58174,39.857813 829.55471,39.909939 829.15625,43.625 C 833.17428,49.794794 837.71034,55.811753 842.65625,61.25 C 854.79083,69.347166 870.53824,66.046749 884.1875,68.03125 C 888.98638,69.238372 889.9148,76.308207 895.71875,75.40625 C 904.06088,77.619517 914.55098,79.385916 921.09375,72.21875 C 928.51189,65.955401 938.92252,70.598285 947.5625,68 C 951.22941,68.805196 954.06697,64.839076 950.375,62.90625 C 945.13511,58.834796 937.94056,60.60054 932.25,58.4375 C 929.5566,55.054799 926.56006,50.895053 921.46875,51.5625 C 911.60465,51.38855 902.1994,47.819396 892.65625,45.6875 C 896.17017,43.917235 897.72565,37.138417 892.40625,36.9375 C 884.19293,37.225449 876.07199,36.777055 868.0625,35.25 C 863.92859,34.738721 860.39634,37.630973 858.15625,40.46875 C 850.61877,34.113405 839.81292,31.675458 829.96875,31.75 z M 601.40625,38.40625 C 592.55178,40.583933 586.48861,50.366261 576.50015,48.580041 C 561.39522,49.567474 546.49796,54.078198 531.96875,58 C 529.20046,57.728286 525.83915,61.869792 529.75,62.84375 C 544.53911,64.052098 558.93848,58.983039 573.15625,55.84375 C 577.53887,54.607475 579.70176,58.522533 582.1875,61.0625 C 587.64667,62.698236 592.96291,57.989688 597.40625,55.40625 C 602.21829,52.141362 608.73184,44.806065 604.15625,39 C 603.35641,38.431654 602.36803,38.282798 601.40625,38.40625 z M 990.71875,40.5625 C 985.0447,39.852206 981.40353,44.357094 977.1875,47 C 972.5753,48.137745 964.72568,46.896868 963.28125,53.0625 C 963.11528,58.770909 970.8658,56.005943 974.375,56.28125 C 983.11572,54.63584 991.52913,56.448508 999.6875,59.28125 C 1006.8361,61.13592 1009.0108,52.21475 1015.125,50.875 C 1018.3893,48.534449 1024.9112,49.597005 1026.6562,45.71875 C 1024.8121,41.893066 1018.552,44.117339 1015.0938,42.65625 C 1007.0027,41.676374 998.89063,40.43625 990.71875,40.5625 z M 1180.6875,58.40625 C 1186.3493,58.777419 1192.8477,60.24108 1197.625,62.25 C 1198.359,64.629339 1203.5705,65.225443 1200.6875,67.625 C 1199.5142,69.52864 1195.1618,66.834315 1192.6875,67.40625 C 1188.199,68.312815 1184.4391,65.316739 1183.375,61.0625 C 1182.8341,59.93417 1181.1599,58.777538 1180.6875,58.40625 z M 1239.4062,62.4375 C 1235.5049,62.462333 1236.8422,67.205926 1239.5625,68.21875 C 1249.1573,74.050868 1259.8282,79.745658 1271.2812,80.25 C 1273.9658,80.705573 1279.7435,78.284621 1276.0938,75.28125 C 1269.9314,71.099372 1261.7131,70.02334 1255.8125,65.96875 C 1251.7246,62.299869 1244.5248,63.08324 1239.4062,62.4375 z M 1092.0625,64.46875 C 1088.9475,63.647801 1085.7883,67.590113 1089.2812,69.40625 C 1097.2103,73.22555 1106.4316,77.537283 1115.4688,75.6875 C 1119.3415,75.234515 1120.1876,69.733124 1116.0938,68.78125 C 1108.5288,65.676186 1100.2665,64.091246 1092.0625,64.46875 z M 750.8125,64.9375 C 746.25715,64.899329 738.92591,69.634625 742.25,74.6875 C 742.75827,76.567336 748.6055,75.901182 745.09375,77.25 C 738.59599,80.808833 731.07603,76.331179 725.71875,72.5 C 720.88037,67.371228 712.52446,70.265986 706.4375,71.28125 C 703.05371,72.840762 696.27853,72.600603 695.75,77.28125 C 698.62629,82.632427 706.23054,83.081428 711.375,85.28125 C 715.82055,86.801779 721.18338,87.484498 725.28125,88.90625 C 723.64065,90.45851 722.60734,92.87833 723.625,95.0625 C 710.22589,91.164873 697.12447,86.055245 684.53125,80.5625 C 660.44555,73.413681 634.81793,74.255045 610.09772,77.370299 C 597.07447,78.689968 583.90965,79.448523 570.92014,80.547067 C 564.11337,81.330723 572.51832,83.878512 575.28125,83.5 C 601.24012,84.980343 627.25497,84.106436 653.21875,84.375 C 659.13284,84.498027 665.4085,86.123898 668.8125,91.3125 C 676.24316,96.155568 685.98597,90.234428 693.78125,94.3125 C 700.56611,98.251426 708.05966,100.65667 716.03125,100.125 C 724.85749,99.812706 727.28681,110.60235 734.53125,113.78125 C 743.03835,118.43124 753.18852,120.47819 760.15625,127.625 C 769.30253,132.28758 780.39814,131.82952 788.8125,138.40625 C 798.26211,143.87667 804.04421,154.03191 812.25,160.9375 C 817.6195,164.06248 825.67578,165.18187 830.875,161.28125 C 835.19474,157.24105 829.4049,152.4849 825.84375,150.6875 C 811.48951,139.07701 797.51396,122.74916 777.625,122.09375 C 775.42269,121.24259 770.98563,124.29255 770.125,122.125 C 770.82169,119.03876 770.30151,114.98973 768.71875,112.75 C 780.57724,114.48033 793.37422,115.48548 804.71875,117.46875 C 803.99749,122.51366 810.80338,124.62872 814.10328,127.1777 C 820.37108,130.14188 826.73007,135.1309 833.9375,135.03125 C 838.48112,132.25345 833.14882,126.63685 831.40625,123.75 C 826.15176,118.03024 832.90501,122.46486 836.51615,124.25448 C 844.24873,127.08832 850.82146,133.73662 859.25,134.09375 C 864.38881,131.58817 869.98234,133.84981 875.18032,134.41163 C 885.62809,132.0815 898.78338,134.24686 906.5,125.4375 C 908.25338,123.79303 908.52676,120.41334 907.96875,118.8125 C 915.55872,122.54225 924.78346,119.72901 932.92588,119.75783 C 937.31736,120.60161 946.74679,116.39433 940.6875,111.625 C 937.43293,109.88473 937.70007,109.49653 941.625,109.34375 C 945.15246,108.25538 949.66576,110.16215 952.65625,107.875 C 952.08046,103.60963 945.4395,105.63028 942.21875,104.625 C 937.84967,104.22953 932.13228,104.19939 928.5,104.15625 C 931.11595,102.02458 937.02636,104.66641 938.0625,100.6875 C 935.70658,95.582751 928.65682,94.622137 924.09375,92.09375 C 917.66147,89.649419 911.42802,94.833403 907.375,99.1875 C 901.20549,99.776167 893.09031,102.55048 887.8125,98.15625 C 883.75612,92.99978 892.24278,85.151685 886.40625,80.4375 C 879.00522,77.078247 870.49645,84.208355 863.38193,79.227626 C 854.97839,76.507473 846.61313,69.784826 837.40625,71.8125 C 833.66332,74.138966 838.75898,77.525535 841.25,78.0625 C 846.24821,80.565803 852.02887,80.415351 857.1875,82 C 860.2569,85.711319 864.94458,89.718847 869.96875,86.8125 C 876.42375,86.090379 878.61813,94.637497 879.8125,99.4375 C 881.89834,105.68113 873.41012,106.36773 869.28125,106.59375 C 849.5468,109.4521 832.53971,96.987477 816.26658,87.768295 C 809.47668,82.597399 800.78833,80.791259 792.4375,82.5 C 789.78801,81.713963 788.55964,78.071811 785.625,77.15625 C 775.21546,71.208176 763.91161,65.404168 751.78125,64.84375 L 750.8125,64.9375 z M 951.65625,68.375 C 949.07845,68.086415 942.42296,69.021426 945.09375,72.90625 C 945.99718,74.511999 952.10638,74.635941 947.6875,75.28125 C 944.31467,76.925339 938.18357,76.179315 936.625,79.625 C 938.26518,83.164532 944.08811,80.029502 947.21875,81.96875 C 950.02197,82.719153 946.12347,86.741101 949.53125,87.65625 C 959.2559,90.453353 969.80239,87.48363 979.40625,85.46875 C 983.34096,83.817633 990.36283,82.945409 990.71875,77.71875 C 988.65377,73.514616 982.97168,71.567136 978.625,71.4375 C 969.69091,70.302747 960.77893,68.16222 951.65625,68.375 z M 743.125,89.125 C 751.08176,90.697717 754.74304,99.869368 760.03684,105.11986 C 761.32054,106.90848 764.5053,109.72 760.5,107.40625 C 750.67882,103.13028 737.46364,100.13551 729.3125,96.40625 C 733.80114,93.805276 737.73794,89.444405 743.125,89.125 z M 1043.6562,99.1875 C 1038.1631,102.66631 1033.3509,108.54599 1026.0938,106.84375 C 1017.5658,107.48978 1008.2495,107.76321 1000.8438,112.1875 C 998.64846,116.093 1005.2153,116.73687 1007.6562,117.8125 C 1015.1943,120.54265 1023.6946,119.05487 1029.8654,114.12396 C 1035.3557,110.12963 1043.4615,108.48792 1046.6562,102.15625 C 1047.1796,100.74109 1044.9114,97.559998 1043.6562,99.1875 z M 980.65625,102.46875 C 975.05134,103.55033 969.65394,107.09066 966.15625,111.46875 C 963.60899,115.42785 966.43886,121.18148 971.46875,120.28125 C 981.66848,118.67735 992.13289,115.49859 1000.7188,109.59375 C 1003.3628,106.11503 997.81409,105.43614 995.5,105.65625 C 990.49608,105.07686 985.81501,102.18925 980.65625,102.46875 z M 1069.5938,105.90625 C 1061.6628,107.60258 1053.4159,109.75917 1046.25,113.53125 C 1043.3864,117.18431 1049.5694,118.93212 1052.2812,118.625 C 1065.7713,118.70625 1078.1516,112.41047 1091.4388,110.67842 C 1094.8897,109.99899 1108.9717,108.01934 1100.625,105.875 C 1090.2819,105.89884 1079.9344,105.82927 1069.5938,105.90625 z M 910.125,111 C 908.53148,112.54509 906.64336,115.67947 906.9375,117.4375 C 901.24246,114.29523 894.68233,119.44466 889.125,120.78125 C 880.19598,124.43313 892.43356,118.79863 895.125,117.46875 C 900.28145,115.06539 905.46186,112.71481 910.6875,110.34375 L 910.125,111 z M 1205.1562,138.0625 C 1202.6561,142.24808 1201.3456,150.46825 1206.75,152.9375 C 1212.0123,153.40327 1218.5854,147.24725 1216.1562,141.9375 C 1213.6583,139.05391 1209.098,138.92897 1205.8438,137.125 L 1205.2524,137.9314 L 1205.1562,138.0625 z M 1165.2188,138.1875 C 1160.3512,138.94656 1153.535,137.09463 1150.0312,141.3125 C 1149.5571,146.04339 1156.2744,146.77479 1159.5938,147.9375 C 1167.9037,150.43219 1177.6602,147.45499 1184.6562,153.75 C 1189.7605,156.55744 1199.7235,156.15513 1199.9688,148.65625 C 1199.5498,144.02179 1195.9184,137.49134 1190.8125,138.71875 C 1182.2816,138.54774 1173.7548,137.94485 1165.2188,138.1875 z M 1293.2188,145.375 C 1290.7139,144.59365 1286.2784,146.75057 1289.0625,149.4375 C 1292.2363,152.77758 1291.5553,153.02378 1288,150.03125 C 1283.6974,146.22267 1277.0908,144.47237 1272.3125,148.5625 C 1267.9505,150.65274 1264.8886,157.90098 1270.2188,160.6875 C 1277.2843,163.24919 1285.1686,165.07046 1290.4062,171 C 1294.6299,174.53534 1297.7206,180.75878 1304.1551,179.04606 C 1333.5721,179.689 1362.9895,180.31553 1392.4062,180.96875 C 1389.0395,175.89223 1386.71,167.96046 1380.2188,166.40625 C 1377.4065,167.23057 1375.3167,170.18184 1371.8125,169.25 C 1366.3066,168.40497 1360.8585,170.36248 1355.5312,169.96875 C 1341.2647,166.85035 1327.6248,159.11293 1312.6562,160.03125 C 1312.664,157.34784 1317.3785,154.78459 1319.5312,152.78125 C 1322.6688,151.77816 1322.8113,147.34371 1319.3438,146.875 C 1310.8965,144.90399 1301.8735,145.5293 1293.2188,145.375 z M 992.28125,158.8125 C 988.37867,159.05853 989.90798,163.78538 992.53125,164.8125 C 1003.7043,172.47752 1019.4274,179.35461 1032.4688,172.28125 C 1038.5727,169.31258 1044.0349,165.36364 1048.9375,160.6875 C 1032.2389,162.05314 1014.8461,165.48521 998.64748,159.50791 C 996.51763,159.07928 994.47926,158.633 992.28125,158.8125 z "
           id="path8641" />
      </g>
    </mask>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient9601"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-78.63894,-7.561437)"
       x1="55.698612"
       y1="239.78107"
       x2="1123.2231"
       y2="239.78107" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient9605"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-78.63894,-7.561437)"
       x1="55.698612"
       y1="239.78107"
       x2="1123.2231"
       y2="239.78107" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient9609"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-78.63894,-7.561437)"
       x1="55.698612"
       y1="239.78107"
       x2="1123.2231"
       y2="239.78107" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient9613"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-78.63894,-7.561437)"
       x1="55.698612"
       y1="239.78107"
       x2="1123.2231"
       y2="239.78107" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient9617"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-78.63894,-7.561437)"
       x1="55.698612"
       y1="239.78107"
       x2="1123.2231"
       y2="239.78107" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient9621"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-78.63894,-7.561437)"
       x1="55.698612"
       y1="239.78107"
       x2="1123.2231"
       y2="239.78107" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient10513"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-78.63894,-7.561437)"
       x1="55.698612"
       y1="239.78107"
       x2="1123.2231"
       y2="239.78107"
       spreadMethod="pad" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient10517"
       gradientUnits="userSpaceOnUse"
       x1="314.18854"
       y1="175.35481"
       x2="1168.2363"
       y2="175.35481" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient10521"
       gradientUnits="userSpaceOnUse"
       x1="314.18854"
       y1="175.35481"
       x2="1168.2363"
       y2="175.35481" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient10525"
       gradientUnits="userSpaceOnUse"
       x1="314.18854"
       y1="175.35481"
       x2="1168.2363"
       y2="175.35481" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient10529"
       gradientUnits="userSpaceOnUse"
       x1="314.18854"
       y1="175.35481"
       x2="1168.2363"
       y2="175.35481" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient13274"
       x1="628.28564"
       y1="263.29993"
       x2="649.10132"
       y2="263.29993"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9539"
       id="linearGradient13284"
       x1="644.54321"
       y1="256.33026"
       x2="645.57104"
       y2="263.29993"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient3161"
       x1="590.13617"
       y1="267.92664"
       x2="603.40271"
       y2="289.09866"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-1.243856,-0.487712)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient3187"
       x1="792.13141"
       y1="207.68985"
       x2="793.76184"
       y2="223.81853"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9539"
       id="linearGradient4085"
       x1="863.04791"
       y1="176.90616"
       x2="862.34943"
       y2="157.49515"
       gradientUnits="userSpaceOnUse"
       spreadMethod="reflect" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient4095"
       x1="831.34637"
       y1="171.21814"
       x2="862.84943"
       y2="171.21815"
       gradientUnits="userSpaceOnUse"
       spreadMethod="reflect" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9539"
       id="linearGradient4990"
       x1="1029.5085"
       y1="358.57944"
       x2="1031.0149"
       y2="252.69026"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient7665"
       x1="968.42743"
       y1="182.61887"
       x2="963.95831"
       y2="226.01494"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8560"
       x1="1097.2233"
       y1="217.7581"
       x2="1097.769"
       y2="241.75745"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient8563"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.589974,0,0,1.589974,1466.005,-137.13)"
       spreadMethod="pad"
       x1="-459.7771"
       y1="276.24548"
       x2="-459.31543"
       y2="262.13843" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8565"
       gradientUnits="userSpaceOnUse"
       x1="750.95972"
       y1="289.73868"
       x2="751.52802"
       y2="285.71246" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8568"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.589974,0,0,1.589974,1466.005,-137.13)"
       spreadMethod="pad"
       x1="-455.49695"
       y1="265.54517"
       x2="-455.51086"
       y2="262.13843" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8471"
       id="linearGradient8571"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(7.561441,1.51229)"
       spreadMethod="reflect"
       x1="762.3017"
       y1="219.84377"
       x2="776.42749"
       y2="250.08951" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8574"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.589974,0,0,1.589974,1466.005,-137.13)"
       spreadMethod="reflect"
       x1="-478.7999"
       y1="256.11609"
       x2="-475.24701"
       y2="268.1608" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8577"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.589974,0,0,1.589974,1466.005,-137.13)"
       x1="-358.83292"
       y1="177.57761"
       x2="-354.37372"
       y2="202.39496" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="radialGradient8580"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.589974,0,0,0.419966,1466.005,128.2767)"
       cx="-519.21252"
       cy="151.11502"
       fx="-519.21252"
       fy="151.11502"
       r="177.43268" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8586"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.589974,0,0,1.589974,1466.005,-137.13)"
       x1="-386.74313"
       y1="259.43784"
       x2="-393.50739"
       y2="188.68987" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient8589"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.589974,0,0,1.589974,1466.005,-137.13)"
       x1="-433.51227"
       y1="295.22482"
       x2="-424.02896"
       y2="284.48297" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8600"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,60)"
       x1="685.4342"
       y1="347.68539"
       x2="687.271"
       y2="241.82527" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8609"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,60)"
       x1="685.4342"
       y1="347.68539"
       x2="687.271"
       y2="241.82527" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8623"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,60)"
       x1="685.4342"
       y1="347.68539"
       x2="687.271"
       y2="241.82527" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8632"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,60)"
       x1="685.4342"
       y1="347.68539"
       x2="687.271"
       y2="241.82527" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient8634"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,60)"
       x1="685.4342"
       y1="347.68539"
       x2="687.271"
       y2="241.82527" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="radialGradient9531"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.374105,0,0,0.419966,1763.467,128.2767)"
       cx="-375.49411"
       cy="404.27512"
       fx="-375.49411"
       fy="404.27512"
       r="177.43268" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7337"
       id="linearGradient9598"
       gradientUnits="userSpaceOnUse"
       x1="-569.71979"
       y1="329.35635"
       x2="-562.20435"
       y2="358.02646"
       gradientTransform="matrix(1.799676,0,0,1.799676,1568.471,-203.2776)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="radialGradient9600"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.484735,1.59224e-2,-5.029442e-3,0.153114,-293.1255,247.5181)"
       cx="-546.82202"
       cy="153.11432"
       fx="-546.82202"
       fy="153.11432"
       r="149.3989" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9614"
       x1="472.37576"
       y1="267.77805"
       x2="470.50107"
       y2="274.74612"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9539"
       id="linearGradient9622"
       x1="481.55374"
       y1="265.73688"
       x2="478.49924"
       y2="274.74612"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9632"
       x1="457.77423"
       y1="265.94275"
       x2="457.7601"
       y2="276.41019"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-1.149224,-0.766149)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9640"
       gradientUnits="userSpaceOnUse"
       x1="-571.92474"
       y1="317.76691"
       x2="-569.61517"
       y2="304.25351" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9648"
       x1="-577.0437"
       y1="311.49066"
       x2="-569.61517"
       y2="304.25351"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9658"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9665"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9669"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9674"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9678"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9686"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9690"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9695"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9699"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9701"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-120.253)"
       x1="-591.83447"
       y1="333.22284"
       x2="-564.88745"
       y2="284.69131" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9539"
       id="linearGradient9711"
       x1="909.14966"
       y1="404.39041"
       x2="893.00256"
       y2="355.76645"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,0.766149)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9721"
       x1="884.91919"
       y1="335.78848"
       x2="881.38293"
       y2="378.33539"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="radialGradient9725"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.484735,1.59224e-2,-5.029442e-3,0.153114,-293.1255,247.5181)"
       cx="-546.82202"
       cy="153.11432"
       fx="-546.82202"
       fy="153.11432"
       r="149.3989" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2806"
       id="linearGradient9731"
       x1="710.30615"
       y1="431.81848"
       x2="727.7901"
       y2="322.25912"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9735"
       gradientUnits="userSpaceOnUse"
       x1="-571.92474"
       y1="317.76691"
       x2="-569.61517"
       y2="304.25351" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9737"
       gradientUnits="userSpaceOnUse"
       x1="-577.0437"
       y1="311.49066"
       x2="-569.61517"
       y2="304.25351" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9741"
       gradientUnits="userSpaceOnUse"
       x1="-571.92474"
       y1="317.76691"
       x2="-569.61517"
       y2="304.25351"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-200.253)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7357"
       id="linearGradient9743"
       gradientUnits="userSpaceOnUse"
       x1="-577.0437"
       y1="311.49066"
       x2="-569.61517"
       y2="304.25351"
       gradientTransform="matrix(1.799676,0,0,1.799676,1569.983,-200.253)" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     gridtolerance="10000"
     guidetolerance="10"
     objecttolerance="10"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.66125"
     inkscape:cx="640"
     inkscape:cy="417.58303"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     width="1280px"
     height="800px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1270"
     inkscape:window-height="694"
     inkscape:window-x="0"
     inkscape:window-y="24" />
  <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" />
        <dc:title>Under the See</dc:title>
        <dc:date>2006-07-11</dc:date>
        <dc:creator>
          <cc:Agent>
            <dc:title>it-s</dc:title>
          </cc:Agent>
        </dc:creator>
        <cc:license
           rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
      </cc:Work>
      <cc:License
         rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
        <cc:permits
           rdf:resource="http://web.resource.org/cc/Reproduction" />
        <cc:permits
           rdf:resource="http://web.resource.org/cc/Distribution" />
        <cc:requires
           rdf:resource="http://web.resource.org/cc/Notice" />
        <cc:permits
           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
        <cc:requires
           rdf:resource="http://web.resource.org/cc/ShareAlike" />
        <cc:requires
           rdf:resource="http://web.resource.org/cc/SourceCode" />
      </cc:License>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="See"
     inkscape:groupmode="layer"
     id="layer1"
     style="opacity:1;display:inline">
    <rect
       style="opacity:1;fill:url(#linearGradient2786);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="rect1892"
       width="1311.4286"
       height="825.71429"
       x="-14.285714"
       y="-8.5714283"
       rx="1.4040213"
       ry="1.1700177" />
    <g
       id="g8450"
       transform="matrix(1.557545,0,0,1.557545,1446.991,-120.1468)">
      <path
         sodipodi:nodetypes="csssssssssssssssssssssssss"
         id="path8432"
         d="M -485.69581,344.48133 C -469.56665,344.22118 -468.26591,346.04222 -463.3231,340.31897 C -458.38029,334.59572 -453.43749,327.05143 -448.75483,327.31158 C -444.07217,327.57173 -445.63306,335.89646 -446.15335,341.09941 C -446.67365,346.30236 -441.21055,353.0662 -437.04819,354.62709 C -432.88582,356.18797 -419.87843,363.47211 -414.15518,363.73226 C -408.43193,363.99241 -396.46514,365.29315 -394.38395,367.11418 C -392.30277,368.93522 -383.97804,376.73965 -375.65332,376.9998 C -367.32859,377.25994 -347.81751,377.25994 -349.11825,379.08098 C -350.41899,380.90201 -369.40977,380.12157 -370.45036,382.72305 C -371.49095,385.32452 -370.97066,389.48689 -373.83228,389.22674 C -376.69391,388.96659 -379.81568,383.24334 -382.41716,382.72305 C -385.01864,382.20275 -398.02602,379.08098 -404.78986,380.90201 C -411.5537,382.72305 -423.5205,379.86142 -431.84523,380.64186 C -440.16995,381.42231 -473.98916,383.24334 -482.31389,381.42231 C -490.63861,379.60127 -496.10171,375.95921 -495.32127,378.30053 C -494.54083,380.64186 -495.58142,384.28393 -490.37846,388.96659 C -485.17551,393.64925 -485.69581,396.77102 -488.03714,395.73043 C -490.37846,394.68984 -501.30467,390.78763 -505.72718,383.76364 C -510.14969,376.73965 -508.58881,374.13817 -511.19028,373.61788 C -513.79176,373.09758 -524.19767,369.45551 -530.18107,366.85403 C -536.16446,364.25256 -543.18845,362.43152 -549.69215,361.91123 C -556.19584,361.39093 -559.83791,359.83005 -557.23643,357.74886 C -554.63495,355.66768 -543.18845,358.78946 -540.58698,356.18798 C -537.9855,353.5865 -531.74195,350.72488 -526.539,349.42414 C -513.66692,345.26604 -499.42476,344.86328 -485.69581,344.48133 z "
         style="fill:url(#linearGradient8455);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         id="path8434"
         d="M -505.98733,368.15477 C -496.62201,375.43891 -484.13492,381.68246 -478.93196,381.9426 C -473.72901,382.20275 -471.90798,380.90201 -478.15152,378.30053 C -484.39507,375.69906 -493.24009,368.67507 -493.24009,368.67507"
         style="fill:url(#linearGradient8457);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         style="fill:url(#radialGradient8459);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M -485.69581,344.48133 C -469.56665,344.22118 -468.26591,346.04222 -463.3231,340.31897 C -458.38029,334.59572 -453.43749,327.05143 -448.75483,327.31158 C -444.07217,327.57173 -445.63306,335.89646 -446.15335,341.09941 C -446.67365,346.30236 -441.21055,353.0662 -437.04819,354.62709 C -432.88582,356.18797 -419.87843,363.47211 -414.15518,363.73226 C -408.43193,363.99241 -396.46514,365.29315 -394.38395,367.11418 C -392.30277,368.93522 -383.97804,376.73965 -375.65332,376.9998 C -367.32859,377.25994 -347.81751,377.25994 -349.11825,379.08098 C -350.41899,380.90201 -369.40977,380.12157 -370.45036,382.72305 C -371.49095,385.32452 -370.97066,389.48689 -373.83228,389.22674 C -376.69391,388.96659 -379.81568,383.24334 -382.41716,382.72305 C -385.01864,382.20275 -398.02602,379.08098 -404.78986,380.90201 C -411.5537,382.72305 -423.5205,379.86142 -431.84523,380.64186 C -440.16995,381.42231 -473.98916,383.24334 -482.31389,381.42231 C -490.63861,379.60127 -496.10171,375.95921 -495.32127,378.30053 C -494.54083,380.64186 -495.58142,384.28393 -490.37846,388.96659 C -485.17551,393.64925 -485.69581,396.77102 -488.03714,395.73043 C -490.37846,394.68984 -501.30467,390.78763 -505.72718,383.76364 C -510.14969,376.73965 -508.58881,374.13817 -511.19028,373.61788 C -513.79176,373.09758 -524.19767,369.45551 -530.18107,366.85403 C -536.16446,364.25256 -543.18845,362.43152 -549.69215,361.91123 C -556.19584,361.39093 -559.83791,359.83005 -557.23643,357.74886 C -554.63495,355.66768 -543.18845,358.78946 -540.58698,356.18798 C -537.9855,353.5865 -531.74195,350.72488 -526.539,349.42414 C -513.66692,345.26604 -499.42476,344.86328 -485.69581,344.48133 z "
         id="path8446"
         sodipodi:nodetypes="csssssssssssssssssssssssss" />
    </g>
    <rect
       style="opacity:1;fill:url(#linearGradient9579);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="rect8652"
       width="984.49908"
       height="313.04349"
       x="-1439.6975"
       y="90.737244"
       rx="1.4040213"
       ry="1.1700177"
       transform="matrix(-1,0,0,-1,-110.397,341.7769)"
       mask="url(#mask9581)" />
    <path
       style="fill:url(#linearGradient3984);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       id="path3920"
       d="M 1075.2326,-14.161479 C 1085.674,-11.622762 1090.2359,-1.4758864 1096.2187,6.5614937 C 1116.9822,17.166374 1146.1688,13.710664 1169.59,17.38969 C 1214.3492,27.345566 1252.2452,55.751087 1291.2149,78.663513 L 1291.1334,78.790866 C 1252.1786,55.887174 1214.2969,27.49093 1169.5556,17.536958 C 1145.0921,14.917769 1112.4999,22.959061 1091.6988,10.01098 C 1086.906,3.2539226 1082.9121,-5.2681789 1074.3862,-7.0105441 L 1075.2326,-14.161479 z " />
    <path
       style="fill:url(#linearGradient3968);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       id="path3910"
       d="M 717.23836,19.384644 C 728.34749,26.025143 731.93678,38.179401 735.2397,50.014626 C 736.62128,60.647135 738.60115,69.993565 744.34606,76.881332 C 762.88097,78.542407 780.73875,81.986452 798.2881,88.242788 C 813.67503,96.286207 817.35443,88.0915 829.7017,78.963647 C 848.29036,66.91373 866.09598,69.382858 883.48317,81.39634 C 891.09697,87.020162 885.63335,81.968863 895.42013,72.929229 C 913.60017,67.843434 926.30852,83.513391 937.25762,95.63191 C 944.81939,105.47933 946.0291,96.986222 956.74694,91.861982 C 984.48528,82.74884 1007.8569,97.70616 1027.3736,116.14046 C 1037.8586,129.33552 1043.9523,138.92429 1060.9566,140.64707 C 1083.4821,140.33228 1103.3619,145.88026 1120.1163,161.04524 C 1125.6416,167.17194 1129.7232,174.58608 1135.7024,179.57766 C 1152.4739,183.27316 1163.7142,195.01849 1174.0176,207.97277 C 1180.2131,218.03774 1186.1041,227.82059 1194.819,235.8 C 1202.0757,242.11026 1206.2466,250.83549 1210.8529,259.07688 L 1206.464,261.70903 C 1202.3127,253.81044 1198.0963,245.88622 1190.8499,240.33994 C 1181.258,232.42898 1177.1861,221.06754 1170.6667,210.7025 C 1160.8626,198.04615 1149.6683,187.09281 1132.9203,185.61717 C 1125.2148,180.25527 1122.8668,172.00865 1116.9342,164.37776 C 1101.2966,148.8322 1082.0447,143.58337 1060.1229,145.40768 C 1040.6145,144.75124 1035.8338,133.51045 1025.0361,118.52935 C 1007.0237,100.39501 984.24457,85.794776 958.15976,96.349565 C 947.87723,102.70547 941.25661,113.4744 933.37469,99.010081 C 924.88026,88.328959 913.54329,73.868942 898.1666,78.068711 C 892.97175,84.580241 888.82952,95.468799 880.24467,85.564213 C 864.90117,73.27682 848.48748,71.111562 831.64829,82.948645 C 818.76239,94.034737 813.07924,102.84413 796.4652,92.258379 C 778.76084,85.110542 760.81905,82.749561 741.80722,82.479997 C 729.76911,77.092411 734.29089,62.904038 730.75244,51.691404 C 727.74216,41.700429 724.76211,31.647242 715.19441,26.345767 L 717.23836,19.384644 z " />
    <path
       style="fill:url(#linearGradient3976);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       id="path3918"
       d="M 847.4776,-15.384703 C 866.66283,-14.011857 884.85084,-11.047169 903.05444,-4.6519073 C 938.08958,9.3213646 955.7063,39.896985 974.54917,70.280611 C 999.32779,102.96753 1043.5016,103.88314 1080.6782,111.26605 L 1080.6357,111.4112 C 1043.5945,104.05522 997.05405,104.59104 972.8039,71.413665 C 955.08603,40.65243 937.22448,10.76769 902.06894,-2.2438233 C 883.48921,-7.9609613 865.21322,-10.172832 845.79218,-8.4501033 L 847.4776,-15.384703 z " />
    <path
       style="fill:url(#linearGradient3960);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       id="path3916"
       d="M 467.96534,-66.572663 C 472.20874,-59.426399 471.04523,-49.757409 471.69764,-41.467771 C 473.18706,-24.80449 488.62291,-22.292951 502.31842,-18.383175 C 543.69207,-9.3086117 576.1828,18.417798 610.44459,41.397541 C 636.03915,55.599007 664.3681,62.234458 690.211,76.151111 C 715.53684,89.515651 729.90998,114.18478 749.10738,133.99664 C 775.19655,146.17581 804.61123,149.19497 831.87776,159.18674 C 855.74406,167.64517 873.9944,185.15952 894.6896,198.74911 C 921.63247,205.87023 949.75693,206.60933 977.15019,212.72776 C 1015.2054,222.62687 1044.0023,245.82719 1067.8831,276.00038 C 1070.3514,279.24978 1072.8196,282.49919 1075.2879,285.74859 L 1072.4801,287.8489 C 1070.2405,284.46146 1068.001,281.07401 1065.7615,277.68657 C 1043.0088,246.69348 1015.4645,222.51021 977.01511,213.17947 C 948.47526,207.78797 919.28369,209.90337 891.47746,203.0184 C 871.95517,187.95029 855.77077,168.40593 831.41713,160.24004 C 803.09088,150.17048 772.41296,149.73045 745.6153,137.17135 C 728.05952,115.94246 715.19909,90.789272 689.33279,77.660315 C 663.0982,64.376871 633.5322,59.835495 609.30122,42.893959 C 576.83966,17.322341 543.63589,-9.3749824 501.37859,-15.391792 C 484.89358,-18.11488 467.91385,-20.788718 466.10114,-40.407973 C 465.63448,-45.909066 463.95468,-56.803192 464.32724,-60.097681 L 467.96534,-66.572663 z " />
    <path
       style="fill:url(#linearGradient10529);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 366.3125,-3.5 C 348.29055,-3.734694 329.06663,-2.8280362 313.75,7.65625 C 319.3297,10.753067 325.64491,8.337631 330.71875,5.59375 C 359.83458,-4.6118404 394.70279,-3.8813092 420.1875,14.9375 C 443.17685,30.452936 459.81971,55.183591 464.9375,82.65625 C 468.60243,96.371494 476.81938,111.18961 491.72842,114.73627 C 521.20342,125.80278 550.44443,138.62917 576.0625,156.84375 C 587.13753,164.1711 595.64921,175.08672 607.59375,181.125 C 616.27271,185.35841 626.62837,184.95516 635.15625,180.625 C 675.279,168.15136 718.31073,169.32583 759.77353,173.37403 C 786.0473,176.81635 813.62379,185.16842 832,205.0625 C 846.01821,217.03524 865.34584,216.52501 882.375,220.4375 C 916.72615,229.5506 945.26221,253.41909 966.03125,281.625 C 973.56447,290.07567 985.31292,294.32799 996.59375,292.15625 C 1011.1291,291.70199 1025.5132,295.61726 1037.8438,303.03125 C 1060.7917,311.506 1086.6749,311.38215 1108.3125,323.65625 C 1128.0623,332.40691 1146.8391,343.14726 1165.4688,354.0625 C 1167.575,352.06651 1169.7069,347.03379 1164.7631,346.95732 C 1128.4806,332.57538 1093.6707,313.76435 1055.625,304.375 C 1044.0509,301.09139 1033.7342,294.88979 1023.1875,289.4375 C 1006.6472,284.9728 986.64731,292.11717 972.25,280.34375 C 955.39801,264.55274 939.56793,247.48641 919.80417,235.47658 C 899.38757,222.34887 876.22277,214.5138 852.53125,210.125 C 835.68493,204.82439 824.31848,189.61493 807.3539,184.37581 C 768.44816,168.97323 725.7684,170.6129 684.59447,170.1317 C 662.97315,170.51388 641.58714,174.17859 620.71875,179.28125 C 600.85782,179.05726 588.44215,160.92914 572.21875,152.1875 C 543.83207,133.99931 512.66781,121.17467 483,105.375 C 464.90147,89.123808 466.56985,61.285408 450.875,43.34375 C 431.97367,15.884669 400.22496,-4.1039588 366.3125,-3.5 z "
       id="path3908" />
    <path
       style="fill:url(#linearGradient3928);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       id="path3912"
       d="M 43.5963,253.72059 C 52.387537,250.26724 61.982495,253.24003 70.899518,255.06964 C 101.2484,263.35469 124.88141,284.21065 145.97413,306.57863 C 158.31647,320.03331 166.08184,337.74565 181.49756,347.28103 C 199.66134,347.26097 217.61981,343.21232 235.64385,341.12779 C 249.09412,341.13498 259.97508,337.52007 271.69682,331.63096 C 302.24516,316.1706 336.04764,310.2445 369.99072,310.24023 C 392.75702,310.61464 411.0428,321.77329 429.85372,332.82075 C 457.42037,333.98422 484.37737,336.62118 511.41789,343.02661 C 541.24626,350.72614 567.15284,367.93071 595.49781,379.24554 C 626.47726,386.24952 658.52202,382.5642 689.5768,378.21815 C 740.96952,367.78535 792.62002,358.45882 845.20543,359.6023 C 867.67787,360.91143 886.72786,369.54764 900.99237,386.76256 C 908.45581,392.38587 917.57335,395.00756 925.49492,400.79073 C 938.5446,412.55985 944.87539,429.46905 962.49262,434.67781 C 990.98739,436.4841 1017.787,441.33496 1043.731,453.52678 C 1066.0177,468.50772 1091.0817,469.88892 1117.0703,470.96592 C 1137.7287,470.61323 1157.7947,474.40096 1177.4886,480.21661 L 1175.6349,484.67572 C 1156.7052,477.47387 1137.2254,472.6844 1116.7784,473.00417 C 1089.9646,472.57175 1064.5912,473.4644 1042.3409,456.0443 C 1016.3999,442.838 989.71209,438.96992 960.75692,439.28862 C 942.27925,433.91787 936.80923,416.47932 922.6944,404.64929 C 913.93009,399.07756 902.83018,398.21819 896.22732,390.41361 C 883.68886,372.68555 867.39485,362.57075 845.15462,359.96179 C 792.58542,358.30977 740.9618,368.09362 689.57959,378.36935 C 658.12975,384.13766 625.07552,389.22973 593.27122,383.51129 C 566.18565,369.62185 541.6282,350.3659 511.31871,343.34124 C 482.82192,337.30629 454.93474,338.20562 426.58714,337.50731 C 409.12937,324.97824 392.45528,312.78094 369.80051,311.73358 C 335.82404,311.01597 302.15535,317.4287 273.24835,336.26891 C 261.01411,344.08283 250.1426,345.84357 235.52833,345.41885 C 216.56139,347.29508 197.88008,352.22019 178.8962,352.51838 C 161.65277,344.12973 158.35614,320.52373 144.41153,308.0468 C 123.94502,285.6946 100.37266,265.48212 69.801048,259.34779 C 62.54992,258.54515 54.173284,256.83116 47.502732,260.09531 L 43.5963,253.72059 z " />
    <path
       style="fill:url(#linearGradient10513);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M -22.9375,85.5 C -21.735159,87.825674 -25.152692,92.358837 -21.15625,93.0625 C -9.1314446,88.720997 7.7065177,92.5092 12.3125,105.71875 C 16.888397,114.153 18.409071,124.25608 22.71875,132.53125 C 48.181946,138.49585 74.164598,127.22717 99.75,131.46875 C 122.97186,143.83206 150.60196,139.35291 174.82927,132.76795 C 206.33829,127.17669 242.84853,130.86261 266.37433,154.5372 C 281.28651,167.90917 299.17985,179.12749 319.5,180.71875 C 338.75522,186.90929 348.83069,207.41365 368.38707,213.11458 C 407.80779,229.70612 452.71066,225.30148 492.57279,240.38904 C 503.62583,246.32338 515.6348,250.92954 528.40625,249.78125 C 546.45529,249.89866 564.5181,254.41304 582.46875,252.78125 C 612.0823,247.7172 639.01315,228.98907 669.99687,231.26662 C 682.71909,232.39992 696.8128,236.67861 704.5,247.5 C 708.65944,256.25207 708.12643,266.48084 712.34425,275.33717 C 715.98789,288.097 722.25663,302.47276 736.21875,306.46875 C 760.49235,316.21528 787.87743,313.90987 813.375,314.03125 C 785.51816,312.67479 755.15919,314.21668 730.71875,298.71875 C 718.34125,288.25076 717.1873,270.76091 713.59375,256.0625 C 712.7022,247.49665 708.86369,238.95519 700.46875,235.5625 C 676.78021,223.16382 648.62978,228.51745 624.54618,236.61287 C 602.80231,243.72733 580.26623,251.12901 557.03623,248.13971 C 537.03707,246.39353 516.64067,245.08559 498.03125,237 C 475.87284,228.58469 451.75223,229.18386 428.65625,225.375 C 402.2107,221.50441 374.22983,216.42958 352.9375,199.25 C 343.37812,191.72674 336.64295,180.36231 324.125,177.3125 C 314.4075,173.95733 303.37664,174.95044 294.3125,169.34375 C 273.5138,158.67781 258.29949,137.80732 234.375,133.1875 C 205.31912,125.36895 174.73776,129.41615 145.6875,134.90625 C 127.71566,137.05455 110.11638,131.91796 92.875,127.9375 C 70.942382,127.15378 49.066901,132.00035 27.15625,129.4375 C 20.082209,115.53452 17.945716,97.501355 3.96875,88.28125 C -4.7395865,85.671488 -13.877008,85.384203 -22.9375,85.5 z M 840,315.21875 C 872.24438,316.82881 905.81906,319.65158 934.6875,335.25 C 948.83904,344.3643 951.09668,365.60948 967.90625,371.3125 C 980.85972,375.5844 995.04704,374.91792 1008.5312,377.5 C 1020.495,378.63225 1033.4213,380.06811 1044.9375,378.125 C 1045.4848,374.17375 1040.8478,372.8932 1037.8754,374.15766 C 1015.1936,373.25485 992.59498,370.218 970.3125,366.34375 C 958.89307,362.40727 955.01199,350.18638 948.41101,341.34058 C 936.42496,326.22791 917.26684,318.61478 898.47647,317.46972 C 877.18622,314.6777 855.66177,315.50048 834.25,314.96875 C 836.16667,315.05208 838.08333,315.13542 840,315.21875 z "
       id="path3906" />
    <path
       transform="translate(-411.3422,-288.31)"
       d="M 978.44989 292.62759 A 273.724 77.882797 0 1 1  431.00189,292.62759 A 273.724 77.882797 0 1 1  978.44989 292.62759 z"
       sodipodi:ry="77.882797"
       sodipodi:rx="273.724"
       sodipodi:cy="292.62759"
       sodipodi:cx="704.72589"
       id="path3902"
       style="opacity:1;fill:url(#radialGradient3904);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient3900);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path3898"
       sodipodi:cx="704.72589"
       sodipodi:cy="292.62759"
       sodipodi:rx="273.724"
       sodipodi:ry="77.882797"
       d="M 978.44989 292.62759 A 273.724 77.882797 0 1 1  431.00189,292.62759 A 273.724 77.882797 0 1 1  978.44989 292.62759 z"
       transform="translate(-130.0568,-266.1626)" />
    <path
       style="fill:url(#linearGradient2820);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 51.428571,-22.857143 L 268.57143,822.85714 L 548.57143,828.57143 L 97.142857,-31.428571 L 51.428571,-22.857143 z "
       id="path2788" />
    <path
       id="path2822"
       d="M 85.714284,-20 L 448.57143,828.57143 L 642.85714,837.14286 L 131.42857,-28.571428 L 85.714284,-20 z "
       style="fill:url(#linearGradient2824);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       sodipodi:nodetypes="ccccc" />
    <g
       style="display:inline"
       id="g10637">
      <path
         style="opacity:1;fill:url(#linearGradient9598);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
         d="M 519.74388,344.75731 C 526.2264,368.52653 529.82779,375.00904 538.47115,383.6524 C 547.1145,392.29575 565.84177,413.18386 566.56204,405.26078 C 567.28232,397.33771 553.59701,374.28877 549.99562,359.16289 C 546.39422,344.03703 519.0236,344.03703 519.74388,344.75731 z "
         id="path8354" />
      <path
         transform="matrix(1.799676,0,0,1.799676,1569.983,-200.253)"
         style="opacity:1;fill:url(#linearGradient8405);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
         d="M -637.16182,256.09114 C -623.55409,261.29409 -622.35341,261.29409 -615.54954,258.89273 C -608.74568,256.49136 -580.32954,260.49364 -562.71954,263.69546 C -545.10954,266.89727 -521.49614,277.30318 -514.29204,276.90296 C -507.08795,276.50273 -490.67864,262.895 -488.27727,261.29409 C -485.87591,259.69318 -472.26818,258.09227 -475.06977,262.49477 C -477.87136,266.89727 -482.27386,272.90068 -482.67409,279.30432 C -483.07432,285.70796 -477.47114,291.31114 -467.46545,294.51296 C -457.45977,297.71477 -451.45636,301.71705 -434.64682,306.11955 C -417.83727,310.52205 -406.63091,310.92227 -397.42568,314.92455 C -388.22045,318.92682 -385.01864,320.92796 -376.61386,317.32591 C -368.20909,313.72386 -352.2,304.51864 -350.99932,302.91773 C -349.79864,301.31682 -345.39614,298.91546 -347.39727,302.5175 C -349.39841,306.11955 -365.80773,313.72386 -365.4075,317.72614 C -365.00727,321.72841 -361.40523,325.33046 -364.20682,326.53114 C -367.00841,327.73182 -372.61159,331.73409 -377.01409,330.53341 C -381.41659,329.33273 -381.41659,330.13318 -386.61954,331.33386 C -391.8225,332.53455 -399.82704,331.73409 -413.03454,332.93477 C -426.24204,334.13546 -441.85091,338.53796 -452.25682,338.53796 C -462.66273,338.53796 -496.68204,335.33614 -516.29318,330.53341 C -535.90432,325.73068 -579.12886,307.32023 -587.93386,300.11614 C -596.73886,292.91205 -614.74909,278.10364 -623.15386,272.90068 C -631.55864,267.69773 -647.1675,260.09341 -645.56659,258.09227 C -643.96568,256.09114 -643.16523,256.09114 -640.76386,256.09114 C -638.3625,256.09114 -637.16182,256.49136 -637.16182,256.09114 z "
         id="path8352" />
      <g
         transform="translate(0,-80)"
         id="g9660">
        <path
           id="path9662"
           d="M 420.4375,351.96875 C 440.18809,364.03345 460.17532,375.63023 477.94839,390.54718 C 495.88575,403.57979 511.33993,420.56794 531.66947,429.89692 C 566.70864,447.15761 602.85475,462.40135 640.50564,472.97486 C 675.96946,481.09647 712.2364,485.0288 748.53125,487.28125 C 705.43554,477.05173 660.4053,473.72623 619.16659,456.74109 C 574.4705,439.00707 531.4139,417.02949 490.86382,391.14252 C 467.5075,377.22428 443.98507,363.55303 419.625,351.40625 L 420.4375,351.96875 z "
           style="opacity:0.2;fill:url(#linearGradient9669);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00018001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
        <path
           id="path9671"
           d="M 416.09375,349.78125 C 433.10957,361.63233 452.21905,370.84151 468.38124,384.09578 C 484.98873,396.43755 500.61035,410.32069 517.09375,422.625 C 544.33265,438.56731 574.09981,450.50399 603.53125,461.78125 C 625.28469,470.17795 647.7524,476.41517 670.82773,479.68732 C 698.52132,483.93794 726.42438,487.21798 754.4375,488.25 C 734.43131,482.48722 713.5416,479.8406 693.09534,475.59091 C 668.31433,471.10781 643.39779,465.92889 620.11713,456.29019 C 578.80957,439.81567 538.73872,420.19838 501.07988,396.48962 C 474.45961,380.31572 447.50359,364.51317 419.65625,350.59375 C 418.55536,350.20327 416.79637,349.68725 416.09375,349.78125 z "
           style="opacity:0.2;fill:url(#linearGradient9678);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00018001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
        <path
           id="path9680"
           d="M 543.47947,420.20223 C 581.56946,439.89128 619.7538,457.01226 649.22312,465.41977 C 676.9932,473.3425 762.36636,485.89098 756.06726,489.00564 C 737.33999,489.00564 676.11625,483.2434 640.82255,474.60005 C 605.52886,465.95669 527.73869,432.82384 511.89254,419.85881 C 496.0464,406.89379 463.63382,380.24345 448.50795,370.8798 C 433.38207,361.51618 410.46181,348.587 415.06765,348.82636 C 419.48107,349.05573 423.72264,351.62991 427.54175,353.65262 C 491.04117,387.28369 512.27449,404.07213 543.47947,420.20223 z "
           style="opacity:0.2;fill:url(#linearGradient9701);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00018001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
        <path
           id="path9683"
           d="M 414.5625,348.09375 C 412.00693,350.19289 417.31077,352.09088 418.55097,353.40879 C 436.54271,364.80652 455.34162,374.9279 471.74517,388.5789 C 486.88858,399.95296 501.06911,412.68623 516.28125,423.875 C 544.76883,440.54876 575.75506,452.81904 606.5575,464.4947 C 631.98694,474.43705 658.74717,479.97994 685.75929,483.43858 C 709.23499,486.3585 732.89146,489.47587 756.53125,489.59375 C 758.56842,487.22463 753.65515,486.48171 752.125,485.90625 C 717.26551,477.30949 681.28585,473.39423 646.65625,463.875 C 608.1974,451.95901 571.70922,434.07712 536.0967,415.40541 C 504.30967,397.41378 473.75257,377.30084 441.4281,360.23287 C 432.93528,356.3418 425.25233,350.04235 416,348.15625 C 415.53131,348.12614 415.03447,347.99408 414.5625,348.09375 z "
           style="opacity:0.2;fill:url(#linearGradient9690);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00018001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
        <path
           id="path9692"
           d="M 414.59375,347.34375 C 410.14671,349.68374 416.88401,353.10233 418.8125,354.46875 C 438.42176,366.52727 458.4402,378.00341 476.07339,392.92218 C 490.97221,403.78362 504.12352,417.04797 519.78125,426.90625 C 555.87608,446.35956 594.14634,461.89087 633.28125,474.15625 C 671.31065,483.88257 710.56293,487.91762 749.6875,490.34375 C 752.20254,490.51525 760.03434,491.62331 757.125,487.125 C 743.06189,481.47475 727.48897,480.36159 712.73979,477.00482 C 680.18449,470.84745 647.1948,465.74308 616.65625,452.5 C 573.43201,435.10239 531.72256,413.66323 492.42632,388.58002 C 468.50116,374.49541 444.58273,360.15939 419.53125,348.1875 C 417.92784,347.76214 416.2643,347.25767 414.59375,347.34375 z "
           style="opacity:0.2;fill:url(#linearGradient9699);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00018001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
      </g>
      <path
         id="path9624"
         d="M 412.9545,263.31238 C 416.40218,261.39701 420.616,261.01393 425.59597,263.31238 C 430.57594,265.61083 445.13278,270.20772 451.64505,269.82465 C 458.15731,269.44158 470.03263,264.4616 486.88792,266.76005 C 503.7432,269.0585 509.10625,269.0585 507.19087,272.50617 C 505.2755,275.95384 482.67409,274.42155 479.6095,279.01844 C 476.5449,283.61534 450.11275,275.1877 444.7497,272.50617 C 439.38666,269.82465 413.72065,262.92931 412.9545,263.31238 z "
         style="fill:url(#linearGradient9632);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
      <path
         transform="matrix(1.799676,0,0,1.799676,1569.983,-200.253)"
         style="opacity:1;fill:url(#linearGradient8407);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
         d="M -585.13227,286.90864 C -584.33182,299.71591 -582.33068,306.51977 -574.72636,312.92341 C -567.12204,319.32705 -558.71727,323.72955 -558.71727,320.52773 C -558.71727,317.32591 -564.32045,312.52318 -565.12091,307.72046 C -565.92136,302.91773 -565.92136,300.91659 -565.92136,300.91659"
         id="path8356" />
      <path
         transform="matrix(1.799676,0,0,1.799676,1569.983,-200.253)"
         id="path8385"
         d="M -637.16182,256.09114 C -623.55409,261.29409 -622.35341,261.29409 -615.54954,258.89273 C -608.74568,256.49136 -580.32954,260.49364 -562.71954,263.69546 C -545.10954,266.89727 -521.49614,277.30318 -514.29204,276.90296 C -507.08795,276.50273 -490.67864,262.895 -488.27727,261.29409 C -485.87591,259.69318 -472.26818,258.09227 -475.06977,262.49477 C -477.87136,266.89727 -482.27386,272.90068 -482.67409,279.30432 C -483.07432,285.70796 -477.47114,291.31114 -467.46545,294.51296 C -457.45977,297.71477 -451.45636,301.71705 -434.64682,306.11955 C -417.83727,310.52205 -406.63091,310.92227 -397.42568,314.92455 C -388.22045,318.92682 -385.01864,320.92796 -376.61386,317.32591 C -368.20909,313.72386 -352.2,304.51864 -350.99932,302.91773 C -349.79864,301.31682 -345.39614,298.91546 -347.39727,302.5175 C -349.39841,306.11955 -365.80773,313.72386 -365.4075,317.72614 C -365.00727,321.72841 -361.40523,325.33046 -364.20682,326.53114 C -367.00841,327.73182 -372.61159,331.73409 -377.01409,330.53341 C -381.41659,329.33273 -381.41659,330.13318 -386.61954,331.33386 C -391.8225,332.53455 -399.82704,331.73409 -413.03454,332.93477 C -426.24204,334.13546 -441.85091,338.53796 -452.25682,338.53796 C -462.66273,338.53796 -496.68204,335.33614 -516.29318,330.53341 C -535.90432,325.73068 -579.12886,307.32023 -587.93386,300.11614 C -596.73886,292.91205 -614.74909,278.10364 -623.15386,272.90068 C -631.55864,267.69773 -647.1675,260.09341 -645.56659,258.09227 C -643.96568,256.09114 -643.16523,256.09114 -640.76386,256.09114 C -638.3625,256.09114 -637.16182,256.49136 -637.16182,256.09114 z "
         style="opacity:1;fill:url(#radialGradient9600);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         id="path8411"
         d="M 481.34269,264.53793 C 478.97853,265.12534 477.33749,267.18716 479.65519,269.10043 C 486.83303,276.51652 499.19492,269.62824 506.96769,276.41293 C 514.58511,282.38933 516.15112,293.46466 520.49894,301.06918 C 522.2166,300.64479 523.8471,299.45705 521.87394,297.85043 C 517.4358,288.036 514.33575,273.48365 501.81144,271.41293 C 495.37911,269.89973 486.18441,272.55665 481.84269,266.47543 C 481.5737,265.90326 481.55734,265.00233 481.34269,264.53793 z M 537.96769,266.31918 C 535.36306,270.42197 541.02156,268.43095 542.68644,270.85043 C 546.23893,273.36285 545.85824,278.35877 543.09269,281.25668 C 541.27239,284.24027 539.52099,290.83603 545.37394,290.31918 C 565.01982,294.49353 586.89105,286.51748 605.49894,296.00668 C 610.38216,302.1081 605.83465,310.02635 605.24894,316.75668 C 602.07232,332.46835 601.58807,349.36849 606.21769,364.75668 C 608.22516,370.07316 614.60614,374.35552 619.90519,372.31918 C 621.12018,368.96277 615.63988,371.37245 613.99894,369.31918 C 604.82785,364.16397 605.43663,351.9444 604.87394,342.81918 C 604.63634,327.64898 609.38974,312.76282 609.37394,297.75668 C 607.8669,290.78372 599.29224,292.07598 594.03731,291.01253 C 578.64376,289.13274 562.62946,291.94008 547.56144,288.35043 C 543.33014,285.78445 545.91805,280.65808 547.74894,277.44418 C 549.27597,272.42106 545.81292,266.27719 540.12394,266.72543 C 539.51611,266.67554 538.32583,265.80637 537.96769,266.31918 z M 640.12394,298.28793 C 638.32904,300.2577 637.19847,302.55002 639.71769,304.50668 C 644.82941,311.81264 651.71945,318.81257 651.74894,328.28793 C 654.13851,335.15596 660.85461,339.46396 665.06144,344.85043 C 668.84097,343.75471 665.90247,340.37199 663.81144,339.19418 C 658.08545,334.25129 652.58913,327.9611 652.56144,319.94418 C 650.09296,311.80862 643.38524,305.77936 640.24894,298.00668 L 640.12394,298.28793 z "
         style="opacity:1;fill:url(#linearGradient8607);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         id="path9602"
         d="M 408.23182,264.19574 C 416.39645,264.19574 431.70515,268.95844 440.89036,274.74173 C 450.07558,280.52501 458.24021,282.90636 461.64215,284.60733 C 465.04408,286.3083 466.06466,290.05042 466.06466,290.05042"
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.33714285" />
      <path
         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:white;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.33714288"
         d="M 408.23182,265.21631 C 416.39645,265.21631 431.70515,269.97901 440.89036,275.7623 C 450.07558,281.54558 458.24021,283.92693 461.64215,285.6279 C 465.04408,287.32887 466.06466,291.07099 466.06466,291.07099"
         id="path9604" />
      <path
         id="path9606"
         d="M 458.24021,268.27806 C 471.50775,269.63883 483.41451,269.97902 482.73412,272.70057 C 482.05374,275.42211 476.95084,273.72115 476.95084,273.72115 L 476.95084,273.72115"
         style="fill:url(#linearGradient9622);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient9614);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         transform="matrix(1.799676,0,0,1.799676,1569.983,-200.253)"
         id="path9638"
         d="M -585.13227,286.90864 C -584.33182,299.71591 -582.33068,306.51977 -574.72636,312.92341 C -567.12204,319.32705 -558.71727,323.72955 -558.71727,320.52773 C -558.71727,317.32591 -564.32045,312.52318 -565.12091,307.72046 C -565.92136,302.91773 -565.92136,300.91659 -565.92136,300.91659"
         style="opacity:1;fill:url(#linearGradient9640);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient9648);stroke-width:1.11131115;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         id="path9703"
         d="M 764.61705,404.66694 C 756.95556,386.27935 793.73073,395.47314 811.35216,390.1101 C 828.9736,384.74705 877.241,387.0455 887.20095,380.15016 C 897.16089,373.25481 921.67767,354.86723 914.78232,364.06102 C 907.88698,373.25481 910.18543,376.31941 910.95158,380.15016 C 911.71772,383.9809 907.88698,390.1101 898.69319,390.87625 C 889.49939,391.6424 875.70871,393.1747 869.57951,393.94085 C 863.45032,394.707 812.88446,396.23929 801.39222,401.60234 C 789.89998,406.96538 766.14935,404.66694 764.61705,404.66694 z "
         style="fill:url(#linearGradient9711);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         id="path9713"
         d="M 787.60153,350.27033 C 816.71521,356.39953 814.41676,356.39953 829.73974,359.46412 C 845.06273,362.52872 862.68417,370.95636 870.34566,372.48866 C 878.00715,374.02096 878.7733,377.08556 903.29008,364.82717 C 927.80686,352.56878 948.49289,334.94735 941.59755,342.60884 C 934.70221,350.27033 900.99163,372.48866 892.56399,375.55326 C 884.13635,378.61786 873.41026,380.91631 855.02267,372.48866 C 836.63509,364.06102 819.01365,366.35947 803.69067,365.59332 C 788.36768,364.82717 765.3832,347.20573 771.51239,347.20573 C 777.64159,347.20573 786.83538,350.27033 787.60153,350.27033 z "
         style="fill:url(#linearGradient9721);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         id="path9723"
         d="M 416.6875 256.65625 C 409.89758 256.81115 401.68959 261.33188 405.65625 268.28125 C 423.24213 283.66164 446.85294 291.15204 464.59375 306.625 C 483.50253 320.40685 500.71428 337.37747 520.6875 349.8125 C 524.72812 357.88672 530.59372 364.91821 538.65625 369.90625 C 546.61771 374.67414 555.52239 384.17896 565.59375 381.28125 C 568.50249 378.36481 568.38598 375.13672 567.03125 371.90625 C 606.08865 388.78967 646.54696 402.74131 689.1875 406.75 C 723.71371 410.89274 759.32533 416.60766 793.6875 407.6875 C 819.73059 401.31549 846.55493 401.99373 873.0625 399.9375 C 880.35722 397.51114 887.17407 396.36562 894.53125 398.59375 C 903.5176 397.87806 912.64766 393.59814 919.34375 387.84375 C 923.2503 380.97757 910.87626 372.77231 919.0625 367.8125 C 928.03745 358.45734 944.16296 355.27365 949.21875 342.625 C 949.12554 332.93401 937.45982 338.85148 934.1875 343.6875 C 916.91762 353.78982 899.75416 366.28632 879.96875 370.53125 C 864.04506 369.94939 850.90193 358.39271 834.96875 356.84375 C 800.356 351.33925 766.73706 342.25163 734.6875 328.03125 C 721.54805 324.3032 701.57848 315.93282 705.46875 298.875 C 706.84893 287.82879 716.78518 280.10649 719.3125 269.84375 C 716.77314 260.59101 703.76469 263.55078 696.6875 264.5 C 683.00013 267.48945 674.23219 280.74177 661.875 286.625 C 652.9164 293.23238 641.4342 297.00894 630.78125 292.0625 C 595.24627 280.39483 559.86135 268.64364 522.375 265.09375 C 499.33116 262.71865 474.6468 256.72425 452.21875 264.75 C 441.40824 265.93711 430.0184 257.10702 421 257.25 C 419.75361 256.795 418.2544 256.6205 416.6875 256.65625 z "
         style="opacity:0.5;fill:url(#linearGradient9731);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
    </g>
    <path
       sodipodi:nodetypes="ccccc"
       style="fill:url(#linearGradient2828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M -11.428573,-14.285714 L 62.85714,834.28571 L 194.28571,837.14286 L 14.285713,-22.857143 L -11.428573,-14.285714 z "
       id="path2826" />
    <path
       style="fill:url(#linearGradient2848);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 180,-20 L 748.57143,831.42857 L 1148.5714,822.85714 L 245.71429,-20 L 180,-20 z "
       id="path2830" />
    <path
       id="path2850"
       d="M 248.57143,-22.857142 L 940,820 L 1340,811.42857 L 314.28572,-22.857142 L 248.57143,-22.857142 z "
       style="fill:url(#linearGradient2852);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       sodipodi:nodetypes="ccccc" />
    <g
       id="g8397"
       transform="matrix(1.799676,0,0,1.799676,1569.983,-200.253)" />
    <rect
       ry="1.1700177"
       rx="1.4040213"
       y="-8.5714283"
       x="-14.285714"
       height="825.71429"
       width="1311.4286"
       id="rect2804"
       style="opacity:1;fill:url(#radialGradient2812);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145" />
    <rect
       style="opacity:1;fill:url(#radialGradient2856);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="rect2854"
       width="1311.4286"
       height="825.71429"
       x="-14.285714"
       y="-8.5714283"
       rx="1.4040213"
       ry="1.1700177" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient3892);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path3874"
       sodipodi:cx="704.72589"
       sodipodi:cy="292.62759"
       sodipodi:rx="273.724"
       sodipodi:ry="77.882797"
       d="M 978.44989 292.62759 A 273.724 77.882797 0 1 1  431.00189,292.62759 A 273.724 77.882797 0 1 1  978.44989 292.62759 z"
       transform="translate(223.8185,-196.5974)" />
    <path
       transform="matrix(1,0,0,1.76699,468.809,-355.2554)"
       d="M 978.44989 292.62759 A 273.724 77.882797 0 1 1  431.00189,292.62759 A 273.724 77.882797 0 1 1  978.44989 292.62759 z"
       sodipodi:ry="77.882797"
       sodipodi:rx="273.724"
       sodipodi:cy="292.62759"
       sodipodi:cx="704.72589"
       id="path3894"
       style="opacity:1;fill:url(#radialGradient3896);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc" />
    <rect
       ry="1.1700177"
       rx="1.4040213"
       y="-8.5714283"
       x="-14.285714"
       height="825.71429"
       width="1311.4286"
       id="rect2858"
       style="opacity:1;fill:url(#radialGradient2860);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145" />
    <path
       style="fill:#8cecc8;fill-opacity:0.29142857;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 420.53125,-10.03125 C 423.80723,-3.3493256 427.20801,5.2438211 435.53125,6.59375 C 444.09262,1.8969104 454.65597,3.1315538 463.96875,4.1875 C 474.19929,6.9652836 484.06065,11.190787 494.375,13.34375 C 497.36558,15.774111 491.20971,16.07709 491.3125,18.8125 C 489.81533,23.32721 494.19144,27.259785 498.5625,26.59375 C 509.17075,28.455582 520.1259,27.841788 530.59375,26.15625 C 537.74222,28.060633 546.69472,25.666829 549.4375,18.25 C 551.99875,12.817756 547.85571,6.616997 542.03125,6.03125 C 534.72809,4.3896029 528.23366,0.74712491 523.82414,-5.3008568 C 518.80464,-10.78988 511.14089,-12.486548 504.00022,-11.254783 C 475.68322,-11.598648 447.37737,-12.53364 419.0625,-13 C 419.55208,-12.010417 420.04167,-11.020833 420.53125,-10.03125 z M 792.375,-7.03125 C 778.78227,-5.8288141 768.54788,4.5496802 758.8125,13.125 C 779.94936,10.536091 802.02655,7.8320844 822.59375,14.53125 C 827.3808,14.397799 830.08215,6.7265138 824.9375,4.6875 C 816.08753,-3.1678837 804.19983,-7.3348278 792.375,-7.03125 z M 989,4.15625 C 981.8962,4.2997501 977.02471,15.085244 984.0625,19 C 998.26279,29.417938 1010.3182,43.772234 1027.4688,49.71875 C 1030.0195,50.709879 1029.2873,52.924905 1026.5625,52.34375 C 1019.5958,53.462105 1012.3525,50.754555 1008.25,45.073342 C 1000.0544,39.674361 990.9375,33.231739 980.9375,33.25 C 976.83439,33.855215 978.11256,39.65938 975.125,40.875 C 969.49058,41.021593 966.10114,34.187663 960.15625,34.6875 C 952.06527,34.397339 943.92407,34.175251 935.94215,34.033824 C 925.28561,35.100786 911.65539,35.643525 905.3125,45.65625 C 904.76028,48.009107 903.42617,49.028951 901.09608,47.838033 C 891.10288,47.321467 879.38196,46.193684 871.0625,52.46875 C 869.66204,54.404643 870.17386,57.353636 870.40625,59.15625 C 866.31459,57.228938 858.24083,60.112606 861.125,65.40625 C 864.86322,70.70951 873.51678,64.852761 875.94686,71.860159 C 880.26856,78.243045 888.47087,80.943685 895.8125,81.4375 C 903.37669,80.77821 908.18662,72.83581 915.90625,72.46875 C 919.81231,71.620141 927.40009,72.593382 925.8125,78.25 C 924.07499,82.976499 922.56082,92.134321 929.375,93.375 C 935.14227,94.198715 940.80402,91.761194 946.53125,92.125 C 952.35802,93.716642 958.67654,95.790495 963.125,99.78125 C 962.95332,103.74002 958.0415,101.36205 955.78125,101.1875 C 946.58486,99.955521 935.50015,103.29012 927.84375,97 C 926.59212,91.348172 919.77355,92.836981 915.59375,91.375 C 906.54973,89.54011 896.5688,91.286426 889.875,97.875 C 884.14354,100.38671 877.56166,99.449422 871.875,97.5 C 875.85298,96.44845 882.48799,94.24995 881.9453,89.5117 C 879.27948,84.204692 871.13485,89.611015 869.1875,83.5625 C 865.37922,76.679967 856.5381,80.014465 850.28512,79.900394 C 841.15664,81.030521 830.50185,81.905342 823.78125,88.84375 C 820.22809,93.061739 824.15973,98.461465 828.71875,99.5625 C 838.90648,104.36848 851.64805,101.05071 861.21875,106.8125 C 865.46907,115.24909 876.80528,110.72502 882.96875,115.96875 C 888.72254,124.18091 899.76322,120.80985 908.07694,123.46384 C 912.1597,123.90351 918.22736,125.67677 916.8125,131.0625 C 917.10953,135.24181 922.3288,135.62009 924,138.46875 C 919.3135,140.48649 913.68546,138.43862 908.71875,139.65625 C 904.81313,139.37851 897.16701,136.94324 897.34375,143.1875 C 897.77947,148.25744 903.61457,149.48544 906.59375,152.6875 C 912.86928,157.09062 921.13243,156.68008 927.71875,153.34375 C 933.45655,152.23959 942.75312,152.87419 944.9375,146.21875 C 944.77816,141.09399 938.145,141.38255 935.96875,138.1875 C 940.97689,134.62879 948.15542,139.81847 953.65625,136.53125 C 955.55135,135.09925 957.41977,133.07792 959.84375,135.1875 C 969.92659,140.24341 982.46194,143.85421 993.28125,139.34375 C 997.63806,135.59986 993.22464,129.66328 989.625,127.3125 C 983.34074,118.91843 977.86712,109.12102 968.75,103.53125 C 967.49771,99.666464 973.23807,102.24993 975.375,101.625 C 979.97344,102.04288 983.7468,96.416827 979.6875,93.125 C 973.25783,85.84939 960.94519,90.180262 955.25,82.0625 C 950.47445,78.535603 942.09734,83.40457 939.5,76.625 C 936.68345,72.621491 938.38148,65.561892 944.15625,66.34375 C 964.94608,63.458452 983.05495,76.081039 999.875,86.34375 C 1006.1628,90.258578 1013.7135,91.639372 1020.9062,91.25 C 1028.12,93.285248 1032.8964,100.15532 1040.3509,101.73626 C 1050.3419,106.46449 1063.7146,111.74914 1073.6562,104.28125 C 1076.915,101.70115 1076.3884,96.209003 1076.125,93.5 C 1084.8455,97.130928 1093.0496,106.41212 1103.3125,102.625 C 1109.9678,101.79385 1118.1403,101.06061 1121.7812,94.5 C 1120.2259,91.490075 1124.6451,88.228223 1126.9062,90.90625 C 1161.6766,103.79306 1199.2088,95.51006 1235,93 C 1239.8641,93.563395 1246.6881,93.960269 1248.7188,88.3125 C 1246.9913,82.32695 1239.9859,85.74604 1235.6926,84.232506 C 1208.3918,82.14202 1180.6558,86.069602 1153.5938,81.84375 C 1148.232,77.738094 1142.0535,72.411824 1134.8125,75.0625 C 1127.136,76.136251 1119.6572,73.333804 1113.25,69.59375 C 1104.9627,67.847137 1093.5489,69.002907 1089,60.34375 C 1080.5981,50.47683 1066.1926,50.062147 1056.7812,41.5625 C 1045.9122,35.372937 1032.2977,35.400177 1022.6562,26.75 C 1013.7519,18.803455 1007.3744,4.5890561 993.69288,4.3651439 C 992.13737,4.1835025 990.56696,4.0499639 989,4.15625 z M 621,12.59375 C 617.19629,13.717248 613.09188,19.084357 609.25,15.375 C 601.01781,13.159209 591.90975,24.621538 598.46875,31.28125 C 602.43304,34.343439 609.26781,37.819444 613.21875,32.8125 C 612.41716,30.004465 616.17198,28.78703 617.1875,31.59375 C 623.9292,37.655482 633.50564,32.793153 641.4375,34.71875 C 650.19585,35.034719 660.16633,36.269963 667.53125,30.5 C 668.61797,22.811957 659.82532,19.927553 653.75631,19.70031 C 643.96767,19.346741 634.27798,16.806547 625.53575,12.780191 C 624.03129,12.620967 622.51338,12.496652 621,12.59375 z M 844,47.625 C 834.73792,48.661201 825.71332,52.554844 817.3125,55.53125 C 808.38757,45.94788 792.40623,47.977326 782.46875,54.8125 C 777.25579,58.373559 770.9163,60.892849 766.8125,65.625 C 766.53431,67.706311 763.85044,63.37135 762.40625,66.28125 C 759.45444,69.389747 765.64429,70.659233 766.09375,68.9375 C 766.0593,73.832519 772.34231,75.171812 775.46875,72 C 779.37918,68.444022 783.74825,65.059527 789.375,65.90625 C 796.72196,66.678531 803.6671,63.994701 810.84375,63.75 C 813.35861,65.230948 815.53863,67.800247 819,67.6875 C 825.54918,67.640954 831.49131,72.207891 838.15625,69.75 C 845.81123,68.000357 854.40864,60.304029 851.75,51.9375 C 850.29221,49.149571 847.14065,47.419103 844,47.625 z M 763.78125,49.3125 C 745.85397,50.173586 728.85532,57.207904 711.25,60.15625 C 707.51323,61.789934 708.9836,67.283914 713.03125,66.5625 C 722.61489,67.614521 732.3711,66.962665 742,67.25 C 750.46458,66.870619 758.7002,63.122209 766.78125,62.25 C 771.83111,63.660354 773.40034,55.816567 771.21875,52.53125 C 769.65452,50.094202 766.59494,49.018673 763.78125,49.3125 z M 1061.125,68.5625 C 1066.3342,70.400582 1072.4355,71.11584 1077.0625,73.9375 C 1079.8038,78.578016 1071.6098,79.90497 1069,77.5 C 1065.6567,75.301941 1063.0345,71.619258 1060.8438,68.65625 C 1060.9642,68.720964 1061.0208,68.543563 1061.125,68.5625 z M 609.84375,84.8125 C 605.53453,84.973321 603.23096,89.609823 601.53125,92.34375 C 596.76272,88.637415 586.78128,90.375898 587.28125,97.65625 C 587.43457,101.78515 592.02224,104.63875 593.84375,106.84375 C 591.7893,108.84571 582.23388,109.34263 586.13588,110.99856 C 599.3694,116.10565 612.96896,124.79665 627.75,121.125 C 635.38566,120.36111 643.24535,123.42051 647.34375,130.03125 C 658.47946,137.66974 672.80193,132.69302 685.03741,136.53452 C 699.71434,139.21497 714.89722,140.65906 729.34375,143.53125 C 733.27452,146.47265 738.33553,144.50334 741.875,142.4375 C 754.31133,141.17888 766.39065,152.33165 778.71875,146.1875 C 783.74181,140.09871 776.31681,132.33257 769.875,132.21875 C 760.19238,129.6995 748.71613,138.40892 740.625,130.3125 C 735.63843,126.1793 729.45531,130.43127 723.78125,129.25 C 713.26013,128.41066 701.88456,126.70472 692.3125,123.15625 C 695.81027,120.44365 694.55822,114.5581 690.15625,113.53125 C 676.27284,106.174 659.58947,106.86551 645.15625,101.6875 C 643.83611,98.128139 646.92238,92.765777 642.09375,90.71875 C 632.68351,84.397518 620.68916,85.031038 609.84375,84.8125 z M 541.53125,87.78125 C 535.53132,87.314496 533.33424,97.596134 539.84375,98.40625 C 551.28955,102.82847 562.21357,110.78852 574.875,110.59375 C 579.86863,110.67183 582.52476,104.76027 578.65625,101.375 C 573.42443,96.580085 566.23833,94.807173 560.125,91.40625 C 554.23131,89.058383 547.93941,87.491796 541.53125,87.78125 z M 700.40625,91.65625 C 693.59062,91.710862 691.77772,103.8999 699.3125,104.34375 C 708.90857,107.70298 720.55307,111.71138 729.84375,105.375 C 730.56053,97.499377 721.35726,96.052244 715.8125,94.09375 C 710.85317,92.463382 705.66133,91.394949 700.40625,91.65625 z M 1281.7188,104.84375 C 1267.0931,104.41465 1252.9529,111.1194 1238.9062,111.78125 C 1235.6341,106.19546 1227.6868,104.96694 1222.8125,109.125 C 1214.6889,112.7552 1204.8479,120.96513 1207.9062,130.9375 C 1210.4953,136.17734 1218.84,136.54751 1221.5312,131.34375 C 1229.5731,123.41455 1241.2616,124.14142 1251.6435,122.65362 C 1264.3429,120.32162 1277.8554,118.13786 1289.0312,111.9375 C 1291.6627,107.02712 1287.0922,104.30118 1281.7188,104.84375 z M 812.5625,108.625 C 804.72283,110.52513 800.49471,120.2956 791.8125,119.375 C 787.7765,119.76298 783.44454,126.26031 788.71875,128.09375 C 798.98931,131.97796 810.32902,130.37765 820.90625,132.71875 C 827.66759,132.99843 834.17775,130.04226 839.40625,126.1875 C 845.12104,125.81737 854.91072,123.97493 854.21875,116.4375 C 852.87858,109.33274 843.90662,111.47073 838.875,112.1875 C 829.86576,112.74047 821.22842,110.59502 812.5625,108.625 z M 1221.5625,134.15625 C 1214.3694,135.66293 1210.4429,143.01142 1203.5938,145.4375 C 1192.3064,150.71377 1177.662,146.31275 1167.4375,154.34375 C 1164.5725,157.66627 1168.4133,162.01265 1172.25,161.375 C 1193.41,160.28101 1215.6711,159.01809 1234.4062,148.1875 C 1239.6729,144.30473 1237.0122,135.00169 1230.4062,134.71875 C 1227.5397,133.92482 1224.5086,134.06641 1221.5625,134.15625 z M 1304.6875,139.6875 C 1288.3126,143.00236 1273.6823,151.42616 1258.4375,157.78125 C 1254.3977,158.63063 1250.8452,161.37951 1248.2812,164.21875 C 1240.6369,162.44028 1232.4171,154.21229 1224.5,159.90625 C 1222.7347,161.61911 1223.8143,164.47868 1224.125,166.15625 C 1209.8395,168.81518 1195.8334,177.39383 1181.0061,173.01457 C 1173.8559,171.89287 1163.0109,170.9944 1160.0625,179.4375 C 1159.7245,185.61359 1165.1703,193.47587 1171.7188,192.125 C 1177.1838,193.37049 1177.0071,201.65954 1183.25,201.5625 C 1190.6669,201.98724 1196.9775,196.8582 1204.4245,197.08932 C 1211.1108,196.32179 1218.7813,192.82353 1220.0312,185.59375 C 1224.0458,182.13855 1230.6161,182.36627 1233.4062,177.1875 C 1237.9363,173.7945 1242.7875,178.87549 1246.5625,181.0625 C 1248.5857,182.55313 1250.304,184.0468 1248,186.03125 C 1245.5375,190.31718 1248.9752,196.20658 1254.0914,195.03734 C 1268.3158,195.97847 1282.6153,196.44125 1296.8438,195.3125 C 1298.6675,188.6976 1291.5884,185.31327 1286.4375,184.15625 C 1278.9575,181.36285 1269.4891,178.5754 1264.0312,173.65625 C 1279.6365,173.03612 1294.9375,180.9723 1310.5625,177.21875 C 1312.9894,174.0864 1310.1695,170.58361 1308.5938,168.25 C 1315.56,159.63343 1309.1434,148.28981 1306.5,139.25 L 1305.5279,139.48464 L 1304.6875,139.6875 z M 991.34375,147.4375 C 994.05026,152.06176 986.43068,154.74794 987.71875,159.6875 C 987.70636,162.08254 989.00371,165.74456 985.1875,165.0625 C 975.02213,166.32524 963.95127,163.6332 954.5625,169 C 958.88822,174.62803 966.338,175.3635 971.94506,179.12489 C 982.75672,183.91831 997.26583,182.96699 1005.2188,173.59375 C 1003.8084,180.97504 1011.8851,184.58604 1017.825,185.13025 C 1026.416,186.81449 1034.8915,194.21847 1043.7812,191.46875 C 1047.5501,188.19848 1050.7997,182.66682 1056.5805,183.65029 C 1063.3461,182.80022 1072.0653,180.85312 1073.7812,173.0625 C 1069.4424,167.05636 1061.1929,169.62531 1055.1782,166.76032 C 1035.8268,162.77417 1014.7482,160.50858 999.13289,147.25188 C 996.14471,145.24542 992.74502,144.22455 989.28125,143.28125 C 989.96875,144.66667 990.65625,146.05208 991.34375,147.4375 z M 807.25,148.59375 C 799.80005,149.79086 789.56073,148.88251 785.5625,156.9375 C 789.31276,162.85374 797.19914,161.2901 802.5,164.4375 C 806.83374,166.4947 813.88976,167.09495 815.59375,161.375 C 819.26392,157.48074 818.56955,149.44261 812.3125,148.9375 C 810.65954,148.5485 808.94431,148.43179 807.25,148.59375 z M 1101.375,176.90625 C 1093.4394,177.20468 1090.0969,189.65558 1097.9062,192.9375 C 1105.8208,198.41244 1119.9554,191.82546 1118.7188,181.78125 C 1116.1285,175.22246 1106.7117,177.28862 1101.375,176.90625 z M 397.34375,184.78125 C 392.96705,185.7485 396.61808,191.01799 399.59375,191.46875 C 406.9428,194.89874 417.15258,195.55542 420.90625,203.96875 C 429.08763,210.64437 440.53051,209.95495 450.34375,212.78125 C 454.0325,214.1291 456.38723,209.38069 453.125,207.28125 C 442.44826,194.99379 426.75983,188.62239 410.875,186.53125 C 406.45913,185.37284 401.93138,184.61047 397.34375,184.78125 z M 1067.6875,190 C 1055.3766,190.84713 1049.111,205.18427 1036.625,205.46875 C 1030.3357,207.51513 1021.9328,208.37411 1019.0938,215.1875 C 1015.1073,218.48385 1006.7849,220.933 1007.7188,227.4375 C 1010.3635,232.61799 1017.3144,229.33533 1021.5938,228.71875 C 1028.8606,225.76261 1036.4572,225.89368 1044.0312,224.6875 C 1052.5404,222.51742 1058.5305,215.05909 1067.4062,213.65625 C 1063.436,221.39445 1054.7511,224.56454 1047.1875,226.96875 C 1042.7042,229.83442 1035.1325,233.65963 1036.8438,240.0625 C 1042.3012,247.58481 1052.7266,244.84806 1060.4062,247.65625 C 1075.1361,250.05176 1088.954,240.95924 1103.6562,242.53125 C 1106.4043,242.16272 1107.9645,238.94982 1109.0938,237.4375 C 1113.1808,240.65091 1121.392,236.72241 1118.3125,231.34375 C 1112.7265,220.70917 1100.0194,217.97873 1090.2812,212.875 C 1085.2021,206.71871 1086.5064,195.97434 1078.125,192.34375 C 1074.9749,190.52172 1071.3187,189.75285 1067.6875,190 z "
       id="path2908" />
    <g
       id="g3846"
       transform="translate(3.024571,16.9754)">
      <path
         style="opacity:0.2;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 419.5,-6.375 C 421.22882,-3.9963323 423.2283,0.49181013 426.03125,0.96875 C 431.84272,-4.269848 440.69271,-0.13561456 447.5,-2.65625 C 463.23801,-1.5143351 477.37752,8.7935381 493.4375,7.40625 C 497.34809,7.3874556 497.78174,12.325237 495.03125,14.3125 C 493.02434,16.793469 489.79359,18.871979 487.78125,20.78125 C 496.21754,22.448185 505.77473,22.249489 513.96875,21.96875 C 512.20038,19.954942 508.46023,14.99889 512.3125,13.375 C 518.47423,14.770196 523.29891,24.04183 530.375,20.53125 C 534.89372,19.57653 538.65501,12.08641 532.03125,11.4375 C 521.54325,9.6525564 513.47936,2.0888735 506.40625,-5.4375 C 477.25,-6.0625 448.09375,-6.6875 418.9375,-7.3125 L 419.452,-6.4550071 L 419.5,-6.375 z M 783.96875,-1.75 C 777.55832,-1.3801577 771.88585,2.516958 766.6875,5.90625 C 780.52943,4.3711849 794.92886,3.1961208 808.19447,8.0627883 C 810.23236,8.5888873 814.69344,9.3732659 810.5,7.15625 C 802.6866,2.0026768 793.47115,-1.9186629 783.96875,-1.75 z M 982.125,9.96875 C 979.47963,9.1983977 974.38184,12.276077 978.21875,14.65625 C 993.63921,25.333727 1006.3552,42.801575 1026.0625,45.3125 C 1030.1584,46.789378 1036.1371,42.059015 1038.8438,46.5 C 1038.9848,50.764698 1037.8666,56.423764 1042.875,58.46875 C 1068.1331,69.584404 1095.9887,74.441529 1120.875,86.5 C 1144.3384,93.989645 1169.7461,93.362399 1194.0595,90.291575 C 1198.8028,89.799403 1211.5547,89.020062 1200.1567,89.126593 C 1182.6568,88.221243 1164.9999,90.5658 1147.5938,88.53125 C 1142.1098,88.252779 1138.134,84.596557 1134.6562,80.9375 C 1126.5773,78.91302 1117.3571,82.88001 1109.7188,78.28125 C 1103.1201,73.617592 1095.05,73.594673 1087.375,73.03125 C 1078.5298,71.764997 1076.3583,61.077642 1068.125,58.21875 C 1059.9669,54.499044 1050.8014,52.000493 1044.375,45.34375 C 1034.9969,41.262502 1024.1714,41.086221 1015.7812,34.625 C 1006.0275,29.004216 1000.2607,18.928128 991.90625,11.84375 C 989.03094,10.025391 985.44,9.7422145 982.125,9.96875 z M 613.28125,18.25 C 608.37154,18.153638 608.37379,24.430715 611.4375,27 C 613.8348,30.946482 619.42917,27.667483 623.15338,29.037511 C 633.03199,29.170913 643.26313,30.208247 652.9375,28.1875 C 644.63527,22.712307 634.04181,25.83468 625.1875,22.40625 C 621.41217,20.183862 617.89625,17.583036 613.28125,18.25 z M 598.15625,20.5 C 595.20775,20.732721 589.07598,27.185875 594.86472,28.004306 C 598.05671,30.498685 600.29352,29.509932 600.09375,25.78125 C 599.95304,24.311781 600.40456,20.314493 598.15625,20.5 z M 973.4375,38.40625 C 974.69623,43.999002 981.19506,47.340446 981.78125,52.90625 C 979.33491,56.317721 974.69234,51.537296 971.84375,50.8125 C 963.69001,47.310626 956.28781,41.353728 947.65625,39.375 C 942.6284,41.343029 937.04146,40.734591 932.03125,39 C 922.31425,41.320959 910.45645,39.184506 902.59375,46.25 C 900.3529,47.661699 900.20061,52.543756 903.875,50.96875 C 912.89381,49.425611 921.1866,42.955697 930.5,43.09375 C 933.52129,46.046833 927.38506,47.990341 925.46875,49.3125 C 912.38369,55.573818 899.42279,62.592882 885.65372,67.096848 C 885.14783,66.033785 883.25581,67.562167 880.90625,68.375 C 878.46036,69.550152 874.71567,70.183424 872.75,70.6875 C 878.50732,73.628909 885.45899,78.897402 891.5625,73.78125 C 894.90179,71.385092 896.98146,67.473916 901.59375,67.78125 C 908.39297,67.00538 919.24011,65.039192 922.25,73.21875 C 924.10435,77.952134 918.93878,83.132599 921.375,87.5 C 924.75287,88.968654 930.98961,87.010816 932.90625,86.53125 C 925.92824,83.37791 923.11173,74.528829 923.25,67.40625 C 925.76956,60.368306 935.08211,61.228709 941.1875,60.71875 C 959.98186,59.479845 975.80692,71.571203 991.48342,80.169205 C 997.88097,85.22765 1005.9998,86.515872 1013.8438,85 C 1017.9946,85.126354 1019.0813,90.256616 1023,91.34375 C 1032.9353,96.756904 1043.6368,102.47092 1055.125,102.59375 C 1057.4135,102.45766 1062.7785,100.51163 1061.4688,97.59375 C 1059.1436,97.184282 1053.8799,95.90454 1056.5938,92.5625 C 1062.3204,86.93273 1070.8519,88.804708 1077.1562,92.25 C 1081.4206,93.669992 1083.4411,98.965347 1088.5625,97.84375 C 1094.6948,97.447404 1102.424,96.277832 1106.9688,93.28125 C 1098.2467,87.88756 1087.5723,87.315165 1078.2812,83.71875 C 1074.8799,81.067266 1081.8107,78.664928 1079.375,76.28125 C 1073.1252,79.601588 1065.9152,87.533985 1058.2812,82.96875 C 1049.3324,77.383982 1045.5402,65.971936 1036.625,60.65625 C 1022.5829,58.51103 1007.9097,57.925158 994.125,54.71875 C 991.2964,51.393404 997.3084,51.933073 998.3125,51.46875 C 991.35298,45.661841 982.15147,40.572929 973.4375,38.40625 z M 886.28125,52.9375 C 879.8126,53.776494 872.06501,52.502607 866.5,55.59375 C 869.95385,59.317571 875.75258,59.276941 880.15625,61.40625 C 876.3571,62.609092 868.06293,63.601004 876.3125,63.3125 C 880.0181,64.288834 884.32113,60.814108 887.4375,63.28125 C 889.87111,61.491745 895.28623,57.415398 895.9375,53.75 C 892.91719,52.64639 889.46398,52.978642 886.28125,52.9375 z M 834.09375,53.28125 C 825.70777,54.644986 816.59492,57.874654 809.625,61.6875 C 816.99308,62.143757 824.90054,68.336592 831.625,62.34375 C 834.35817,60.775828 840.13428,57.182671 837,53.5625 C 836.08767,53.258281 835.07846,53.143001 834.09375,53.28125 z M 789.34375,54.375 C 783.7047,54.188723 779.27572,58.567152 774.65625,60.78125 C 783.8185,60.705486 793.1471,60.008706 801.75,57.03125 C 797.82696,55.364513 793.60322,54.281371 789.34375,54.375 z M 750.21875,54.9375 C 740.1819,55.840215 730.76667,60.09808 720.71875,61.625 C 730.52865,62.020058 740.31724,62.098095 749.4375,57.96875 C 751.4804,57.390411 756.48571,55.647219 756.5,55.25 C 754.45572,54.772088 752.30375,54.841949 750.21875,54.9375 z M 850.4375,84.75 C 850.36133,82.967874 850.48578,83.175168 850.4375,84.75 z M 851.21875,84.78125 C 851.21641,83.005251 851.33288,83.201609 851.21875,84.78125 z M 853.34375,84.96875 C 853.34444,83.143656 853.63143,82.791988 853.34375,84.96875 z M 853.8125,85.0625 C 854.12923,83.248092 854.11511,83.577632 853.8125,85.0625 z M 854.375,85.1875 C 854.30854,84.622066 855.19352,82.007709 854.375,85.1875 z M 854.75,85.3125 C 855.19102,83.565345 855.25946,83.829755 854.75,85.3125 z M 855.125,85.4375 C 854.73929,85.307637 856.67928,82.078822 855.125,85.4375 z M 855.5625,85.125 C 857.01248,83.804691 857.35751,85.94796 856.65625,85.875 C 853.91316,86.878947 856.41703,82.799466 855.5625,85.125 z M 848.09375,84.78125 C 838.06659,85.765434 826.74933,86.183046 818.4375,92.28125 C 824.28599,97.624671 832.97598,95.964637 840.125,97.9375 C 845.60913,98.708439 851.90593,99.578422 857.03125,98.90625 C 854.48311,97.3742 847.48166,100.008 848.5,95.5 C 854.09429,92.133117 861.37268,92.085213 867.3125,89.6875 C 869.54838,93.267955 860.1566,87.487643 858.47638,87.987171 C 855.0155,86.918531 851.55463,85.84989 848.09375,84.78125 z M 868.03125,90.90625 L 868,90.875 L 868.03125,90.90625 z M 939.65625,85.8125 C 935.43078,86.419418 940.5381,86.879858 942.09375,87.75 C 946.32608,90.221246 944.27397,87.634527 942.03125,86.15625 C 941.34451,85.702064 940.44905,85.680805 939.65625,85.8125 z M 857.875,91.3125 C 858.4595,89.58188 858.40125,89.884022 857.875,91.3125 z M 604.28125,90.21875 C 602.98872,90.428026 597.92912,90.079287 600.53125,92.28125 C 603.58437,94.92615 604.2977,100.15884 609.26359,99.624612 C 614.50003,100.14956 621.82201,99.414563 624.25,105.4375 C 626.45328,112.8654 636.37199,110.59154 642.25,111.03125 C 651.75388,110.39883 661.00367,112.81884 670.09375,115.28125 C 661.93162,111.94455 653.18682,111.07092 644.5,110.1875 C 636.69205,108.2956 628.79852,105.22898 622.0625,101.25 C 621.36828,97.733951 627.25966,99.514077 629.1875,97.1875 C 633.19804,95.517107 627.20455,93.564874 625.65625,93.09375 C 618.86114,90.986437 611.5296,90.050125 604.28125,90.21875 z M 953.59375,92.6875 C 957.24652,94.190641 962.59657,96.435175 965.71875,96.09375 C 961.60039,94.183216 957.3816,92.913396 952.84375,92.375 L 953.59375,92.6875 z M 535.25,93.28125 C 530.27287,93.174394 536.50768,95.003906 537.98365,95.795467 C 542.55651,98.263858 549.43109,99.04177 552.78125,102.46875 C 555.32901,105.10331 560.83449,104.09076 564.3403,104.95805 C 565.55585,104.43543 560.01767,101.8672 558.3125,100.875 C 551.05093,97.444354 543.37277,93.440231 535.25,93.28125 z M 584.84375,95.9375 C 581.37613,97.196797 586.76824,100.92563 588.28125,101.875 C 592.86182,104.80043 598.21519,106.53593 603.59375,107.625 C 597.18221,104.22527 592.33268,96.869471 584.84375,95.9375 z M 896.625,96.125 C 888.74005,96.121426 884.74031,105.46009 876.5625,104.59375 C 871.04527,104.68525 862.24641,104.18831 858.75,105.875 C 864.56094,109.61394 873.61636,105.51714 877.875,111.90625 C 880.74788,118.13929 888.58166,115.06219 893.82809,116.9263 C 901.48452,118.7388 909.45699,120.14738 916.6875,122.9375 C 919.18733,126.14651 912.80865,127.62539 913.375,130.40625 C 921.53645,130.67341 929.80524,130.30187 937.8125,132.25 C 942.31621,133.28842 944.11845,128.68601 947.3125,126.9375 C 951.46143,127.49766 954.27947,131.95012 958.59375,132.75 C 965.45228,135.12667 973.60935,136.78083 980.53125,135.15625 C 977.94784,131.71034 972.23,131.22582 970.3125,127.75 C 969.65469,123.72589 976.06776,128.92482 971.5625,124.0625 C 966.37015,118.39722 962.94794,109.35145 954.25,108.3125 C 943.45222,105.14378 931.86546,107.29228 920.9375,105.28125 C 915.73108,104.53128 915.09565,96.994946 909.40625,98 C 905.16241,97.144479 900.98378,95.855775 896.625,96.125 z M 694.375,97.28125 C 692.86535,97.052296 688.14998,98.458872 692.0625,99.25 C 698.56631,101.99691 708.12085,103.71389 713.9375,102.8125 C 707.79461,100.18894 701.14138,97.407625 694.375,97.28125 z M 600.59375,100.875 C 600.7267,100.88949 600.38145,100.79678 600.59375,100.875 z M 600.625,100.875 C 602.17867,102.26367 604.35628,101.46874 600.625,100.875 z M 594.3125,110.46875 C 590.37772,110.36305 592.23019,111.36762 594.84375,112.5625 C 607.00433,120.18419 623.17221,111.65801 635.375,119.0625 C 639.76875,122.88232 643.05766,129.22686 649.875,128.65625 C 671.60166,128.65865 692.84161,134.49519 714.25,136.84375 C 718.37858,135.36367 722.05082,137.91874 725.46875,139.65625 C 728.45722,138.96291 731.51054,135.5925 727.5625,133.9375 C 714.34787,136.52094 700.69914,132.71413 687.59375,130.65625 C 678.94789,128.85814 670.84958,124.80481 661.75,126.21875 C 655.46008,126.85828 649.01349,125.57464 644.21875,121.46875 C 635.83085,116.30676 626.28827,115.51683 616.89771,113.78857 C 609.45915,112.03716 602.00361,110.07063 594.3125,110.46875 z M 1269.875,110.53125 C 1257.1237,110.79687 1245.1638,115.4072 1232.8438,117.71875 C 1228.2818,118.49612 1224.599,115.42874 1222.375,111.96875 C 1214.8945,113.63069 1206.773,118.46993 1203.6875,125.8125 C 1202.8881,127.70413 1203.7054,130.55126 1206.1875,128.53125 C 1213.4182,125.1256 1219.6365,117.80039 1228.5938,118.9375 C 1242.8564,118.36571 1256.8642,113.8371 1270.6562,110.46875 L 1269.875,110.53125 z M 804.0625,114.0625 C 799.57918,115.35964 797.96215,120.94677 793.125,122 C 790.18276,123.42688 783.62017,124.65966 791.0914,124.79861 C 800.89244,125.44481 811.37808,128.78084 820.9375,125.75 C 824.66911,122.35538 828.90657,119.08565 834.375,119.84375 C 836.29098,119.56633 839.44955,119.22755 839.90625,116.9375 C 829.12753,117.25311 817.8776,119.38323 807.75,114.59375 C 806.5137,114.23944 805.34697,113.9104 804.0625,114.0625 z M 753.96875,137.25 C 752.15246,137.43449 743.32293,138.72046 748.34375,139.5625 C 753.98173,140.72244 760.41132,144.12357 766,142 C 765.08743,138.39676 759.2375,137.83651 756.09375,137.28125 C 755.38542,137.26713 754.67708,137.1679 753.96875,137.25 z M 1216.1562,139.59375 C 1206.3528,140.40903 1201.6922,151.29692 1191.7812,151.96875 C 1184.8149,153.42043 1177.7667,154.13697 1170.7812,155.28125 C 1182.0949,154.69612 1193.3826,154.25596 1204.152,150.54826 C 1210.3538,148.10605 1218.6658,147.74985 1222.9688,142.34375 C 1222.4609,139.82949 1218.1883,139.70663 1216.1562,139.59375 z M 907.46875,144.625 C 904.15829,144.68303 900.8644,145.04109 897.5625,145.25 C 901.39547,149.33064 906.97548,152.3132 912.375,149.5625 C 917.45666,147.99501 922.751,147.26702 927.9375,146.09375 C 921.28755,144.53521 914.31218,144.5541 907.46875,144.625 z M 1291.0625,146.6875 C 1279.161,150.24397 1267.2009,154.16462 1257.2188,161.625 C 1253.118,164.09358 1246.8961,161.92833 1244.7812,167.375 C 1239.4068,172.80776 1231.5957,166.70477 1226.0312,164.8125 C 1224.5335,164.08416 1218.0057,161.98146 1221.875,164.875 C 1224.693,167.66174 1226.953,170.50857 1231,171.15625 C 1236.9751,174.14575 1244.368,177.41131 1247.0312,183.90625 C 1247.9442,186.41498 1243.6282,188.36311 1244.3438,189.625 C 1255.447,190.91876 1266.923,189.64502 1278.0625,190.4375 C 1272.0116,186.96914 1264.9538,186.16118 1258.8438,183.21875 C 1254.9593,180.33324 1249.1962,174.99871 1251.8438,169.71875 C 1256.5598,166.03135 1263.5339,169.39787 1268.9062,169.40625 C 1277.2083,170.51629 1287.8525,172.77826 1294.7188,172.96875 C 1289.9254,170.24703 1283.7638,171.44209 1279.1562,168.8125 C 1277.8967,164.94995 1284.0261,165.37524 1286.3438,164.78125 C 1289.4384,163.40033 1294.8144,166.14269 1296.75,162.9375 C 1297.9803,157.14276 1295.5793,151.35398 1293.875,145.875 C 1292.9375,146.14583 1292,146.41667 1291.0625,146.6875 z M 988.90625,153.3125 C 984.25621,155.16619 981.91162,162.45143 986.6875,165.375 C 999.33212,170.85595 1014.3161,166.05861 1027.125,170.84375 C 1030.1178,173.88089 1024.4769,175.82366 1022.0938,175.9375 C 1016.2673,177.14013 1010.3333,177.75754 1004.375,178.1875 C 1013.488,180.89325 1022.6449,183.92243 1031.3438,187.34375 C 1033.8311,184.84908 1035.5936,180.68007 1039.7188,179.90625 C 1045.6841,178.40982 1051.9146,177.8118 1057.4062,175 C 1040.8716,171.44718 1024.1409,167.84925 1007.6562,164 C 1000.263,162.51964 995.3142,156.04824 988.90625,153.3125 z M 798.1875,154.0625 C 794.55205,154.27791 789.29626,155.02084 786.875,156.09375 C 791.11368,157.38012 795.88322,160.71496 800.21875,159.75 C 801.45889,158.52878 805.92044,154.65364 801.65625,154.21875 C 800.50717,154.07144 799.34589,153.96971 798.1875,154.0625 z M 984.40625,169.5 C 976.59718,170.12756 967.79467,171.35823 960.625,171.375 C 968.27847,177.25253 980.21463,178.16517 988.34375,173.15625 C 991.45972,170.11442 986.80365,169.07551 984.40625,169.5 z M 1216.4688,171.75 C 1204.1488,172.49702 1193.447,181.39748 1180.625,179.28125 C 1172.7955,179.43241 1163.8013,176.0031 1156.5312,179.53125 C 1155.6432,182.27867 1158.8364,184.89356 1160.3438,186.6875 C 1167.0321,184.55152 1170.6567,191.81971 1173.8125,196.0625 C 1178.3143,197.00682 1182.5926,192.75387 1187.2188,192.59375 C 1193.1584,191.32014 1201.7,192.24991 1205.125,186.21875 C 1202.2072,186.73576 1200.6936,183.12618 1203.875,182.25 C 1209.1544,179.40696 1216.3105,178.38067 1220.1562,173.5625 C 1219.4994,171.46065 1218.8206,171.51379 1216.4688,171.75 z M 1096.3438,182.40625 C 1094.1136,182.41455 1087.6137,183.03196 1090.2188,186.59375 C 1092.5363,189.98005 1097.238,190.52275 1100.125,187.5625 C 1101.6099,186.67283 1107.3881,183.09475 1102.6562,182.90625 C 1100.6047,182.51442 1098.4787,182.29745 1096.3438,182.40625 z M 412.34375,194.78125 C 415.08195,196.6208 413.68637,201.00181 417.78125,201.4375 C 423.19203,203.71242 428.9326,204.80878 434.6875,205.96875 C 428.62814,199.94923 420.36927,195.99245 412.34375,194.78125 z M 1058.9688,195.625 C 1048.7335,196.19225 1044.4085,208.32401 1034.25,209.4375 C 1027.9604,211.26835 1020.3093,211.67326 1016.1562,217.21875 C 1013.1901,219.67712 1009.9919,221.92942 1006.9062,224.28125 C 1015.0571,221.33618 1023.617,220.88253 1031.9688,219.5 C 1042.2153,216.97269 1050.049,208.38497 1060.0625,205.4375 C 1065.7224,205.37435 1063.9686,212.76666 1062.5625,216 C 1059.1494,227.52421 1045.0622,228.99064 1036.2812,234.9375 C 1034.8612,235.78823 1030.215,238.50048 1034.5312,238.9375 C 1041.3681,240.12363 1048.3778,241.64032 1055.0312,242.9375 C 1067.6613,241.83566 1079.9119,236.61253 1092.8438,237.125 C 1089.3245,233.93505 1082.5795,232.83559 1081.1875,227.90625 C 1083.3154,224.24466 1088.7282,228.19387 1091.8565,228.49905 C 1095.4094,229.46014 1101.1259,232.2244 1103.5938,232.375 C 1097.4443,225.52875 1089.0406,221.45456 1080.3438,219.375 C 1070.6364,214.87946 1075.033,199.33104 1064.1875,196.28125 C 1062.4887,195.69528 1060.76,195.43057 1058.9688,195.625 z "
         id="path3848" />
      <path
         style="opacity:0.2;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 417.71875,-7.9375 C 420.10161,-4.5654354 421.8367,0.51767772 426.03125,1.84375 C 431.56903,-3.5117235 440.40073,0.63122462 447.1875,-1.875 C 457.72785,-1.5347597 467.36478,3.9810692 477.5625,6.34375 C 482.89035,8.281612 488.58562,7.9597649 494.09375,8.3125 C 497.41218,8.9389897 495.94397,12.946302 494.03125,14.34375 C 492.0774,16.898933 488.10694,18.743791 486.5,21 C 495.24919,23.751223 505.05178,22.59213 514.21875,22.84375 C 517.30468,23.099543 513.02723,20.503834 512.75,19.15625 C 511.43702,17.868375 510.28428,13.107495 513.5,14.4375 C 518.69932,17.202117 524.06479,24.52297 530.625,21.25 C 533.70889,19.974538 538.93004,15.45199 535.375,12.125 C 530.17581,9.5197204 523.77233,9.0438329 519.09375,5.15625 C 514.15518,2.1060086 510.7837,-3.4389022 505.93767,-6.203549 C 476.56294,-6.7297028 446.9371,-7.6716605 417.71875,-7.9375 z M 783.90625,-2.5 C 776.42217,-1.8882023 769.89534,2.7036271 764.0625,6.9375 C 778.27555,5.5671816 793.11507,3.4489804 806.83182,8.5448323 C 808.96313,8.7898793 812.28352,10.11762 814.03125,9.15625 C 805.94084,2.0910908 794.73784,-2.5244814 783.90625,-2.5 z M 982.0625,9.21875 C 979.47079,8.7482798 974.23304,11.041525 976.6875,14.15625 C 983.31483,19.131193 989.76677,24.948004 996.0809,30.411901 C 1006.5806,39.115561 1019.9186,48.796548 1034.3125,45.4375 C 1037.176,44.348773 1039.3084,47.200907 1038.1562,49.875 C 1036.7027,55.521515 1041.6324,59.684433 1046.5625,61 C 1070.8547,70.528077 1097.0366,75.987418 1120.5938,87.1875 C 1137.889,92.732689 1156.487,93.891853 1174.5901,92.894581 C 1189.616,91.40167 1205.8325,89.965308 1220.1562,88.8125 C 1198.1002,87.925777 1176.0227,88.550987 1153.9688,88.46875 C 1147.2617,88.222693 1139.8278,86.901566 1135.9062,80.875 C 1130.0386,77.509843 1122.7587,81.29172 1116.375,79.625 C 1108.7595,78.37231 1102.6121,72.123486 1094.5,72.78125 C 1088.3363,73.277873 1081.6786,71.582052 1078.4517,65.965926 C 1070.8484,54.475444 1054.7817,55.097257 1045.6875,45.375 C 1038.029,40.591322 1028.0645,41.395839 1020.3125,36.4375 C 1009.3632,31.038573 1002.0998,21.002165 993.90625,12.375 C 990.69906,9.5288746 986.21044,8.8933478 982.0625,9.21875 z M 613.25,17.5 C 609.07814,17.30481 607.04298,22.328402 609.5625,25.5625 C 610.94483,27.978773 612.84745,30.601042 616.03125,29.5625 C 628.42908,29.584529 641.24993,31.394478 653.40625,28.8125 C 655.32349,27.630416 650.98721,26.416587 650.09375,25.96875 C 642.50314,22.513618 633.7661,24.616845 626,21.96875 C 621.94563,19.745399 618.20442,16.763246 613.25,17.5 z M 598.15625,19.75 C 594.97388,20.517044 590.7305,23.953734 591.96875,27.4375 C 594.07481,28.861921 597.48104,29.968247 599.625,30.34375 C 600.92916,27.320865 602.01831,22.044668 599,19.78125 C 598.71965,19.757177 598.43665,19.671494 598.15625,19.75 z M 972.96875,37.65625 C 972.04354,40.265743 975.5243,43.1974 976.59375,45.46875 C 977.68615,47.954512 981.77888,50.177753 980.84375,53.15625 C 976.85182,53.971421 973.23078,49.949619 969.52695,48.73883 C 962.21166,45.612871 955.68394,40.353742 947.9375,38.625 C 944.10493,39.647646 939.94302,40.5931 935.875,39.25 C 929.04626,37.044198 921.85989,40.202216 914.8916,40.535011 C 909.29148,41.071322 901.5129,43.206647 900.1875,49.53125 C 900.1502,53.447226 905.31766,51.412637 907.46875,50.84375 C 915.07118,48.797557 922.17268,43.979124 930.125,43.75 C 931.96693,45.874246 927.15458,47.161461 925.84158,48.234139 C 913.1115,54.672488 900.11902,60.9931 886.80953,66.102385 C 886.68498,64.465505 891.47482,61.544005 893.27023,59.24101 C 894.3905,57.610076 897.49552,55.461625 896.65625,53.34375 C 889.20656,50.748518 880.73476,52.866978 872.9375,53.0625 C 870.78904,53.601053 866.03962,53.057052 865.78125,55.90625 C 868.65075,59.401274 873.61783,59.694012 877.59375,61.28125 C 872.91543,62.550401 868.06715,63.106885 863.25,63.5625 C 870.85389,64.26016 878.73979,64.308326 886.125,63.15625 C 888.00319,65.176773 883.22128,66.318202 882,67.125 C 878.41427,68.784784 874.31816,69.770859 870.5625,70 C 875.11564,73.008773 880.46846,76.318539 886.09375,76.78125 C 890.76732,76.373345 894.43063,72.512067 897.5,69.34375 C 904.50025,68.2467 912.92757,65.984061 919.3125,70.0625 C 924.26328,74.098342 920.30393,80.275938 919.96875,85.3125 C 919.46429,89.999783 925.65008,88.849148 928.53125,88.28125 C 933.73396,86.776247 939.29254,86.543427 944.10204,89.39259 C 951.75787,92.02949 959.29306,97.717907 967.65625,96.71875 C 965.3582,94.286103 960.34892,93.294116 956.75,92.25 C 952.43683,91.5431 947.3611,91.879395 944.72741,87.527588 C 942.72208,84.354721 938.92297,84.823994 935.9375,86.03125 C 929.03346,86.516952 925.90932,78.508298 924.5,72.96875 C 922.68835,69.01708 924.31349,63.964443 928.875,63 C 940.18126,60.228447 952.61551,60.66193 963.21875,65.78125 C 975.86633,70.887886 987.11626,79.265262 999.25,85.125 C 1004.3401,87.54732 1009.974,85.434887 1015.2812,85.96875 C 1017.8719,87.672756 1019.5106,90.713946 1022.5938,91.96875 C 1032.295,97.388103 1042.8218,102.68064 1054.0308,103.41165 C 1057.3538,103.39108 1063.0158,101.56108 1062.4375,97.53125 C 1061.0652,95.512497 1055.6666,96.9447 1056.8438,93.40625 C 1060.7315,89.627617 1066.6795,88.550916 1071.6875,90.78125 C 1076.3921,92.121704 1080.4056,95.005031 1084.0625,98 C 1092.1402,99.560301 1100.7141,97.228435 1108,93.90625 C 1108.3031,91.991492 1104.3188,91.351321 1103.0625,90.375 C 1095.383,87.085409 1086.8338,85.874696 1078.9375,83.28125 C 1076.0724,80.797296 1082.8599,78.6058 1080.1562,75.78125 C 1077.2585,75.029126 1074.7439,78.916417 1072.2188,80.03125 C 1067.9045,83.377689 1061.1844,85.436628 1056.8438,81.03125 C 1049.3019,75.129487 1045.4541,65.46704 1037.5,60.15625 C 1023.3076,57.708106 1008.5842,57.192197 994.5625,54.125 C 993.23701,51.187829 998.78394,53.625079 999.40625,51.75 C 993.59106,45.408732 984.85744,41.969483 977,38.5 C 975.71594,38.059141 974.35986,37.379595 972.96875,37.65625 z M 834,52.53125 C 824.79433,54.250219 815.13011,57.216215 807.28125,62.3125 C 815.01327,61.637229 822.86454,68.877748 830.125,64.0625 C 833.74529,61.778181 840.42397,58.862247 838.1875,53.53125 C 837.21566,52.401375 835.36569,52.439448 834,52.53125 z M 789.28125,53.625 C 781.59866,53.854392 775.89468,60.180535 769.03125,63.03125 C 766.64294,64.834331 762.53051,66.120558 761.78125,69.09375 C 766.97837,65.905756 771.53886,60.284306 778.34375,61.40625 C 786.79406,61.195668 795.99854,60.437949 803.46875,56.9375 C 799.00676,54.921581 794.21847,53.533368 789.28125,53.625 z M 750.15625,54.1875 C 739.0783,55.455306 728.44787,59.785176 717.4214,61.58747 C 709.05605,62.893213 720.37269,62.211077 723.3125,62.375 C 731.24841,62.532013 739.22401,62.920618 746.65625,59.6875 C 750.29724,58.033092 755.58289,57.537883 758.40625,55.15625 C 755.99801,53.814671 752.8248,54.167132 750.15625,54.1875 z M 850.4375,84 L 850.40625,84 L 850.43747,83.25065 L 850.4375,83.25 L 850.4375,84 z M 851.25,84.03125 C 850.70541,84.073025 851.85474,82.032819 851.25,84.03125 z M 853.40625,84.21875 C 852.75897,84.343284 854.13831,82.228272 853.40625,84.21875 z M 854.53125,84.4375 L 854.46875,84.4375 L 854.68712,83.719995 L 854.6875,83.71875 L 854.53125,84.4375 z M 854.96875,84.59375 C 854.42317,84.637089 856.06129,82.684662 854.96875,84.59375 z M 848.0625,84.03125 C 837.88764,84.895051 826.96531,85.659147 818.21875,91.34375 C 816.3904,93.539899 821.19719,94.7532 822.4375,95.59375 C 826.77494,97.735903 831.97517,96.696588 836.64574,98.156394 C 844.11506,99.074391 852.03158,101.02846 859.4375,99.125 C 856.44215,96.879391 852.02803,98.383496 849.0625,96.84375 C 849.06391,94.161738 853.92695,94.653145 855.8125,93.59375 C 859.69436,92.827381 864.22165,91.030212 867.78125,90.65625 C 866.49343,90.751743 861.32509,88.424837 858.81678,87.750648 C 855.23202,86.510849 851.64726,85.271049 848.0625,84.03125 z M 868.03125,90.90625 L 868,90.875 L 868.03125,90.90625 z M 855.375,84.75 C 854.76807,84.524213 856.54539,83.134725 855.375,84.75 z M 855.65625,84.875 C 855.08189,84.691562 857.05495,83.367776 855.65625,84.875 z M 855.78125,84.96875 C 856.68562,84.335158 855.47051,84.937726 855.78125,84.96875 z M 856.03125,85.21875 C 856.62019,84.830619 858.775,86.042004 856.03125,85.21875 z M 856.71875,85.6875 C 855.52509,86.317082 855.95443,84.515809 856.71875,85.6875 z M 856.65625,85.875 L 855.94788,85.62861 L 855.9375,85.625 L 855.96875,85.59375 L 856.65625,85.875 z M 604.21875,89.46875 C 602.70032,89.71652 597.18365,89.359686 599.40625,92.09375 C 601.23652,94.452406 603.56111,96.555776 604.5,99.46875 C 609.64123,101.35789 615.702,99.713214 620.59375,102.25 C 624.2667,104.4777 624.04604,110.54359 629.0625,111.03125 C 639.9179,112.90731 651.29042,110.29543 661.8912,113.9948 C 667.54076,115.48215 673.20598,116.85223 678.90625,117.90625 C 668.81525,113.60884 658.13644,110.11322 647.03125,109.875 C 638.52714,108.49339 630.28688,104.76408 622.75,100.9375 C 622.81283,98.764406 626.90511,100.02295 628.4375,98.46875 C 630.10143,97.980085 632.99383,95.784017 630.40625,94.4375 C 622.52804,90.230302 613.03828,89.483102 604.21875,89.46875 z M 858.125,90.59375 C 857.5769,90.632345 859.29188,88.772861 858.125,90.59375 z M 535.15625,92.53125 C 533.69138,92.621429 529.38848,92.948517 532.75,94.25 C 538.86012,97.541061 546.3776,99.248673 552.03125,102.53125 C 552.87931,105.3265 557.43815,104.44065 559.6875,105.25 C 561.8515,105.28047 565.5303,106.34554 566.90625,105.5625 C 558.81367,99.119073 548.72534,95.162399 538.75,92.75 C 537.56938,92.593179 536.34568,92.355012 535.15625,92.53125 z M 584.75,95.1875 C 581.15823,95.726254 583.75307,100.1208 585.875,101.0625 C 591.70015,105.48325 598.96179,107.82985 606.125,108.6875 C 600.09929,104.59961 594.79052,99.31383 588.25,95.96875 C 587.11525,95.537312 585.99548,95.023441 584.75,95.1875 z M 896.53125,95.375 C 888.86683,95.192991 885.05821,104.09879 877.3125,103.8125 C 870.64198,103.98621 862.2345,103.37061 856.65625,105.40625 C 861.52642,109.40112 868.41563,107.96879 874.125,109.59375 C 877.96167,111.33658 878.77749,117.23135 883.90625,116.65625 C 894.88059,116.84336 905.60934,120.59655 915.96875,123.28125 C 918.1416,126.25675 911.25499,127.70419 912.65625,130.84375 C 918.70384,132.27368 925.447,130.447 931.67832,131.96072 C 936.45178,133.31264 943.05483,134.11177 945.875,128.8125 C 948.66676,125.46084 951.56733,131.06038 954.375,131.65625 C 962.57274,135.60715 972.42846,137.79959 981.375,135.75 C 981.37736,133.51416 977.73658,132.26325 976.0625,131 C 974.55186,129.42938 970.54641,129.51835 971.0625,126.71875 C 972.36511,126.99218 976.26262,129.21066 974.28125,126.53125 C 970.14007,121.28663 966.39923,115.5009 961.8125,110.78125 C 950.42802,104.02512 936.40159,106.06029 923.6875,105.15625 C 918.92329,104.97713 916.23896,100.93362 913.34375,97.84375 C 907.76291,97.104342 902.28511,95.161362 896.53125,95.375 z M 694.3125,96.53125 C 693.02014,96.662304 688.99842,96.842068 689.71875,98.875 C 697.63441,102.87045 707.20349,104.57029 716.125,103.4375 C 710.53308,99.748537 703.26719,97.704023 696.53125,96.59375 C 695.79399,96.537303 695.05225,96.45321 694.3125,96.53125 z M 596.9375,99.5 C 598.71706,100.18699 601.52421,103.29213 603.3125,102.25 C 603.66333,99.246488 598.49171,100.16556 596.46875,99.1875 L 596.9375,99.5 z M 594.25,109.71875 C 592.75939,109.89594 587.00194,110.18055 590.65625,111.25 C 596.29379,114.71958 602.47217,117.1537 609.25,116.6875 C 618.45487,117.32551 629.96174,114.24627 637.125,121.625 C 640.26642,126.2711 645.19239,130.03218 651.125,129.46875 C 672.18547,129.68047 692.80345,134.98081 713.59375,137.625 C 717.59386,136.54409 721.41968,137.72656 724.5625,140.21875 C 727.2326,141.09104 728.92278,137.7919 731.0625,136.84375 C 729.87546,134.42195 727.70964,132.01953 724.78125,133.59375 C 714.80562,135.19858 704.50868,132.48319 694.5625,131.25 C 686.79807,130.2879 679.36559,127.37524 671.85078,125.67877 C 663.27904,124.41289 653.03507,127.88152 646,121.65625 C 638.04159,116.70337 628.73991,114.56518 619.6104,113.6241 C 611.25606,111.7473 602.91396,109.29261 594.25,109.71875 z M 1271.2812,109.6875 C 1258.8689,110.15105 1246.9463,113.44437 1235.0625,116.6875 C 1230.4606,117.89091 1225.4043,116.22639 1223.3438,111.78125 C 1220.7586,110.01559 1217.3658,113.01607 1214.8438,113.90625 C 1209.5484,117.08796 1202.0458,121.6392 1202.875,128.84375 C 1203.9379,131.55857 1207.9662,128.244 1209.625,127.53125 C 1215.304,124.13219 1220.5537,119.03217 1227.6562,119.71875 C 1241.1791,119.48988 1254.1953,115.17993 1267.3225,112.20041 C 1269.6785,111.55161 1273.5408,110.50022 1275.0312,109.75 C 1273.7926,109.61919 1272.5272,109.65872 1271.2812,109.6875 z M 804.0625,113.3125 C 799.39479,114.31486 797.64959,120.18043 792.8125,121.3125 C 789.84082,122.71916 786.11576,123.70269 783.375,124.59375 C 795.33869,125.60355 807.58645,128.89088 819.53125,127.15625 C 823.98053,125.61973 826.69688,120.17393 832.09375,120.65625 C 835.03368,120.6377 840.51504,120.44108 840.59375,116.5625 C 832.63982,115.25471 823.66822,118.55439 815.53125,116.15625 C 811.64642,115.50775 808.04808,113.21174 804.0625,113.3125 z M 753.9375,136.5 C 750.37007,136.66267 747.00288,138.18969 743.46875,138.84375 C 750.82881,140.66618 758.39467,144.51978 766.0625,142.96875 C 768.59164,140.85499 763.91649,138.36949 762.09375,137.84375 C 759.48958,136.89971 756.71248,136.37112 753.9375,136.5 z M 735.03125,137.78125 C 736.8587,138.22364 735.06306,137.62269 735.03125,137.78125 z M 1216.125,138.84375 C 1206.2734,139.48356 1201.4709,150.55237 1191.625,151.21875 C 1182.3757,153.46012 1171.1649,153.48402 1162.8125,156.5 C 1172.3981,155.65871 1182.1013,155.78309 1191.6119,154.36025 C 1201.7993,151.88891 1212.6997,149.91156 1221.9375,144.75 C 1224.6632,143.48704 1223.8584,139.98487 1221,139.625 C 1219.4573,139.10046 1217.7712,138.73788 1216.125,138.84375 z M 907.46875,143.875 C 903.49009,143.94765 899.53418,144.42512 895.5625,144.625 C 899.82566,148.17066 904.89617,153.30686 910.9375,150.75 C 917.46011,148.59882 924.40659,147.92423 930.875,146.09375 C 923.36475,143.80633 915.30579,143.78515 907.46875,143.875 z M 1293.9062,145.09375 C 1281.3182,148.88319 1268.1386,152.5291 1257.5938,160.59375 C 1253.5299,163.49928 1246.7037,161.04181 1244.4688,166.5625 C 1240.7456,171.27254 1233.9969,167.44583 1229.7188,165.59375 C 1226.5479,164.34763 1222.3866,161.8825 1219.1875,162.875 C 1220.7338,165.80839 1224.388,167.22811 1225.8125,170.1875 C 1233.4729,172.53123 1241.4605,176.46136 1246.0625,183.15625 C 1247.5652,186.1401 1242.9967,187.91422 1242.875,189.96875 C 1255.8195,192.37304 1269.2292,189.65916 1282.25,191.71875 C 1275.5275,187.98791 1267.9898,185.4599 1260.6562,183.375 C 1256.4105,180.85624 1251.4198,176.491 1251.9688,171.0625 C 1253.9677,167.14564 1259.6457,169.50274 1263.0312,169.34375 C 1274.5913,170.42473 1286.0089,173.85958 1297.625,173.75 C 1292.4985,169.96179 1285.6608,170.4016 1279.9062,168.53125 C 1278.6687,165.9861 1283.5569,166.19005 1284.9375,165.71875 C 1288.7907,164.58875 1293.4309,166.12391 1296.9062,164.1875 C 1299.473,158.49536 1296.3803,151.95337 1294.8125,146.34375 C 1294.4037,146.17359 1294.7273,144.44879 1293.9062,145.09375 z M 988.90625,152.1875 C 985.83856,154.49541 982.2502,157.54606 983.46875,161.875 C 984.88654,168.29914 993.26507,168.02235 998.40625,168.71875 C 1007.7916,169.72432 1017.8944,168.21038 1026.8125,171.53125 C 1028.5565,174.17993 1023.5717,174.81488 1021.9375,175.1875 C 1015.3187,176.73698 1008.3711,176.90553 1001.625,177.8125 C 1010.9546,181.65201 1021.1723,183.51414 1030.2812,187.96875 C 1033.9146,188.83536 1033.9147,183.1537 1036.9062,182.09375 C 1043.3281,178.5697 1051.2299,179.36196 1057.6562,175.71875 C 1059.9149,174.70717 1059.9515,174.1113 1057.1875,174.21875 C 1041.2045,170.76323 1025.1337,167.13021 1009.1875,163.6875 C 1001.0697,162.16698 995.87581,155.8008 988.90625,152.1875 z M 798.125,153.3125 C 793.1554,153.62275 787.83546,154.62746 783.4375,156.1875 C 789.30003,156.71453 794.57252,161.40374 800.3125,160.75 C 801.51568,159.05332 805.8344,156.40329 803.65625,154.15625 C 801.97072,153.27687 799.99272,153.22295 798.125,153.3125 z M 984.34375,168.75 C 975.49849,169.44948 966.68778,170.89031 957.78125,170.5 C 963.50534,174.9168 970.32606,177.67592 977.71875,177 C 982.06184,176.59702 988.77555,176.27042 990.09375,171.25 C 989.96859,168.41155 986.33923,168.76534 984.34375,168.75 z M 1216.4062,171 C 1204.6668,171.55026 1194.6712,179.91295 1182.5938,178.625 C 1174.0998,178.67968 1165.1432,175.70323 1156.9062,178.3125 C 1153.523,180.27235 1157.3669,184.50865 1158.9688,186.40625 C 1160.5114,188.44562 1163.793,186.02796 1165.9062,187.9375 C 1170.0589,189.63902 1170.4868,195.34258 1174.375,197.09375 C 1180.1624,196.48812 1185.5226,192.6041 1191.6527,192.70843 C 1196.6188,192.14304 1203.6837,191.48981 1205.875,186.25 C 1205.7172,184.49926 1201.4453,186.05017 1203.0312,183.65625 C 1208.6553,180.09915 1216.6396,179.32269 1220.9062,173.90625 C 1220.4112,172.24705 1220.2427,170.19366 1217.8125,170.96875 C 1217.3437,170.97915 1216.8741,170.94792 1216.4062,171 z M 1096.3125,181.65625 C 1093.7586,181.81897 1088.0476,182.06687 1088.9375,185.875 C 1090.5854,189.55627 1096.0735,192.03964 1099.3438,188.90625 C 1101.3,187.38397 1105.5713,185.88358 1105.3125,183.0625 C 1102.7711,181.6338 1099.2642,181.68628 1096.3125,181.65625 z M 408.25,193 C 411.36119,194.23818 413.80927,196.80579 414.21875,200.0625 C 420.6617,204.81354 429.35961,205.38022 436.9375,207.125 C 430.15777,199.73065 420.94626,195.26684 411.11625,193.6347 C 410.26356,193.43872 408.60466,193.02977 408.25,193 z M 1058.9062,194.875 C 1049.0384,195.20167 1044.8238,206.42737 1035.5625,208.3125 C 1029.7016,209.92309 1023.0146,210.73023 1018.0625,214.125 C 1014.1169,218.84494 1008.2788,221.81189 1003.7188,225.78125 C 1012,223.7568 1020.3018,221.14985 1028.9375,220.9375 C 1040.251,219.12904 1048.8402,210.58331 1059.125,206.34375 C 1062.7439,204.99914 1064.1434,209.49599 1062.9062,212.125 C 1062.0991,219.34459 1056.7004,224.68505 1050.1729,227.27291 C 1044.0849,230.64341 1036.3448,232.36639 1031.8125,237.8125 C 1032.3201,240.23103 1036.5095,239.82956 1038.4904,240.52567 C 1044.2101,240.82459 1049.5283,243.04162 1055.0625,243.6875 C 1067.7076,242.67276 1079.7301,237.33129 1092.6228,237.91123 C 1096.6653,237.9488 1091.6723,235.5326 1090.625,234.8125 C 1087.8783,232.6315 1083.1828,231.52077 1081.9375,228.03125 C 1083.812,225.62126 1087.8539,228.60489 1090.3054,228.79545 C 1095.3486,230.10299 1100.3772,232.83424 1105.3125,233.71875 C 1100.3688,226.76316 1092.4378,221.90532 1084.2188,219.78125 C 1076.6943,219.04445 1074.0012,210.72107 1072.5,204.40625 C 1071.2561,198.08468 1065.0896,194.37703 1058.9062,194.875 z "
         id="path3853" />
      <path
         style="opacity:0.2;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 416.34996,-8.8872663 C 416.34996,-8.8872663 423.94445,5.891194 427.1819,1.9433455 C 430.41931,-2.0044998 440.12599,0.99146385 446.60082,-0.98245959 C 453.07567,-2.956383 477.88961,9.8598423 489.76022,8.8728838 C 501.63079,7.8859221 491.90069,15.755655 486.50502,19.703496 C 481.1093,23.651341 501.59961,23.655896 511.31185,23.655899 C 521.02413,23.655899 514.59262,22.699461 512.43433,16.777691 C 510.27604,10.855923 518.86807,20.706704 525.34286,22.680631 C 531.81773,24.654554 544.80299,12.809032 531.85325,9.8481522 C 518.90354,6.8872686 514.54427,-0.028004077 506.9903,-6.9367296 L 416.34996,-8.8872663 z M 783.85026,-3.2409758 C 781.72796,-3.1296531 779.72222,-2.7492796 777.90111,-2.0090579 C 768.18887,1.9387874 761.68117,7.8976154 761.68117,7.8976154 C 782.18504,5.9236887 791.92925,4.9367319 801.64149,7.8976154 C 811.35392,10.858496 819.98409,11.817516 811.35104,5.8957488 C 804.33653,1.0843078 793.04634,-3.7233735 783.85026,-3.2409758 z M 983.03442,8.4109146 C 981.69822,8.4552505 980.21942,8.6261438 978.60071,8.8728838 C 978.60071,8.8728838 971.04669,11.842887 978.60071,16.777691 C 986.15474,21.712497 988.32517,25.643488 1001.2748,35.513109 C 1014.2245,45.382721 1025.0253,48.317646 1033.6583,46.343721 C 1042.2915,44.369797 1032.5459,53.254435 1041.1789,59.176199 C 1049.8122,65.097979 1100.5476,77.972064 1115.6556,85.867754 C 1130.7635,93.763445 1164.2002,94.708194 1173.9124,93.721231 C 1183.6247,92.734268 1225.7376,88.793559 1233.2917,88.793559 C 1240.8457,88.793559 1200.8938,86.831328 1164.2029,87.818291 C 1127.5121,88.805254 1145.856,76.964289 1126.4315,78.938216 C 1107.007,80.912143 1110.2478,72.008678 1092.9815,72.008678 C 1075.7153,72.008678 1084.3695,62.144218 1062.7868,54.248527 C 1041.2039,46.352839 1053.083,44.388623 1033.6583,40.440781 C 1014.2338,36.492935 1003.4025,21.712501 999.0859,16.777691 C 995.30898,12.459734 992.38837,8.10056 983.03442,8.4109146 z M 614.46786,16.675031 C 607.03032,16.64973 604.69054,23.183228 612.78414,30.585437 C 614.94242,29.598476 630.03415,31.572401 647.30043,30.585437 C 664.5667,29.598476 648.35184,22.680626 635.40213,22.680631 C 622.45243,22.680631 624.61632,17.764656 615.98321,16.777691 C 615.44364,16.716006 614.96369,16.676718 614.46786,16.675031 z M 598.80925,18.984877 C 594.86706,18.580791 587.8587,26.177852 592.24273,28.583571 L 599.81948,31.560706 C 599.81948,31.560706 603.04411,26.651854 600.88584,20.730094 C 600.48117,19.619763 599.71898,19.078128 598.80925,18.984877 z M 973.83008,36.847687 C 969.1532,36.469867 973.87947,43.275723 978.60071,49.320856 C 983.99635,56.229583 976.44034,51.290221 964.5697,45.368452 C 952.69906,39.446685 949.46721,36.516317 945.15078,38.490244 C 940.83417,40.464166 932.18603,37.463641 932.18603,37.463646 C 932.18603,37.463646 916.03021,39.453817 910.6344,40.440781 C 905.23877,41.427742 897.64433,46.387924 899.80255,51.322722 C 901.96076,56.257539 920.29779,45.380146 928.93084,44.393184 C 937.56407,43.406224 887.96028,65.130469 887.96028,65.130469 C 887.96028,65.130469 896.59064,58.196381 897.66983,54.248527 C 898.74903,50.300684 884.73346,51.311036 872.863,52.297991 C 860.99236,53.284954 863.12508,58.217192 874.99572,61.178066 C 874.99572,61.178066 865.27629,63.128603 856.64306,63.128603 C 848.01002,63.128603 876.08479,66.129128 883.63882,64.155201 C 891.19285,62.181274 878.21535,69.082872 871.74052,69.082872 C 865.26569,69.082872 875.01853,74.026806 882.57237,76.987679 C 890.1264,79.948569 897.66983,70.058141 897.66983,70.058141 C 897.66983,70.058141 914.90486,66.098609 919.22147,71.033409 C 923.53808,75.96821 919.22147,78.959027 919.22147,85.867754 C 919.22147,92.776481 931.11187,87.818291 936.50768,87.818291 C 941.90331,87.818291 959.14839,98.660598 966.70242,97.673634 C 974.25644,96.686687 958.07997,90.795426 951.60496,90.795426 C 945.13013,90.795426 945.12797,81.880266 937.57394,84.841156 C 930.01992,87.802046 925.74461,76.966868 924.66541,70.058141 C 923.58639,63.149414 932.18819,62.153334 946.21705,62.153334 C 960.2459,62.153334 982.8938,76.95716 994.76444,83.865888 C 1006.6349,90.774615 1014.2139,83.870437 1016.3721,87.818291 C 1018.5305,91.766128 1035.8061,100.66701 1048.7558,103.6279 C 1061.7054,106.58878 1067.0727,96.710061 1060.5979,95.723098 C 1054.123,94.736134 1058.4702,92.769353 1062.7868,90.795426 C 1067.1034,88.821516 1078.9683,93.725797 1082.2057,97.673634 C 1085.4431,101.62149 1102.6832,97.708703 1108.0788,94.747829 C 1113.4746,91.786939 1092.9842,85.839814 1083.272,83.865888 C 1073.5597,81.891961 1083.2977,80.895898 1081.1393,75.961081 C 1078.981,71.026281 1071.4198,82.890619 1062.7868,82.890619 C 1054.1536,82.890619 1043.3323,60.163163 1036.8575,59.176199 C 1030.3826,58.189252 985.08273,53.273259 996.95319,53.273259 C 1008.8238,53.273259 985.04501,40.424524 976.41179,37.463646 C 975.33277,37.093535 974.49836,36.901661 973.83008,36.847687 z M 834.8109,51.733362 C 833.71913,51.746847 832.38867,51.927873 830.76997,52.297991 C 817.82031,55.258881 800.54182,63.128603 808.09585,63.128603 C 815.64988,63.128603 822.11896,68.079648 827.51477,66.105737 C 832.9104,64.131811 838.29059,59.176199 838.29059,59.176199 C 838.29059,59.176199 842.45347,51.638915 834.8109,51.733362 z M 790.4729,52.86262 C 787.24177,52.78744 783.93287,53.424571 781.10009,55.275126 C 773.54624,60.209926 757.36468,67.097251 761.68117,70.058141 C 773.55181,62.16245 770.32158,62.153334 780.03382,62.153334 C 789.74607,62.153334 808.09082,58.224321 803.77421,56.250394 C 801.07648,55.016686 795.85811,52.987914 790.4729,52.86262 z M 751.35442,53.375919 C 748.1112,53.471105 744.17639,54.041417 740.12961,55.275126 C 727.17989,59.222963 705.55721,63.128603 705.55719,63.128603 C 705.55719,63.128603 717.46264,63.128603 735.80805,63.128603 C 739.04549,63.128603 747.6602,60.186536 756.29333,57.225662 C 762.22858,55.190058 758.4895,53.166526 751.35442,53.375919 z M 849.57143,83.249929 C 841.65713,83.25957 829.26333,85.350891 823.19313,87.818291 C 813.48088,91.766128 815.66981,93.725797 825.38206,97.673634 C 827.54027,96.686687 841.57344,100.65077 853.44408,100.65077 C 865.31454,100.65077 859.88838,96.698366 851.25515,96.698366 C 842.62211,96.698366 872.81469,90.795426 867.41888,90.795426 C 862.02325,90.795426 854.48485,90.802555 856.64306,85.867754 C 857.45251,84.0172 854.32016,83.244147 849.57143,83.249929 z M 605.37576,88.690899 C 604.55929,88.707769 603.81659,88.731881 603.07467,88.793559 C 592.10261,89.705803 602.30453,93.987013 603.91654,100.08614 C 607.435,100.87685 611.37435,101.62604 614.91685,101.62604 C 617.07512,101.62604 621.40168,101.65853 623.55995,107.58031 C 625.71822,113.50207 635.4427,112.50796 646.23407,112.50798 C 657.02549,112.50798 662.3872,115.45001 677.49517,118.41092 C 692.60317,121.37179 661.32149,109.53084 652.68833,109.53084 C 644.0552,109.53084 636.5146,106.54914 627.8815,102.60131 C 619.24837,98.653453 624.6618,102.60845 631.1367,97.673634 C 637.20686,93.047257 617.62282,88.43788 605.37576,88.690899 z M 603.91654,100.08614 C 598.20853,98.803369 593.77033,97.45023 594.71219,98.905552 C 599.64635,102.16897 604.14103,105.37672 604.14103,101.62604 C 604.14103,101.1031 604.04854,100.58561 603.91654,100.08614 z M 594.71219,98.905552 C 590.55765,96.157768 586.12218,93.394379 583.65575,94.747829 C 578.26005,97.708703 587.93612,105.59469 600.88584,108.55558 C 613.83555,111.51647 604.11831,106.57253 596.56428,100.65077 C 595.51296,99.8266 594.95833,99.285886 594.71219,98.905552 z M 536.06256,91.719364 C 535.71683,91.716588 535.35583,91.739847 535.05233,91.770694 C 525.34004,92.757658 530.76845,94.705616 551.27218,102.60131 C 551.27218,104.57523 553.43262,105.56675 565.30319,106.55371 C 576.80278,107.50983 546.78017,91.80527 536.06256,91.719364 z M 897.10859,94.59384 C 893.66249,94.709492 890.13143,95.739343 886.89402,98.700233 C 878.26079,106.59592 873.92227,100.65534 855.5768,104.60317 C 854.4976,105.59012 859.89556,109.53084 869.60781,109.53084 C 879.32005,109.53084 874.99284,117.43565 884.70509,117.43565 C 894.41751,117.43565 908.43775,122.35163 913.83356,123.33859 C 919.22919,124.32555 911.70085,126.32029 911.70085,130.26813 C 911.70085,134.21598 921.4253,130.28436 934.37496,133.24526 C 947.32462,136.20614 945.15581,125.34502 949.47224,129.29286 C 953.78886,133.24071 965.65105,138.13332 978.60071,137.14634 C 991.55037,136.15937 965.65878,125.30541 973.21281,128.26626 C 980.76683,131.22715 969.96533,120.40365 964.5697,112.50798 C 959.17389,104.61229 938.66877,104.60319 926.79813,104.60317 C 914.92766,104.60317 917.09648,96.698366 911.70085,96.698366 C 908.32855,96.698366 902.8521,94.401085 897.10859,94.59384 z M 694.27626,95.774428 C 688.5096,96.005749 686.67004,99.170316 691.52618,100.65077 C 691.52618,100.65077 700.19703,104.60319 712.06758,104.60317 C 723.93815,104.60317 712.02708,99.65924 701.23564,96.698366 C 698.53779,95.958148 696.19848,95.697326 694.27626,95.774428 z M 596.8449,108.91489 C 593.27024,108.86863 589.82247,109.2724 586.85482,110.50611 C 597.64619,114.45397 595.48731,117.43565 610.5953,117.43565 C 625.70333,117.43565 632.19526,116.42986 637.59097,123.33859 C 642.9867,130.24732 646.23125,130.26813 655.94353,130.26813 C 665.65583,130.26813 705.5494,137.18597 710.9451,138.17294 C 716.3408,139.1599 717.44769,136.17562 722.8434,140.12347 C 727.10267,143.23983 728.67128,138.3687 732.32836,137.14634 C 732.02107,136.85761 731.73375,136.54794 731.4865,136.17107 C 728.24907,131.23627 728.2391,132.2583 722.8434,133.24526 C 717.44768,134.23221 687.20745,130.26356 677.49517,126.31573 C 667.7829,122.36787 654.84163,127.29814 648.36678,122.36332 C 641.8919,117.42854 628.95566,113.48325 623.55995,113.48325 C 619.51318,113.48325 607.56889,109.05367 596.8449,108.91489 z M 732.32836,137.14634 C 734.1905,138.89594 737.09047,139.09635 740.41023,138.63491 C 738.71894,138.08256 736.85298,137.4649 735.80805,137.14634 C 734.44434,136.73061 733.30411,136.82021 732.32836,137.14634 z M 740.41023,138.63491 C 749.19888,141.50514 764.35411,146.41133 767.06908,143.10061 C 770.30649,139.15275 758.45942,134.19716 750.90542,136.17107 C 747.42417,137.08075 743.71612,138.1754 740.41023,138.63491 z M 1272.5785,108.91489 C 1265.8549,109.00163 1252.2781,110.75742 1240.8123,114.45852 C 1222.4668,120.3803 1226.789,109.51917 1221.3934,110.50611 C 1215.9975,111.49308 1201.9744,119.39529 1201.9744,127.29099 C 1201.9744,135.18669 1210.6274,127.29816 1219.2606,122.36332 C 1221.4189,120.38941 1227.8526,120.41279 1232.1692,120.41279 C 1236.4858,120.41279 1267.8307,113.467 1275.3847,110.50611 C 1278.2175,109.39578 1276.6126,108.86283 1272.5785,108.91489 z M 803.94267,112.55931 C 802.12784,112.77329 800.40982,113.86961 798.3863,116.46038 C 792.99067,123.36913 774.65579,124.35349 783.28902,125.34046 C 791.92206,126.32742 810.25137,129.25323 817.80522,128.26626 C 825.35925,127.27933 824.26945,121.38805 832.90268,121.38805 C 841.53573,121.38805 842.63773,116.42075 840.47934,115.43378 C 826.45048,115.43378 824.30573,117.40771 815.67251,115.43378 C 810.27687,114.20008 806.96726,112.20269 803.94267,112.55931 z M 1216.735,138.07028 C 1209.7795,138.03051 1203.7776,144.32715 1198.7192,148.02828 C 1193.3234,151.97612 1167.466,152.9722 1162.0701,155.93309 C 1156.6745,158.89398 1173.9401,155.93309 1185.8107,155.93309 C 1190.1273,155.93309 1206.2803,151.9761 1217.0717,148.02828 C 1227.8632,144.08043 1225.6922,139.1599 1218.1382,138.17294 C 1217.666,138.11126 1217.1987,138.07292 1216.735,138.07028 z M 892.28192,143.10061 C 891.64938,143.67907 892.21996,143.87246 893.40441,143.92189 C 893.01953,143.63242 892.69769,143.40478 892.28192,143.10061 z M 893.40441,143.92189 C 903.00997,151.14644 903.42897,153.85223 912.76711,151.00541 C 922.47936,148.04454 937.60735,147.02507 930.05332,145.05114 C 922.49929,143.07722 915.99968,143.10061 908.44565,143.10061 C 903.10534,143.10061 896.26143,144.0411 893.40441,143.92189 z M 1294.8036,144.07588 C 1294.8036,144.07588 1268.8642,150.9749 1260.2312,157.88362 C 1251.598,164.79235 1248.3841,158.8797 1244.0675,165.78843 C 1239.7509,172.69716 1227.8809,161.83603 1220.3269,161.83603 C 1213.4812,161.83603 1227.0374,169.93084 1224.8168,170.7161 C 1229.034,171.5802 1235.8116,174.61912 1240.8123,178.62091 C 1249.4453,185.52964 1244.093,185.555 1241.9348,189.50285 C 1239.7764,193.45069 1272.1266,190.45473 1281.8389,192.42866 C 1291.5513,194.40258 1269.9612,184.53556 1263.4864,183.54858 C 1257.0116,182.56162 1248.3685,170.7278 1254.8433,169.74083 C 1261.3181,168.75387 1288.316,174.66851 1295.8699,174.66851 C 1303.4239,174.66851 1293.684,169.75254 1283.9716,168.76556 C 1274.2593,167.7786 1286.1704,165.78843 1294.8036,165.78843 C 1303.4367,165.78843 1294.8036,144.07588 1294.8036,144.07588 z M 988.31009,151.00541 C 989.38928,152.97932 980.76396,153.92866 982.92218,162.81129 C 985.08057,171.69395 1005.5857,168.74217 1020.6938,170.7161 C 1035.8016,172.69003 1018.5027,175.68341 1004.4738,176.67037 C 990.44495,177.65734 1017.4357,182.56617 1027.1479,187.50099 C 1036.8604,192.43579 1030.4182,182.54536 1043.3679,180.57145 C 1056.3175,178.59752 1063.8482,173.69322 1059.5316,173.69324 C 1055.215,173.69324 1037.9422,168.761 1017.4386,164.81316 C 996.93487,160.86531 1000.1807,156.92719 988.31009,151.00541 z M 799.67724,152.54531 C 791.5036,152.35642 776.50097,156.90837 782.16654,156.90835 C 788.64137,156.90835 790.80677,160.84906 800.51901,161.83603 C 800.51901,160.84906 809.18277,154.92988 802.70794,152.95595 C 801.8985,152.70921 800.8448,152.5723 799.67724,152.54531 z M 984.32537,167.99562 C 979.08778,168.18839 971.20491,169.74083 962.43699,169.74083 C 965.6744,169.74083 942.97191,169.74083 951.60496,169.74083 C 960.23818,169.74083 960.26315,176.6587 973.21281,177.64564 C 986.16246,178.63261 992.6012,173.68869 990.4428,169.74083 C 989.63354,168.2604 987.46796,167.87996 984.32537,167.99562 z M 1216.3422,170.25413 C 1212.1373,170.4469 1207.2609,171.58425 1199.8417,174.66851 C 1187.9711,179.60331 1181.4869,177.65734 1167.4581,176.67037 C 1153.4292,175.68341 1151.2482,179.59358 1159.8814,188.47625 C 1162.0396,187.48929 1166.3406,186.53482 1170.6572,194.43052 C 1174.9738,202.32622 1178.236,194.39089 1192.2649,193.40393 C 1206.2937,192.41696 1209.559,184.52385 1204.1632,184.52385 C 1198.7676,184.52385 1224.6308,177.65277 1221.3934,172.71797 C 1220.4957,171.34985 1220.9614,170.69096 1222.2351,170.56211 C 1220.2926,170.30853 1218.3966,170.15995 1216.3422,170.25413 z M 1222.2351,170.56211 C 1222.6782,170.61993 1223.1313,170.64738 1223.5821,170.7161 C 1224.1114,170.79677 1224.4661,170.76916 1224.7046,170.7161 C 1223.7084,170.5188 1222.8709,170.49781 1222.2351,170.56211 z M 1096.9102,180.87943 C 1090.0306,180.97195 1084.374,183.58109 1090.8488,189.50285 L 1096.2367,191.45339 C 1096.2367,191.45339 1112.3904,183.57196 1103.7573,181.59805 C 1101.599,181.10457 1099.2033,180.84858 1096.9102,180.87943 z M 392.60948,188.47625 C 393.03285,188.66985 394.12365,188.96694 395.47181,189.29753 C 394.52552,189.02996 393.57949,188.7424 392.60948,188.47625 z M 395.47181,189.29753 C 405.05315,192.00677 413.15089,194.86697 413.15089,199.3582 C 413.15085,204.29301 439.02407,208.23827 439.02407,208.23827 C 439.02406,208.23827 430.38377,198.36667 420.67151,195.40579 C 412.86434,193.02569 400.99665,190.65233 395.47181,189.29753 z M 1059.6999,194.07122 C 1055.2279,194.14929 1050.3567,196.31224 1045.5006,201.30873 C 1036.8674,210.19139 1032.5466,206.2572 1017.4386,213.16594 C 1018.5178,214.15289 1009.8824,220.08835 1003.4075,225.02315 C 996.93271,229.95795 1016.3822,222.04602 1025.0152,222.04602 C 1033.6484,222.04602 1042.286,217.09754 1053.0772,210.18881 C 1063.8687,203.28008 1063.8353,208.23569 1060.5979,217.11835 C 1057.3604,226.001 1043.3707,227.96975 1033.6583,234.8785 C 1023.9461,241.78722 1043.3345,240.7977 1050.8885,243.75857 C 1058.4425,246.71945 1074.631,238.83092 1088.6599,238.8309 C 1102.6887,238.8309 1090.8133,234.88566 1084.3384,229.95083 C 1077.8636,225.01602 1091.8996,229.95537 1102.6909,233.90323 C 1113.4823,237.85107 1096.2089,221.04281 1084.3384,219.06888 C 1072.4678,217.09496 1075.716,202.29115 1069.241,197.35633 C 1066.4084,195.19735 1063.1781,194.01049 1059.6999,194.07122 z "
         id="path3858" />
      <path
         style="opacity:0.2;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 415.6875,-8.5 C 418.51081,-4.3497813 420.65519,2.1580065 426.03125,3.375 C 428.38259,2.4561175 430.11771,0.041202301 433.0625,0.5625 C 438.35161,0.70072038 443.6432,0.45170179 448.8125,-0.40625 C 463.76953,1.7954079 477.66164,10.805343 493.1875,9.65625 C 496.62009,9.9268891 492.61296,13.836129 491.53125,14.6875 C 489.9103,17.288881 484.95594,18.034386 484.9375,21.40625 C 488.05254,24.689902 493.63571,23.441685 497.75,24.1875 C 504.0163,24.066138 510.68727,25.208854 516.75,23.84375 C 518.45837,21.54095 514.02445,19.77503 513.53125,17.5 C 511.55318,13.93622 515.95427,18.193 517.03728,18.699931 C 521.12504,21.992126 526.83288,25.708583 531.96875,22.21875 C 535.77219,20.537027 540.5236,15.09798 536.65625,11.25 C 531.99975,8.0414614 525.33733,8.2054865 520.6875,4.4375 C 515.52554,1.1639866 511.72804,-4.0324264 507.03125,-7.6875 C 476.37502,-8.344813 445.71861,-8.9936084 415.0625,-9.65625 L 415.41914,-8.9964701 L 415.6875,-8.5 z M 783.8125,-4 C 774.74123,-3.071093 766.77037,2.5608908 760.09559,8.4356602 C 762.16912,9.1182834 768.49655,7.7638742 772.21875,7.65625 C 783.68427,6.4318642 795.49782,6.0014136 806.45834,9.9760808 C 809.16163,10.1779 813.58812,12.462478 815.59375,9.78125 C 815.10805,5.9890487 810.01352,4.643717 807.34375,2.5625 C 800.17732,-1.2671551 792.08591,-4.2877318 783.8125,-4 z M 981.96875,7.71875 C 978.25013,7.0801786 972.56832,10.629937 975.1875,14.6875 C 980.01897,19.274551 985.8378,22.650948 990.47302,27.616198 C 1001.9206,37.371331 1015.2212,48.849018 1031.3125,47.53125 C 1033.0238,47.501544 1037.6083,45.271899 1036.75,48.78125 C 1035.1796,54.515615 1038.8249,60.0872 1044.3438,61.6875 C 1069.1396,71.806812 1095.9781,77.0626 1120.0938,88.625 C 1138.0923,94.302734 1157.4174,95.579325 1176.2077,94.246244 C 1195.6265,92.404666 1215.133,90.49347 1234.5625,89.40625 C 1239.5424,87.476206 1230.3494,87.98601 1228.6272,87.651194 C 1203.7884,86.387627 1178.9085,86.990946 1154.0625,86.96875 C 1147.6514,86.71879 1140.5873,85.538443 1136.9062,79.75 C 1130.6337,75.605952 1122.4188,80.068102 1115.5625,77.96875 C 1108.4154,76.035192 1102.3529,70.701799 1094.5312,71.28125 C 1088.7751,71.664552 1082.5582,70.391911 1079.6371,65.030018 C 1072.9053,54.768867 1059.5268,53.875999 1050.1875,47.28125 C 1043.0849,39.092267 1031.235,40.897466 1022.4375,35.8125 C 1010.8651,30.649366 1003.3751,20.114172 994.90625,11.25 C 991.44007,8.1577335 986.51632,7.3425508 981.96875,7.71875 z M 613.0625,16 C 608.24295,15.9509 605.19572,21.625274 607.9375,25.625 C 609.56262,28.450258 611.65675,32.292529 615.3125,31.0625 C 628.07353,31.039899 641.19775,32.924406 653.75,30.3125 C 656.72974,29.555741 655.35134,26.1015 653,25.5625 C 645.34357,21.601 636.4704,22.487887 628.28125,21.1875 C 623.12716,19.26344 619.07085,15.005657 613.0625,16 z M 597.96875,18.25 C 593.85385,19.10946 588.50088,23.862005 590.75,28.3125 C 593.20339,30.620302 597.14953,30.856597 600.09375,32.46875 C 602.66326,28.592644 603.73778,21.990843 600.0625,18.59375 C 599.41836,18.240078 598.70015,18.163179 597.96875,18.25 z M 972.84375,36.125 C 969.14012,37.387318 972.57797,42.115443 973.84375,44.125 C 975.30117,46.673271 978.3887,49.655559 979.21875,51.78125 C 969.03473,47.625737 959.71008,40.975734 949.34375,37.3125 C 945.50713,36.551148 942.15874,39.568595 938.1875,38.15625 C 933.82214,36.785376 929.50279,36.460092 925.00783,37.623005 C 916.22647,39.21139 904.68668,38.279954 899.375,46.90625 C 897.35752,49.81594 899.61365,54.366315 903.375,53.3125 C 911.8765,51.943691 919.73942,46.972169 927.9375,45.3125 C 916.4362,51.829581 904.17887,56.946525 892.15625,62.4375 C 894.37791,59.709818 899.13127,56.810115 898.1875,52.8125 C 894.36762,49.343877 888.10001,51.120826 883.31319,50.813363 C 877.19004,51.767165 869.84418,50.232744 864.6875,54.15625 C 862.76276,57.708217 868.27275,59.734937 870.75,60.71875 C 871.49074,61.559521 865.176,61.738831 863.09375,62.0625 C 860.01741,62.721771 856.58569,61.613388 853.71875,63.03125 C 856.96348,65.900124 862.26032,64.330428 866.24442,65.283429 C 871.48315,65.598366 878.08856,65.747992 882.625,65.1875 C 878.48672,67.530117 873.82087,67.956231 869.3125,68.8125 C 867.73989,71.603995 872.80507,72.96322 874.44878,74.185657 C 879.62947,76.880334 886.15697,80.490025 891.6875,76.375 C 895.51755,74.642185 897.23174,69.617841 901.9375,70.03125 C 907.42178,69.619563 914.59789,67.692542 919,71.96875 C 923.33342,77.008889 915.20468,84.356308 919.9375,89.25 C 926.64107,92.770361 934.47608,86.030959 941.28125,89.84375 C 949.88749,92.741562 958.09194,98.941241 967.46875,98.3125 C 970.21512,98.230305 969.56909,94.850147 967.28125,94.40625 C 961.77709,91.330109 955.31655,90.458768 949.28125,89.53125 C 945.77767,87.224203 943.02141,81.766274 938,83.875 C 932.43943,86.800308 928.06562,80.127419 926.78125,75.46875 C 925.44776,71.877735 923.72238,66.154408 928.75,64.65625 C 939.48587,61.767534 951.55234,62.067738 961.72668,66.780847 C 974.75103,71.920135 986.19909,80.506169 998.75,86.5625 C 1003.9181,88.937995 1009.6734,87.102513 1015,87.5 C 1021.2093,94.66264 1030.9522,98.084966 1039.5938,101.65625 C 1046.8112,104.23209 1056.7722,107.69719 1062.9375,101.1875 C 1065.5326,98.775048 1063.4478,94.679984 1060.1562,94.875 C 1058.6444,94.816538 1057.161,93.989537 1059.4688,93.25 C 1066.017,88.510377 1074.418,92.958039 1080.1875,96.75 C 1084.4444,102.23575 1092.5096,99.7082 1098.2639,98.808477 C 1102.0056,97.459799 1107.1407,97.355554 1109.6562,94.0625 C 1109.5232,90.391264 1104.2921,89.635097 1101.5938,88.25 C 1094.6392,85.274885 1086.5952,84.419726 1079.6875,81.875 C 1082.3535,80.290981 1083.5374,74.558576 1079.5625,74 C 1073.1157,75.65318 1068.3582,83.706377 1060.9375,81.78125 C 1051.0822,76.739567 1047.3077,64.385612 1038.0312,58.75 C 1025.4739,56.560759 1012.0731,55.727544 999.78125,53.625 C 1002.9623,51.539283 998.49781,48.446002 996.75,47.1875 C 989.49659,42.647291 981.88072,37.732956 973.40625,36.09375 C 973.22937,36.169636 973.01725,36.028341 972.84375,36.125 z M 833.875,51.03125 C 824.22893,52.87359 814.27628,55.809758 806.0625,61.34375 C 804.01567,63.854923 808.55979,64.298383 810.125,64 C 816.90759,64.719436 824.42096,70.001314 830.875,65.375 C 835.0847,62.870059 841.44106,59.681876 839.96875,53.75 C 839.21469,51.214917 836.14086,50.799908 833.875,51.03125 z M 789.21875,52.125 C 781.24927,52.280748 775.34093,58.741137 768.28125,61.71875 C 765.57002,63.89562 760.03748,65.447927 760.34375,69.5625 C 761.91049,72.838916 765.26602,67.777466 767.375,67 C 770.91016,63.42633 775.81234,62.269593 780.78125,62.90625 C 788.85445,62.22886 797.5423,61.841567 804.71875,57.90625 C 806.4156,55.279002 801.57481,54.773312 800.03125,53.9375 C 796.53533,52.816822 792.91846,51.981558 789.21875,52.125 z M 750.0625,52.6875 C 738.39454,53.984942 727.24888,58.691851 715.63908,60.38686 C 711.70761,61.500013 707.37056,61.408845 703.71875,63.28125 C 713.64918,64.65178 723.97725,63.490295 734.0625,63.875 C 742.5078,63.667982 750.54445,59.817559 758.40625,57.125 C 761.06626,56.304563 759.79778,53.073317 757.40625,53.15625 C 755.03135,52.494062 752.51189,52.593469 750.0625,52.6875 z M 604.15625,87.96875 C 601.82321,88.079995 596.41244,88.196461 597.53125,91.8125 C 598.87446,94.453414 601.50544,96.284833 602.75,99.0625 C 599.79665,98.023849 596.29904,97.868684 593.5625,97.25 C 590.36842,95.25898 584.73546,91.353463 581.75,95.53125 C 580.16344,99.890157 585.76342,102.87908 588.8125,104.8125 C 591.29804,106.16643 593.90921,107.29429 596.625,108.15625 C 592.47424,108.05427 588.51101,108.81285 584.75,110.5 C 592.21566,112.84512 598.51972,118.67311 606.75,118.09375 C 615.76394,119.01758 625.81371,116.11827 634,120.84375 C 638.20089,124.74289 641.86154,130.82177 648.40625,130.8125 C 670.40063,130.91274 691.92163,136.3882 713.625,139.125 C 717.29442,138.13906 720.88979,139.10266 723.71875,141.53125 C 727.1859,143.23452 729.52507,139.0222 732.28125,138.09375 C 736.26309,140.91757 741.54535,138.35266 745.6875,141.125 C 752.50411,142.64555 759.82578,146.41138 766.8125,144.25 C 770.07189,142.43983 767.43212,138.13479 764.625,137.34375 C 757.81357,133.49866 749.83958,135.14004 742.84375,137.46875 C 739.38572,138.4217 735.57932,135.70243 732.28125,136 C 730.90624,133.00184 727.88344,130.38458 724.46875,132.15625 C 714.09256,133.59631 703.39342,130.83454 693.0625,129.4375 C 685.39232,128.69334 678.35584,125.07179 670.8125,124.0625 C 662.76878,123.10819 653.24701,126.15911 646.75,120.34375 C 638.49833,115.24063 628.82373,113.05445 619.34375,112.0625 C 615.79862,110.84353 610.61089,110.66062 607.96875,109 C 607.35013,106.62632 603.55458,105.3934 602.71875,104.0625 C 604.66672,104.49989 604.90332,101.78943 605.09375,101.125 C 609.9751,103.07895 615.98412,100.96379 620.3125,103.9375 C 623.09933,106.61372 623.4403,111.58474 628,112.28125 C 638.74524,114.70758 650.20291,111.68153 660.78935,115.2474 C 667.74346,116.64608 674.66716,119.48228 681.75,119.5 C 683.56156,117.08436 678.21737,116.31399 676.75,115.34375 C 667.37706,111.66711 657.46891,108.57324 647.25,108.375 C 639.79102,107.29827 632.84794,104.03181 626,100.9375 C 628.68561,100.07931 634.10615,98.426633 632.6875,94.6875 C 628.22688,89.963874 620.82959,89.652749 614.75552,88.502959 C 611.24449,88.040926 607.69653,87.839717 604.15625,87.96875 z M 534.96875,91.03125 C 533.30514,91.179424 528.55252,91.375302 529.96875,94.09375 C 535.98194,98.584518 544.26598,99.902113 550.625,103.4375 C 553.05269,107.23233 558.83528,106.17825 562.71155,107.08433 C 564.38983,107.38442 569.75638,108.18423 568.3125,104.90625 C 561.43954,98.583635 552.01077,95.307799 543.21577,92.264782 C 540.52358,91.541388 537.79458,90.772312 534.96875,91.03125 z M 694.25,95.03125 C 691.66297,94.721703 686.08706,96.784379 688.75,100.03125 C 696.88575,104.35597 706.90865,106.01297 716.1875,105 C 719.21098,104.39317 716.9436,101.11545 714.9375,100.8125 C 708.42864,97.988597 701.44999,95.070156 694.25,95.03125 z M 803.90625,111.8125 C 798.62488,112.63043 796.85751,119.09387 791.53339,120.2421 C 788.0711,122.1343 783.44912,122.10297 780.34375,124.40625 C 780.40669,127.02771 785.10936,125.72969 786.84375,126.53125 C 797.78504,127.54408 809.03784,130.42265 819.96875,128.59375 C 824.68265,127.17892 827.3618,121.29388 832.9375,122.125 C 836.65901,122.39683 843.2749,120.58064 841.875,115.75 C 839.63837,113.17858 835.17432,115.42383 832.1598,114.94695 C 823.85992,116.2743 815.52352,115.38336 807.78125,112.28125 C 806.54046,111.8833 805.21804,111.6857 803.90625,111.8125 z M 891.71875,142.59375 C 890.00338,144.87312 894.62472,144.604 895.21766,146.27212 C 899.55165,150.19089 905.11129,154.77433 911.3125,152.1875 C 918.20457,149.63742 925.90238,149.80124 932.53125,146.84375 C 933.77846,144.20949 928.84244,144.27488 927.4375,143.65625 C 916.29136,141.46136 904.86459,142.49299 893.625,143.1875 C 893.0081,143.14892 892.15086,141.15349 891.71875,142.59375 z M 987.59375,151.25 C 984.99163,153.50407 981.23716,156.32082 981.84375,160.53125 C 981.8433,163.15596 982.9972,165.88339 985.375,167.21875 C 974.39019,168.08582 963.43383,169.58538 952.375,169 C 948.5965,170.48593 955.0936,170.46745 956.5,171.53125 C 962.1397,175.44333 968.37295,178.9451 975.53125,178.5 C 981.12449,178.41647 988.96868,178.12286 991.46875,172.1875 C 992.19472,170.6803 989.80735,168.22333 992.9375,169.65625 C 1003.5808,171.3255 1015.5666,169.66532 1025.5,172.59375 C 1017.5956,175.59493 1008.5483,174.77463 1000.375,176.71875 C 998.32279,178.95493 1003.046,179.99837 1004.5,180.625 C 1013.3221,183.22036 1022.1249,186.054 1030.5625,189.5625 C 1035.1323,190.13905 1035.1355,183.35597 1039.3125,182.46875 C 1046.5595,180.08411 1055.3652,180.18071 1061.3125,174.875 C 1062.1832,171.95672 1057.3785,173.26441 1055.9375,172.46875 C 1040.1567,168.85872 1024.0998,165.59671 1008.375,161.875 C 1000.088,159.89327 994.77747,152.62061 987,149.46875 C 987.19792,150.0625 987.39583,150.65625 987.59375,151.25 z M 798.03125,151.8125 C 792.07241,152.48489 785.38483,152.96517 780.3125,156.15625 C 779.85177,158.81494 784.62774,157.04859 786.21875,158.25 C 791.09392,160.21904 795.93782,162.42001 801.28125,162.6875 C 802.02959,159.81983 807.82949,157.03909 805.125,153.46875 C 803.29298,151.73134 800.41287,151.7417 798.03125,151.8125 z M 1096.25,180.15625 C 1092.6632,180.08605 1086.0301,181.44899 1087.5,186.34375 C 1088.8588,190.06018 1093.057,191.61474 1096.5938,192.125 C 1100.2606,189.68204 1106.231,188.03237 1107.0312,183.125 C 1105.2757,179.56337 1099.5578,180.47604 1096.25,180.15625 z M 391.03125,187.9375 C 395.1152,191.18078 401.07393,190.97067 405.69183,193.4771 C 409.08803,194.63534 412.51751,196.94152 412.8125,200.71875 C 418.24391,205.85964 426.72759,206.14338 433.64472,208.06852 C 436.54372,208.38683 443.83619,210.87277 438.6875,206.78125 C 431.76365,199.12502 422.44895,194.02845 412.21891,192.37895 C 405.15922,191.04941 398.07335,188.54811 391.03125,187.9375 z M 1058.7812,193.375 C 1050.7779,193.62068 1045.9161,200.80026 1039.9062,204.875 C 1032.491,208.56292 1023.7449,208.69131 1016.4062,212.78125 C 1016.6968,215.34082 1012.4693,216.56348 1011.0052,218.41262 C 1008.1432,221.28986 1003.1834,222.84924 1001.375,226.46875 C 1002.8159,228.75353 1006.5401,226.2164 1008.7188,226.09375 C 1015.6747,223.83046 1022.7939,222.90053 1030.0312,222.28125 C 1041.0135,220.1984 1049.4748,212.08248 1059.5,207.8125 C 1063.1805,206.79822 1061.375,212.15673 1060.9375,213.8125 C 1059.0967,223.66433 1047.8188,226.30736 1040.1562,230.28125 C 1036.755,232.47275 1031.0148,233.92162 1030.25,238.34375 C 1032.0682,242.3878 1038.0938,241.41688 1041.6617,242.55833 C 1047.9736,243.06185 1053.8191,246.56624 1060.2812,244.6875 C 1071.2811,242.26923 1082.2549,239.23231 1093.625,239.28125 C 1096.3492,239.45383 1096.6012,236.12816 1094.1875,235.3125 C 1090.8635,232.97831 1087.071,231.32748 1083.9688,228.6875 C 1091.3931,229.77635 1098.2892,234.20457 1105.6562,235.21875 C 1108.7706,233.74232 1104.6285,230.23425 1103.3125,228.875 C 1097.2749,223.15607 1089.6733,219.1506 1081.6562,217.5 C 1072.6367,213.01085 1076.5878,198.72808 1066.8125,194.96875 C 1064.3765,193.69502 1061.5392,193.10844 1058.7812,193.375 z "
         id="path3861" />
      <path
         style="opacity:0.2;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.71755147px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 415.03125,-8.15625 C 417.98436,-3.798719 420.30688,3.2741739 426.21875,4.09375 C 428.86124,2.929972 431.07275,0.50698247 434.40625,1.25 C 439.99526,2.1033449 445.23861,0.15353015 450.65625,0.53125 C 465.01646,3.7340002 478.67465,11.336166 493.65625,10.53125 C 492.61247,14.63045 486.56388,16.506867 484.21875,20.15625 C 484.03171,24.91997 490.93377,24.11509 494.15371,24.727497 C 501.75293,24.710515 509.8341,26.242394 517.21875,24.4375 C 519.8985,22.173589 514.86836,19.380889 514.78125,18 C 519.77258,22.073916 526.88419,27.197828 533.1875,22.4375 C 537.52213,20.429276 541.5316,13.508796 536.4375,10.125 C 529.94987,7.1517001 522.1781,6.2160396 517.03125,0.6875 C 512.23369,-2.9449172 509.0756,-10.29826 502.03239,-8.5443353 C 472.6154,-9.1777268 443.19798,-9.7923422 413.78125,-10.4375 C 414.19792,-9.6770833 414.61458,-8.9166667 415.03125,-8.15625 z M 783.78125,-4.75 C 773.64191,-3.5811758 764.75749,2.7617175 757.6875,9.78125 C 773.91706,8.5770049 790.87421,4.9848049 806.5625,10.78125 C 809.38672,11.166114 816.06085,13.65642 816.375,9 C 812.4841,2.8226938 804.45884,0.35234789 798,-2.375 C 793.46503,-3.9437624 788.61571,-4.9658997 783.78125,-4.75 z M 981.90625,6.96875 C 977.38168,6.1197301 971.12489,11.163473 974.9375,15.59375 C 989.24012,26.132543 1001.2241,40.967767 1018.6562,46.8125 C 1024.1375,48.931801 1030.5195,48.442918 1036.0312,47.71875 C 1035.5497,51.044532 1035.6296,55.199703 1037.4375,57.78125 C 1025.6397,55.973937 1012.7977,55.03767 1001.4688,53.03125 C 1002.2275,47.918509 995.09786,45.788652 991.78125,43.125 C 985.54346,40.266162 979.30558,35.253766 972.21875,35.53125 C 967.79078,38.132037 972.84304,43.658926 974.5704,46.44637 C 979.74318,52.036564 974.37205,48.802924 970.5582,46.73883 C 962.72419,43.592659 955.87526,37.382243 947.40625,36.375 C 942.41532,38.276459 936.96688,37.653171 932,35.96875 C 921.239,38.459506 907.61716,36.04003 899.625,45.125 C 897.84677,46.740465 897.72881,50.439749 898.21875,51.71875 C 890.96022,48.022768 882.0793,50.711672 874.26036,50.686636 C 870.61897,51.084575 862.97913,51.072876 863.59375,56.4375 C 863.92543,59.360177 871.35076,60.885141 866.0625,61 C 861.61199,62.205628 856.5151,60.352736 852.46875,62.84375 C 856.60595,67.381881 863.98925,65.012309 869.4375,66.1875 C 871.10449,66.609097 878.6113,65.831667 876.9375,66.625 C 874.41471,68.370631 868.29992,65.965112 868.125,70.25 C 871.64079,75.107372 878.40513,76.716408 883.71875,78.875 C 889.83013,79.920566 894.89001,75.380064 898.71875,71.375 C 904.90257,70.663091 913.2792,67.960601 918.40625,72.4375 C 922.37982,77.593526 913.98471,85.398304 919.75,90.03125 C 927.22395,93.518354 935.61131,86.201987 942.79492,91.267098 C 951.14803,94.059301 959.6142,100.73599 968.78125,98.6875 C 972.53996,96.318718 967.37464,92.97445 964.9375,92.46875 C 959.94974,89.878232 954.1224,90.159053 948.9375,88.46875 C 945.90251,84.70833 941.19331,80.845599 936.1875,83.6875 C 929.74447,84.398925 927.57017,75.901336 926.375,71.0625 C 924.23329,64.829771 932.7565,64.163704 936.90625,63.90625 C 956.63069,61.022768 973.6815,73.574574 989.92092,82.731705 C 996.84049,88.0491 1005.5936,89.668283 1014.0938,88.03125 C 1016.5854,89.574031 1018.3799,92.774714 1021.4375,93.90625 C 1031.5936,99.508325 1042.5575,105.14034 1054.3438,105.65625 C 1059.0832,105.86535 1066.9152,101.70852 1064.1875,96.125 C 1063.389,94.481723 1060.6639,94.351145 1059.8438,93.90625 C 1066.446,89.194943 1074.828,93.932588 1080.4375,98 C 1085.327,103.17771 1093.7182,100.21897 1099.75,99.21875 C 1103.1958,97.734499 1109.4518,97.886202 1110.4688,93.5 C 1108.4326,88.159518 1100.9467,87.780102 1096.2953,85.671181 C 1091.3884,83.916762 1085.4274,83.124838 1080.9062,81.5625 C 1082.5546,80.042377 1083.6008,77.588386 1082.5312,75.4375 C 1095.9038,79.338759 1108.9348,84.355522 1121.625,89.9375 C 1145.7289,97.100684 1171.3707,96.255939 1196.0898,93.129701 C 1208.9876,91.941499 1222.0094,90.89523 1234.875,90.09375 C 1242.7632,87.584627 1234.8825,87.215616 1230.9375,87 C 1204.9582,85.522049 1178.9203,86.406212 1152.9375,86.125 C 1147.0186,86.027179 1140.7631,84.349876 1137.375,79.1875 C 1129.9871,74.338087 1120.1967,80.240128 1112.4688,76.25 C 1105.4184,71.804498 1097.2037,69.970591 1088.9688,70.28125 C 1080.8202,69.673986 1078.7349,59.74589 1071.6875,56.78125 C 1063.2288,51.981108 1052.9865,50.171823 1046.0312,42.84375 C 1036.5569,38.207597 1025.1173,38.536828 1016.5396,31.544133 C 1007.1265,25.896971 1001.8872,15.824357 993.46875,9.28125 C 990.05521,7.160114 985.87918,6.6609925 981.90625,6.96875 z M 612.96875,15.25 C 606.8028,15.270451 604.16125,22.976172 608.0625,27.4375 C 610.07131,30.963974 612.68488,32.684719 616.65625,31.8125 C 629.17428,31.790443 642.20482,33.86418 654.4375,30.8125 C 658.50999,28.962203 654.73383,24.547927 651.71875,24.15625 C 643.83838,20.475056 634.87963,22.183322 626.8125,19.875 C 622.56691,17.189282 618.243,14.581529 612.96875,15.25 z M 597.90625,17.5 C 593.08965,18.324384 586.80866,24.577161 590.65625,29.34375 C 593.62056,31.171363 597.15987,31.960212 600.34375,33.375 C 603.51775,29.156936 604.87258,21.159934 600.03125,17.75 C 599.37537,17.449851 598.6134,17.440786 597.90625,17.5 z M 920.90625,48.28125 C 912.56363,52.429227 904.06702,56.274957 895.5625,60.09375 C 897.49059,58.516429 899.45345,54.594787 899.3125,53.125 C 905.0679,56.08172 911.4873,51.124065 917.0625,49.71875 C 918.22251,49.257338 920.17486,48.499887 920.90625,48.28125 z M 833.84375,50.28125 C 823.91865,52.23025 813.49445,55.071443 805.3125,61.09375 C 803.05134,64.967153 809.10428,64.867068 811.375,64.9375 C 818.07019,66.520766 825.91506,70.582547 832.25,65.46875 C 836.83077,63.02645 843.03416,58.510768 840.25,52.5625 C 838.95219,50.408652 836.11652,50.082247 833.84375,50.28125 z M 789.1875,51.375 C 780.48394,51.676417 773.87541,58.737017 766.15625,62.125 C 763.48309,63.794586 757.07792,67.276771 760.5625,71.0625 C 763.62885,72.570519 766.97561,67.199291 770.09375,65.96875 C 775.51601,61.503659 783.2437,64.801994 789.647,62.864281 C 794.89819,61.493301 801.76519,61.858612 805.75,57.71875 C 806.25551,53.386773 799.40016,53.625316 796.625,52.1875 C 794.17886,51.65969 791.70397,51.253787 789.1875,51.375 z M 750.03125,51.9375 C 736.42491,53.68406 723.5082,58.865129 709.83861,60.802607 C 700.90697,61.27267 701.88213,65.906986 710.5625,64.625 C 723.51441,64.063657 737.00011,66.687959 749.24307,61.217172 C 752.78042,59.139987 759.24132,59.720352 760.78125,55.21875 C 759.66851,50.966984 753.27863,52.11689 750.03125,51.9375 z M 1044.0312,62.375 C 1054.3133,67.085462 1068.2541,70.222743 1076.875,74.09375 C 1071.6941,77.19408 1064.7895,84.650253 1058.625,79.5625 C 1052.5142,74.609969 1048.5445,67.682865 1043.3125,62.0625 L 1044.0312,62.375 z M 848,81.78125 C 837.20609,82.788436 825.104,83.368597 816.25,90.15625 C 813.21288,94.500693 820.05646,97.106824 823.0625,98.34375 C 832.0287,99.771131 841.7322,101.54064 851.15625,102.09375 C 854.45268,101.78879 860.79066,103.33377 861.78125,99.03125 C 861.35863,96.718912 858.491,96.159656 856.53125,95.71875 C 860.70654,94.101126 865.93769,94.373015 869.5625,91.5625 C 869.04209,86.9445 862.24299,90.55148 859.21875,88.625 C 855.93426,88.064713 860.11456,84.016041 856.75,82.90625 C 854.06403,81.600479 850.92685,81.744338 848,81.78125 z M 604.15625,87.21875 C 601.16925,86.988135 594.87402,88.204025 597.03125,92.5 C 598.1347,94.512876 599.97959,95.975267 601.21875,97.90625 C 597.20176,96.808223 593.23742,97.144973 589.9375,94.28125 C 586.7847,91.603322 579.91295,92.865408 580.6875,97.71875 C 582.28658,102.94981 588.65524,105.5325 592.6875,107.5625 C 589.17081,107.88987 585.87405,109.17366 582.625,110.53125 C 591.26105,113.00349 598.44344,119.81078 607.9375,118.90625 C 617.51578,119.91726 630.41143,115.67391 636.9375,124.9375 C 641.51501,132.04045 650.46485,132.13451 658,131.84375 C 676.70328,133.35757 695.08676,137.44396 713.65625,139.875 C 717.51275,138.67703 720.81819,140.21681 723.84375,142.375 C 727.25172,143.84483 729.75023,139.9983 732.28125,139 C 736.61474,141.49948 742.00333,139.25287 746.4274,142.12835 C 753.20013,143.50424 760.97005,147.76897 767.71875,144.53125 C 771.75382,140.80459 765.91606,136.1745 762.15625,135.5 C 755.01278,132.41884 747.67202,135.73264 740.59375,137.09375 C 738.07799,136.17856 735.29682,135.26339 732.71875,135.28125 C 731.13417,131.56793 727.20815,129.77227 723.46875,131.59375 C 709.19922,132.28114 694.94336,129.22024 681.09375,126 C 671.6419,120.99166 660.65136,124.93464 650.875,122.09375 C 645.60196,118.59548 639.95113,115.61126 633.8125,113.9375 C 645.49072,113.62498 657.20489,114.18643 668.378,117.95475 C 673.02083,118.37016 678.18356,121.53967 682.6875,119.78125 C 683.94642,115.66468 677.1352,115.23451 674.5,113.6875 C 665.2929,109.98674 655.48937,107.84588 645.64361,107.33924 C 639.58428,106.12806 633.44253,103.66235 628.25,101 C 631.71983,100.34536 636.18186,95.783699 632.0625,92.90625 C 623.9483,87.96634 613.52689,87.280206 604.15625,87.21875 z M 534.90625,90.28125 C 532.19361,89.682615 526.4683,92.316183 530.0625,95.1875 C 536.20973,99.490328 544.69952,100.3691 550.46875,104.71875 C 555.24357,108.1519 561.99707,107.75164 567.65625,107.96875 C 571.79301,106.10583 567.11328,102.07931 564.75,101.03125 C 555.61177,96.038026 545.59934,90.535902 534.90625,90.28125 z M 896.40625,93.125 C 887.90536,92.748444 883.55755,103.02499 874.875,101.625 C 868.05666,101.70961 860.18728,101.08 854.1875,103.96875 C 853.37826,108.30665 859.81223,109.46324 862.90625,110.375 C 867.71909,111.53235 874.5862,109.62032 876.75,115.53125 C 881.50427,121.24844 890.17075,117.89619 896.46875,120.5 C 902.22632,121.77494 907.78203,123.56007 913.53125,124.8125 C 910.40333,126.49942 908.29538,132.62331 913.125,133.4375 C 921.32404,133.64302 929.59648,133.37199 937.625,135.25 C 941.8202,135.75659 945.71145,133.3837 947.875,129.96875 C 957.06697,137.24811 970.2098,140.25503 981.875,138 C 986.36881,135.86622 981.5429,131.07793 978.75,129.96875 C 976.23746,129.22705 977.73108,125.76477 975.40625,124.1875 C 969.51141,117.69285 965.75704,107.66623 956.21875,105.75 C 945.00403,102.09673 932.76079,104.32144 921.34375,102.21875 C 917.11422,100.67132 915.96957,94.242069 910.53125,95.09375 C 905.81494,94.332819 901.22752,92.76967 896.40625,93.125 z M 694.21875,94.28125 C 689.53597,93.005955 683.96541,99.527399 690.09375,101.71875 C 698.67285,104.92098 708.63515,107.64021 717.65625,105.15625 C 720.58007,101.53735 713.84428,99.432404 711.4375,98.4375 C 705.86644,96.531675 700.20579,94.121978 694.21875,94.28125 z M 606.3125,102.125 C 611.48491,104.02462 619.73243,100.90222 621.96875,107.625 C 622.24069,109.51672 624.72016,111.53375 625.40625,112.09375 C 619.77868,111.7465 613.60728,110.15899 608.625,108.4375 C 607.95552,105.85724 602.79717,105.3835 605.5,102.875 C 605.71411,102.46515 605.3293,101.4325 606.3125,102.125 z M 1271.2188,107.4375 C 1258.1072,107.70328 1245.5786,111.87806 1233,114.65625 C 1229.0049,115.629 1226.4363,112.62923 1224.4688,109.75 C 1219.7244,107.25961 1214.4643,111.96125 1210.4062,113.96875 C 1205.1812,117.37865 1197.9775,123.92714 1201.4062,130.84375 C 1205.4917,134.58776 1210.8991,128.8441 1214.5624,127.02562 C 1219.6672,122.41401 1226.1522,121.36168 1232.8125,121.90625 C 1247.852,119.23573 1263.261,116.58372 1277.5,111.09375 C 1280.8579,107.03217 1273.1968,107.28238 1271.2188,107.4375 z M 803.84375,111.0625 C 798.00941,111.94036 796.14974,119.07021 790.1875,120 C 786.86133,122.04601 781.4027,121.15213 779.3125,124.75 C 781.80953,128.76457 788.14747,126.39985 792.05395,127.9742 C 801.86307,128.57614 812.43346,131.92359 821.96875,128.5625 C 825.88977,126.01495 829.23904,121.72546 834.625,122.84375 C 838.68547,123.15949 845.40654,119.01061 841.90625,114.59375 C 833.03,112.50454 823.02558,116.76234 814.125,113.5 C 810.78087,112.63625 807.41525,110.78975 803.84375,111.0625 z M 1216.0312,136.59375 C 1205.5007,137.00223 1200.3036,148.87092 1189.875,149.3125 C 1180.1673,151.75616 1169.3046,150.74822 1160.25,155.3125 C 1157.6566,158.74524 1163.5603,159.29909 1165.75,158.65625 C 1178.9273,157.61007 1192.3318,157.8824 1204.9341,153.42659 C 1211.8763,150.70951 1221.4696,150.37831 1225.75,143.53125 C 1227.2496,138.13894 1219.8699,136.43494 1216.0312,136.59375 z M 891.15625,142.125 C 888.70867,145.25446 894.60412,145.52523 895.71875,147.59375 C 899.96148,152.01463 906.23197,155.38028 912.3125,152.6875 C 919.01038,149.88901 927.27477,150.9393 933.375,147.0625 C 934.20806,142.73635 927.4787,143.36821 924.78125,142.40625 C 914.54176,140.95365 904.16995,141.71608 893.90625,142.4375 C 892.71603,141.89724 892.05532,139.96747 891.15625,142.125 z M 1294.4062,142.625 C 1280.7286,146.43304 1266.8887,150.83685 1255.3438,159.1875 C 1250.8594,160.69101 1244.7123,160.01914 1242.4688,165.46875 C 1238.035,168.82789 1232.3534,163.49504 1227.9862,162.38939 C 1224.8781,161.27109 1218.824,158.21705 1216.875,162.40625 C 1216.9425,165.34374 1220.0972,167.02045 1221.9062,169 C 1207.0297,166.45732 1194.7623,178.88131 1179.8158,176.19956 C 1171.6193,176.35416 1161.9582,172.5808 1154.5312,177.28125 C 1150.8198,181.73218 1156.5544,187.08346 1159.5,190.25 C 1164.8648,186.87371 1168.5573,193.48894 1170.75,197.28125 C 1175.2097,202.44044 1181.779,196.27836 1186.8125,195.75 C 1194.0329,194.29806 1204.6111,195.00787 1208.0312,187 C 1208.4952,184.91598 1205.9401,183.32986 1209.5793,183.08413 C 1214.1625,180.53649 1221.962,179.39373 1223.1875,173.4375 C 1222.0995,170.61295 1227.5014,173.25034 1228.8438,173.53125 C 1234.435,176.05854 1241.1858,179.09485 1244.0312,184.53125 C 1242.2664,186.51197 1237.95,190.68549 1242.4688,192.21875 C 1256.2635,194.58686 1270.6223,191.97141 1284.4688,194.125 C 1288.3657,191.87527 1282.2672,188.89234 1280.2587,188.1841 C 1274.0502,184.70589 1266.9887,183.32779 1260.5,180.71875 C 1257.8477,178.68263 1253.2943,174.83148 1254.4062,171.4375 C 1268.7629,170.57911 1282.959,176.1443 1297.375,176.09375 C 1301.3664,176.11306 1300.1495,171.1735 1297.0312,170.75 C 1293.9641,169.20112 1290.662,168.39677 1287.3125,167.71875 C 1291.6198,167.0641 1299.194,168.85411 1299.9062,162.625 C 1300.7877,155.5912 1298.0056,148.79156 1295.75,142.25 L 1294.7868,142.5188 L 1294.4062,142.625 z M 986.78125,151.1875 C 981.27075,153.88141 978.98342,161.81506 983.34375,166.5625 C 972.7758,167.99494 961.98004,168.19314 951.4527,168.63649 C 946.22847,170.69628 954.98269,171.06344 957.09375,172.6875 C 966.00288,180.01445 979.8367,181.74943 989.8125,175.84375 C 992.08358,174.88112 992.01343,171.04973 992.84375,170.40625 C 1002.8385,171.80578 1013.3098,170.87042 1023.0938,172.625 C 1015.62,175.01172 1007.1542,173.84505 999.78125,176.21875 C 997.06495,179.98715 1004.1233,181.11435 1006.4688,182.03125 C 1014.9171,184.14177 1022.9392,187.64261 1031.0625,190.375 C 1035.9754,190.23839 1036.1677,182.63548 1041.5312,182.5 C 1048.5234,180.82034 1057.004,180.39241 1062.0938,174.96875 C 1062.7802,170.76538 1056.5483,172.6622 1054.3125,171.40625 C 1038.1495,167.13785 1021.3518,164.94573 1005.4375,160.03125 C 998.32354,157.00257 993.08059,150.73039 985.71875,147.9375 C 986.07292,149.02083 986.42708,150.10417 986.78125,151.1875 z M 798,151.0625 C 791.83715,151.92244 784.45586,151.99041 779.5625,155.96875 C 778.87296,159.76344 784.72888,157.74723 786.875,159.25 C 791.62684,161.47758 796.691,163.27119 802.03125,163.5 C 802.49959,160.18792 809.0215,156.92027 805.65625,152.9375 C 803.69134,151.03181 800.58744,150.97475 798,151.0625 z M 1230.7188,171.375 C 1225.7154,173.56186 1232.3398,167.96054 1230.7188,171.375 z M 1096.2188,179.40625 C 1092.1623,179.20139 1084.9596,181.21187 1086.8438,186.6875 C 1088.9811,191.71723 1096.2193,194.83004 1100.5,190.84375 C 1103.459,189.03439 1110.1801,185.37762 1106.7188,181.28125 C 1103.6804,179.3455 1099.7122,179.45313 1096.2188,179.40625 z M 389.46875,187.4375 C 395.00454,193.05664 404.56294,191.63729 410.40625,197.09375 C 412.07177,198.95536 411.76102,202.44216 414.8125,203.3125 C 423.62607,207.58456 433.56155,208.72107 443.125,210.4375 C 435.09701,200.63679 424.37717,193.28515 411.64605,191.45318 C 404.27333,190.37352 396.86854,186.78509 389.46875,187.4375 z M 1058.7188,192.625 C 1047.6634,192.8671 1043.1151,205.69964 1032.56,206.73787 C 1026.6011,207.94116 1020.8667,209.8519 1015.375,212.40625 C 1016.2902,215.29452 1010.7209,216.66235 1009.2564,218.77931 C 1006.6886,221.60577 1000.9406,222.83106 1000.625,227.09375 C 1004.4591,230.01526 1009.7892,225.57733 1014.0301,225.46633 C 1023.1108,222.88663 1033.2406,224.1677 1041.5442,218.7589 C 1048.2281,216.02995 1053.8076,209.81198 1060.8438,208.53125 C 1061.4852,216.14339 1055.9949,222.97406 1048.9062,225.40625 C 1042.5622,229.03114 1033.6961,230.64988 1029.6562,237.1875 C 1028.9238,242.1704 1036.0439,242.1948 1039.3438,242.9375 C 1046.8814,243.5078 1054.0112,247.60482 1061.5938,245.1875 C 1072.4064,242.53164 1083.218,240.15452 1094.3438,239.90625 C 1097.8515,239.47293 1096.8223,235.20108 1094.125,234.375 C 1092.7966,233.21274 1085.1823,229.50485 1089.2004,230.81104 C 1094.963,231.83467 1100.4402,236.29622 1106.375,235.78125 C 1109.8962,232.75838 1104.1537,228.87338 1102.125,226.8125 C 1096.2388,221.44364 1088.764,218.47008 1081.2812,216.46875 C 1073.4652,211.26858 1076.7677,197.88492 1067.125,194.28125 C 1064.5705,192.96718 1061.5975,192.36132 1058.7188,192.625 z "
         id="path3866" />
    </g>
    <path
       style="fill:url(#linearGradient3944);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       id="path3914"
       d="M 30.242017,32.719429 C 47.037534,33.321247 63.359279,35.59167 79.576397,39.999525 C 105.8377,50.812809 126.26005,70.808312 148.59614,87.634559 C 171.09052,97.783169 197.93113,94.769652 222.19841,97.33382 C 253.94138,101.38352 280.7769,118.08575 307.54777,134.23732 C 327.45126,141.73255 350.09613,132.80071 371.15962,132.62624 C 405.70455,133.27138 436.74765,147.16174 467.20201,161.89599 C 492.37512,167.13944 518.60062,162.99608 544.31012,164.7338 C 575.52105,167.81615 598.54412,181.9555 615.76055,207.52704 C 635.11274,235.16785 671.15429,236.90051 701.91171,240.27848 C 756.51984,243.07963 809.52849,254.43245 860.98933,272.45612 C 900.66514,287.10887 934.02772,312.88367 967.62437,337.76172 L 966.54587,339.09859 C 934.1146,312.72698 900.4573,287.43053 860.92986,272.59516 C 809.47845,254.57552 756.47947,243.22747 701.88173,240.42671 C 670.31483,237.80319 632.40981,238.69795 612.64839,209.68762 C 596.69426,184.10298 574.61186,169.62456 544.01678,166.4692 C 517.66067,165.17026 490.39473,172.37905 465.03999,165.46825 C 436.22566,147.67194 405.84577,133.32236 371.05973,133.99186 C 349.66951,136.08477 324.98022,148.71795 305.15207,137.6146 C 280.00946,119.20907 253.62144,102.59818 221.90681,98.806423 C 197.00855,96.874161 168.06392,103.03625 145.62713,91.110965 C 125.18601,72.449403 105.54808,52.009774 78.541604,43.038454 C 62.287832,39.246998 46.036218,37.511156 29.395649,39.870363 L 30.242017,32.719429 z " />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6286);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path4871"
       sodipodi:cx="472.58978"
       sodipodi:cy="741.02081"
       sodipodi:rx="5.2930055"
       sodipodi:ry="3.0245748"
       d="M 477.88279 741.02081 A 5.2930055 3.0245748 0 1 1  467.29678,741.02081 A 5.2930055 3.0245748 0 1 1  477.88279 741.02081 z" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6284);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path4873"
       sodipodi:cx="489.22495"
       sodipodi:cy="751.60681"
       sodipodi:rx="9.8298674"
       sodipodi:ry="9.0737238"
       d="M 499.05481 751.60681 A 9.8298674 9.0737238 0 1 1  479.39508,751.60681 A 9.8298674 9.0737238 0 1 1  499.05481 751.60681 z" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6282);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path4875"
       sodipodi:cx="480.15121"
       sodipodi:cy="733.45935"
       sodipodi:rx="6.8052931"
       sodipodi:ry="9.0737238"
       d="M 486.95651 733.45935 A 6.8052931 9.0737238 0 1 1  473.34592,733.45935 A 6.8052931 9.0737238 0 1 1  486.95651 733.45935 z" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6280);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path4877"
       sodipodi:cx="484.68808"
       sodipodi:cy="779.58411"
       sodipodi:rx="6.8052931"
       sodipodi:ry="8.3175802"
       d="M 491.49337 779.58411 A 6.8052931 8.3175802 0 1 1  477.88279,779.58411 A 6.8052931 8.3175802 0 1 1  491.49337 779.58411 z" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6278);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path4879"
       sodipodi:cx="514.93384"
       sodipodi:cy="765.21741"
       sodipodi:rx="9.8298674"
       sodipodi:ry="9.0737238"
       d="M 524.76371 765.21741 A 9.8298674 9.0737238 0 1 1  505.10397,765.21741 A 9.8298674 9.0737238 0 1 1  524.76371 765.21741 z" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4883"
       style="opacity:1;fill:url(#radialGradient6276);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(-7.561437,6.049149)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4885"
       style="opacity:1;fill:url(#radialGradient6274);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(3.024575,-6.049149)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4887"
       style="opacity:1;fill:url(#radialGradient6272);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(13.61059,19.65974)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4889"
       style="opacity:1;fill:url(#radialGradient6270);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(6.049149,37.80718)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4891"
       style="opacity:1;fill:url(#radialGradient6268);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(7.561437,77.12665)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4893"
       style="opacity:1;fill:url(#radialGradient6266);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(-13.61059,42.34405)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4895"
       style="opacity:1;fill:url(#radialGradient6264);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(-16.63516,33.27032)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4897"
       style="opacity:1;fill:url(#radialGradient6262);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(3.024575,13.61059)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4899"
       style="opacity:1;fill:url(#radialGradient6260);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(4.536862,10.58601)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4901"
       style="opacity:1;fill:url(#radialGradient6258);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(10.58601,-16.63516)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4903"
       style="opacity:1;fill:url(#radialGradient6256);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(33.27032,62.00378)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4905"
       style="opacity:1;fill:url(#radialGradient6254);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(27.22117,58.97921)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4907"
       style="opacity:1;fill:url(#radialGradient6252);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(25.70888,25.70888)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4909"
       style="opacity:1;fill:url(#radialGradient6250);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(18.14745,10.58601)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4911"
       style="opacity:1;fill:url(#radialGradient6248);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(30.24575,21.17202)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4913"
       style="opacity:1;fill:url(#radialGradient6246);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(21.17202,-15.12287)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4915"
       style="opacity:1;fill:url(#radialGradient6244);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(-1.512287,-28.73346)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4917"
       style="opacity:1;fill:url(#radialGradient6242);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(3.024575,-57.46692)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4919"
       style="opacity:1;fill:url(#radialGradient6240);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(10.58601,-63.51607)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4921"
       style="opacity:1;fill:url(#radialGradient6238);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(13.61059,-72.58979)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4923"
       style="opacity:1;fill:url(#radialGradient6236);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(13.61059,-74.10208)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4925"
       style="opacity:1;fill:url(#radialGradient6234);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(9.073724,-84.68809)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4927"
       style="opacity:1;fill:url(#radialGradient6232);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(-1.512287,-116.4461)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4929"
       style="opacity:1;fill:url(#radialGradient6230);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(-3.024575,-137.6181)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4931"
       style="opacity:1;fill:url(#radialGradient6228);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(7.561437,-51.41777)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4933"
       style="opacity:1;fill:url(#radialGradient6226);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(18.14745,-25.70888)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4935"
       style="opacity:1;fill:url(#radialGradient6224);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(28.73346,18.14745)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4937"
       style="opacity:1;fill:url(#radialGradient6222);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(27.22117,-42.34405)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4939"
       style="opacity:1;fill:url(#radialGradient6220);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(19.65974,-66.54064)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4941"
       style="opacity:1;fill:url(#radialGradient6218);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(1.512287,-80.15123)" />
    <path
       transform="translate(-214.7448,-238.9414)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6382);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6380"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(-189.0359,-210.2079)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6386);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6384"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(-193.5728,-119.4707)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6390);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6388"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(1.512288,-364.4612)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6394);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6392"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(27.22117,-418.9036)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6398);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6396"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(482.4197,55.95463)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6402);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6400"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(473.3459,-7.561437)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6406);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6404"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(349.3384,-99.81096)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6410);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6408"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(403.7807,-155.7656)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6414);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6412"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(381.0964,-124.0076)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6418);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6416"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(387.1456,-45.36862)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6422);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6420"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(-417.3913,-13.61059)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6426);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6424"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(-408.3176,-51.41777)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6430);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6428"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(-347.8261,-107.3724)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6434);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6432"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(772.7788,-496.0302)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6438);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6436"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(314.5558,-488.4688)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6442);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6440"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       transform="translate(326.6541,-344.8015)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6446);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6444"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4943"
       style="opacity:1;fill:url(#radialGradient6216);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(-1.512287,-40.83176)" />
    <path
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       sodipodi:ry="9.0737238"
       sodipodi:rx="11.342155"
       sodipodi:cy="765.21741"
       sodipodi:cx="493.76181"
       id="path4945"
       style="opacity:1;fill:url(#radialGradient6214);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(13.61059,-111.9093)" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6212);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path4881"
       sodipodi:cx="493.76181"
       sodipodi:cy="765.21741"
       sodipodi:rx="11.342155"
       sodipodi:ry="9.0737238"
       d="M 505.10397 765.21741 A 11.342155 9.0737238 0 1 1  482.41965,765.21741 A 11.342155 9.0737238 0 1 1  505.10397 765.21741 z"
       transform="translate(12.0983,-96.78639)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4949"
       style="opacity:1;fill:url(#radialGradient6210);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(170.8885,60.49149)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4951"
       style="opacity:1;fill:url(#radialGradient6208);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(160.3025,0)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4953"
       style="opacity:1;fill:url(#radialGradient6206);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(181.4745,25.70888)" />
    <path
       transform="translate(-30.2457,-13.61058)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6294);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6292"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(-202.6465,-101.3232)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6298);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6296"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(-182.9867,92.24953)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6302);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6300"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(432.5142,-154.2533)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6306);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6304"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(446.1248,81.66352)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6310);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6308"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(314.5558,-122.4953)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6314);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6312"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(139.1305,-258.6011)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6318);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6316"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(157.2779,-187.5236)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6322);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6320"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(175.4254,-179.9622)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6326);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6324"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(175.4254,-210.2079)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6330);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6328"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(140.6428,-237.4291)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6334);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6332"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(154.2534,-308.5066)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6338);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6336"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(-108.8846,-326.6541)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6342);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6340"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(576.1815,207.1834)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6346);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6344"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(747.07,190.5482)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6350);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6348"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(812.0983,-37.80718)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6354);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6352"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(960.3025,-148.2042)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6358);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6356"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(837.8072,136.1059)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6362);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6360"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(698.6768,25.70889)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6366);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6364"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(452.174,-65.02835)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6370);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6368"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(-84.68804,137.6182)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6374);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6372"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       transform="translate(-237.4291,-27.22117)"
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6378);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path6376"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4955"
       style="opacity:1;fill:url(#radialGradient6204);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(-6.049102,68.05293)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4957"
       style="opacity:1;fill:url(#radialGradient6202);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(179.9622,95.2741)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4959"
       style="opacity:1;fill:url(#radialGradient6200);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(184.4991,108.8847)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4961"
       style="opacity:1;fill:url(#radialGradient6198);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(190.5482,226.8431)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4963"
       style="opacity:1;fill:url(#radialGradient6196);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(190.5482,226.8431)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4965"
       style="opacity:1;fill:url(#radialGradient6194);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(128.5444,130.0567)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4967"
       style="opacity:1;fill:url(#radialGradient6192);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(136.1059,113.4216)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4969"
       style="opacity:1;fill:url(#radialGradient6190);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(139.1304,107.3724)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4971"
       style="opacity:1;fill:url(#radialGradient6188);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(140.6427,208.6957)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4973"
       style="opacity:1;fill:url(#radialGradient6186);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(140.6427,225.3308)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4975"
       style="opacity:1;fill:url(#radialGradient6184);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(139.1304,223.8185)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4977"
       style="opacity:1;fill:url(#radialGradient6182);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(137.6181,152.741)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4979"
       style="opacity:1;fill:url(#radialGradient6180);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(145.1796,139.1304)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4981"
       style="opacity:1;fill:url(#radialGradient6178);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(133.0813,219.2817)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4983"
       style="opacity:1;fill:url(#radialGradient6176);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(151.2287,255.5766)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4985"
       style="opacity:1;fill:url(#radialGradient6174);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(167.8639,257.0888)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4987"
       style="opacity:1;fill:url(#radialGradient6172);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(176.9376,241.966)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4989"
       style="opacity:1;fill:url(#radialGradient6170);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(182.9868,229.8677)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4991"
       style="opacity:1;fill:url(#radialGradient6168);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(190.5482,175.4253)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4993"
       style="opacity:1;fill:url(#radialGradient6166);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(176.9376,139.1304)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4995"
       style="opacity:1;fill:url(#radialGradient6164);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(167.8639,140.6427)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4997"
       style="opacity:1;fill:url(#radialGradient6162);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(164.8393,173.913)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path4999"
       style="opacity:1;fill:url(#radialGradient6160);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(157.2779,143.6673)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path5001"
       style="opacity:1;fill:url(#radialGradient6158);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(154.2533,104.3478)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path5003"
       style="opacity:1;fill:url(#radialGradient6156);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(154.2533,93.76181)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path5005"
       style="opacity:1;fill:url(#radialGradient6154);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(154.2533,137.6181)" />
    <path
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       sodipodi:ry="4.5368619"
       sodipodi:rx="5.2930055"
       sodipodi:cy="564.08319"
       sodipodi:cx="336.48392"
       id="path5007"
       style="opacity:1;fill:url(#radialGradient6152);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       sodipodi:type="arc"
       transform="translate(160.3025,217.7694)" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:url(#radialGradient6150);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22857145"
       id="path4947"
       sodipodi:cx="336.48392"
       sodipodi:cy="564.08319"
       sodipodi:rx="5.2930055"
       sodipodi:ry="4.5368619"
       d="M 341.77692 564.08319 A 5.2930055 4.5368619 0 1 1  331.19091,564.08319 A 5.2930055 4.5368619 0 1 1  341.77692 564.08319 z"
       transform="translate(161.8147,229.8677)" />
    <path
       style="fill:url(#linearGradient8560);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 1067.1488,240.12493 C 1077.1361,228.72021 1100.8588,220.40676 1102.6547,222.37199 C 1104.7305,224.64343 1090.1619,231.24846 1092.4632,234.53604 C 1094.7645,237.82362 1094.4358,246.70009 1089.1756,243.74127 C 1083.9155,240.78244 1077.9979,237.16611 1073.724,239.79617 C 1069.4502,242.42623 1067.4776,239.79617 1067.1488,240.12493 z "
       id="path7667"
       sodipodi:nodetypes="cssssc" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer2"
     inkscape:label="Dolphins"
     style="display:inline">
    <g
       id="g9563">
      <path
         id="path6450"
         d="M 711.57359,297.96627 C 722.17449,313.27869 725.70813,315.0455 733.36435,320.93491 C 741.02056,326.8243 764.57814,333.30264 778.71268,335.06945 C 792.84723,336.83627 792.25829,330.94688 789.31359,329.18006 C 786.3689,327.41324 766.9339,319.16808 763.40026,313.27869 C 759.86662,307.3893 751.03254,299.73308 746.90996,296.19945 C 742.78738,292.66581 710.98465,297.96627 711.57359,297.96627 z "
         style="opacity:1;fill:url(#linearGradient8589);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         sodipodi:nodetypes="csssssssssssssssssssssssssssssssc"
         id="path6448"
         d="M 602.6198,279.1202 C 622.64374,272.64187 620.87691,275.58656 625.58844,269.69717 C 630.29994,263.80778 635.60041,256.15158 653.2686,246.13961 C 670.93677,236.12764 673.88146,233.18293 703.91738,221.99309 C 733.95329,210.80323 746.90996,207.26959 781.65737,199.02445 C 816.40481,190.77929 809.33753,190.77929 819.93845,181.35626 C 830.53936,171.93323 838.19556,160.15443 852.91905,152.49823 C 867.64253,144.84202 862.34208,151.32035 861.1642,157.79868 C 859.98633,164.27701 858.80845,180.76732 865.87572,187.24565 C 872.943,193.72399 878.83239,192.54612 906.51255,196.07974 C 934.19269,199.61338 964.81755,205.50278 988.37513,210.21429 C 1011.9327,214.92581 1030.1898,220.22626 1037.846,228.47142 C 1045.5022,236.71656 1058.4589,243.1949 1061.4036,242.01703 C 1064.3483,240.83914 1067.293,235.5387 1077.305,229.64929 C 1087.3169,223.7599 1098.5068,220.22626 1102.6294,220.8152 C 1106.7519,221.40414 1106.163,221.40414 1102.0404,226.11565 C 1097.9179,230.82717 1092.6174,233.18293 1096.74,238.48339 C 1100.8626,243.78384 1110.2856,250.85111 1107.3409,252.61793 C 1104.3962,254.38475 1109.6966,253.79581 1112.0524,260.27414 C 1114.4082,266.75248 1121.4754,276.17551 1130.8985,283.24278 C 1140.3215,290.31006 1152.6892,291.48794 1150.9224,294.43264 C 1149.1556,297.37733 1130.3095,299.73308 1109.6966,290.31006 C 1089.0838,280.88703 1077.8939,266.16353 1072.0045,264.98567 C 1066.1151,263.80778 1057.281,267.34142 1049.0359,267.93036 C 1040.7907,268.5193 1006.0433,257.91839 994.26452,257.91839 C 982.48573,257.91839 961.28391,263.21884 950.09405,265.57459 C 938.90421,267.93036 911.813,269.10823 897.67844,272.05293 C 883.54389,274.99764 814.63798,292.66581 786.3689,294.43264 C 758.09981,296.19945 718.64085,298.5552 704.50632,297.96627 C 690.37177,297.37733 652.67964,291.48794 639.13404,290.31006 C 625.58844,289.13217 599.6751,290.899 592.60783,290.899 C 585.54055,290.899 585.54055,286.18748 589.66313,283.24278 C 593.7857,280.29809 603.79767,279.70914 602.6198,279.1202 z "
         style="opacity:1;fill:url(#linearGradient8586);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         sodipodi:nodetypes="csssc"
         id="path7377"
         d="M 693.87089,272.98255 C 701.83104,284.56093 706.81363,285.02953 717.02768,286.73188 C 730.05338,288.90283 764.78855,291.07378 759.723,286.73188 C 754.65745,282.38998 732.94796,283.11364 728.60608,276.60079 C 724.26418,270.08794 720.64592,270.08794 720.64592,270.08794"
         style="opacity:1;fill:url(#linearGradient8574);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <g
         transform="translate(0,-60)"
         id="g8591"
         style="opacity:1;display:inline">
        <path
           id="path8593"
           d="M 985.03125,316.6875 C 948.40646,319.44004 912.32813,327.23651 875.93534,331.94798 C 819.459,340.17383 762.35486,343.04288 705.3752,345.17635 C 677.02454,345.70413 648.62372,345.5625 620.375,348.375 C 641.21694,347.04597 661.61111,352.95227 682.30597,354.42661 C 715.14415,359.08008 748.29537,354.5662 781.2072,353.25284 C 816.98877,350.70238 851.78513,340.73969 886.7295,333.00115 C 912.84283,326.02384 940.37126,327.84573 966.4338,320.54519 C 973.18246,319.11945 981.20433,317.62597 987.25,316.65625 C 986.51003,316.63872 985.77071,316.66741 985.03125,316.6875 z M 987.5,316.6875 C 987.84162,316.71211 987.45794,316.5646 987.5,316.6875 z "
           style="opacity:0.2;fill:url(#linearGradient8600);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
        <path
           id="path8602"
           d="M 985.03125,315.9375 C 956.29395,317.8132 928.00517,323.76118 899.51454,327.73094 C 856.53054,334.62517 813.19391,339.10714 769.72165,341.37445 C 734.42422,343.79547 699.06148,344.80701 663.6878,345.11505 C 641.87105,345.46162 620.159,347.78008 598.40625,349.28125 C 613.93608,350.816 629.71378,346.94871 645.15784,350.41529 C 672.30516,353.85285 699.55699,358.8279 727.02922,356.88965 C 750.89134,355.63856 774.84705,355.07507 798.59375,352.34375 C 833.66528,347.14482 867.8794,337.63951 902.58433,330.41276 C 923.44712,327.39545 944.69705,327.07153 965.12222,321.6042 C 974.31205,319.76635 983.58535,317.50238 993,316.90625 C 990.61533,315.7049 987.64622,315.94464 985.03125,315.9375 z "
           style="opacity:0.2;fill:url(#linearGradient8609);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
        <path
           id="path8612"
           d="M 994.26452,317.68626 C 988.27476,317.07143 961.28391,323.21884 950.09405,325.57459 C 938.90421,327.93036 911.813,329.10823 897.67844,332.05293 C 883.54389,334.99764 814.63798,352.66581 786.3689,354.43264 C 758.09981,356.19945 718.64085,358.5552 704.50632,357.96627 C 690.37177,357.37733 652.57657,352.35189 639.13404,350.31006 C 623.64484,347.95736 601.33547,352.92036 594.69695,348.80987 C 632.02247,345.94256 631.07947,346.04596 638.61228,345.46656 C 663.45514,343.55573 698.13324,344.52268 731.32324,342.75649 C 773.32374,340.52145 817.74322,338.18905 857.65381,332.93279 C 934.03381,322.87348 994.5178,309.52193 994.26452,317.68626 z "
           style="opacity:0.2;fill:url(#linearGradient8634);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
        <path
           id="path8615"
           d="M 984.96875,314.4375 C 956.16735,316.29245 927.81588,322.24966 899.26454,326.23094 C 856.34405,333.12986 813.06878,337.60273 769.65915,339.87445 C 734.37207,342.29327 699.01986,343.30918 663.65655,343.61493 C 639.74117,344.03465 615.94334,346.64338 592.09375,348.25 C 600.36792,353.55716 610.86158,350.44229 620.0625,350.625 C 638.12092,349.25555 655.81079,354.14787 673.70182,355.71301 C 692.08947,358.19922 710.63797,359.65198 729.1875,358.3125 C 752.648,357.00287 776.21544,356.54932 799.55415,353.73217 C 834.12518,348.54294 867.90023,339.14911 902.09375,332.03125 C 922.69869,328.86246 943.76213,328.78946 963.9669,323.35072 C 974.20455,321.57433 984.49284,318.46185 995,318.46875 C 995.57513,313.59236 987.76944,314.62763 984.96875,314.4375 z "
           style="opacity:0.2;fill:url(#linearGradient8623);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
        <path
           id="path8625"
           d="M 984.96875,313.6875 C 949.81793,316.17103 915.19467,323.82594 880.30025,328.26961 C 822.05083,337.0149 763.11795,340.05922 704.3129,342.19644 C 671.07856,342.42267 637.85088,343.30919 604.75436,346.53369 C 601.46767,347.50601 588.4373,346.36144 591.2842,348.65039 C 601.08211,354.9633 613.5144,350.69407 624.37423,351.21081 C 643.74327,350.92139 662.71997,356.01676 681.99347,357.42661 C 715.33201,362.10249 748.98297,357.53434 782.39277,356.19081 C 817.99369,353.45467 852.64041,343.67322 887.417,335.93865 C 913.16502,329.02588 940.34724,330.86471 966.08025,323.6887 C 975.98202,321.97587 985.72795,318.91647 995.75,319.28125 C 996.90867,313.09728 988.85041,313.70488 984.96875,313.6875 z "
           style="opacity:0.2;fill:url(#linearGradient8632);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      </g>
      <path
         style="opacity:1;fill:url(#radialGradient8580);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
         d="M 602.6198,279.1202 C 622.64374,272.64187 620.87691,275.58656 625.58844,269.69717 C 630.29994,263.80778 635.60041,256.15158 653.2686,246.13961 C 670.93677,236.12764 673.88146,233.18293 703.91738,221.99309 C 733.95329,210.80323 746.90996,207.26959 781.65737,199.02445 C 816.40481,190.77929 809.33753,190.77929 819.93845,181.35626 C 830.53936,171.93323 838.19556,160.15443 852.91905,152.49823 C 867.64253,144.84202 862.34208,151.32035 861.1642,157.79868 C 859.98633,164.27701 858.80845,180.76732 865.87572,187.24565 C 872.943,193.72399 878.83239,192.54612 906.51255,196.07974 C 934.19269,199.61338 964.81755,205.50278 988.37513,210.21429 C 1011.9327,214.92581 1030.1898,220.22626 1037.846,228.47142 C 1045.5022,236.71656 1058.4589,243.1949 1061.4036,242.01703 C 1064.3483,240.83914 1067.293,235.5387 1077.305,229.64929 C 1087.3169,223.7599 1098.5068,220.22626 1102.6294,220.8152 C 1106.7519,221.40414 1106.163,221.40414 1102.0404,226.11565 C 1097.9179,230.82717 1092.6174,233.18293 1096.74,238.48339 C 1100.8626,243.78384 1110.2856,250.85111 1107.3409,252.61793 C 1104.3962,254.38475 1109.6966,253.79581 1112.0524,260.27414 C 1114.4082,266.75248 1121.4754,276.17551 1130.8985,283.24278 C 1140.3215,290.31006 1152.6892,291.48794 1150.9224,294.43264 C 1149.1556,297.37733 1130.3095,299.73308 1109.6966,290.31006 C 1089.0838,280.88703 1077.8939,266.16353 1072.0045,264.98567 C 1066.1151,263.80778 1057.281,267.34142 1049.0359,267.93036 C 1040.7907,268.5193 1006.0433,257.91839 994.26452,257.91839 C 982.48573,257.91839 961.28391,263.21884 950.09405,265.57459 C 938.90421,267.93036 911.813,269.10823 897.67844,272.05293 C 883.54389,274.99764 814.63798,292.66581 786.3689,294.43264 C 758.09981,296.19945 718.64085,298.5552 704.50632,297.96627 C 690.37177,297.37733 652.67964,291.48794 639.13404,290.31006 C 625.58844,289.13217 599.6751,290.899 592.60783,290.899 C 585.54055,290.899 585.54055,286.18748 589.66313,283.24278 C 593.7857,280.29809 603.79767,279.70914 602.6198,279.1202 z "
         id="path7345"
         sodipodi:nodetypes="csssssssssssssssssssssssssssssssc" />
      <path
         clip-path="none"
         id="path8323"
         d="M 855.9821,189.21101 C 853.94164,190.15187 853.83003,194.40837 857.01335,193.27351 C 862.00773,194.46728 861.19992,200.53214 859.9196,204.21101 C 859.77319,210.85359 868.6935,212.52153 873.76335,212.86726 C 885.61016,213.99481 897.01771,218.80172 909.13835,217.21101 C 920.85073,215.93171 933.18081,208.77336 944.8571,214.36726 C 946.94461,216.51984 945.80236,221.32161 948.38835,223.99226 C 949.24518,226.14255 954.79811,229.92417 954.0446,225.46101 C 953.93326,222.28525 948.91199,224.16665 950.26335,220.27351 C 950.08097,215.05329 946.21389,208.16629 939.92037,210.21895 C 921.73954,211.29198 903.06927,219.21335 885.02147,212.8026 C 877.31543,211.8176 869.67779,210.27812 862.5446,207.11726 C 864.25546,201.15215 865.4047,188.65651 855.9821,189.21101 z M 808.2321,200.36726 C 806.51281,200.84129 804.19349,204.39013 808.07585,203.05476 C 815.44576,202.48528 824.92164,204.4782 827.13835,212.58601 C 831.22674,221.85655 829.81029,233.74357 837.82585,240.99226 C 851.43008,246.39935 865.6183,238.50266 879.53748,238.40436 C 886.40456,237.51373 894.01761,238.03804 900.45085,237.36726 C 900.76306,233.33747 896.12768,236.7768 893.83134,236.19069 C 875.62637,237.80508 856.72989,242.03752 838.70085,238.67976 C 830.50676,230.76295 832.41545,218.00075 826.6071,208.67976 C 823.82954,202.80609 817.49338,200.41157 811.3571,200.61726 C 810.31659,200.42119 809.30877,200.28594 808.2321,200.36726 z M 774.9196,201.86726 C 774.15016,204.05771 774.26868,205.76098 777.1071,205.55476 C 789.07136,210.70698 790.68718,225.46997 795.45085,236.08601 C 797.20642,240.84381 798.74095,245.706 800.32585,250.55476 C 795.29203,234.74619 793.05075,216.62542 781.13835,204.17976 C 779.70077,203.48941 775.94797,199.97706 774.9196,201.86726 z M 723.82585,220.21101 C 721.67295,224.70032 728.29867,221.6406 730.6696,222.46101 C 744.06944,222.80351 758.99643,226.72226 767.5446,237.58601 C 769.58587,241.29271 765.90288,246.94159 761.57585,245.11726 C 767.11677,246.97473 771.86009,251.57973 771.30736,257.83317 C 770.19794,262.56792 774.69993,258.74119 772.95085,256.71101 C 775.14231,243.57746 767.62196,227.6511 753.4257,225.75276 C 743.69771,223.39209 734.11779,219.33366 723.82585,220.21101 z M 682.70085,233.30476 C 680.31807,238.25499 687.27181,235.94156 690.20025,236.32916 C 713.67558,235.71129 739.10751,234.57004 760.5446,244.61726 C 736.43115,233.02908 708.51712,236.32379 682.70085,233.30476 z M 804.1071,261.86726 C 805.35919,264.57832 806.61911,269.91951 808.1696,271.21101 C 808.50274,267.4287 804.31033,264.91564 803.8571,261.05476 C 802.95812,258.56658 803.84578,261.09651 804.1071,261.86726 z "
         style="opacity:1;fill:url(#linearGradient8571);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         sodipodi:nodetypes="cssssss"
         id="path7365"
         d="M 781.65737,199.02445 C 816.40481,190.77929 809.33753,190.77929 819.93845,181.35626 C 830.53936,171.93323 838.19556,160.15443 852.91905,152.49823 C 867.64253,144.84202 862.34208,151.32035 861.1642,157.79868 C 859.98633,164.27701 858.80845,180.76732 865.87572,187.24565 C 872.943,193.72399 878.83239,192.54612 906.51255,196.07974 C 1493.5139,261.03846 315.68722,394.56532 781.65737,199.02445 z "
         style="opacity:1;fill:url(#linearGradient8577);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         transform="matrix(0.954811,-0.297213,0.297213,0.954811,-90.76609,246.7864)"
         d="M 865.40646 223.81853 A 71.644615 10.207939 0 1 1  722.11723,223.81853 A 71.644615 10.207939 0 1 1  865.40646 223.81853 z"
         sodipodi:ry="10.207939"
         sodipodi:rx="71.644615"
         sodipodi:cy="223.81853"
         sodipodi:cx="793.76184"
         id="path3179"
         style="opacity:1;fill:url(#linearGradient3187);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.25142858;display:inline"
         sodipodi:type="arc" />
      <path
         sodipodi:nodetypes="csssssc"
         id="path6772"
         d="M 909.2792,206.98611 C 919.79946,213.23251 934.65932,227.63212 967.53514,224.34454 C 1000.4109,221.05696 1032.6292,247.68636 1034.6018,239.46741 C 1036.5743,231.24846 1032.958,227.63212 1024.4103,223.35826 C 1015.8626,219.08441 999.42467,212.18049 964.24755,207.24912 C 929.07044,202.31774 887.25241,196.59735 886.26613,201.85748 C 885.27986,207.11761 910.26547,207.31487 909.2792,206.98611 z "
         style="opacity:1;fill:url(#linearGradient7665);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         id="path3153"
         d="M 649.03969,249.41776 C 658.49149,249.03969 669.83364,250.55198 662.65028,257.73534 C 655.46692,264.91871 638.07561,261.13799 636.9414,265.29678 C 635.80718,269.45557 631.27032,277.01701 623.33081,278.52929 C 615.3913,280.04158 587.79206,287.60302 588.92627,284.95651 C 590.06049,282.31001 610.85444,278.90737 618.79395,275.88279 C 626.73346,272.85822 630.51417,265.29678 636.18525,260.00377 C 641.85633,254.71077 649.41777,249.79583 649.03969,249.41776 z "
         style="opacity:1;fill:url(#linearGradient3161);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         sodipodi:nodetypes="cssc"
         id="path4087"
         d="M 800.84334,193.82149 C 808.73879,191.48842 805.77714,195.45267 823.85926,177.73807 C 839.96713,161.95759 845.28152,155.71205 854.9169,151.39454 C 861.73066,148.34137 861.84941,148.62154 861.84941,148.62154"
         style="opacity:1;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient4095);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         sodipodi:nodetypes="cssc"
         id="path3192"
         d="M 862.40401,152.50374 C 860.4629,159.43625 858.89947,174.38962 863.51321,184.67058 C 867.51278,193.58297 880.70583,194.37609 891.52054,194.65339 C 902.33525,194.93069 910.93156,195.76259 910.93156,195.76259"
         style="opacity:1;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient4085);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         style="opacity:1;fill:url(#linearGradient13284);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline"
         d="M 628.78563,267.57766 C 637.87651,261.8201 643.33103,258.48678 647.27041,259.09284 C 651.20979,259.6989 645.14921,262.72919 645.14921,262.72919"
         id="path13276" />
      <path
         id="path13266"
         d="M 628.78563,267.57766 C 637.87651,261.8201 643.33103,258.48678 647.27041,259.09284 C 651.20979,259.6989 645.14921,262.72919 645.14921,262.72919"
         style="opacity:1;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient13274);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         id="path12377"
         d="M 587.27063,289.09273 C 589.39183,286.97153 599.99786,285.75941 607.57359,284.85033 C 615.14932,283.94124 632.42198,280.60792 636.05833,280.91095 C 639.69468,281.21398 641.20983,281.82003 641.20983,281.82003"
         style="opacity:1;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.25142858;display:inline" />
      <path
         style="opacity:1;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:white;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.25142858;display:inline"
         d="M 589.27063,289.58045 C 591.39183,287.45925 601.99786,286.24713 609.57359,285.33805 C 617.14932,284.42896 634.42198,281.09564 638.05833,281.39867 C 641.69468,281.7017 643.20983,282.30775 643.20983,282.30775"
         id="path2264" />
      <path
         sodipodi:nodetypes="csssc"
         id="path3167"
         d="M 693.87089,272.98255 C 701.83104,284.56093 706.81363,285.02953 717.02768,286.73188 C 730.05338,288.90283 764.78855,291.07378 759.723,286.73188 C 754.65745,282.38998 732.94796,283.11364 728.60608,276.60079 C 724.26418,270.08794 720.64592,270.08794 720.64592,270.08794"
         style="opacity:1;fill:url(#linearGradient8563);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8565);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         style="opacity:1;fill:url(#linearGradient8568);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
         d="M 693.87089,272.98255 C 701.83104,284.56093 706.81363,285.02953 717.02768,286.73188 C 730.05338,288.90283 764.78855,291.07378 759.723,286.73188 C 754.65745,282.38998 732.94796,283.11364 728.60608,276.60079 C 724.26418,270.08794 720.64592,270.08794 720.64592,270.08794"
         id="path3163"
         sodipodi:nodetypes="csssc" />
      <path
         id="path4097"
         d="M 924.71517,267.05666 C 910.09682,262.87999 906.75548,256.61498 932.23318,251.18531 C 957.71088,245.75563 966.89956,237.81996 1000.3129,243.6673 C 1033.7263,249.51464 1050.433,263.29765 1065.469,254.94431 C 1080.505,246.59097 1090.9467,239.07296 1097.2117,244.9203 C 1103.4767,250.76764 1098.0471,253.27364 1103.8944,259.12098 C 1109.7417,264.96832 1124.7778,285.85168 1136.8901,290.86369 C 1149.0025,295.8757 1130.6251,296.29336 1118.9304,290.02836 C 1107.2357,283.76335 1090.9467,274.157 1082.5934,267.05666 C 1074.24,259.95632 1065.0513,263.29765 1058.7863,265.38599 C 1052.5213,267.47433 1032.891,265.38599 1010.3369,257.86798 C 987.78292,250.34997 971.49389,261.20932 955.20487,263.29765 C 938.91585,265.38599 924.2975,267.47433 924.71517,267.05666 z "
         style="opacity:1;fill:url(#linearGradient4990);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
      <path
         id="path8636"
         d="M 864.05582,145.03125 C 841.60333,150.95865 828.68463,172.4152 811.71207,186.46875 C 801.19472,192.51965 788.35245,193.18436 776.79716,196.74218 C 730.85799,207.94088 684.54796,222.11618 644.92409,248.57346 C 636.37248,254.07817 629.58458,261.64138 623.33707,269.4375 C 617.60725,272.70883 610.50323,272.3095 604.61832,275.34375 C 597.54698,276.82911 586.88897,278.53139 585.89957,287.3125 C 585.99005,294.91546 595.58859,295.80675 601.30428,294.72578 C 625.99496,292.89248 650.76211,294.19121 675.09028,298.50293 C 698.22526,302.15446 721.81134,303.0659 745.18082,300.90625 C 776.38352,299.85632 807.63507,297.84039 838.05582,290.53125 C 870.0773,283.88578 901.54782,273.84807 934.4244,272.04316 C 952.31462,270.83013 969.59913,265.57784 987.18082,262.78125 C 1010.5942,258.75812 1032.3208,272.77097 1055.5558,271.65625 C 1063.4386,270.94521 1073.0818,265.10097 1079.4282,272.62674 C 1094.7341,285.30044 1111.6482,297.52692 1131.9621,300.21875 C 1140.2213,301.4292 1150.2027,302.32757 1157.0871,296.9375 C 1160.5113,291.918 1154.0353,287.21581 1149.4934,286.6875 C 1134.2418,281.82576 1122.6875,269.01056 1116.5246,254.59375 C 1113.5093,252.76141 1115.4899,249.1489 1112.8996,246.71875 C 1110.0919,242.24274 1104.18,239.68996 1102.5246,234.625 C 1105.6793,229.80593 1112.7884,226.99746 1112.3684,220.25 C 1107.0822,213.55176 1097.7303,217.99904 1091.1808,219.9375 C 1080.6438,223.83001 1071.2353,230.33222 1063.1184,237.96875 C 1049.0908,234.70326 1041.8352,220.11805 1028.1002,216.11851 C 1006.0477,207.20681 982.04322,204.97282 958.9945,199.86002 C 932.0301,194.7235 904.6516,191.61321 877.58707,187.9375 C 870.06769,185.75589 866.98414,177.67849 867.27457,170.5 C 866.45783,163.02039 869.77876,155.79627 869.83707,148.53125 C 869.06172,146.16753 866.49321,144.67322 864.05582,145.03125 z "
         style="opacity:0.6;fill:url(#radialGradient9531);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
    </g>
    <path
       style="fill:url(#linearGradient2840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;display:inline"
       d="M 311.42857,-17.142857 L 1337.1429,717.14286 L 1328.5714,391.42857 L 331.42857,-20 L 311.42857,-17.142857 z "
       id="path2832" />
  </g>
</svg>