File: spacefun-wallpaper-widescreen.svg

package info (click to toggle)
desktop-base 7.0.3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 14,996 kB
  • sloc: xml: 197; sh: 174; makefile: 82
file content (2304 lines) | stat: -rw-r--r-- 241,652 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="1440.0002"
   height="900"
   id="svg2915"
   version="1.1"
   inkscape:version="0.48+devel r9734"
   sodipodi:docname="wallpaper.svg"
   inkscape:export-filename="/home/valessio/svn/debianart/themes/spacefun/wallpaper/wallpaper_1440x1152.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2917">
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 576 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1440 : 576 : 1"
       inkscape:persp3d-origin="720 : 384 : 1"
       id="perspective4012" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3322">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3324" />
      <stop
         id="stop3330"
         offset="0.74422371"
         style="stop-color:#becadc;stop-opacity:1;" />
      <stop
         style="stop-color:#000000;stop-opacity:1"
         offset="1"
         id="stop3326" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3314">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3316" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3318" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3306">
      <stop
         style="stop-color:#204a87;stop-opacity:1;"
         offset="0"
         id="stop3308" />
      <stop
         style="stop-color:#204a87;stop-opacity:0;"
         offset="1"
         id="stop3310" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3298">
      <stop
         style="stop-color:#000000;stop-opacity:1"
         offset="0"
         id="stop3300" />
      <stop
         style="stop-color:#204a87;stop-opacity:1"
         offset="1"
         id="stop3302" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5002">
      <stop
         style="stop-color:#204a87;stop-opacity:1;"
         offset="0"
         id="stop5004" />
      <stop
         style="stop-color:#204a87;stop-opacity:0;"
         offset="1"
         id="stop5006" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4945">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4947" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop4949" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4937">
      <stop
         style="stop-color:#3465a4;stop-opacity:1;"
         offset="0"
         id="stop4939" />
      <stop
         style="stop-color:#3465a4;stop-opacity:0;"
         offset="1"
         id="stop4941" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4927">
      <stop
         style="stop-color:#3465a4;stop-opacity:1;"
         offset="0"
         id="stop4929" />
      <stop
         style="stop-color:#3465a4;stop-opacity:0;"
         offset="1"
         id="stop4931" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4889">
      <stop
         style="stop-color:#ffffff;stop-opacity:1"
         offset="0"
         id="stop4891" />
      <stop
         id="stop4897"
         offset="0.53927457"
         style="stop-color:#ffffff;stop-opacity:1" />
      <stop
         style="stop-color:#d3d7cf;stop-opacity:1"
         offset="0.72651529"
         id="stop4899" />
      <stop
         style="stop-color:#3465a4;stop-opacity:1"
         offset="1"
         id="stop4893" />
    </linearGradient>
    <linearGradient
       id="linearGradient3244">
      <stop
         style="stop-color:#3e86ad;stop-opacity:1;"
         offset="0"
         id="stop3246" />
      <stop
         id="stop4424"
         offset="0.14356746"
         style="stop-color:#3465a4;stop-opacity:1" />
      <stop
         style="stop-color:#000000;stop-opacity:1"
         offset="1"
         id="stop3248" />
    </linearGradient>
    <filter
       inkscape:collect="always"
       id="filter4022"
       x="-0.13577534"
       width="1.2715507"
       y="-0.10750885"
       height="1.2150177"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="48.044401"
         id="feGaussianBlur4024" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3244"
       id="radialGradient4027"
       cx="535.06018"
       cy="435.5336"
       fx="1007.4568"
       fy="107.19494"
       r="722.75256"
       gradientTransform="matrix(1.1846374,1.4304401,-1.0073629,0.82365392,202.58044,-830.78282)"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter4570"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.5608669"
         id="feGaussianBlur4572" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4889"
       id="radialGradient4901"
       cx="6582.415"
       cy="355.00522"
       fx="6505.9033"
       fy="354.93219"
       r="214.16444"
       gradientTransform="matrix(0.00108341,2.7229301,-1.1350298,4.5161602e-4,2588.4612,-17598.953)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4889"
       id="radialGradient4903"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.00108341,2.7229301,-1.1350298,4.5161602e-4,2588.4612,-17598.953)"
       cx="6582.415"
       cy="355.00522"
       fx="6505.9033"
       fy="354.93219"
       r="214.16444" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4889"
       id="radialGradient4905"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.00108341,2.7229301,-1.1350298,4.5161602e-4,2588.4612,-17598.953)"
       cx="6582.415"
       cy="355.00522"
       fx="6505.9033"
       fy="354.93219"
       r="214.16444" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4889"
       id="radialGradient4907"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.00108341,2.7229301,-1.1350298,4.5161602e-4,2588.4612,-17598.953)"
       cx="6582.415"
       cy="355.00522"
       fx="6505.9033"
       fy="354.93219"
       r="214.16444" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4889"
       id="radialGradient4915"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.00108341,2.7229301,-1.1350298,4.5161602e-4,2588.4612,-17598.953)"
       cx="6582.415"
       cy="355.00522"
       fx="6505.9033"
       fy="354.93219"
       r="214.16444" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4889"
       id="radialGradient4917"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.00108341,2.7229301,-1.1350298,4.5161602e-4,2588.4612,-17598.953)"
       cx="6582.415"
       cy="355.00522"
       fx="6505.9033"
       fy="354.93219"
       r="214.16444" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4889"
       id="radialGradient4919"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.00108341,2.7229301,-1.1350298,4.5161602e-4,2588.4612,-17598.953)"
       cx="6582.415"
       cy="355.00522"
       fx="6505.9033"
       fy="354.93219"
       r="214.16444" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4927"
       id="radialGradient4933"
       cx="2144.5601"
       cy="137.47697"
       fx="2144.5601"
       fy="137.47697"
       r="51.024296"
       gradientTransform="matrix(2.5434154,-0.21851957,0.53551487,6.2330244,-3330.1349,-117.02702)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4927"
       id="radialGradient4935"
       cx="2137.5867"
       cy="225.15483"
       fx="2137.5867"
       fy="225.15483"
       r="80.375"
       gradientTransform="matrix(-1.7059185,2.3640588,-1.6517487,-1.1919119,6024.1304,-4577.8774)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4937"
       id="radialGradient4943"
       cx="2321.3691"
       cy="143.72168"
       fx="2321.3691"
       fy="143.72168"
       r="80.375"
       gradientTransform="matrix(-1.373502,-2.2733151,1.1616706,-0.70186362,5379.6999,5606.583)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4945"
       id="radialGradient4951"
       cx="2189.0735"
       cy="864.40857"
       fx="2189.0735"
       fy="864.40857"
       r="45.21875"
       gradientTransform="matrix(-7.2796075,-0.10812625,0.04243773,-2.8571413,18103.972,3597.2995)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4945"
       id="radialGradient4953"
       cx="2188.4871"
       cy="869.53259"
       fx="2188.4871"
       fy="869.53259"
       r="58.453098"
       gradientTransform="matrix(-5.6314116,-0.08367614,0.03284399,-2.2102547,14500.772,2995.8785)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4945"
       id="radialGradient4955"
       cx="2189.0723"
       cy="864.41974"
       fx="2189.0723"
       fy="864.41974"
       r="45.25"
       gradientTransform="matrix(-7.2745847,-0.10818098,0.04245823,-2.8551628,18092.951,3595.741)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5002"
       id="linearGradient5008"
       x1="1148.4664"
       y1="779.21381"
       x2="1138.2744"
       y2="782.4494"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5002"
       id="linearGradient5012"
       gradientUnits="userSpaceOnUse"
       x1="1148.4664"
       y1="779.21381"
       x2="1138.2744"
       y2="782.4494"
       gradientTransform="matrix(0.49770898,0,0,0.49770898,565.92819,392.88664)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5002-4"
       id="linearGradient5008-5"
       x1="1148.4664"
       y1="779.21381"
       x2="1138.2744"
       y2="782.4494"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5002-4">
      <stop
         style="stop-color:#204a87;stop-opacity:1;"
         offset="0"
         id="stop5004-9" />
      <stop
         style="stop-color:#204a87;stop-opacity:0;"
         offset="1"
         id="stop5006-8" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(-5.2105952,-22.191534,-22.191534,5.2105952,25413.647,21764.677)"
       y2="782.4494"
       x2="1138.2744"
       y1="779.21381"
       x1="1148.4664"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5029"
       xlink:href="#linearGradient5002-4"
       inkscape:collect="always" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3298"
       id="radialGradient3304"
       cx="-555.33875"
       cy="639.29114"
       fx="-555.33875"
       fy="639.29114"
       r="138.04004"
       gradientTransform="matrix(-1.3767875,0.50289872,-0.19899486,-0.5447889,-1212.4269,1474.8876)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3306"
       id="radialGradient3312"
       cx="-632.12738"
       cy="795.8761"
       fx="-617.54419"
       fy="783.96796"
       r="46.286594"
       gradientTransform="matrix(0.59008182,2.4832558,-3.1472524,0.74786179,2285.7001,1770.4443)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3314"
       id="radialGradient3320"
       cx="-667.23993"
       cy="954.04987"
       fx="-667.23993"
       fy="954.04987"
       r="128.03426"
       gradientTransform="matrix(2.7198861,-0.65775017,0.08306028,0.34347205,1068.333,121.73236)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3322"
       id="radialGradient3328"
       cx="-652.83099"
       cy="826.02533"
       fx="-652.83099"
       fy="826.02533"
       r="71.21875"
       gradientTransform="matrix(-0.66109426,1.4218432,-1.652078,-0.76814588,299.69137,2388.3254)"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter4124"
       x="-0.07583975"
       width="1.1516795"
       y="-0.13075937"
       height="1.2615187"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="8.7241018"
         id="feGaussianBlur4126" />
    </filter>
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.43142361"
     inkscape:cx="723.32343"
     inkscape:cy="449.5"
     inkscape:current-layer="layer1"
     inkscape:document-units="px"
     showgrid="false"
     inkscape:snap-global="false"
     inkscape:window-width="1440"
     inkscape:window-height="852"
     inkscape:window-x="0"
     inkscape:window-y="25"
     inkscape:window-maximized="1"
     fit-margin-top="0"
     fit-margin-left="0"
     fit-margin-right="0"
     fit-margin-bottom="0">
    <sodipodi:guide
       position="398.68761,773.5"
       orientation="600,0"
       id="guide2927" />
    <sodipodi:guide
       position="398.68761,173.5"
       orientation="0,800"
       id="guide2929" />
    <sodipodi:guide
       position="1198.6876,173.5"
       orientation="-600,0"
       id="guide2931" />
    <sodipodi:guide
       position="1198.6876,773.5"
       orientation="0,-800"
       id="guide2933" />
    <sodipodi:guide
       position="-1.3123854,899.5"
       orientation="900,0"
       id="guide2939" />
    <sodipodi:guide
       position="-1.3123854,-0.5"
       orientation="0,1440"
       id="guide2941" />
    <sodipodi:guide
       position="1438.6876,-0.5"
       orientation="-900,0"
       id="guide2943" />
    <sodipodi:guide
       position="1402.216,896.3821"
       orientation="0,-1440"
       id="guide2945" />
    <sodipodi:guide
       position="206.68761,833.5"
       orientation="768,0"
       id="guide2947" />
    <sodipodi:guide
       position="206.68761,65.5"
       orientation="0,1024"
       id="guide2949" />
    <sodipodi:guide
       position="1230.6876,65.5"
       orientation="-768,0"
       id="guide2951" />
    <sodipodi:guide
       position="1175.8651,835.96033"
       orientation="0,-1024"
       id="guide2953" />
  </sodipodi:namedview>
  <metadata
     id="metadata2920">
    <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></dc:title>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     transform="translate(-1.3123854,-173.5)">
    <rect
       y="44.180553"
       x="-8.6909199"
       height="1161.6389"
       width="1454.7767"
       id="rect9055"
       style="fill:url(#radialGradient4027);fill-opacity:1;fill-rule:evenodd;stroke:none" />
    <g
       id="g4926"
       transform="matrix(0.4551298,-0.18382223,0.18382223,0.4551298,478.0319,659.91782)">
      <path
         transform="matrix(0.21521095,0,0,0.21521095,991.55253,491.8533)"
         inkscape:connector-curvature="0"
         d="m 98.945265,454.84834 c 5.497695,-17.10351 6.482395,-27.34419 8.580695,-37.25189 -15.156995,19.6607 -6.9865,23.87116 -8.580695,37.25189 z M 126.93806,336.21805 c 2.7195,25.61962 -18.9901,35.57479 4.8062,18.66166 12.7773,-29.18777 -4.9703,-8.0522 -4.8062,-18.66166 z m 415.8016,-224.34362 c 11.8395,-4.38886 29.1065,-2.41447 41.6845,-5.3047 -16.3878,1.39159 -32.6817,2.22415 -48.7883,4.30558 l 7.092,0.99912 0.014,0 z m 380.5529,478.48164 -2.5676,6.56549 c -4.7125,33.99287 -14.899,67.6408 -30.5248,98.83864 17.2553,-32.9224 28.3916,-68.9135 33.0924,-105.39228 l 0,-0.0139 z m -481.5874,106.20101 c -6.0839,-6.83901 -9.6827,-15.08146 -13.7385,-23.26453 3.8801,14.41545 11.7808,26.79707 19.1425,39.39276 l -5.404,-16.12823 0,0 z m -27.2075,1.08239 -2.4616,12.45298 c 11.523,15.8784 20.6664,33.06519 35.3544,45.44674 -10.5735,-20.93334 -18.4157,-29.56834 -32.8811,-57.89972 l -0.014,0 z M 849.42986,569.9817 c 1.0552,28.73585 -8.2639,42.69931 -16.692,67.39111 l -15.1457,7.64787 c -12.3785,24.44198 1.2194,15.52154 -7.6542,34.94432 -19.3539,17.44847 -58.6824,54.58134 -71.2715,57.98307 -9.202,-0.21408 6.2242,-11.01386 8.2403,-15.23616 -25.8947,18.04311 -20.7838,27.07059 -60.37,38.04876 l -1.1722,-2.62861 c -97.6465,46.62432 -233.2969,-45.76794 -231.5151,-171.78428 -1.0316,7.99276 -2.954,5.99453 -5.1226,9.20595 -5.0406,-64.83392 29.5167,-129.9652 87.7999,-156.58387 57.0056,-28.61682 123.8347,-16.88936 164.6631,21.74214 -22.4244,-29.80618 -67.0749,-61.39651 -119.9659,-58.4706 -51.8243,0.84447 -100.3077,34.26647 -116.4962,70.55486 -26.551,16.94887 -29.634,65.36919 -41.2039,74.24203 -15.5789,116.08495 29.2823,166.21791 105.149,225.22378 11.9216,8.17115 3.3526,9.40811 4.9585,15.61679 -25.2029,-11.97722 -48.2841,-30.04416 -67.2742,-52.19069 10.0694,14.96264 20.9477,29.48513 34.991,40.90331 -23.7728,-8.15924 -55.5285,-58.43499 -64.7891,-60.48074 40.9811,74.43235 166.2105,130.53608 231.8086,102.69237 -30.3492,1.14184 -68.9038,0.63047 -103.004,-12.1437 -14.3481,-7.48132 -33.8071,-22.96724 -30.3256,-25.85747 89.5115,33.92152 181.9536,25.66715 259.4147,-37.31133 19.6933,-15.58105 41.215,-42.06891 47.44,-42.4138 -9.3662,14.28465 1.6059,6.86277 -5.5917,19.49422 19.6115,-32.12559 -8.5453,-13.09529 20.2794,-55.4734 l 10.6438,14.86737 c -3.9733,-26.68995 32.6469,-59.06531 28.9189,-101.24126 8.4052,-12.89299 9.3662,13.89217 0.4572,43.54378 12.3675,-32.91056 3.2708,-38.20341 6.4356,-65.3572 3.4232,9.13452 7.948,18.82807 10.2572,28.47403 -8.0651,-31.81626 8.241,-53.55839 12.2968,-72.0535 -4.0094,-1.78407 -12.4375,14.05866 -14.3718,-23.51436 0.284,-16.31848 4.4783,-8.55172 6.0843,-12.57193 -3.1419,-1.84352 -11.4294,-14.35594 -16.4586,-38.3579 3.6345,-5.64965 9.7535,14.61761 14.7238,15.45024 -3.1891,-19.0779 -8.6983,-33.61231 -8.9325,-48.26568 -14.536,-30.80529 -5.1463,4.12719 -16.9151,-13.21417 -15.4623,-48.93168 12.824,-11.35867 14.7466,-33.57663 23.4207,34.43302 36.7844,87.83684 42.9269,109.94769 -4.689,-26.97547 -12.2497,-53.09461 -21.4988,-78.36922 7.1388,3.05671 -11.4647,-55.46148 9.272,-16.71103 -22.1431,-82.60344 -94.6922,-159.80706 -161.4507,-196.00032 8.1468,7.58829 18.4622,17.10344 14.7702,18.59016 -33.2095,-20.05318 -27.3719,-21.62318 -32.1308,-30.09162 -27.0317,-11.15658 -28.8136,0.91583 -46.7139,0.0208 -50.9803,-27.45122 -60.8148,-24.52532 -107.7276,-41.71204 l 2.1335,10.13363 c -33.772,-11.41819 -39.3518,4.30559 -75.855,0.0208 -2.2038,-1.73648 11.6988,-6.36325 23.1632,-8.0522 -32.6466,4.37701 -31.1227,-6.54166 -63.0777,1.21319 7.8774,-5.61397 16.2119,-9.32484 24.6051,-14.09433 -26.633,1.65327 -63.57,15.72377 -52.1759,2.90214 -43.4428,19.67255 -120.599,47.27841 -163.8777,88.46717 l -1.3715,-9.22971 c -19.8342,24.1566 -86.4989,72.14868 -91.8091,103.46548 l -5.2984,1.23696 c -10.3039,17.73384 -17.0091,37.83462 -25.1795,56.06805 -13.4924,23.3478 -19.7873,8.99187 -17.8648,12.64329 -26.551,54.61701 -39.7503,100.5039 -51.1327,138.16005 8.1119,12.31025 0.1878,74.11123 3.2588,123.59003 -13.316495,244.34927 169.0004,481.57411 368.3146,536.34571 29.2119,10.6094 72.6431,10.2051 109.6035,11.2755 -43.5952,-12.6433 -49.2337,-6.6844 -91.6918,-21.7184 -30.6304,-14.6414 -37.359,-31.3524 -59.0453,-50.466 l 8.5808,15.4026 c -42.552,-15.2837 -24.7341,-18.9232 -59.3617,-30.0321 l 9.1785,-12.1557 c -13.7971,-1.0585 -36.5384,-23.5738 -42.7512,-36.0624 l -15.0983,0.6069 c -18.1227,-22.6818 -27.7936,-39.0598 -27.0785,-51.73874 l -4.8765,8.81344 c -5.5212,-9.62223 -66.7116,-85.12498 -34.9676,-67.55763 -5.8846,-5.45933 -13.7385,-8.89668 -22.2372,-24.57292 l 6.459,-7.48131 c -15.2625,-19.94615 -28.1101,-45.49434 -27.1254,-54.0223 8.1469,11.15651 13.7971,13.24985 19.3887,15.1648 -38.5781,-97.10216 -40.735,-5.34037 -69.947,-98.85063 l 6.1659,-0.49952 c -4.724,-7.25532 -7.6194,-15.10536 -11.4292,-22.82452 l 2.6961,-27.17763 c -27.7583,-32.53 -7.7601,-138.50501 -3.7394,-196.59504 2.7665,-23.6214 23.1867,-48.78903 38.6836,-88.22932 l -9.4481,-1.65327 c 18.0757,-31.97096 103.1796,-128.44274 142.6134,-123.49484 19.0956,-24.335 -3.798,-0.0949 -7.5375,-6.19677 41.9541,-44.0433 55.1418,-31.11456 83.4393,-39.04788 30.5249,-18.37615 -26.1993,7.18396 -11.7222,-7.00549 52.7738,-13.66617 37.3941,-31.0908 106.2392,-38.02494 7.2678,4.19855 -16.8567,6.4703 -22.9054,11.90579 43.9586,-21.83725 139.1437,-16.85368 200.9669,12.1081 71.717,34.02855 152.3194,134.56806 155.5078,229.17255 l 3.6227,0.9872 c -1.829,37.60869 5.6735,81.10487 -7.3383,121.04476 l 8.85,-18.91142 0,-0.0139 z m -291.4981,-444.3103 -6.5879,1.37968 6.1424,-0.57088 0.4455,-0.8088 z m -18.6737,-5.26902 c 9.3545,1.68895 20.2093,2.99727 18.662,5.26902 10.2453,-2.29551 12.5546,-4.3651 -18.662,-5.26902 z m 195.1531,437.44753 c 2.1332,-32.00663 -6.2014,-21.88485 -9.0032,-9.6817 3.2473,1.73654 5.8377,22.57476 9.0032,9.6817 z m -34.7102,91.63099 c 10.4449,-14.61768 18.041,-30.59128 20.725,-47.13576 -2.3556,11.77506 -8.6277,21.95621 -14.5825,32.69648 -32.7404,20.92149 -3.0948,-12.4173 0,-25.0962 -35.1902,44.98283 -4.8414,26.97546 -6.1071,39.53548 l 0,0 z m -94.0126,23.77597 c -17.5131,0.25011 3.3174,9.14644 26.1759,12.71465 6.3301,-5.01925 12.0504,-10.06234 17.1495,-14.9864 -14.2424,3.53254 -28.7311,3.61575 -43.3371,2.25983 l 0.014,0.0139 z"
         style="font-size:12px;fill:#eeeeec;fill-opacity:1;stroke:none;filter:url(#filter4022)"
         id="path118-1" />
      <path
         inkscape:connector-curvature="0"
         id="path4422"
         d="m 1168.5614,625.04683 c 0.1387,0.1309 0.2769,0.26258 0.4147,0.39504 -0.1026,0.0216 -0.2052,0.0431 -0.3078,0.0643 0.1125,-0.011 0.2249,-0.0222 0.3373,-0.0337 1.6657,1.59779 3.268,3.30964 4.7955,5.13027 -2.3249,1.0942 -4.6722,2.0218 -7.0225,2.78078 2.464,-0.5015 4.9367,-1.15901 7.4021,-1.97182 0.4209,2.49283 0.6927,5.06349 0.7991,7.69451 0.202,-2.62404 0.2376,-5.21766 0.1189,-7.76212 2.6036,0.43839 5.2147,0.84338 7.8327,1.21486 -2.5479,-0.69768 -5.0963,-1.39351 -7.6453,-2.08748 1.1522,-2.2635 2.1827,-4.62322 3.0775,-7.06402 -1.1803,2.31985 -2.4831,4.52872 -3.8897,6.61395 -1.0943,-1.02068 -2.2112,-2.00201 -3.3485,-2.94313 0.1042,-0.60823 0.1991,-1.2176 0.2846,-1.82778 0.7907,0.26834 1.5802,0.54117 2.3686,0.81849 -0.7506,-0.35805 -1.5037,-0.70859 -2.2592,-1.05157 0.4927,-0.58187 0.9769,-1.17798 1.452,-1.78802 -0.5516,0.55303 -1.1106,1.09057 -1.6764,1.6124 -0.4888,-0.62119 -0.9872,-1.22837 -1.4945,-1.82123 0.4266,0.63684 0.8427,1.2874 1.248,1.95128 -0.6629,0.15912 -1.3261,0.30925 -1.9894,0.45041 -0.1655,-0.12595 -0.3314,-0.25109 -0.4977,-0.37542 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         id="path4420"
         d="m 1182.6033,624.01495 c 0.6731,-0.0716 1.3464,-0.1502 2.0199,-0.23577 -0.01,0.60176 -0.02,1.20506 -0.043,1.80956 -0.6522,-0.53783 -1.311,-1.06247 -1.9761,-1.57379 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path4418"
         d="m 1164.5875,637.92952 c 0.9852,0.96244 1.9511,1.95325 2.8964,2.97202 -1.1818,0.61951 -2.371,1.18824 -3.5638,1.70531 1.2654,-0.37706 2.5321,-0.80554 3.797,-1.2849 0.3215,1.30382 0.6004,2.63513 0.8337,3.99188 -0.07,-1.37059 -0.1877,-2.72182 -0.3506,-4.05126 1.3891,0.17761 2.7856,0.32883 4.1886,0.45361 -1.3792,-0.28688 -2.753,-0.59078 -4.1212,-0.91167 0.5251,-1.2011 1.0118,-2.41943 1.4595,-3.65222 -0.5993,1.16953 -1.2334,2.31508 -1.9011,3.43409 -1.0656,-0.90797 -2.1453,-1.79367 -3.2385,-2.65686 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         id="path4416"
         d="m 1195.2312,625.50458 c 0.9709,-0.18231 1.9416,-0.37901 2.9118,-0.5901 -0.022,1.06218 -0.068,2.12726 -0.1377,3.19425 0.184,-1.05523 0.3448,-2.11344 0.4822,-3.17367 0.9309,0.32373 1.8601,0.65361 2.7877,0.9896 -0.8815,-0.45696 -1.7665,-0.90351 -2.655,-1.33958 0.595,-0.87092 1.1743,-1.76196 1.737,-2.67265 -0.6526,0.83432 -1.3192,1.64685 -1.9986,2.43726 -0.5675,-0.85325 -1.1497,-1.68725 -1.7458,-2.50151 0.5007,0.88295 0.9851,1.78479 1.4522,2.70486 -0.9429,0.33525 -1.8876,0.65243 -2.8338,0.95154 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path4414"
         d="m 1166.5175,651.87262 c 1.7601,0.0957 3.5309,0.14511 5.3104,0.14806 -0.4341,1.83449 -0.9449,3.66324 -1.534,5.48049 0.7836,-1.74519 1.4947,-3.51737 2.1329,-5.31095 1.5109,0.92039 3.0122,1.8595 4.5039,2.81725 -1.3603,-1.15586 -2.7398,-2.28065 -4.1373,-3.37408 1.3606,-1.29625 2.6853,-2.6662 3.9677,-4.10711 -1.4199,1.27698 -2.8722,2.47744 -4.3502,3.5994 -0.688,-1.69511 -1.4363,-3.33798 -2.2395,-4.9256 0.6148,1.67393 1.1673,3.39902 1.652,5.17147 -1.7761,0.22593 -3.5458,0.39293 -5.3059,0.50107 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         id="path4412"
         d="m 1121.0851,669.07681 c 0.1913,-0.12496 0.3812,-0.25107 0.5697,-0.37832 0.043,0.10916 0.087,0.21829 0.1305,0.32738 -0.03,-0.11815 -0.059,-0.23631 -0.087,-0.35446 0.985,-0.66948 1.9304,-1.37004 2.8329,-2.09994 1.1799,-0.95346 2.2848,-1.96075 3.3055,-3.01208 1.8976,2.13261 4.1638,4.11085 6.824,5.8226 -2.3528,-1.9434 -4.3333,-4.09432 -5.9674,-6.36328 2.002,-0.69514 3.8852,-1.5653 5.6024,-2.58941 0.6732,-0.40159 1.3197,-0.82717 1.9379,-1.27374 -0.6369,0.35594 -1.2954,0.68946 -1.9736,0.9984 -1.8402,0.83801 -3.8189,1.49746 -5.8865,1.96593 -0.1573,-2.684 -0.2373,-5.36817 -0.2418,-8.04895 -0.2576,2.6736 -0.5195,5.34682 -0.7856,8.01962 -0.6858,-0.19664 -1.3606,-0.41413 -2.0236,-0.65089 -2.0409,-0.73189 -3.9688,-1.63416 -5.7784,-2.6742 1.7296,1.27728 3.6166,2.42951 5.6638,3.41716 0.5817,0.27934 1.1763,0.54416 1.7835,0.79309 -0.7248,0.92147 -1.4997,1.82071 -2.3211,2.6936 -0.2897,0.30827 -0.5851,0.61343 -0.886,0.91539 -0.8602,-0.11828 -1.7147,-0.26191 -2.5625,-0.43004 0.3475,-0.78065 0.6863,-1.56433 1.0161,-2.35093 -0.4322,0.7414 -0.8793,1.47679 -1.3409,2.20594 -0.8104,-0.59244 -1.5863,-1.20652 -2.3286,-1.83951 0.66,0.69691 1.3557,1.37926 2.0881,2.0444 -0.8598,0.40698 -1.7435,0.7891 -2.6488,1.14543 0.965,-0.26105 1.9108,-0.55171 2.8349,-0.87114 0.2387,0.70801 0.4966,1.41522 0.7741,2.12105 -0.1757,0.15662 -0.3531,0.31225 -0.5318,0.4669 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4410"
         d="m 1121.6726,668.57086 c -0.1733,-0.70723 -0.3317,-1.41441 -0.4754,-2.12122 0.8434,0.0855 1.6885,0.14691 2.5342,0.1837 -0.6602,0.66142 -1.3469,1.30753 -2.0588,1.93752 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4408"
         d="m 1139.2204,667.67849 c 0.4666,-1.45386 0.845,-2.91323 1.1349,-4.36933 1.5782,0.38009 3.2353,0.64076 4.9592,0.76188 -1.6553,-0.29726 -3.2324,-0.72052 -4.7217,-1.2503 1.0352,-1.23152 1.9415,-2.51324 2.7117,-3.82291 -0.9224,1.22649 -1.9764,2.40753 -3.1523,3.52111 -0.9091,-1.14033 -1.7565,-2.31396 -2.5414,-3.51578 0.6363,1.28471 1.3146,2.55357 2.0347,3.80442 -1.605,0.48255 -3.2459,0.83676 -4.9045,1.06031 0,2.1e-4 -0.01,6.4e-4 -0.01,8e-4 0,-8e-5 0.01,-1.6e-4 0.01,-2.1e-4 1.6717,-0.0573 3.3516,-0.24725 5.0211,-0.57383 -0.1139,1.4563 -0.2945,2.91918 -0.5418,4.38371 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4406"
         d="m 1123.4133,655.76507 c -0.09,-0.98369 -0.1509,-1.96541 -0.1843,-2.94423 0.8411,0.0663 1.6749,0.0933 2.4982,0.0795 -0.8115,-0.10207 -1.6236,-0.24385 -2.4337,-0.42293 0.3856,-0.9172 0.7592,-1.83855 1.1205,-2.76391 -0.4373,0.87998 -0.8956,1.75198 -1.374,2.61559 -0.5861,-0.63847 -1.1347,-1.29639 -1.647,-1.96931 0.4331,0.75049 0.906,1.49088 1.4208,2.21687 -0.7653,0.51334 -1.5678,0.99717 -2.4039,1.44999 0.8727,-0.34735 1.7141,-0.72953 2.5197,-1.14516 0.1262,0.96 0.287,1.92174 0.4837,2.88364 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4404"
         d="m 1138.081,658.74302 c -1.0696,-1.44232 -2.0319,-2.93837 -2.8837,-4.47568 1.3749,-0.58235 2.6627,-1.29084 3.8301,-2.10451 -1.2647,0.62723 -2.6125,1.12977 -4.0078,1.49875 -0.1418,-1.78272 -0.3359,-3.55804 -0.5819,-5.32354 0.1144,1.74976 0.1385,3.51323 0.072,5.28305 -0.3968,-0.15896 -0.7841,-0.32864 -1.1615,-0.5082 -0.9613,-0.45363 -1.8676,-0.97321 -2.7179,-1.54328 0.8519,0.75117 1.7808,1.45156 2.7878,2.08219 0.3038,0.19151 0.6157,0.37679 0.9352,0.55532 -0.2228,0.3954 -0.4599,0.78772 -0.7111,1.17613 -0.6595,1.01879 -1.4177,2.00898 -2.2643,2.96136 0.853,-0.75894 1.6356,-1.55636 2.3389,-2.38541 0.3761,-0.44366 0.73,-0.89601 1.0612,-1.35521 0.9671,1.44267 2.0699,2.82901 3.3026,4.13903 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4402"
         d="m 1095.1132,653.66082 c 0.2243,0.002 0.4482,0.004 0.6715,0.003 -0.03,0.11206 -0.059,0.22431 -0.088,0.33673 0.046,-0.1118 0.092,-0.22341 0.1381,-0.33484 2.6938,-0.0126 5.3156,-0.24584 7.8362,-0.68003 0.139,2.06646 0.4295,4.1721 0.8809,6.29729 0.1592,0.76133 0.3394,1.52553 0.5412,2.29148 -0.1233,-0.88343 -0.221,-1.76231 -0.2938,-2.63531 -0.1712,-1.99357 -0.2145,-3.95897 -0.1369,-5.88319 1.2223,0.38742 2.4451,0.71461 3.6627,0.98274 1.5157,0.33576 3.0274,0.57918 4.52,0.73136 -1.4012,-0.31025 -2.8055,-0.70247 -4.2005,-1.17543 -1.2356,-0.41751 -2.4667,-0.89819 -3.6867,-1.44224 1.4994,-2.2308 3.0443,-4.42705 4.6336,-6.58731 -1.8049,1.9891 -3.6121,3.97605 -5.4217,5.96085 -1.7235,-2.2782 -3.1939,-4.68533 -4.3951,-7.16673 0.9079,2.59917 2.1046,5.17644 3.5868,7.66961 -1.5151,0.43195 -3.0692,0.79781 -4.6569,1.09371 -0.6098,-0.57204 -1.2057,-1.16034 -1.7871,-1.76437 0.7301,-0.44472 1.4555,-0.89578 2.1762,-1.35309 -0.7769,0.36331 -1.5611,0.71539 -2.3524,1.05602 -0.3077,-0.92954 -0.5831,-1.85997 -0.8268,-2.78918 0.1404,0.93643 0.3121,1.87844 0.5155,2.824 -0.9245,-0.1407 -1.8547,-0.31153 -2.7889,-0.51339 0.928,0.31249 1.8551,0.592 2.7796,0.83941 -0.2181,0.70854 -0.4231,1.42515 -0.6147,2.14937 -0.2304,0.0312 -0.4615,0.0608 -0.6932,0.0891 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4400"
         d="m 1095.8732,653.57042 c 0.2751,-0.66849 0.5598,-1.33031 0.8541,-1.9852 0.6249,0.53367 1.2609,1.04962 1.9071,1.54761 -0.9096,0.16903 -1.8303,0.31514 -2.7612,0.43759 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4398"
         d="m 1109.3093,663.08633 c 1.2698,-0.79236 2.4976,-1.62676 3.6791,-2.50058 0.8202,1.33097 1.7369,2.64153 2.7557,3.91952 -0.8534,-1.35534 -1.6056,-2.73158 -2.263,-4.11792 1.5422,-0.20431 3.0435,-0.49251 4.4908,-0.86087 -1.4909,0.20222 -3.0247,0.31798 -4.5881,0.34483 0.1474,-1.4435 0.3417,-2.87445 0.5808,-4.29065 -0.404,1.37689 -0.7793,2.76524 -1.125,4.16416 -1.4359,-0.71363 -2.8292,-1.50564 -4.1731,-2.36816 1.2463,0.99825 2.5561,1.93635 3.9254,2.80416 -1.0582,0.99655 -2.1532,1.96558 -3.2826,2.90551 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4396"
         d="m 1104.677,644.0894 c 0.4866,-0.86292 0.992,-1.71062 1.5157,-2.54233 0.671,0.55056 1.3586,1.07326 2.0599,1.56732 -0.6247,-0.58205 -1.2294,-1.18732 -1.812,-1.81429 0.8419,-0.53373 1.6775,-1.07613 2.5067,-1.62707 -0.8688,0.46687 -1.748,0.91846 -2.6372,1.35442 -0.1357,-0.87535 -0.2333,-1.74317 -0.2934,-2.60004 -0.05,0.876 -0.062,1.76808 -0.036,2.67291 -0.9332,-0.022 -1.8769,-0.0817 -2.8286,-0.18043 0.9235,0.20727 1.8427,0.37396 2.7547,0.50147 -0.4341,0.87088 -0.8442,1.76065 -1.2295,2.66804 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4394"
         d="m 1114.4849,655.70844 c 0.2032,-1.78518 0.4857,-3.54748 0.8428,-5.28147 1.5007,0.53 3.0129,0.95074 4.5164,1.25353 -1.441,-0.50378 -2.8624,-1.11723 -4.249,-1.82656 1.0952,-1.41911 2.1606,-2.85822 3.1951,-4.31645 -1.1437,1.34556 -2.3397,2.65581 -3.5845,3.9283 -0.5419,-0.9818 -1.026,-1.97388 -1.4546,-2.96745 -0.1825,-0.42905 -0.3544,-0.85894 -0.5156,-1.28914 0.1148,0.49023 0.2423,0.98175 0.3827,1.47392 0.2995,1.03401 0.654,2.07373 1.0669,3.11146 -1.3015,0.41314 -2.6534,0.75691 -4.0444,1.02673 -0.3332,0.0644 -0.6688,0.12461 -1.0066,0.18057 0.3069,-0.0145 0.6123,-0.0327 0.916,-0.0546 1.4434,-0.10516 2.8524,-0.29387 4.2135,-0.56166 -0.1894,1.7462 -0.2847,3.52352 -0.2787,5.32284 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4392"
         d="m 1082.4441,626.20549 c 0.1816,0.1359 0.3638,0.27006 0.5465,0.40248 -0.089,0.0758 -0.1772,0.15183 -0.2655,0.22829 0.1018,-0.066 0.2036,-0.13153 0.3056,-0.19678 2.2086,1.59016 4.4946,2.92801 6.8165,4.01917 -1.4363,2.43079 -2.6658,5.10059 -3.6377,7.96917 1.2714,-2.65889 2.7572,-5.11613 4.4146,-7.34165 1.7702,2.2939 3.7346,4.31211 5.8168,6.03448 -1.8691,-1.95296 -3.5784,-4.1675 -5.0612,-6.61272 2.5,-0.98553 5.0194,-1.91129 7.5559,-2.77642 -2.6154,0.60578 -5.2316,1.2081 -7.8486,1.80695 -0.1207,-2.87075 0.07,-5.70091 0.5592,-8.42347 -0.7958,2.64468 -1.3089,5.45871 -1.5097,8.37377 -1.4914,-0.51638 -2.9758,-1.11757 -4.446,-1.80498 -0.1715,-0.83306 -0.3198,-1.67266 -0.4445,-2.51783 0.8524,0.0646 1.7046,0.12039 2.5566,0.16733 -0.8435,-0.15753 -1.6864,-0.33017 -2.5284,-0.51802 0.2876,-0.95237 0.6052,-1.88537 0.9517,-2.79691 -0.4344,0.85567 -0.8434,1.73657 -1.2254,2.64082 -0.6716,-0.66627 -1.3286,-1.36439 -1.969,-2.09449 0.5707,0.81813 1.1624,1.60451 1.7726,2.35908 -0.5878,0.45767 -1.1688,0.93112 -1.7425,1.42004 -0.2062,-0.11102 -0.4121,-0.22379 -0.6175,-0.33831 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4390"
         d="m 1083.117,626.58249 c 0.6096,-0.39302 1.2239,-0.77368 1.8425,-1.14183 0.201,0.8132 0.4239,1.61676 0.6677,2.40992 -0.8419,-0.39436 -1.6791,-0.81696 -2.5102,-1.26809 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4388"
         d="m 1088.8928,642.27096 c 0.5987,0.0204 1.1953,0.0309 1.7897,0.0317 0.8906,-0.002 1.7756,-0.0245 2.6546,-0.0684 -0.059,1.55813 -0.031,3.14869 0.083,4.76217 0.064,-1.58657 0.2107,-3.14102 0.4358,-4.65482 1.3919,0.68189 2.7929,1.27063 4.1938,1.77021 -1.3436,-0.66127 -2.6763,-1.41103 -3.9881,-2.2524 0.7544,-0.91287 1.529,-1.80222 2.3233,-2.66704 0.1779,-0.1938 0.3568,-0.38632 0.5367,-0.57754 -0.314,0.26322 -0.6265,0.5286 -0.9375,0.79614 -0.7771,0.6681 -1.5452,1.34906 -2.304,2.04261 -0.1146,-0.19939 -0.2276,-0.39971 -0.3391,-0.60097 -0.6665,-1.20391 -1.2745,-2.4398 -1.8217,-3.70227 0.4152,1.31875 0.8965,2.6236 1.4437,3.90838 0.088,0.2073 0.1782,0.41403 0.2697,0.62016 -0.6522,0.11077 -1.3077,0.21257 -1.9663,0.30526 -0.787,0.10907 -1.5783,0.20473 -2.3736,0.28685 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4386"
         d="m 1095.7763,623.95444 c 0.8972,-0.41602 1.8019,-0.80576 2.7128,-1.16868 0.2212,0.82066 0.4757,1.62738 0.7612,2.41787 -0.1722,-0.81797 -0.3114,-1.64318 -0.4158,-2.47285 0.9941,0.0555 1.9882,0.0989 2.982,0.13039 -0.9766,-0.11961 -1.9528,-0.25993 -2.9278,-0.42113 0.4036,-0.77155 0.8374,-1.51031 1.299,-2.21291 -0.5613,0.65446 -1.0985,1.34963 -1.6086,2.08246 -0.7419,-0.55075 -1.4688,-1.14267 -2.177,-1.77597 0.6212,0.70318 1.2656,1.36612 1.9289,1.98877 -0.8618,0.44429 -1.7139,0.92196 -2.5547,1.43205 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4384"
         d="m 1097.2835,639.00924 c 0.1627,-0.19293 0.3266,-0.38461 0.4914,-0.57505 1.0075,-1.16332 2.0549,-2.27792 3.1386,-3.34184 0.2913,0.38878 0.5898,0.76947 0.8953,1.14171 0.6899,0.84356 1.4159,1.64792 2.1729,2.41164 -0.6359,-0.84497 -1.2336,-1.71961 -1.7888,-2.62115 -0.2552,-0.41346 -0.5017,-0.83334 -0.739,-1.25917 1.6965,-0.57174 3.3785,-1.17828 5.0451,-1.81922 -1.6937,0.48901 -3.4117,0.91757 -5.1503,1.28465 0.1439,-1.58475 0.4083,-3.11564 0.7794,-4.57323 -0.5713,1.43496 -1.041,2.96039 -1.3931,4.55853 -1.6187,-0.46484 -3.2413,-1.06733 -4.8478,-1.80863 1.5044,0.92084 3.0396,1.70105 4.5828,2.34019 -1.0082,1.19464 -1.9645,2.4552 -2.8625,3.77783 -0.1089,0.16038 -0.2168,0.32163 -0.324,0.48374 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4382"
         d="m 1091.973,579.20353 c -0.068,0.41883 -0.1303,0.83637 -0.1859,1.25251 -0.2072,-0.0386 -0.4151,-0.076 -0.6235,-0.11218 0.2031,0.0677 0.4054,0.13656 0.6072,0.20634 -0.6491,5.01767 -0.3785,9.8288 0.6043,14.22798 -2.1288,0.45766 -4.2778,1.11292 -6.4108,1.97479 -2.7673,1.09648 -5.5181,2.51309 -8.1887,4.24667 3.1505,-1.55452 6.3551,-2.72231 9.5341,-3.50419 1.694,-0.42662 3.3833,-0.73565 5.0535,-0.9317 -0.2532,1.13732 -0.4493,2.27069 -0.5907,3.39455 -0.4945,3.91264 -0.3435,7.69968 0.3245,11.2056 -0.2474,-3.40651 -0.01,-6.98087 0.8104,-10.57926 0.281,-1.24517 0.6327,-2.49238 1.0569,-3.73312 4.0445,2.09044 7.9856,4.35604 11.8094,6.78917 -3.6109,-2.76122 -7.2149,-5.5316 -10.8118,-8.31108 3.804,-3.48275 8.2137,-6.06352 12.8073,-7.52359 -4.7112,0.93806 -9.4594,3.04687 -13.7413,6.19894 -0.8433,-2.60157 -1.4519,-5.35522 -1.7866,-8.22584 1.1389,-1.22164 2.3524,-2.38632 3.6377,-3.48677 0.6505,1.29804 1.3264,2.58011 2.027,3.84567 -0.519,-1.37022 -0.9934,-2.76567 -1.4211,-4.18471 1.8351,-0.60896 3.6835,-1.08958 5.5274,-1.44104 -1.8181,0.16756 -3.6596,0.45956 -5.5068,0.87725 0.5292,-1.68825 1.1859,-3.38606 1.9799,-5.08192 -1.0084,1.68243 -1.8699,3.38151 -2.5945,5.08361 -1.2817,-0.35215 -2.5939,-0.65545 -3.932,-0.90827 0,-0.42456 0,-0.85107 0.014,-1.27941 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4380"
         d="m 1091.944,580.60726 c 1.2102,0.4152 2.3964,0.86693 3.5564,1.35414 -1.1691,1.18132 -2.2588,2.41383 -3.2683,3.68972 -0.1884,-1.64529 -0.2869,-3.32876 -0.2881,-5.04386 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4378"
         d="m 1076.8833,609.79643 c 1.8926,1.83119 3.8793,3.49282 5.9382,4.97557 -1.66,2.30266 -3.141,4.86529 -4.3795,7.67567 1.4748,-2.57908 3.1534,-4.89849 4.9763,-6.95194 1.2152,2.52917 2.6485,4.84503 4.2493,6.90746 -1.3773,-2.25602 -2.5546,-4.74257 -3.4841,-7.4131 2.3826,-0.68176 4.7797,-1.21242 7.1771,-1.59394 -2.4221,0.0938 -4.8503,0.28502 -7.2783,0.57479 0.3567,-2.93334 1.0125,-5.82596 1.9559,-8.62811 -1.2054,2.69683 -2.1446,5.53716 -2.7893,8.47628 -2.1722,-1.20438 -4.2983,-2.54682 -6.3656,-4.02268 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4376"
         d="m 1107.4722,595.99367 c 1.3667,0.93352 2.6695,1.934 3.9014,2.99832 -0.7834,0.87934 -1.4872,1.8253 -2.1094,2.81409 0.7681,-0.85669 1.5969,-1.64813 2.4774,-2.35369 0.8072,1.46946 1.6496,2.9177 2.5259,4.34389 -0.7733,-1.45129 -1.4874,-2.93811 -2.1385,-4.45783 1.2496,0.0813 2.4353,0.30142 3.5286,0.66175 -1.1126,-0.53677 -2.3355,-0.93652 -3.64,-1.19723 0.023,-1.44287 0.1839,-2.91456 0.501,-4.39641 -0.4747,1.39471 -0.7918,2.7947 -0.9676,4.17791 -1.2763,-0.94926 -2.6398,-1.81438 -4.0788,-2.5908 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4374"
         d="m 1091.4381,614.30446 c 2.9618,-0.67001 5.9362,-1.07991 8.888,-1.23391 -0.057,2.3774 0.197,4.69963 0.7377,6.8616 -0.187,-2.19545 -0.078,-4.46044 0.3159,-6.69464 2.8378,1.03392 5.7085,1.95815 8.6056,2.77074 -2.788,-0.9658 -5.5247,-2.12236 -8.191,-3.46297 1.8372,-1.58241 3.811,-2.80668 5.7998,-3.62943 -2.2097,0.57948 -4.4477,1.58656 -6.5879,2.99254 -1.6229,-2.16791 -3.0004,-4.6644 -4.0385,-7.43008 0.7036,2.85087 1.7813,5.46054 3.1335,7.75481 -2.8873,0.36858 -5.7941,1.05761 -8.6631,2.07134 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4372"
         d="m 1147.4156,574.1501 c -0.3822,0.0857 -0.7611,0.17634 -1.1367,0.27188 -0.037,-0.19111 -0.076,-0.38234 -0.1149,-0.57368 0.01,0.19759 0.02,0.39498 0.029,0.59215 -4.5219,1.17008 -8.562,3.0451 -12.0124,5.38605 -0.9872,-1.4865 -2.112,-2.93445 -3.372,-4.32066 -2.0112,-2.21375 -4.3529,-4.28212 -6.9901,-6.1343 2.6483,2.36763 4.9173,4.95311 6.7686,7.6655 0.7562,1.10807 1.4409,2.23926 2.0537,3.3855 -0.8891,0.14025 -1.7625,0.31345 -2.6179,0.51743 -3.7519,0.88738 -7.135,2.36367 -10.0476,4.22994 2.9751,-1.45217 6.301,-2.4964 9.8678,-2.98641 1.0137,-0.14069 2.0457,-0.23651 3.0918,-0.2847 -0.4299,4.19182 -1.0439,8.35459 -1.8398,12.47429 1.1521,-4.047 2.3144,-8.09116 3.4868,-12.13243 4.2846,2.09034 8.0043,4.99734 10.8428,8.43448 -2.4309,-3.71881 -5.8593,-7.07648 -10.0199,-9.68902 1.9515,-1.61103 4.1112,-3.07433 6.4618,-4.3457 1.4342,0.56002 2.845,1.20206 4.2252,1.92579 -0.8924,1.00557 -1.7628,2.02723 -2.611,3.06415 0.9998,-0.91689 2.0358,-1.80471 3.1075,-2.66112 1.1455,1.3646 2.1867,2.78312 3.117,4.24102 -0.7639,-1.49958 -1.6409,-2.97724 -2.6265,-4.41782 1.6273,-0.12859 3.3052,-0.15317 5.0273,-0.0618 -1.7834,-0.27958 -3.532,-0.43032 -5.2375,-0.46495 -0.1332,-1.22117 -0.3179,-2.45152 -0.5542,-3.68706 0.3636,-0.14724 0.7308,-0.29013 1.1016,-0.42855 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4370"
         d="m 1146.2025,574.60907 c 0.054,1.18154 0.068,2.35517 0.044,3.51854 -1.4099,-0.59615 -2.8368,-1.10838 -4.2738,-1.5386 1.3484,-0.72579 2.7593,-1.38854 4.2294,-1.97994 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4368"
         d="m 1115.8912,571.63399 c -0.9271,2.25895 -1.6716,4.5413 -2.2339,6.82375 -2.5611,-0.62316 -5.2855,-0.99725 -8.138,-1.07064 2.736,0.35725 5.3194,0.98555 7.722,1.83461 -1.7561,1.92319 -3.2474,3.96259 -4.4579,6.05798 1.4549,-1.97177 3.1823,-3.85088 5.1593,-5.57742 1.415,1.80719 2.7031,3.68055 3.8604,5.60667 -0.9188,-2.04694 -1.9251,-4.0648 -3.0177,-6.04786 2.651,-0.71289 5.3734,-1.14855 8.1186,-1.29802 -2.7444,-0.11183 -5.5202,0.0623 -8.2771,0.5302 0.2839,-2.2826 0.705,-4.57339 1.2643,-6.85927 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4366"
         d="m 1138.2792,593.23946 c -0.3327,1.49693 -0.7434,2.9626 -1.2318,4.39005 -1.0341,-0.37636 -2.0967,-0.66276 -3.1672,-0.86509 1.0067,0.37307 1.9795,0.82011 2.8983,1.34024 -0.9871,1.19899 -1.9445,2.42048 -2.8718,3.6632 0.9857,-1.1618 2.0216,-2.28554 3.1064,-3.36732 0.369,1.10769 0.6003,2.20886 0.684,3.27972 0.062,-1.14829 -0.027,-2.34285 -0.2605,-3.55894 1.2545,-0.47414 2.5805,-0.8404 3.9674,-1.0794 -1.3673,0.0732 -2.6859,0.28063 -3.9423,0.60164 0.3726,-1.42679 0.6451,-2.89861 0.8175,-4.4041 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4364"
         d="m 1117.0499,585.69002 c 1.6015,2.31006 2.9795,4.72286 4.1242,7.20568 -2.0473,0.76951 -3.9394,1.7913 -5.5923,3.00476 1.8049,-0.92181 3.773,-1.61217 5.8115,-2.04221 0.092,2.7936 0.2928,5.57758 0.6004,8.3455 -0.1419,-2.72666 -0.099,-5.47559 0.1311,-8.22721 1.976,1.03509 3.6823,2.31545 5.0341,3.74994 -1.219,-1.70723 -2.8305,-3.28941 -4.7607,-4.64587 1.2936,-2.139 2.9615,-4.17789 4.9872,-6.01065 -2.2122,1.57371 -4.0794,3.39409 -5.574,5.34445 -1.3038,-2.35418 -2.897,-4.61303 -4.7615,-6.72439 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4362"
         d="m 1123.7313,594.03284 c 0.1118,-0.18476 0.2269,-0.36832 0.3453,-0.55061 0.011,0.12452 0.023,0.24903 0.033,0.37353 -8e-4,-0.13757 0,-0.27519 -0.01,-0.41285 1.4331,-2.20187 3.3407,-4.22056 5.6153,-5.962 0.5172,1.80356 0.8248,3.60576 0.9384,5.35827 0.09,1.13163 0.1052,2.24869 0.048,3.34094 0.1965,-1.30676 0.3037,-2.64881 0.32,-4.01342 0.04,-1.65762 -0.067,-3.36028 -0.332,-5.0799 1.0259,-0.0917 2.082,-0.12094 3.1572,-0.0839 1.98,0.0836 4.0218,0.36466 6.0773,0.87539 -1.8926,-0.71519 -3.8075,-1.22974 -5.7013,-1.56284 -1.1631,-0.19836 -2.3193,-0.31974 -3.4547,-0.36624 0.9279,-3.1663 1.7444,-6.37134 2.4453,-9.60864 -1.15,3.09678 -2.2937,6.19584 -3.431,9.29714 -2.4748,-1.60215 -5.2841,-2.8419 -8.3359,-3.50571 2.9574,1.03801 5.5439,2.61449 7.7148,4.47922 -1.295,1.29102 -2.454,2.66669 -3.4584,4.10897 -0.5757,-0.10381 -1.1485,-0.1803 -1.715,-0.22773 0.256,-1.00438 0.5294,-2.00539 0.8201,-3.00268 -0.3749,0.95609 -0.7207,1.9199 -1.0364,2.89043 -0.542,-0.55001 -1.1277,-1.07239 -1.7573,-1.55856 0.5837,0.59006 1.1155,1.21119 1.5967,1.85485 -0.5642,0.67237 -1.0672,1.37253 -1.5028,2.09603 0.4757,-0.63104 1.0188,-1.23409 1.6219,-1.80472 0.1426,0.80363 0.2527,1.6089 0.3313,2.41386 -0.1146,0.21597 -0.226,0.43306 -0.334,0.65119 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4360"
         d="m 1124.1006,593.326 c -0.02,-0.82354 -0.064,-1.64846 -0.1346,-2.47361 0.5516,-0.0515 1.118,-0.075 1.6954,-0.0713 -0.5721,0.82768 -1.0935,1.67709 -1.5608,2.54483 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4358"
         d="m 1133.6124,596.96024 c 1.4025,-0.91246 2.8733,-1.74477 4.4067,-2.48637 0.095,1.52275 0.031,2.99683 -0.1953,4.39006 0.4067,-1.42233 0.6584,-2.93769 0.7551,-4.51626 1.5487,0.0699 3.1345,0.2896 4.7353,0.68225 -1.5244,-0.57877 -3.056,-0.9872 -4.5694,-1.24655 0.8438,-1.51221 1.6162,-3.0785 2.3153,-4.69186 -0.8808,1.52322 -1.8076,3.01278 -2.7796,4.46574 -1.0602,-0.98123 -2.2105,-1.88199 -3.4268,-2.69412 1.0951,0.97773 2.0985,2.02538 2.9894,3.12666 -1.4639,0.92661 -2.8751,1.9188 -4.2307,2.97045 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4356"
         d="m 1125.5292,577.54184 c -0.3258,-1.20166 -0.7071,-2.39899 -1.1455,-3.58864 1.532,-0.0652 3.0724,-0.0305 4.6096,0.10205 -1.5246,-0.27591 -3.0706,-0.45517 -4.6282,-0.53283 0.3374,-1.18754 0.699,-2.37076 1.0844,-3.54909 -0.578,1.12794 -1.116,2.2677 -1.6125,3.41763 -1.3591,-0.6497 -2.8007,-1.2225 -4.3253,-1.7043 1.4329,0.60977 2.774,1.29937 4.0251,2.05486 -1.1424,0.80078 -2.2091,1.65718 -3.1905,2.56198 1.0976,-0.80196 2.2778,-1.54397 3.529,-2.21883 0.6227,1.13814 1.1732,2.2924 1.6539,3.45717 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4354"
         d="m 1141.6292,589.39138 c 0.828,-2.0383 1.5273,-4.15878 2.0938,-6.34423 2.2261,1.31237 4.358,2.87697 6.3426,4.69992 -1.8072,-2.01233 -3.8021,-3.80392 -5.9357,-5.36442 1.6649,-1.46535 3.3775,-2.88477 5.1363,-4.25516 -1.9926,1.09989 -3.9113,2.2921 -5.7518,3.56745 -1.0889,-1.86244 -2.3605,-3.67471 -3.8056,-5.39976 -0.282,-0.33718 -0.5715,-0.67116 -0.8687,-1.0016 0.2746,0.37479 0.5403,0.7524 0.7971,1.13244 1.2115,1.79845 2.2474,3.65584 3.1033,5.5358 -2.3695,0.17516 -4.6388,0.58098 -6.7752,1.17571 -0.032,0.009 -0.064,0.0178 -0.097,0.0268 0.03,-0.005 0.059,-0.009 0.09,-0.0139 2.2046,-0.3462 4.527,-0.48289 6.9267,-0.36617 -0.2472,2.27595 -0.6675,4.4877 -1.2558,6.60716 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4352"
         d="m 1108.6201,599.672 c -0.1111,-0.19173 -0.2187,-0.38718 -0.3228,-0.58611 0.1121,0.059 0.2237,0.11851 0.3347,0.17851 -0.1183,-0.0748 -0.2371,-0.14907 -0.3564,-0.22286 -0.042,-0.0795 -0.082,-0.15961 -0.1226,-0.24022 -1.1645,-2.33791 -1.8549,-5.00443 -2.1025,-7.83845 0.9485,0.28784 1.8661,0.62415 2.75,1.00066 1.9269,0.82896 3.6858,1.86783 5.2204,3.07294 -1.7216,-1.63156 -3.732,-3.06887 -5.9643,-4.2532 -0.5883,-0.31052 -1.1918,-0.60477 -1.8099,-0.88072 0.1847,-0.35477 0.3802,-0.70868 0.5861,-1.06104 1.3412,-2.27216 3.0972,-4.47287 5.2652,-6.42665 -2.2759,1.60974 -4.2322,3.49411 -5.8417,5.51183 -0.3325,0.41963 -0.6494,0.84485 -0.9498,1.27449 -2.2254,-2.5646 -4.5492,-5.05213 -6.9707,-7.45281 2.0469,2.71471 4.0996,5.42499 6.1581,8.13081 -1.2851,0.58317 -2.5355,1.2755 -3.7245,2.09163 -1.3482,0.93197 -2.625,1.99736 -3.7306,3.25025 1.3011,-1.14521 2.7426,-2.0467 4.2227,-2.79501 1.2199,-0.61054 2.4719,-1.0939 3.7342,-1.46999 0.4089,1.83378 0.9781,3.59078 1.7121,5.23845 -0.2098,0.23531 -0.4096,0.47399 -0.5988,0.71588 -0.1521,0.20198 -0.2976,0.40073 -0.4354,0.59604 -0.7544,-0.75966 -1.4937,-1.53616 -2.2178,-2.32803 0.6458,0.84101 1.3189,1.65601 2.0193,2.44064 -0.7307,0.13176 -1.4561,0.29412 -2.1591,0.50945 0.7764,-0.12802 1.5624,-0.19314 2.3438,-0.2195 0.3294,0.81329 0.7323,1.55749 1.215,2.20934 -0.386,-0.62801 -0.6852,-1.35098 -0.9066,-2.14355 0.7651,0.32854 1.5115,0.68586 2.2377,1.06501 0.1348,0.21418 0.2728,0.42499 0.4142,0.63221 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4350"
         d="m 1108.1738,598.97977 c -0.716,-0.43783 -1.4493,-0.8574 -2.1991,-1.25457 0.095,-0.21293 0.1977,-0.43101 0.3084,-0.65368 0.1395,-0.26913 0.2912,-0.53757 0.4543,-0.80491 0.3653,0.81163 0.7707,1.59653 1.2168,2.3508 0.072,0.1218 0.1454,0.2426 0.2196,0.36236 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4348"
         d="m 1116.1552,593.05389 c 0.01,-1.71459 0.1299,-3.4426 0.384,-5.17048 1.3023,0.82171 2.4504,1.76221 3.4089,2.80132 -0.8798,-1.20627 -1.9557,-2.32889 -3.1966,-3.34648 0.9339,-1.2594 2.0353,-2.45575 3.3119,-3.54911 -1.3838,0.91679 -2.6099,1.95582 -3.6822,3.0754 -0.7682,-1.60436 -1.636,-3.17651 -2.5976,-4.70965 0.7797,1.63481 1.4966,3.29142 2.1484,4.96686 -1.409,0.31437 -2.8023,0.76658 -4.1542,1.33753 1.4255,-0.37265 2.8576,-0.61391 4.2646,-0.71403 -0.059,1.77903 -0.02,3.55107 0.1128,5.30864 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4346"
         d="m 1095.0869,589.17774 c -1.2432,-0.34887 -2.5186,-0.63352 -3.8241,-0.84179 0.6212,-1.14805 1.311,-2.23743 2.0541,-3.25933 0.2099,-0.29272 0.424,-0.58215 0.6422,-0.8682 -0.2415,0.26308 -0.4796,0.53027 -0.7142,0.80152 -0.8433,0.96128 -1.641,2.00204 -2.3767,3.119 -0.87,-0.93721 -1.7191,-1.89859 -2.5475,-2.88182 0.6727,1.13961 1.3843,2.24683 2.135,3.31454 -1.3385,0.95988 -2.6477,2.1046 -3.9005,3.47073 1.3207,-1.20897 2.6773,-2.19699 4.0471,-3.00347 0.083,1.50387 0.2788,2.97418 0.5984,4.37324 -0.1664,-1.46351 -0.1962,-2.9832 -0.1039,-4.51803 1.3624,-4.2e-4 2.6939,0.10396 3.9901,0.29361 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4344"
         d="m 1114.3686,581.84733 c -1.2422,-1.89305 -2.6488,-3.71718 -4.2049,-5.45599 2.4531,-1.15559 5.0889,-2.05142 7.8755,-2.62785 -2.8395,0.31447 -5.5915,0.96168 -8.2099,1.89806 -0.2826,-2.26761 -0.4897,-4.55073 -0.6191,-6.84579 -0.2497,2.34035 -0.3615,4.67122 -0.3421,6.98155 -2.6925,-0.14921 -5.484,8.1e-4 -8.2988,0.47954 2.7815,-0.18926 5.4969,-0.0638 8.074,0.33847 -1.2609,2.17178 -2.2247,4.40139 -2.9118,6.62195 0.9444,-2.13767 2.1753,-4.25551 3.7099,-6.27729 1.8256,1.51241 3.4765,3.14999 4.9272,4.88735 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4342"
         d="m 1099.4679,630.30984 c -0.212,-0.0319 -0.4242,-0.0661 -0.6365,-0.10275 0.098,-0.0718 0.1959,-0.14322 0.2941,-0.21413 -0.1137,0.0677 -0.2273,0.13588 -0.3408,0.20447 -2.5655,-0.44236 -5.1548,-1.22693 -7.6981,-2.32943 0.2312,-0.25661 0.4651,-0.50862 0.7016,-0.75601 1.7898,-1.9028 3.7207,-3.57455 5.7424,-5.07857 -2.5235,1.48735 -4.9573,3.19215 -7.2473,5.1922 -1.6616,-2.37645 -3.0821,-5.07766 -4.2982,-7.96638 0.8422,2.91652 1.8941,5.69698 3.2068,8.23135 0.042,0.0802 0.083,0.16009 0.1254,0.23976 -3.042,0.79005 -6.0681,1.66105 -9.0744,2.61321 3.1009,-0.53576 6.2011,-1.07615 9.3004,-1.62115 -0.1167,2.89634 0.1131,5.87269 0.7623,8.83275 -0.2863,-3.02465 -0.1395,-5.97783 0.339,-8.77516 1.6901,0.48971 3.3866,0.86818 5.0765,1.13169 0.197,0.60149 0.4119,1.19296 0.6448,1.77242 -0.9704,0.20356 -1.944,0.39547 -2.9206,0.57576 0.981,-0.0838 1.9578,-0.18774 2.9297,-0.31188 -0.2052,0.78169 -0.3778,1.58236 -0.514,2.39987 0.2466,-0.81473 0.5286,-1.60644 0.8418,-2.3735 0.8405,0.26103 1.6809,0.47696 2.5176,0.64624 -0.7771,-0.25157 -1.5547,-0.55086 -2.3288,-0.89587 0.6096,-0.50529 1.2305,-0.99122 1.8617,-1.4577 0.2385,0.0166 0.4767,0.0309 0.7146,0.0428 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4340"
         d="m 1098.6889,630.25674 c -0.6765,0.41404 -1.3458,0.84377 -2.0071,1.28919 -0.3108,-0.52384 -0.6069,-1.06456 -0.8878,-1.62032 0.968,0.14829 1.9337,0.25889 2.8949,0.33113 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4338"
         d="m 1096.531,618.69711 c -1.4977,-0.64528 -2.9849,-1.34653 -4.4601,-2.09594 1.072,-1.163 2.1748,-2.27904 3.2928,-3.3629 -1.2569,0.9549 -2.5031,1.94657 -3.7254,2.98985 -0.892,-1.32057 -1.7456,-2.70652 -2.5622,-4.13648 0.6395,1.51261 1.32,2.98566 2.0448,4.39739 -1.6293,0.36312 -3.2559,0.76103 -4.8774,1.19794 1.6615,-0.24597 3.3247,-0.46619 4.9888,-0.66249 -0.098,1.54227 -0.1399,3.07023 -0.1112,4.57737 0.1666,-1.50235 0.4042,-3.00729 0.6951,-4.51386 1.5649,0.5753 3.1369,1.11312 4.7148,1.60912 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4336"
         d="m 1084.6781,635.97776 c -0.8892,0.78065 -1.7591,1.59355 -2.6078,2.43866 -0.666,-1.20632 -1.2771,-2.44845 -1.8311,-3.72072 0.4274,1.32509 0.9168,2.63157 1.4679,3.91378 -1.1556,0.21978 -2.3159,0.42363 -3.4804,0.61159 1.1974,-0.0165 2.3895,-0.0609 3.5755,-0.13344 -0.027,1.35807 0.014,2.74244 0.1292,4.14963 0.028,-1.3829 0.1275,-2.73433 0.2905,-4.05159 1.1372,0.59399 2.2842,1.12531 3.4355,1.59144 -1.1046,-0.60269 -2.1975,-1.27212 -3.2724,-2.00503 0.735,-0.97025 1.5005,-1.90177 2.2931,-2.79432 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4334"
         d="m 1086.1281,617.07958 c -2.0103,0.61351 -4.0112,1.29302 -5.9974,2.0488 -0.2845,-2.27464 -0.4512,-4.55804 -0.5237,-6.82378 -0.1748,2.2639 -0.2563,4.56482 -0.2154,6.88638 -2.071,-0.40418 -4.1393,-0.8405 -6.2039,-1.30688 2.0005,0.75219 4.0112,1.4548 6.0302,2.10136 -0.966,2.07295 -1.83,4.26152 -2.5569,6.59017 0.9543,-2.20247 2.0309,-4.25141 3.1979,-6.17532 1.4864,1.63821 3.0335,3.17353 4.6395,4.56916 -1.4383,-1.57798 -2.8012,-3.2929 -4.0896,-5.10362 1.8829,-1.02131 3.7926,-1.94466 5.7193,-2.78627 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4332"
         d="m 1112.3587,646.6988 c -0.222,0.0664 -0.4441,0.13243 -0.6663,0.19802 0.033,-0.12163 0.066,-0.24315 0.099,-0.36456 -0.05,0.12568 -0.1,0.25146 -0.1493,0.37735 -2.6819,0.79599 -5.3865,1.52979 -8.1503,2.13535 0.062,-1.46728 0.1717,-2.91537 0.3407,-4.33771 0.1928,-1.5353 0.4551,-3.03309 0.7973,-4.47371 -0.5877,1.6568 -1.0822,3.38617 -1.4949,5.16281 -0.2686,1.18428 -0.5019,2.38633 -0.705,3.60278 -0.7295,-0.23724 -1.4568,-0.48665 -2.1823,-0.7506 -2.1069,-0.76532 -4.2085,-1.65444 -6.2704,-2.73867 1.8352,1.25976 3.7339,2.35658 5.6584,3.3432 0.7808,0.40035 1.567,0.78301 2.3582,1.15116 -1.9,2.50344 -3.7678,5.03403 -5.6062,7.58889 2.1427,-2.30158 4.2838,-4.60466 6.4234,-6.90924 1.7551,2.46848 3.7009,4.88753 5.7169,7.28077 -1.7208,-2.61582 -3.3632,-5.24682 -4.7931,-7.88809 1.6833,-0.58817 3.3431,-1.21676 4.9864,-1.87417 0.5991,0.46213 1.2088,0.92179 1.8281,1.38056 -0.7356,0.67138 -1.4734,1.34056 -2.2135,2.00737 0.8059,-0.57967 1.6081,-1.16349 2.4072,-1.75088 0.3604,0.87258 0.739,1.75046 1.1311,2.63253 -0.2856,-0.92583 -0.5579,-1.84698 -0.8128,-2.76186 0.9559,-0.13522 1.9107,-0.2773 2.8661,-0.42267 -0.9588,0.032 -1.9151,0.0611 -2.8706,0.0835 0.1966,-0.79569 0.4,-1.58739 0.6112,-2.37439 0.2304,-0.0988 0.4606,-0.19807 0.6906,-0.29772 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4330"
         d="m 1111.6014,647.0173 c -0.2932,0.75511 -0.5809,1.5139 -0.8635,2.27592 -0.656,-0.36984 -1.3041,-0.74144 -1.9438,-1.11671 0.9407,-0.37775 1.8759,-0.76487 2.8073,-1.15921 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4328"
         d="m 1101.8056,638.44597 c -1.5412,0.48686 -3.1094,0.91311 -4.7051,1.26794 0.1419,-1.19709 0.3579,-2.35354 0.6568,-3.4573 0.073,-0.2721 0.1503,-0.54165 0.2318,-0.80858 -0.1287,0.29122 -0.2526,0.58617 -0.3717,0.88479 -0.4285,1.0733 -0.7841,2.20112 -1.0732,3.37253 -1.0471,-0.30293 -2.0912,-0.66043 -3.1297,-1.08281 -0.4136,-0.1655 -0.8264,-0.34249 -1.2381,-0.53075 0.3541,0.21718 0.7104,0.42499 1.0682,0.62324 1,0.56137 2.015,1.0562 3.041,1.49574 -1.0751,1.25989 -2.1066,2.56905 -3.0964,3.92132 1.1399,-1.22934 2.3055,-2.42888 3.4972,-3.59598 0.83,1.19324 1.7494,2.3524 2.7359,3.48215 -0.8331,-1.2514 -1.5877,-2.51728 -2.2401,-3.79451 1.5658,-0.54219 3.1067,-1.1368 4.6234,-1.77778 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4326"
         d="m 1102.9,659.41866 c -0.3682,1.11527 -0.7282,2.23499 -1.0814,3.35785 -1.0577,-0.6076 -2.1179,-1.23536 -3.1783,-1.88902 0.9837,0.76717 1.9704,1.51071 2.9565,2.23509 -0.8692,0.78774 -1.7414,1.57268 -2.6167,2.35451 0.9688,-0.66921 1.9321,-1.34449 2.8904,-2.0249 0.5236,1.09461 1.0548,2.1809 1.5861,3.25708 -0.4027,-1.12567 -0.8038,-2.25931 -1.1965,-3.39833 1.1888,-0.11672 2.3682,-0.24943 3.5408,-0.39234 -1.1835,0.006 -2.3736,-4e-5 -3.5727,-0.0239 0.2151,-1.16198 0.4381,-2.32133 0.6718,-3.47605 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4324"
         d="m 1092.7218,643.73234 c -1.1905,1.72591 -2.3057,3.52783 -3.3503,5.39072 -1.6916,-1.62951 -3.3054,-3.41797 -4.8029,-5.3944 1.2971,2.12116 2.7356,4.08761 4.2729,5.91375 -1.8609,0.99363 -3.745,1.95007 -5.6527,2.86636 2.0481,-0.63687 4.0591,-1.34811 6.0337,-2.12466 0.5916,2.23098 1.3296,4.44666 2.1747,6.60708 0.01,0.0239 0.018,0.0477 0.027,0.0716 -0.01,-0.0261 -0.014,-0.0523 -0.021,-0.0784 -0.5947,-2.20943 -1.0791,-4.45167 -1.4194,-6.68249 2.203,0.33759 4.3708,0.50564 6.4968,0.55344 -2.1121,-0.29491 -4.2554,-0.7185 -6.4185,-1.32511 0.7916,-2.00566 1.6748,-3.94626 2.6587,-5.79784 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4322"
         d="m 1112.1061,652.75354 c -0.1987,0.11129 -0.3984,0.2215 -0.5991,0.33058 0.02,-0.1247 0.041,-0.24927 0.061,-0.37371 -0.036,0.13198 -0.072,0.2641 -0.1069,0.39635 -2.4228,1.31936 -4.9893,2.4773 -7.689,3.44091 -0.072,-1.3401 -0.087,-2.66581 -0.045,-3.97284 0.061,-1.71336 0.2239,-3.38506 0.5043,-4.98206 -0.5327,1.86038 -0.9268,3.81588 -1.1993,5.8241 -0.1417,1.05985 -0.2505,2.13279 -0.3267,3.21703 -0.6546,-0.13091 -1.3106,-0.27648 -1.9675,-0.43721 -2.3014,-0.57324 -4.6217,-1.3054 -6.9066,-2.29858 2.0566,1.1984 4.1829,2.17627 6.3208,3.00837 0.7359,0.2837 1.4739,0.54792 2.2136,0.79333 -1.6596,2.75559 -3.2672,5.5461 -4.8229,8.36965 1.9075,-2.59316 3.8122,-5.18835 5.7141,-7.7856 2.0228,2.26314 4.2911,4.39068 6.7593,6.34957 -2.2197,-2.24363 -4.1994,-4.6197 -5.8987,-7.08165 1.6187,-0.81593 3.1862,-1.69426 4.701,-2.62896 0.6183,0.35014 1.2451,0.68697 1.8794,1.01056 -0.6208,0.80562 -1.2482,1.60677 -1.8822,2.40335 0.7084,-0.72243 1.4062,-1.4532 2.0931,-2.19199 0.4373,0.77907 0.9032,1.55443 1.3969,2.32426 -0.4001,-0.83728 -0.7711,-1.67681 -1.112,-2.51666 0.882,-0.33198 1.7475,-0.68605 2.5956,-1.06054 -0.8639,0.26615 -1.7431,0.51021 -2.6369,0.7304 0.099,-0.8173 0.212,-1.62961 0.3403,-2.4364 0.2054,-0.14304 0.4098,-0.28713 0.6131,-0.43226 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4320"
         d="m 1111.4329,653.2196 c -0.2074,0.79268 -0.4034,1.59022 -0.5882,2.39229 -0.6567,-0.22803 -1.3098,-0.47034 -1.9585,-0.72728 0.8663,-0.53696 1.7153,-1.09234 2.5467,-1.66501 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4318"
         d="m 1101.3251,646.13224 c -1.5207,0.63274 -3.0793,1.19482 -4.6758,1.67242 0.1108,-1.50466 0.3639,-2.93762 0.7796,-4.26795 -0.5933,1.33209 -1.0354,2.77607 -1.3424,4.30182 -1.4991,-0.31299 -2.9986,-0.75394 -4.4886,-1.35836 1.3904,0.77407 2.812,1.38989 4.2505,1.88272 -1.0278,1.34103 -2.0001,2.73939 -2.919,4.18709 1.0804,-1.3328 2.1938,-2.63126 3.3407,-3.89199 0.9008,1.13006 1.9053,2.2155 2.9847,3.26114 -0.9333,-1.18297 -1.776,-2.38882 -2.4986,-3.61234 1.5564,-0.66572 3.0792,-1.39315 4.5689,-2.17455 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4316"
         d="m 1104.5943,667.12619 c -0.1728,1.19442 -0.3223,2.39674 -0.4488,3.60604 -1.2496,-0.46215 -2.4921,-0.96566 -3.7248,-1.5116 1.1723,0.6726 2.3621,1.30646 3.5668,1.90177 -0.7449,0.94397 -1.4986,1.88195 -2.2614,2.8138 0.89,-0.82726 1.7653,-1.66635 2.6255,-2.51675 0.8048,1.04504 1.6492,2.07417 2.5315,3.08443 -0.7576,-1.08493 -1.4752,-2.18309 -2.1514,-3.29136 1.2304,-0.3101 2.4376,-0.65536 3.6205,-1.03311 -1.2281,0.2406 -2.4781,0.44502 -3.7484,0.61038 -0.033,-1.22802 -0.036,-2.44973 -0.01,-3.6636 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4314"
         d="m 1092.4259,652.17411 c -1.103,1.83967 -2.1098,3.76656 -3.026,5.7612 -1.8792,-1.57405 -3.6723,-3.34995 -5.3286,-5.36276 1.4588,2.17056 3.0864,4.14337 4.8276,5.93465 -1.8304,1.1492 -3.6915,2.25517 -5.584,3.31409 2.0633,-0.77325 4.0771,-1.63432 6.0418,-2.57161 0.8185,2.2937 1.8209,4.55247 2.9578,6.72149 -0.8815,-2.24471 -1.6225,-4.55121 -2.1803,-6.85914 2.2985,0.19387 4.542,0.18391 6.7198,0.0328 -2.1878,-0.10256 -4.4295,-0.35805 -6.7077,-0.83529 0.6392,-2.12579 1.3956,-4.18129 2.2796,-6.13541 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4312"
         d="m 1131.6576,658.47713 c -0.022,0.0925 -0.044,0.18512 -0.068,0.27778 -0.03,0.11284 -0.06,0.22551 -0.092,0.33802 -0.042,-0.11334 -0.083,-0.22689 -0.124,-0.34062 0.036,0.12853 0.073,0.25692 0.11,0.38516 -0.7089,2.46756 -2.0297,4.85148 -3.7362,7.09867 -0.2812,-0.43038 -0.5516,-0.86426 -0.8122,-1.30042 -1.2825,-2.12913 -2.3052,-4.33312 -3.1229,-6.57335 0.6903,2.7585 1.6461,5.49471 2.9382,8.16455 0.055,0.11486 0.1112,0.22962 0.1676,0.34429 -0.072,0.0276 -0.1445,0.0549 -0.217,0.082 -2.6897,0.99845 -5.6458,1.66673 -8.7436,2.04517 2.9822,-0.0123 5.8842,-0.29609 8.6109,-0.90159 0.2015,-0.0449 0.4017,-0.0916 0.6004,-0.1399 0.01,3.2169 0.1094,6.43968 0.3126,9.66219 0.2443,-3.21206 0.4828,-6.42451 0.7157,-9.63734 1.4428,0.43222 2.914,0.76501 4.4177,0.94671 1.4112,0.16821 2.8476,0.2204 4.2845,0.077 -1.4973,-0.0394 -2.9472,-0.29022 -4.3425,-0.65243 -1.3985,-0.36556 -2.7378,-0.86543 -4.0335,-1.45033 0.8858,-1.55667 1.6309,-3.1519 2.1948,-4.77391 0.412,-0.0411 0.8107,-0.0967 1.1948,-0.16891 0.1432,-0.0288 0.2836,-0.0582 0.4212,-0.0884 0.037,1.01383 0.053,2.02949 0.05,3.04598 0.091,-1.00109 0.147,-2.00173 0.1659,-2.99898 0.6062,0.37245 1.2252,0.72261 1.8603,1.02355 -0.6293,-0.40902 -1.2273,-0.8661 -1.8006,-1.34492 0.3024,-0.78143 0.5105,-1.56151 0.6045,-2.3283 -0.1469,0.68827 -0.4149,1.38743 -0.7806,2.08588 -0.2749,-0.601 -0.5288,-1.20711 -0.7639,-1.81485 -0.046,-0.11838 -0.091,-0.23699 -0.136,-0.35583 0.023,-0.11525 0.044,-0.23059 0.065,-0.34602 0.021,-0.12033 0.041,-0.24061 0.059,-0.36079 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4310"
         d="m 1131.5158,659.24607 c 0.059,0.20142 0.1211,0.40247 0.1841,0.60313 0.1751,0.56049 0.3626,1.11993 0.5635,1.67697 -0.123,0.0531 -0.2493,0.10569 -0.3787,0.15776 -0.3616,0.13988 -0.7424,0.26453 -1.1405,0.37542 0.3193,-0.9298 0.579,-1.8683 0.7716,-2.81328 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4308"
         d="m 1120.3969,658.47019 c -1.0344,1.2991 -2.1302,2.56709 -3.2794,3.80261 -0.6073,-1.04624 -1.1717,-2.10235 -1.7002,-3.1619 -0.1653,-0.33703 -0.3259,-0.6745 -0.482,-1.01231 0.1285,0.39705 0.2627,0.79421 0.4024,1.19133 0.3944,1.10136 0.8241,2.20361 1.2955,3.30182 -1.0317,0.33801 -2.0915,0.6443 -3.173,0.91954 -0.5194,0.13133 -1.0436,0.25569 -1.5723,0.37278 0.4966,-0.0489 0.9901,-0.10432 1.4804,-0.16612 1.1427,-0.1462 2.2663,-0.32751 3.3635,-0.54546 -0.1279,1.69979 -0.2113,3.40969 -0.246,5.12773 0.2334,-1.70295 0.4984,-3.39862 0.7931,-5.08625 1.4543,0.5286 2.9176,0.98819 4.3845,1.36287 -1.4091,-0.56619 -2.7937,-1.21132 -4.1538,-1.91788 1.0064,-1.37434 1.9703,-2.77092 2.8873,-4.18876 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4306"
         d="m 1134.3742,674.46275 c 0.6404,1.04115 1.3427,2.05938 2.1136,3.04473 -0.9734,0.33239 -1.9521,0.60616 -2.9264,0.82388 -0.5178,0.1183 -1.0361,0.22502 -1.5542,0.32065 0.5207,-0.047 1.0437,-0.10524 1.5689,-0.17526 1.0064,-0.12956 2.0267,-0.31828 3.0527,-0.5715 0.01,1.21089 -0.02,2.42496 -0.072,3.64056 0.259,-1.22386 0.4719,-2.45048 0.6337,-3.67508 1.5388,0.19648 3.1766,0.24835 4.9196,0.11155 -1.6891,-0.0159 -3.2597,-0.20695 -4.7227,-0.53018 0.9032,-1.09667 1.7101,-2.24264 2.3881,-3.41855 -0.8256,1.12159 -1.7792,2.19462 -2.8229,3.20033 -0.9433,-0.87742 -1.7993,-1.80671 -2.5781,-2.77113 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4304"
         d="m 1115.8569,668.23985 c 0.023,2.15038 0.1303,4.31402 0.3314,6.48584 -2.3565,-0.36995 -4.6903,-0.88787 -6.9764,-1.52854 2.21,0.88212 4.4925,1.65014 6.8325,2.27418 -0.9841,1.9239 -2.0052,3.83317 -3.0614,5.72724 1.3291,-1.74644 2.6014,-3.52356 3.8102,-5.32982 1.813,1.53955 3.7887,2.99345 5.9532,4.32798 -1.9771,-1.52622 -3.7536,-3.15056 -5.3596,-4.8426 2.0526,-1.00387 4.0018,-2.11626 5.8108,-3.33704 -1.9459,1.00674 -4.0242,1.88716 -6.1938,2.64427 -0.499,-2.14418 -0.8757,-4.28766 -1.1469,-6.42151 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4302"
         d="m 1132.912,652.89441 c -0.1082,0.20218 -0.2182,0.40389 -0.3299,0.60511 -0.048,-0.11836 -0.096,-0.2368 -0.1434,-0.35534 0.039,0.13309 0.078,0.26612 0.117,0.3991 -1.3483,2.43117 -2.9504,4.7918 -4.7757,7.06142 -1.794,-2.58389 -3.3122,-5.26545 -4.5791,-7.99344 0.9865,2.91759 2.2124,5.80955 3.6998,8.63563 -2.8796,1.06079 -5.9598,1.89244 -9.1733,2.48123 3.2584,-0.20847 6.4298,-0.66822 9.4495,-1.37751 0.036,3.26897 0.1326,6.53924 0.2914,9.80931 0.2676,-3.25913 0.5318,-6.51847 0.7925,-9.77804 2.9578,0.88289 6.0292,1.51708 9.1974,1.8454 -3.1114,-0.70793 -6.0603,-1.70849 -8.843,-2.93666 0.9655,-1.5666 1.8513,-3.15848 2.6524,-4.77167 0.7129,-0.0258 1.4216,-0.0691 2.1256,-0.13032 -0.1,1.02674 -0.2083,2.05311 -0.326,3.07901 0.2203,-1.00183 0.4252,-2.0053 0.6144,-3.01016 0.7766,0.436 1.574,0.85021 2.3924,1.24046 -0.7764,-0.49905 -1.5277,-1.01946 -2.2542,-1.55908 0.5654,-0.75964 1.0982,-1.53138 1.5967,-2.31425 -0.5679,0.69863 -1.1701,1.38302 -1.8045,2.05225 -0.3459,-0.7566 -0.6753,-1.51746 -0.9886,-2.28213 0.098,-0.23307 0.1942,-0.46651 0.2886,-0.70032 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4300"
         d="m 1132.5905,653.65599 c 0.2395,0.79471 0.4919,1.5872 0.7572,2.37722 -0.6721,0.15547 -1.3533,0.29435 -2.0427,0.4169 0.4566,-0.92468 0.8855,-1.8563 1.2855,-2.79412 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4298"
         d="m 1119.5199,652.87237 c -0.993,1.38143 -2.0357,2.74001 -3.1252,4.07331 -0.9314,-1.3464 -1.7923,-2.71137 -2.5858,-4.08501 0.6339,1.48543 1.3367,2.96909 2.1117,4.44207 -1.5334,0.61356 -3.119,1.16974 -4.7476,1.66439 1.6694,-0.29607 3.3041,-0.65742 4.8939,-1.08084 0,1.7363 0.038,3.47906 0.1185,5.2264 0.1225,-1.74524 0.272,-3.48582 0.448,-5.22098 1.539,0.44103 3.091,0.82274 4.6498,1.13976 -1.5093,-0.5147 -2.9954,-1.09024 -4.4541,-1.71925 0.9344,-1.46354 1.8318,-2.94398 2.6908,-4.43985 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4296"
         d="m 1134.1433,669.30181 c 0.4958,1.12091 1.0193,2.23561 1.571,3.34328 -1.3446,0.2767 -2.7014,0.50886 -4.0673,0.69731 1.3816,-0.0469 2.7634,-0.13866 4.1429,-0.27672 -0.1338,1.21313 -0.2802,2.42578 -0.4389,3.63785 0.3282,-1.19064 0.6351,-2.38381 0.9204,-3.57912 1.2047,0.43637 2.441,0.83784 3.7093,1.20142 0.078,0.0215 0.1564,0.0427 0.2346,0.0639 -0.079,-0.0308 -0.159,-0.0619 -0.2384,-0.0931 -1.1982,-0.4859 -2.3602,-1.00532 -3.4867,-1.55539 0.9054,-0.93158 1.7687,-1.88393 2.5871,-2.85554 -0.9341,0.87905 -1.9122,1.73336 -2.931,2.56147 -0.7025,-1.03733 -1.3699,-2.08623 -2.003,-3.14536 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4294"
         d="m 1115.5418,663.09388 c 0.1724,2.18199 0.4171,4.37115 0.7372,6.56284 -2.3707,-0.2231 -4.7415,-0.56947 -7.0957,-1.03444 2.2954,0.71574 4.631,1.31899 6.993,1.80065 -0.8752,2.01663 -1.7816,4.02287 -2.7183,6.01794 1.2125,-1.8649 2.3745,-3.75298 3.4835,-5.66206 1.8782,1.45037 3.8719,2.82375 5.9843,4.09965 -1.9346,-1.47745 -3.7395,-3.03697 -5.4203,-4.65857 1.9915,-1.14323 3.89,-2.3698 5.6803,-3.67091 -1.9347,1.08782 -3.9731,2.08758 -6.0969,2.99078 -0.6099,-2.14646 -1.1239,-4.29768 -1.5471,-6.44588 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4292"
         d="m 1153.7074,646.27863 c 0.014,0.23034 0.027,0.46118 0.039,0.69248 -0.1045,-0.0746 -0.2087,-0.14942 -0.3126,-0.22455 0.1041,0.0922 0.2086,0.1842 0.3132,0.27596 0.1369,2.79366 0.048,5.65612 -0.2846,8.55308 -2.8849,-1.2376 -5.5604,-2.7136 -7.9755,-4.39626 2.2856,1.98758 4.8239,3.79979 7.5754,5.40847 -1.8635,2.42834 -4.0174,4.7483 -6.4676,6.88746 2.6821,-1.83605 5.1129,-3.89124 7.2863,-6.09768 1.766,2.75454 3.5885,5.47768 5.4661,8.1679 -1.508,-2.90769 -3.0192,-5.81375 -4.5336,-8.71816 2.9709,-0.82697 5.928,-1.94059 8.8091,-3.33054 -3.0322,1.0366 -6.0852,1.7737 -9.0905,2.21578 -0.018,-1.84405 -0.119,-3.66907 -0.2986,-5.46904 0.5925,-0.40492 1.1756,-0.82308 1.7489,-1.25367 0.4604,0.92656 0.9135,1.85742 1.359,2.79249 -0.345,-0.96959 -0.703,-1.93269 -1.0741,-2.889 0.9011,-0.0466 1.8111,-0.12166 2.7279,-0.22575 -0.9375,-0.011 -1.8643,-0.0512 -2.778,-0.11949 0.084,-0.95011 0.1392,-1.89363 0.165,-2.82872 -0.1311,0.90061 -0.292,1.80721 -0.4835,2.71767 -0.7005,-0.45738 -1.3893,-0.92662 -2.0661,-1.40733 -0.04,-0.25095 -0.081,-0.50132 -0.1244,-0.7511 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4290"
         d="m 1153.8361,647.09955 c 0.6293,0.54605 1.2685,1.08366 1.9172,1.61261 -0.4958,0.49374 -1.0045,0.97835 -1.5255,1.45284 -0.105,-1.03045 -0.2357,-2.05264 -0.3917,-3.06545 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4288"
         d="m 1142.6541,653.24616 c -0.1213,1.67929 -0.3093,3.36399 -0.5666,5.05065 -1.4287,-0.71415 -2.7829,-1.50104 -4.0527,-2.35624 1.1903,1.02703 2.4704,1.9942 3.8313,2.89663 -0.9816,1.27741 -2.0572,2.52157 -3.23,3.72199 1.3011,-1.04443 2.5124,-2.14378 3.636,-3.287 0.8458,1.50575 1.7429,2.99097 2.6896,4.45402 -0.7713,-1.56328 -1.5094,-3.13908 -2.2133,-4.72666 1.5016,-0.3739 2.9867,-0.82833 4.4488,-1.35748 -1.5222,0.33499 -3.0482,0.5895 -4.5696,0.76006 0.061,-1.72441 0.069,-3.4437 0.026,-5.15597 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4286"
         d="m 1163.4908,659.56882 c 1.0164,0.69006 2.0512,1.36121 3.1038,2.01276 -0.9857,0.94395 -2.0076,1.86007 -3.0644,2.74548 1.1456,-0.77354 2.2633,-1.58348 3.3513,-2.42756 0.5312,1.10247 1.0524,2.2109 1.5634,3.32516 -0.3574,-1.1852 -0.7333,-2.36158 -1.1271,-3.52866 1.3209,-0.27841 2.6455,-0.6045 3.9702,-0.97929 -1.3376,0.22692 -2.6685,0.40586 -3.9893,0.53825 0.2679,-1.26871 0.4909,-2.53176 0.6702,-3.78618 -0.3254,1.23589 -0.6969,2.47601 -1.1156,3.7169 -1.1415,-0.5128 -2.2628,-1.05211 -3.3625,-1.61686 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4284"
         d="m 1144.3994,664.03247 c 1.239,1.79458 2.5644,3.54921 3.9716,5.25991 -2.1931,1.02762 -4.4769,1.92723 -6.8444,2.68199 2.4381,-0.50752 4.8246,-1.16972 7.1485,-1.97372 0.2691,2.17544 0.4976,4.35929 0.6847,6.55065 0.129,-2.22256 0.1852,-4.43723 0.1706,-6.64121 2.3966,0.2679 4.857,0.38741 7.36,0.35277 -2.456,-0.23054 -4.8479,-0.60722 -7.1554,-1.1218 1.148,-2.00662 2.1394,-4.0422 2.9813,-6.08937 -1.0773,1.94195 -2.3074,3.85651 -3.6967,5.72369 -1.6399,-1.51975 -3.1824,-3.10276 -4.6202,-4.74291 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path4282"
         d="m 1176.1661,622.96785 c 0.1416,0.0822 0.2823,0.16784 0.4218,0.25685 -0.095,0.003 -0.1909,0.005 -0.2863,0.007 0.1054,0.005 0.2109,0.009 0.3165,0.0134 0.6185,0.3959 1.2166,0.85702 1.7895,1.37148 0.9807,0.9068 1.8536,1.97831 2.656,3.1485 -1.593,0.46962 -3.2081,0.84231 -4.8416,1.26802 -0.7455,0.17728 -1.5047,0.3743 -2.2802,0.61503 0.9178,-0.17002 1.8188,-0.29519 2.7078,-0.40526 1.5683,-0.22187 3.1294,-0.41842 4.6868,-0.68721 0.046,0.96469 0.043,1.97117 0.02,2.99581 -0.034,1.47161 -0.1324,3.01436 -0.1246,4.52626 0.1603,-1.43741 0.4175,-2.8846 0.62,-4.28323 0.1548,-1.08105 0.2894,-2.14789 0.3657,-3.18015 2.4275,0.74494 4.8723,1.43753 7.3382,2.06204 -2.3546,-0.95107 -4.7106,-1.89858 -7.068,-2.8425 0.3713,-0.54563 0.7207,-1.09752 1.0409,-1.66368 0.8084,-1.42751 1.4646,-2.97469 1.8128,-4.63125 -0.5731,1.65896 -1.4547,3.12707 -2.4597,4.43499 -0.3546,0.46369 -0.7311,0.91209 -1.1246,1.35328 -0.8258,-0.91087 -1.6971,-1.75217 -2.6295,-2.49225 -0.1425,-0.11063 -0.286,-0.21894 -0.4306,-0.32485 0.082,-0.42631 0.1473,-0.83915 0.1902,-1.23369 0.7706,0.21155 1.5377,0.43944 2.3012,0.68298 -0.7303,-0.30424 -1.4681,-0.58161 -2.2123,-0.82999 0.43,-0.35887 0.8402,-0.74338 1.2158,-1.15912 -0.4556,0.38503 -0.941,0.7291 -1.4422,1.03949 -0.5119,-0.40675 -1.0473,-0.74715 -1.6023,-1.00833 0.4835,0.28333 0.9435,0.64854 1.3766,1.08095 -0.6205,0.0723 -1.241,0.11756 -1.8587,0.13863 -0.1654,-0.0877 -0.3318,-0.17217 -0.4992,-0.2532 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         id="path4280"
         d="m 1177.6721,621.31879 c 0.6318,0.0201 1.2665,0.0203 1.9025,-8e-4 0.034,0.38549 0.046,0.79667 0.04,1.22739 -0.6293,-0.45711 -1.2781,-0.86856 -1.9427,-1.22638 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4278"
         d="m 1174.0094,631.7242 c 0.3184,0.43272 0.6411,0.86149 0.9698,1.28392 0.5479,0.71942 1.1193,1.44029 1.7201,2.1302 -0.4914,0.50293 -0.9709,1.08313 -1.4284,1.76368 -0.6615,0.98722 -1.199,2.20429 -1.5222,3.7064 0.4483,-1.51472 1.1147,-2.70293 1.8944,-3.64154 0.4229,-0.50589 0.8577,-0.94447 1.2997,-1.32974 0.122,0.54339 0.2641,1.0909 0.4315,1.63146 0.3392,1.13504 0.8616,2.25381 1.5414,3.19831 -0.5576,-0.96268 -0.9522,-2.05104 -1.1762,-3.13469 -0.1394,-0.64431 -0.241,-1.29175 -0.3154,-1.92578 1.1884,-0.14187 2.366,-0.17191 3.5287,-0.13948 0.2002,0.006 0.4001,0.0133 0.5996,0.0222 -0.3073,-0.0508 -0.6154,-0.0991 -0.9242,-0.14491 -1.0367,-0.15276 -2.0832,-0.27307 -3.139,-0.34558 0.085,-0.25573 0.1731,-0.50286 0.2645,-0.74139 0.4865,-1.28351 1.0217,-2.45238 1.5417,-3.53172 -0.6403,1.02018 -1.2977,2.13426 -1.9177,3.38956 -0.1122,0.22611 -0.2222,0.46155 -0.3288,0.70665 -0.518,-0.45717 -1.0247,-0.92888 -1.5212,-1.40623 -0.5137,-0.48645 -1.0192,-0.9847 -1.5183,-1.4913 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4276"
         d="m 1189.8114,622.80633 c 0.9344,-0.23604 1.8653,-0.52455 2.788,-0.8706 0.031,1.24239 -0.039,2.47465 -0.1997,3.67809 0.2717,-1.18975 0.4538,-2.42429 0.5321,-3.68993 0.9118,0.28312 1.8193,0.58917 2.7218,0.91704 -0.8603,-0.48584 -1.7328,-0.9358 -2.6152,-1.34645 0.5117,-1.10647 0.9429,-2.30956 1.2701,-3.61842 -0.4283,1.23346 -0.9486,2.35354 -1.5382,3.37209 -0.6105,-0.93496 -1.2775,-1.80409 -1.9947,-2.58647 0.6405,0.87888 1.2183,1.84033 1.7277,2.86057 -0.8827,0.49987 -1.7827,0.92524 -2.6919,1.28408 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path4274"
         d="m 1166.5436,644.95778 c 0.2827,-0.006 0.5647,-0.007 0.8457,-0.005 1.4103,0.0109 2.8019,0.1092 4.1871,0.25114 -0.101,0.4285 -0.1835,0.84226 -0.2413,1.24087 -0.085,0.6309 -0.1172,1.15094 -0.035,1.5323 0.043,0.16484 0.088,0.29523 0.1412,0.38315 -0.01,-0.0866 -0.011,-0.20861 -0.011,-0.36056 0,0 0,0 0,0 0.011,-0.35367 0.1302,-0.82473 0.2985,-1.40651 0,0 0,0 0,0 0.1142,-0.38379 0.2543,-0.78156 0.4137,-1.19495 1.4439,0.88177 2.9072,1.7253 4.3963,2.5171 -1.4035,-0.88719 -2.7529,-1.87397 -4.0692,-2.92025 0.9482,-0.6685 1.9607,-1.37204 3.0137,-2.23247 0.3424,-0.26861 0.6867,-0.54778 1.032,-0.83987 -0.3982,0.26699 -0.7948,0.52021 -1.1894,0.76266 -1.1091,0.71142 -2.1833,1.28914 -3.2142,1.84888 -0.5509,-1.3078 -1.014,-2.73698 -1.4988,-4.16061 -0.068,-0.19734 -0.1352,-0.39466 -0.2036,-0.59177 0.041,0.18359 0.081,0.36728 0.1203,0.55091 0.3221,1.49308 0.6194,2.98562 1.0307,4.34 -1.4514,8.1e-4 -2.9014,0.0416 -4.3691,0.20455 -0.215,0.0238 -0.4304,0.0504 -0.6463,0.0803 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         id="path4272"
         d="m 1207.7046,587.08782 c -0.2037,-0.0833 -0.4074,-0.1663 -0.6114,-0.24902 0.083,-0.0826 0.1656,-0.1654 0.2483,-0.24828 -0.098,0.0761 -0.1955,0.15207 -0.2933,0.22796 -2.4628,-0.99314 -4.9403,-1.94305 -7.4252,-2.80474 0.2702,-0.50567 0.5368,-1.01557 0.7995,-1.53011 1.0711,-2.04913 2.0851,-4.17873 2.9697,-6.438 -1.3037,2.42846 -2.749,4.69914 -4.2492,6.87891 -0.121,0.17824 -0.2424,0.35587 -0.3642,0.53291 -0.094,-0.10345 -0.1888,-0.20669 -0.2836,-0.30971 -1.8554,-2.02191 -3.8043,-4.00824 -5.8388,-5.78058 1.7359,1.90963 3.3651,3.99194 4.9068,6.10176 0.1533,0.20923 0.3059,0.41915 0.4578,0.6297 -2.5536,1.19845 -5.1168,2.3726 -7.6886,3.52471 2.6857,-0.85961 5.3719,-1.71792 8.0585,-2.57494 0.1928,1.63302 0.3462,3.25677 0.4738,4.87324 0.098,1.23033 0.1754,2.44873 0.2538,3.66134 0.067,-1.25238 0.1343,-2.50994 0.1798,-3.78573 0.059,-1.58449 0.092,-3.18126 0.088,-4.79543 1.593,0.35548 3.1862,0.74024 4.7778,1.14623 0.2408,0.68545 0.4754,1.36941 0.7044,2.05137 0.018,0.0563 0.038,0.11256 0.056,0.16872 -0.3671,0.0433 -0.7342,0.0869 -1.1011,0.13096 -0.5211,0.0635 -1.042,0.12758 -1.5628,0.19244 0.3015,-0.002 0.6031,-0.003 0.9048,-0.004 0.5935,-5e-5 1.1871,0.002 1.7809,0.004 -0.1562,0.918 -0.3253,1.81308 -0.4996,2.69194 0.2751,-0.85178 0.5456,-1.71786 0.8047,-2.60579 0.791,0.4631 1.5772,0.92242 2.3589,1.36912 -0.7257,-0.53582 -1.4571,-1.08768 -2.1953,-1.64577 0.2195,-0.21441 0.4385,-0.43008 0.6568,-0.64717 0.3194,-0.31365 0.638,-0.62893 0.9555,-0.94598 0.2257,0.0596 0.4515,0.1195 0.6772,0.17972 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4270"
         d="m 1206.9658,586.88428 c -0.4857,0.38001 -0.9726,0.75741 -1.4607,1.13242 -0.098,0.0764 -0.1969,0.15256 -0.2955,0.22861 -0.019,-0.0423 -0.039,-0.0847 -0.059,-0.12706 -0.3008,-0.64895 -0.6067,-1.29903 -0.9183,-1.94946 0.9116,0.23208 1.8227,0.47109 2.7329,0.71549 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4268"
         d="m 1200.7351,572.42131 c -1.5611,-0.077 -3.1139,-0.10864 -4.6525,-0.0848 0.1174,-1.62853 0.1391,-3.31317 0.037,-5.06772 -0.087,1.71652 -0.2877,3.35695 -0.577,4.9362 -1.4361,-0.76716 -2.8915,-1.4542 -4.3583,-2.03091 1.4035,0.7467 2.7801,1.60014 4.1252,2.52859 -1.0084,1.13633 -2.0487,2.2326 -3.1161,3.29376 1.184,-0.9273 2.3517,-1.8786 3.5012,-2.85606 0.7834,1.47455 1.4827,2.96674 2.1165,4.46079 -0.4687,-1.55373 -1.0071,-3.11697 -1.6393,-4.68074 1.5086,-0.20528 3.0309,-0.36979 4.5633,-0.49906 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4266"
         d="m 1194.2767,591.72491 c -0.8458,0.61633 -1.6943,1.22763 -2.544,1.83809 -0.2223,-0.47526 -0.4443,-0.94365 -0.6674,-1.40391 -0.2153,-0.44617 -0.4321,-0.88952 -0.6506,-1.32969 0.161,0.4573 0.32,0.91714 0.4775,1.37933 0.1667,0.48831 0.3321,0.98455 0.4977,1.48799 -1.0413,0.12955 -2.0821,0.26141 -3.1223,0.39642 1.0465,-0.0177 2.0941,-0.0286 3.1427,-0.0355 -0.2096,1.01537 -0.4181,2.04832 -0.6127,3.1098 0.3135,-1.02813 0.6396,-2.0299 0.9667,-3.01765 0.9129,0.50318 1.8283,1.02236 2.7468,1.54321 -0.8529,-0.62504 -1.7015,-1.24671 -2.5477,-1.84915 0.7729,-0.70536 1.545,-1.40945 2.3133,-2.11891 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4264"
         d="m 1191.828,575.5705 c -1.263,1.39595 -2.5768,2.72983 -3.9291,4.01349 -0.9756,-1.40405 -1.9991,-2.70168 -3.092,-3.84574 0.917,1.27706 1.7446,2.681 2.5163,4.17635 -1.7997,0.5455 -3.5872,1.11977 -5.3606,1.72541 1.8004,-0.43465 3.624,-0.81154 5.4653,-1.13884 -0.1661,1.72546 -0.41,3.4464 -0.6725,5.18154 0.4788,-1.70584 0.9381,-3.41082 1.321,-5.14061 1.7081,0.56958 3.4289,1.26026 5.1435,2.02183 -1.6124,-0.95495 -3.2375,-1.83722 -4.8582,-2.58926 1.2103,-1.40662 2.3727,-2.86859 3.4663,-4.40417 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4262"
         d="m 1175.8918,562.19884 c 0.2223,-0.0169 0.4448,-0.0329 0.6676,-0.0478 -0.063,0.10521 -0.1261,0.21024 -0.1894,0.31508 0.08,-0.10535 0.1596,-0.21089 0.2391,-0.31659 2.6907,-0.18315 5.4268,-0.22032 8.1989,-0.0892 -0.4012,1.23502 -0.8373,2.44494 -1.3089,3.62677 -0.6195,1.54757 -1.2991,3.04346 -2.0396,4.47375 1.0551,-1.58541 2.0403,-3.25474 2.9555,-4.99059 0.4813,-0.91436 0.9431,-1.84638 1.3855,-2.79483 0.5428,0.35616 1.0824,0.72259 1.6185,1.09967 1.8907,1.33148 3.7416,2.7904 5.5192,4.40487 -1.5063,-1.7311 -3.0994,-3.33849 -4.7479,-4.84009 -0.5644,-0.51346 -1.1354,-1.01417 -1.7128,-1.50253 2.4558,-1.87879 4.8857,-3.79545 7.2893,-5.7487 -2.6296,1.63012 -5.258,3.26242 -7.885,4.89686 -1.0158,-2.77964 -2.2391,-5.53467 -3.6398,-8.23999 1.0702,2.8562 1.9479,5.72759 2.6073,8.57987 -1.745,0.13138 -3.4727,0.31896 -5.1819,0.55864 -0.4372,-0.56612 -0.8846,-1.12589 -1.3414,-1.67928 0.8577,-0.47057 1.7182,-0.93637 2.5818,-1.39732 -0.9031,0.36482 -1.8017,0.73813 -2.6955,1.1197 -0.11,-0.88259 -0.2409,-1.77111 -0.3919,-2.66423 0.041,0.91409 0.063,1.82105 0.063,2.71954 -0.9219,-0.0672 -1.8398,-0.11542 -2.7531,-0.14577 0.8874,0.13482 1.7775,0.28798 2.6695,0.46068 -0.3886,0.69659 -0.7856,1.38567 -1.1913,2.06687 -0.2392,0.0439 -0.4781,0.0887 -0.7166,0.13458 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4260"
         d="m 1176.6757,562.05879 c 0.4729,-0.63513 0.9396,-1.27665 1.4001,-1.92436 0.5129,0.47752 1.0188,0.96321 1.5167,1.45726 -0.9785,0.13891 -1.9508,0.29487 -2.9168,0.4671 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4258"
         d="m 1183.7643,572.73171 c 1.6,-0.0579 3.2097,-0.063 4.8273,-0.0104 -0.4969,1.43911 -1.065,2.81724 -1.707,4.12065 0.8132,-1.24901 1.56,-2.57736 2.2421,-3.97219 1.3207,0.78463 2.6201,1.64923 3.8895,2.60482 -1.1389,-1.09499 -2.319,-2.10481 -3.53,-3.0398 1.3131,-0.97417 2.6034,-1.99083 3.8706,-3.04689 -1.3813,0.90239 -2.7763,1.77813 -4.1846,2.62591 -0.5328,-1.38386 -1.1348,-2.75182 -1.7953,-4.10145 0.4838,1.42603 0.903,2.85593 1.248,4.28358 -1.6296,0.13626 -3.25,0.31578 -4.8606,0.5358 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4256"
         d="m 1187.968,552.34526 c 0.6111,-0.98306 1.2094,-1.97781 1.7949,-2.98362 0.9007,0.86206 1.7861,1.74921 2.6544,2.66207 -0.7674,-1.00225 -1.5559,-1.98338 -2.3639,-2.94341 1.0166,-0.54738 2.0374,-1.08834 3.0623,-1.62275 -1.0931,0.39837 -2.1798,0.80867 -3.26,1.23057 -0.282,-1.20466 -0.5932,-2.41003 -0.9325,-3.614 0.2022,1.22136 0.3765,2.43991 0.522,3.65343 -1.1867,-0.18599 -2.3678,-0.34251 -3.5425,-0.47139 1.1585,0.2655 2.3209,0.56026 3.4858,0.88626 -0.4563,1.08043 -0.9298,2.14839 -1.4205,3.20284 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4254"
         d="m 1193.709,569.88184 c 1.5437,-1.37015 3.0456,-2.80935 4.505,-4.30999 1.1932,1.92179 2.2941,3.93803 3.28,6.05379 -0.7625,-2.2116 -1.6519,-4.35106 -2.6467,-6.41613 2.0141,-0.49577 4.0388,-0.95902 6.0736,-1.38837 -2.0962,0.14238 -4.1788,0.34557 -6.246,0.60543 0.01,-2.25136 -0.1026,-4.53173 -0.3264,-6.81481 -0.028,2.26663 -0.1647,4.51259 -0.4162,6.7106 -1.9992,-0.84346 -4.0058,-1.55435 -6.0071,-2.15308 1.9233,0.82914 3.8408,1.77456 5.7363,2.8579 -1.259,1.69301 -2.5768,3.31535 -3.9525,4.85466 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4252"
         d="m 1159.1099,545.98509 c 0.1997,-0.0944 0.4003,-0.18778 0.6019,-0.28011 -0.023,0.11998 -0.047,0.23988 -0.071,0.35967 0.039,-0.12609 0.078,-0.25227 0.117,-0.37857 2.4334,-1.11718 4.9977,-2.08399 7.6548,-2.91327 0.04,0.93692 0.062,1.86919 0.068,2.79643 0.011,2.04758 -0.067,4.06911 -0.2262,6.05904 0.4473,-2.30354 0.7952,-4.65395 1.0379,-7.0446 0.062,-0.61594 0.1173,-1.23449 0.1659,-1.85559 0.3782,0.0881 0.7569,0.17972 1.136,0.27475 2.5108,0.63043 5.0326,1.40945 7.5484,2.33683 -2.2843,-1.16144 -4.5957,-2.19534 -6.9206,-3.09907 -0.4735,-0.18387 -0.9474,-0.36233 -1.4213,-0.53511 1.6523,-2.61525 3.2718,-5.25418 4.8563,-7.91689 -1.9064,2.43871 -3.811,4.87888 -5.7138,7.32049 -1.9213,-2.26557 -3.9939,-4.43108 -6.2566,-6.44362 2.009,2.27217 3.7918,4.66054 5.4035,7.11851 -1.5961,0.72329 -3.1561,1.49194 -4.6733,2.30791 -0.601,-0.37913 -1.205,-0.74551 -1.812,-1.09806 0.6378,-0.74056 1.281,-1.47712 1.9295,-2.20969 -0.7178,0.65672 -1.4269,1.32078 -2.127,1.99224 -0.3948,-0.78 -0.8097,-1.55422 -1.2466,-2.32151 0.3433,0.8268 0.6628,1.65702 0.9609,2.48975 -0.8739,0.26594 -1.7319,0.55339 -2.5721,0.8632 0.8503,-0.2046 1.7174,-0.38473 2.5991,-0.54147 -0.1286,0.7842 -0.2687,1.56443 -0.4196,2.34064 -0.2072,0.12507 -0.4135,0.2511 -0.6188,0.3781 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4250"
         d="m 1159.7891,545.57824 c 0.2284,-0.75711 0.4486,-1.51796 0.6599,-2.28253 0.6334,0.26204 1.2669,0.53877 1.9,0.8292 -0.8678,0.46882 -1.7215,0.95313 -2.5599,1.45333 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4248"
         d="m 1170.5062,553.32426 c 1.487,-0.63111 2.9952,-1.23008 4.5235,-1.79624 0.1362,1.44492 0.2261,2.87841 0.2713,4.29775 0,0.11475 0.01,0.22939 0.01,0.34392 0.012,-0.12717 0.023,-0.25451 0.034,-0.38202 0.1244,-1.42354 0.2065,-2.86533 0.2448,-4.32305 1.3137,0.20075 2.6348,0.44079 3.9612,0.72059 0.2488,0.0525 0.4979,0.10649 0.7471,0.1618 -0.2223,-0.078 -0.4445,-0.15489 -0.6668,-0.23058 -1.2981,-0.4416 -2.5959,-0.84243 -3.8909,-1.20272 0.8117,-1.42673 1.5998,-2.87195 2.3636,-4.33511 -0.9287,1.36465 -1.8724,2.7166 -2.8311,4.05563 -1.0704,-1.11085 -2.1736,-2.18888 -3.3079,-3.23163 0.9976,1.17808 1.956,2.38315 2.8741,3.61215 -1.4616,0.74605 -2.9063,1.51602 -4.3334,2.30951 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4246"
         d="m 1167.0124,532.55481 c 0.2276,-1.13555 0.4358,-2.27879 0.6235,-3.42969 1.1649,0.50152 2.3168,1.03419 3.4543,1.59494 -1.0737,-0.67951 -2.1679,-1.33409 -3.2821,-1.96069 0.7621,-0.86766 1.5316,-1.72983 2.3083,-2.58654 -0.8914,0.75136 -1.7713,1.51293 -2.6387,2.28481 -0.7089,-1.03923 -1.4579,-2.07037 -2.2507,-3.09146 0.6691,1.0857 1.2934,2.17648 1.8767,3.27086 -1.1909,0.23591 -2.3654,0.50182 -3.5204,0.79904 1.191,-0.1631 2.3984,-0.29189 3.6188,-0.38814 -0.037,1.17693 -0.1006,2.34593 -0.1897,3.50687 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4244"
         d="m 1178.6211,546.89984 c 0.8915,-1.86299 1.7402,-3.75652 2.5446,-5.67911 1.7854,1.28914 3.5309,2.65351 5.2307,4.09006 -1.5352,-1.6154 -3.1292,-3.17078 -4.778,-4.66173 1.674,-1.22212 3.3633,-2.42653 5.0675,-3.61302 -1.8584,0.95683 -3.6932,1.94636 -5.5034,2.96797 -0.7859,-2.05024 -1.6648,-4.09622 -2.6394,-6.13055 0.7355,2.10908 1.3738,4.21698 1.9189,6.31676 -2.1403,-0.0152 -4.2529,0.0538 -6.3313,0.20482 2.0865,0.0916 4.1997,0.27112 6.332,0.54039 -0.5562,2.02114 -1.1709,4.01012 -1.8416,5.96441 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4242"
         d="m 1125.7634,533.52824 c 0.1797,-0.11922 0.359,-0.23878 0.5379,-0.35866 0.023,0.11221 0.044,0.22443 0.067,0.33665 -0.01,-0.12067 -0.017,-0.24134 -0.026,-0.36199 0.6155,-0.41461 1.2257,-0.83313 1.8311,-1.25527 1.5097,-1.05664 2.9394,-2.15002 4.3662,-3.23308 0.385,0.84876 0.7513,1.69553 1.0836,2.54012 0.617,1.61278 1.1438,3.22992 1.5726,4.84279 -0.2944,-1.94874 -0.7082,-3.91035 -1.2325,-5.8735 -0.1715,-0.62383 -0.3564,-1.24875 -0.5504,-1.8744 0.4085,-0.0546 0.8151,-0.10753 1.2208,-0.15763 1.88,-0.23979 3.8015,-0.3864 5.7605,-0.42196 0,0 0,0 0,0 0.3473,-0.006 0.6956,-0.009 1.0449,-0.009 -0.3315,-0.0389 -0.6627,-0.0751 -0.9934,-0.10861 0,0 0,0 0,0 -1.8658,-0.18819 -3.7156,-0.27449 -5.5439,-0.27279 0,0 0,0 0,0 -0.5108,-6.4e-4 -1.0233,0.003 -1.5387,0.01 0.5303,-2.7014 1.0403,-5.40814 1.5428,-8.11664 -0.823,2.62818 -1.6453,5.25655 -2.4672,7.88508 -0.7823,-0.42923 -1.5802,-0.85847 -2.3829,-1.29697 -1.6498,-0.90053 -3.2795,-1.83061 -4.881,-2.79464 1.525,1.1797 3.088,2.32893 4.6782,3.45058 0.7006,0.4948 1.3964,0.9817 2.0759,1.46653 -1.14,1.08822 -2.2843,2.17802 -3.4724,3.24811 -0.019,-0.005 -0.038,-0.01 -0.057,-0.0148 -0.719,-0.18737 -1.4386,-0.38056 -2.1584,-0.58 0.4,-0.77691 0.7976,-1.55482 1.1929,-2.33369 -0.4853,0.72676 -0.9744,1.45161 -1.4675,2.17447 -0.6626,-0.62893 -1.3184,-1.26324 -1.9663,-1.90298 0.5678,0.70501 1.1445,1.40592 1.7288,2.1027 -0.8126,0.3858 -1.633,0.76422 -2.4621,1.13454 0.8742,-0.27457 1.7401,-0.55839 2.5983,-0.85058 0.1339,0.72535 0.2724,1.45083 0.4153,2.17636 -0.172,0.15024 -0.3445,0.30019 -0.5175,0.44985 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4240"
         d="m 1126.3339,533.04148 c -0.053,-0.72236 -0.1026,-1.44442 -0.1486,-2.16608 0.7338,0.11918 1.4662,0.23191 2.197,0.3387 0.01,8e-4 0.014,0.002 0.02,0.003 -0.01,0.009 -0.019,0.0176 -0.03,0.0264 -0.673,0.60373 -1.3526,1.2032 -2.0393,1.79801 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4238"
         d="m 1138.3594,536.41194 c 1.0495,-0.9836 2.1312,-1.94456 3.2379,-2.88704 0.6235,1.2652 1.2203,2.54195 1.8129,3.82859 -0.4393,-1.35705 -0.8859,-2.70812 -1.3607,-4.05345 1.3915,-0.27811 2.815,-0.51727 4.2546,-0.73352 -1.4539,0.0448 -2.8935,0.11392 -4.3039,0.22536 0.2285,-1.44485 0.4382,-2.89511 0.6243,-4.35205 -0.3541,1.42552 -0.7236,2.84569 -1.1061,4.26115 -0.9188,-0.44288 -1.8363,-0.86379 -2.7549,-1.25606 -0.327,-0.14015 -0.6558,-0.27691 -0.9862,-0.41035 0.313,0.17556 0.6236,0.35409 0.9314,0.5356 0.8602,0.50362 1.7137,1.03302 2.5653,1.58249 -0.9928,1.0725 -1.9657,2.15821 -2.9146,3.25928 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4236"
         d="m 1129.3341,520.12219 c -0.037,-1.02105 -0.066,-2.04098 -0.086,-3.05959 0.9694,0.15049 1.9411,0.2897 2.9151,0.41916 -0.9498,-0.24676 -1.8948,-0.50275 -2.8345,-0.76929 0.4624,-0.91396 0.9214,-1.82932 1.3773,-2.74601 -0.5516,0.85853 -1.1084,1.71446 -1.6707,2.56763 -0.6778,-0.71752 -1.3408,-1.44009 -1.9873,-2.1678 0.558,0.80513 1.1332,1.60678 1.7238,2.40485 -0.8859,0.46758 -1.7804,0.92594 -2.6846,1.3739 0.9468,-0.33794 1.8848,-0.68753 2.8153,-1.04739 0.1332,1.00721 0.2772,2.01548 0.4314,3.02454 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4234"
         d="m 1143.1551,528.5486 c 0.1679,-1.83034 0.2965,-3.671 0.3738,-5.52488 1.8926,0.52896 3.7489,1.12189 5.5651,1.74132 -1.7361,-0.82034 -3.5214,-1.61789 -5.3636,-2.35818 1.0218,-1.53553 2.062,-3.06073 3.1184,-4.57653 -1.2554,1.37186 -2.4857,2.76101 -3.6846,4.17057 -0.061,-0.0694 -0.1227,-0.13884 -0.1844,-0.20818 -1.2709,-1.41089 -2.6255,-2.77939 -4.053,-4.09873 1.3215,1.52287 2.5554,3.08702 3.6901,4.68316 -1.8159,0.63894 -3.5637,1.36019 -5.2446,2.15108 1.6258,-0.54493 3.3038,-1.02326 5.0346,-1.4239 0.1479,-0.0349 0.2963,-0.0693 0.4447,-0.1034 0.1642,1.86136 0.2588,3.70931 0.3035,5.54767 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4232"
         d="m 1075.3123,548.54693 c -0.03,-0.30745 -0.057,-0.61684 -0.08,-0.92803 0.14,0.10189 0.2798,0.20403 0.4194,0.30639 -0.1404,-0.12542 -0.2811,-0.25061 -0.4221,-0.37555 -0.056,-0.75391 -0.091,-1.51828 -0.1084,-2.29102 -0.073,-3.06169 0.1137,-6.19771 0.4764,-9.37204 2.1921,0.87087 4.3426,1.80529 6.4775,2.76713 1.7715,0.80422 3.5283,1.63585 5.2843,2.48186 -1.9225,-1.21405 -3.8532,-2.41038 -5.8102,-3.57381 -1.777,-1.05096 -3.5724,-2.08165 -5.4011,-3.07359 0.782,-1.0328 1.5966,-2.06162 2.4348,-3.08632 1.9143,-2.3415 3.9524,-4.65178 6.0324,-6.9451 -2.2307,1.94525 -4.4274,3.91088 -6.5261,5.92001 -1.0564,1.01133 -2.0886,2.03166 -3.0848,3.06278 -2.4714,-3.70104 -4.9936,-7.37131 -7.5741,-11.00473 2.0944,3.9287 4.1922,7.85559 6.2933,11.78065 -1.5303,0.44748 -3.0458,0.93173 -4.545,1.46786 -2.5009,0.90069 -4.9482,1.90807 -7.2822,3.17422 2.558,-1.00542 5.176,-1.70656 7.8263,-2.29756 1.4581,-0.3205 2.9219,-0.59279 4.3933,-0.83084 0.03,2.51475 0.1565,5.00251 0.4089,7.44896 -0.1628,0.11244 -0.3243,0.22533 -0.4847,0.33872 -0.6333,0.45515 -1.2419,0.90402 -1.8207,1.34934 -0.6467,-1.24747 -1.2794,-2.50366 -1.8991,-3.76755 0.4867,1.30958 0.9972,2.60634 1.534,3.88739 -1.1646,0.0328 -2.3111,0.0869 -3.4413,0.18711 1.1716,0.0489 2.346,0.14771 3.5275,0.27199 -0.047,1.25327 -0.016,2.47292 0.1091,3.64671 0.01,-1.12106 0.1163,-2.28782 0.3089,-3.48818 0.9327,0.63083 1.8512,1.27769 2.7582,1.93499 0.062,0.33785 0.1269,0.67396 0.1955,1.00821 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4230"
         d="m 1075.1085,547.4448 c -0.8474,-0.74394 -1.706,-1.47906 -2.5776,-2.20214 0.5016,-0.52025 1.0361,-1.04751 1.598,-1.58286 0.1331,-0.12523 0.2676,-0.25018 0.4031,-0.37485 0.044,0.42024 0.092,0.83925 0.1444,1.25697 0.1202,0.97928 0.263,1.94798 0.4321,2.90288 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4228"
         d="m 1091.8354,537.54143 c 0,-0.31776 0.01,-0.63564 0.011,-0.95363 0.017,-2.04104 0.063,-4.09185 0.1184,-6.14688 2.3187,0.5183 4.6904,1.0117 7.1728,1.41436 -2.3985,-0.67831 -4.6941,-1.43673 -6.9451,-2.21909 1.221,-2.05076 2.4809,-4.12381 3.6923,-6.21989 -1.452,1.94914 -2.9461,3.86495 -4.393,5.75763 -1.5699,-1.78431 -3.132,-3.57241 -4.703,-5.35449 1.3522,1.95275 2.6982,3.90912 4.0452,5.86526 -0.5505,0.23791 -1.0965,0.47419 -1.6374,0.70985 -1.6015,0.69875 -3.184,1.39745 -4.7418,2.10686 1.6425,-0.52015 3.3053,-1.02761 4.9864,-1.53502 0.5567,-0.16708 1.1181,-0.33476 1.6844,-0.5042 0.1817,1.93186 0.3702,3.86109 0.575,5.78465 0.044,0.43169 0.089,0.86321 0.1346,1.29459 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4226"
         d="m 1061.8669,530.58671 c -1.4026,-0.91448 -2.8411,-1.79096 -4.3212,-2.6199 1.3969,-1.38141 2.8302,-2.66926 4.2671,-3.86971 -1.5582,1.04886 -3.124,2.19349 -4.6698,3.44912 -0.7412,-1.49289 -1.4625,-2.9983 -2.1654,-4.51465 0.4821,1.62729 0.9959,3.24 1.5454,4.83347 -1.8779,0.50343 -3.7978,1.1455 -5.762,1.96665 1.9835,-0.61069 3.91,-1.04847 5.7862,-1.35313 -0.3873,1.79429 -0.6956,3.59097 -0.8965,5.37024 0.4089,-1.77462 0.9291,-3.55182 1.5272,-5.31199 1.6117,0.62079 3.172,1.3094 4.689,2.0499 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4224"
         d="m 1087.4897,523.28925 c -0.7994,-0.83618 -1.6001,-1.67146 -2.4045,-2.50436 -1.2613,-1.30824 -2.5285,-2.61292 -3.8052,-3.91149 0.5594,-0.35801 1.118,-0.71364 1.675,-1.06729 2.0047,-1.27132 3.9569,-2.49645 5.8033,-3.71978 -1.9559,0.97339 -4.0087,1.94464 -6.1253,2.96708 -0.6206,0.29948 -1.2433,0.60142 -1.8677,0.90635 -0.7506,-2.88237 -1.492,-5.76775 -2.2276,-8.65458 0.382,2.9568 0.771,5.9135 1.1778,8.86587 -2.7827,-0.11278 -5.6153,-0.16981 -8.526,-0.12193 -0.2705,0.004 -0.5416,0.009 -0.8136,0.0144 0.2877,0.0262 0.5742,0.0535 0.86,0.082 2.8555,0.27658 5.6291,0.65042 8.3541,1.07686 -1.1172,2.80358 -2.2055,5.62084 -3.202,8.44261 1.32,-2.69166 2.7331,-5.36816 4.1682,-8.02471 1.6396,1.30546 3.2608,2.62397 4.8731,3.94883 0.6889,0.56522 1.3751,1.13232 2.0604,1.70014 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4222"
         d="m 1052.5112,561.6648 c -0.09,-0.15653 -0.1771,-0.3173 -0.2612,-0.482 -0.019,-0.0378 -0.038,-0.0757 -0.056,-0.11369 0.1193,0.0432 0.2383,0.0868 0.3572,0.13088 -0.1258,-0.0592 -0.2518,-0.1181 -0.3779,-0.17657 -1.2109,-2.46094 -1.9766,-5.25455 -2.5322,-8.18587 1.3344,0.10481 2.6661,0.2337 4.0064,0.35486 1.8774,0.19357 3.7567,0.41372 5.6615,0.61977 -2.1674,-0.49273 -4.3123,-0.9967 -6.4673,-1.46295 -1.0381,-0.21409 -2.0751,-0.429 -3.1159,-0.63276 0.2263,-0.62258 0.4654,-1.25041 0.7124,-1.88198 0.9343,-2.39809 1.9927,-4.81713 3.0343,-7.2405 -1.2592,2.18508 -2.5322,4.36315 -3.703,6.54075 -0.3762,0.69914 -0.743,1.39536 -1.0929,2.08771 -2.5831,-2.09374 -5.1937,-4.15651 -7.8415,-6.17466 2.3646,2.33902 4.7312,4.67583 7.1,7.01039 -1.3159,0.86966 -2.5831,1.76801 -3.7787,2.7523 0,0 0,0 0,0 -0.8549,0.70583 -1.6606,1.41655 -2.3604,2.20881 0,0 0,0 0,0 -0.2775,0.32215 -0.5427,0.64237 -0.7778,0.9715 0.2901,-0.30763 0.6071,-0.59741 0.9333,-0.88693 0.8219,-0.70991 1.7338,-1.31188 2.6905,-1.91113 0,0 0,0 0,0 1.2557,-0.78423 2.5619,-1.4785 3.9097,-2.14329 0.5838,1.78094 1.2433,3.50825 2.019,5.14447 -0.2731,0.35801 -0.5288,0.7124 -0.7648,1.06429 -0.1167,0.17779 -0.2251,0.34464 -0.3238,0.50085 -0.7778,-0.70022 -1.5413,-1.41892 -2.2925,-2.15241 0.6743,0.79093 1.3724,1.55433 2.0997,2.27943 -0.5712,0.14041 -1.0991,0.24491 -1.5754,0.35236 -0.1116,0.035 -0.2227,0.0575 -0.3318,0.0695 0.1355,8e-4 0.2722,-0.007 0.409,-0.0276 0.5299,-0.0435 1.0959,-0.0719 1.6947,-0.12278 0.3449,0.71726 0.7828,1.32388 1.3488,1.77831 0.043,0.0351 0.085,0.0682 0.1284,0.0994 -0.034,-0.0263 -0.067,-0.0546 -0.1011,-0.0846 -0.4897,-0.42859 -0.8318,-1.02572 -1.0698,-1.74718 0.7507,0.26492 1.4978,0.54119 2.2448,0.81103 0.02,0.007 0.04,0.0143 0.059,0.0214 0.01,0.0168 0.021,0.0335 0.031,0.0502 0.1247,0.19726 0.2525,0.39023 0.3838,0.57847 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4220"
         d="m 1052.065,560.97485 c -0.063,-0.0286 -0.1252,-0.0571 -0.1878,-0.0855 -0.6918,-0.31559 -1.387,-0.63054 -2.0877,-0.93616 0.066,-0.16573 0.1419,-0.34235 0.2257,-0.52978 0.1753,-0.38057 0.3715,-0.7662 0.5862,-1.15735 0.447,0.93531 0.9323,1.84058 1.4636,2.70881 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4218"
         d="m 1061.7986,550.02879 c -0.056,-0.18004 -0.1121,-0.36011 -0.1682,-0.54019 -0.4759,-1.52161 -0.9421,-3.05679 -1.4229,-4.58756 0.7266,-0.12093 1.4632,-0.25865 2.2122,-0.41987 1.1184,-0.22057 2.3279,-0.57298 3.653,-1.16252 -1.4535,0.47985 -2.7762,0.70507 -4.009,0.80198 -0.6375,0.0607 -1.2666,0.10635 -1.889,0.14073 0.1182,-0.56411 0.2351,-1.13175 0.3472,-1.7017 0.2388,-1.2485 0.5169,-2.58548 0.6907,-3.93557 -0.3014,1.24526 -0.6888,2.45586 -1.0389,3.58294 -0.204,0.64808 -0.414,1.29128 -0.6246,1.92819 -1.5852,-0.81941 -3.1461,-1.66895 -4.6986,-2.52883 1.4406,1.03518 2.8869,2.06407 4.3461,3.07862 -0.3582,0.33905 -0.7135,0.67131 -1.0646,0.99796 -0.9717,0.90527 -1.935,1.79064 -2.8808,2.66571 1.0484,-0.76256 2.1138,-1.53471 3.1901,-2.32925 0.3816,-0.28112 0.7678,-0.56818 1.1577,-0.86266 0.6326,1.3896 1.2568,2.78328 1.8842,4.17165 0.1052,0.23344 0.2103,0.4669 0.3154,0.70037 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4216"
         d="m 1038.6546,552.26516 c -1.2322,-0.2673 -2.4956,-0.46418 -3.7989,-0.55757 0.5085,-1.08663 1.0487,-2.07785 1.5853,-2.9709 0.2306,-0.38797 0.4644,-0.77036 0.7008,-1.14729 -0.27,0.34884 -0.5382,0.70407 -0.8041,1.066 -0.6288,0.84785 -1.267,1.80475 -1.8819,2.87877 -0.9017,-0.86838 -1.7819,-1.76462 -2.6435,-2.68287 0.7147,1.08798 1.4613,2.14839 2.2488,3.16372 -0.1846,0.15888 -0.3696,0.32387 -0.5548,0.49531 -1.1548,1.00124 -2.285,2.53407 -3.2383,4.82309 1.0993,-2.26425 2.3599,-3.70293 3.6286,-4.61074 0.1093,-0.0832 0.2183,-0.16444 0.3272,-0.24374 0.013,0.14823 0.027,0.29639 0.042,0.44443 0.1171,1.35938 0.3579,2.90034 0.8045,4.36494 -0.2852,-1.42392 -0.3792,-2.86716 -0.3648,-4.12575 0,-0.29504 8e-4,-0.58973 0.01,-0.88349 1.3578,-0.13639 2.6679,-0.12289 3.942,-0.0139 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4214"
         d="m 1055.2113,541.05576 c -0.8278,-0.41073 -1.652,-0.8262 -2.4755,-1.24289 -1.1553,-0.58502 -2.3078,-1.17418 -3.4605,-1.76387 0.284,-0.36191 0.5658,-0.72238 0.8447,-1.08163 0,0 0,0 0,0 0.7499,-0.96704 1.4586,-1.90316 2.0946,-2.81899 0,0 0,0 0,0 0.2674,-0.38647 0.5062,-0.74441 0.7065,-1.07579 -0.244,0.2903 -0.5242,0.60475 -0.8328,0.94787 0,0 0,0 0,0 -0.7363,0.80918 -1.54,1.63355 -2.3872,2.49127 0,0 0,0 0,0 -0.3333,0.3369 -0.6698,0.67516 -1.0091,1.01521 -1.2376,-1.84577 -2.479,-3.68841 -3.7275,-5.52505 1.0306,1.96015 2.0457,3.93292 3.0557,5.91004 -2.1321,0.59764 -4.3036,1.22809 -6.5343,1.97478 2.286,-0.4861 4.5115,-0.8623 6.7058,-1.20923 -0.089,2.21996 -0.1997,4.46043 -0.2654,6.69036 0.3249,-2.21027 0.6967,-4.42526 1.038,-6.61611 1.4152,0.52627 2.8276,1.05457 4.2442,1.57538 0.6664,0.24481 1.3334,0.48859 2.0028,0.72865 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4212"
         d="m 1033.2117,601.54496 c -0.1587,-0.21031 -0.3173,-0.42077 -0.4757,-0.6314 0.1408,-0.021 0.2815,-0.0419 0.4223,-0.0626 -0.152,0.005 -0.3039,0.009 -0.4559,0.0142 -1.9167,-2.53918 -3.811,-5.10178 -5.6636,-7.71031 3.2007,-1.34237 6.4029,-2.58848 9.5988,-3.69312 -3.3326,0.73887 -6.6783,1.6041 -10.0284,2.55951 -0.3421,-3.43219 -0.6042,-6.88409 -0.7365,-10.381 -0.277,3.48707 -0.4236,6.95269 -0.49,10.41216 -3.4214,-0.77611 -6.8483,-1.53482 -10.2801,-2.27756 3.3161,1.15012 6.6325,2.29935 9.9492,3.44768 -1.7565,2.98011 -3.4608,6.02704 -5.1383,9.09972 2.0279,-2.85537 4.0793,-5.67884 6.1711,-8.42041 1.3458,1.48611 2.704,2.95568 4.0713,4.41297 -0.2336,0.86029 -0.4643,1.72416 -0.6928,2.59138 -0.9993,-0.48716 -1.9981,-0.97567 -2.9963,-1.46564 0.9345,0.59786 1.8702,1.19339 2.8067,1.78682 -0.7659,0.77202 -1.5307,1.55209 -2.2945,2.33842 0.8521,-0.69203 1.7048,-1.37777 2.5581,-2.05545 0.5268,0.96222 1.0563,1.9223 1.5876,2.88132 -0.4139,-1.01161 -0.826,-2.02349 -1.2348,-3.03679 0.911,-0.14411 1.8217,-0.2847 2.7318,-0.42129 0.1965,0.20398 0.3932,0.40777 0.59,0.61138 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4210"
         d="m 1032.573,600.87093 c -0.9098,0.033 -1.8201,0.0689 -2.7308,0.1075 0.1211,-0.86832 0.2444,-1.73418 0.3709,-2.59756 0.7839,0.83376 1.5707,1.66352 2.3599,2.49006 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4208"
         d="m 1037.1195,585.08387 c -1.2957,-1.31104 -2.5762,-2.64279 -3.8395,-3.99784 1.5753,-0.88067 3.1573,-1.71228 4.7458,-2.48643 -1.688,0.58732 -3.3744,1.23089 -5.0583,1.92301 -0.4361,-1.75819 -0.8359,-3.53677 -1.1928,-5.341 0.1399,1.83015 0.3253,3.64083 0.549,5.43672 -1.8523,-0.19883 -3.7106,-0.37395 -5.5741,-0.52713 1.8329,0.36896 3.6616,0.75205 5.4856,1.14998 -0.6987,1.64361 -1.3649,3.30822 -2.0048,4.99096 0.8396,-1.59542 1.7025,-3.16606 2.5936,-4.70705 1.4205,1.20426 2.8526,2.39003 4.2955,3.55878 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4206"
         d="m 1016.0967,597.0926 c -1.3054,0.0765 -2.6112,0.1574 -3.9171,0.24197 0.1857,-1.31737 0.3796,-2.63873 0.5841,-3.96405 -0.3541,1.29412 -0.6979,2.58605 -1.0336,3.87507 -1.1754,-0.57333 -2.3501,-1.14845 -3.524,-1.72551 1.0978,0.71471 2.1971,1.42595 3.2978,2.13411 -0.9126,0.96453 -1.8202,1.93163 -2.7231,2.89839 1.0063,-0.85384 2.0165,-1.70712 3.0306,-2.55694 0.613,1.16687 1.2312,2.32696 1.8529,3.48206 -0.4835,-1.22061 -0.9629,-2.4463 -1.4362,-3.6789 1.2893,-0.24005 2.579,-0.47587 3.8686,-0.7062 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4204"
         d="m 1026.8575,579.40952 c -2.3373,-0.10519 -4.6832,-0.17116 -7.0362,-0.20224 0.5569,-2.37171 1.175,-4.7491 1.8682,-7.13208 -0.9536,2.29331 -1.8367,4.59564 -2.6615,6.90281 -2.0063,-1.21592 -4.005,-2.44665 -5.9957,-3.69294 1.8234,1.49422 3.6625,2.96168 5.5158,4.40465 -1.7904,1.6412 -3.5532,3.32868 -5.2902,5.04581 1.9135,-1.50036 3.846,-2.96628 5.7978,-4.38098 0.913,2.20863 1.8728,4.37332 2.8692,6.5043 -0.7428,-2.23524 -1.4445,-4.50166 -2.093,-6.80979 2.3479,-0.25827 4.6905,-0.47383 7.0256,-0.63954 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4202"
         d="m 1030.3196,624.41763 c -0.1812,-0.12063 -0.3622,-0.24219 -0.543,-0.36466 0.1075,-0.0505 0.2149,-0.10101 0.3224,-0.15142 -0.1206,0.0408 -0.2411,0.0816 -0.3617,0.12259 -1.1222,-0.758 -2.2383,-1.54987 -3.35,-2.36322 -1.0523,-0.76575 -2.0994,-1.55132 -3.1435,-2.34827 2.1009,-1.79961 4.2172,-3.58819 6.3221,-5.46048 0.1284,-0.1102 0.2567,-0.2212 0.3849,-0.33308 -0.162,0.11103 -0.3241,0.22118 -0.4862,0.33052 -2.2817,1.593 -4.5716,3.11913 -6.8532,4.65418 -0.6863,-1.61186 -1.3636,-3.24598 -2.0506,-4.87823 -0.4622,-1.09446 -0.925,-2.20241 -1.4091,-3.29264 0.3386,1.08935 0.6557,2.19066 0.9727,3.28165 0.5072,1.74957 1.0033,3.50021 1.5112,5.23088 -2.9415,0.25154 -5.8828,0.50994 -8.8237,0.77927 2.9515,0.0838 5.903,0.16706 8.8545,0.24972 -0.1319,0.57178 -0.2621,1.14284 -0.3896,1.71373 -0.5067,2.277 -0.9809,4.54538 -1.3537,6.83911 0.6641,-2.30679 1.4307,-4.56281 2.2285,-6.82666 0.1699,-0.4802 0.3418,-0.96036 0.515,-1.44098 0.8532,0.50207 1.7079,0.99791 2.5647,1.48483 0.6044,0.34506 1.2096,0.68595 1.8158,1.02148 0.031,0.73867 0.065,1.46803 0.1067,2.18749 -0.9257,-0.12447 -1.8513,-0.25254 -2.7767,-0.38392 0.9022,0.23148 1.805,0.45708 2.7083,0.67592 -0.412,0.77773 -0.8156,1.55405 -1.2073,2.33331 0.4877,-0.73231 0.986,-1.45873 1.4918,-2.18395 0.6719,0.59816 1.3487,1.17777 2.0316,1.73415 -0.6037,-0.62334 -1.1997,-1.27155 -1.7899,-1.9395 0.6914,-0.335 1.3844,-0.66559 2.0786,-0.99314 0.2096,0.10794 0.4194,0.21507 0.6294,0.32132 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4200"
         d="m 1029.6351,624.06027 c -0.7205,0.24831 -1.4403,0.4995 -2.1592,0.75443 -0.1276,-0.69284 -0.2489,-1.39687 -0.3662,-2.11078 0.8399,0.46349 1.6816,0.91665 2.5254,1.35635 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4198"
         d="m 1029.0133,609.26897 c -1.4403,-0.74715 -2.891,-1.47433 -4.3555,-2.14938 0.065,-0.11372 0.129,-0.22824 0.1929,-0.34357 0,0 0,0 0,0 0.5146,-0.90536 0.9725,-2.0044 1.2805,-3.41651 0,0 0,0 0,0 0.298,-0.6426 0.2822,-1.76115 -0.2251,-3.46044 0.4355,1.734 0.3627,2.85363 -0.011,3.50557 -0.4474,1.38949 -1.0412,2.45596 -1.6871,3.34445 -0.5921,-0.82037 -1.2381,-1.74997 -1.9663,-2.64738 -0.419,-0.5478 -1.1139,-1.41633 -2.0103,-2.1951 0.8241,0.82647 1.4174,1.68751 1.7549,2.24384 0,0 0,0 0,0 0.6158,0.92467 1.1426,1.86239 1.6179,2.69256 0.053,0.0914 0.1051,0.18289 0.1572,0.27448 -1.4688,0.62408 -2.9483,1.18855 -4.4354,1.71252 1.5372,-0.34512 3.0711,-0.71687 4.6006,-1.12332 0.071,1.7472 0.058,3.42407 0.029,5.02602 0.2121,-1.58961 0.4085,-3.25628 0.5211,-5.01906 1.5183,0.48523 3.0302,1.00973 4.5366,1.55532 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4196"
         d="m 1015.471,625.27393 c -1.0238,0.40816 -2.0452,0.82758 -3.0639,1.26065 -0.2042,-1.14912 -0.3895,-2.29187 -0.5623,-3.42429 0.045,1.14562 0.1026,2.30454 0.18,3.4751 -1.0906,-0.15149 -2.1809,-0.30814 -3.2708,-0.46946 1.0657,0.29951 2.1325,0.59158 3.2004,0.8748 -0.4663,1.0658 -0.9156,2.15789 -1.3423,3.28336 0.5414,-1.06018 1.1029,-2.08568 1.6796,-3.08417 0.8046,0.80341 1.6189,1.59346 2.4446,2.36255 -0.7355,-0.86473 -1.4566,-1.74896 -2.166,-2.64442 0.9625,-0.5616 1.9297,-1.10502 2.9007,-1.63412 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4194"
         d="m 1019.1717,608.26309 c -1.8241,0.75161 -3.665,1.42482 -5.5146,2.06627 -0.1721,-1.0205 -0.3639,-1.99786 -0.5973,-2.91985 0,0 0,0 0,0 -0.173,-0.66035 -0.3311,-1.16041 -0.5292,-1.45499 -0.046,-0.0537 -0.081,-0.0907 -0.1062,-0.11022 0.014,0.0217 0.039,0.0607 0.075,0.11621 0.1079,0.30946 0.1726,0.80561 0.2544,1.46546 0,0 0,0 0,0 0.1061,0.94065 0.1686,1.93039 0.2113,2.96475 -1.9496,-0.28964 -3.9004,-0.5558 -5.8523,-0.7895 1.9024,0.41889 3.8004,0.90184 5.6952,1.42166 -0.4246,0.77246 -0.8575,1.55944 -1.2881,2.37516 -0.4935,0.91029 -0.9904,1.82651 -1.4872,2.75416 0.6447,-0.92346 1.2894,-1.8354 1.9307,-2.743 0.4821,-0.69864 0.9658,-1.37723 1.4444,-2.04774 0.706,0.69096 1.4067,1.40972 2.1076,2.13712 0.6692,0.6889 1.3365,1.38338 2.0035,2.07938 -0.5233,-0.69194 -1.0469,-1.38253 -1.5724,-2.06853 -0.6705,-0.88132 -1.3407,-1.7515 -2.0206,-2.58304 1.7652,-0.84049 3.5194,-1.70331 5.246,-2.6633 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4192"
         d="m 1030.4978,648.05382 c -0.1833,-0.0877 -0.3665,-0.17604 -0.5496,-0.26496 0.093,-0.0597 0.1866,-0.11923 0.28,-0.17863 -0.1067,0.0523 -0.2134,0.10472 -0.3201,0.15728 -2.212,-1.07059 -4.4064,-2.22855 -6.5774,-3.47598 1.8673,-1.96714 3.7913,-3.82933 5.7657,-5.57911 -2.1866,1.53342 -4.3346,3.17364 -6.4385,4.91492 -1.3453,-2.32241 -2.6094,-4.73205 -3.7807,-7.22834 0.8712,2.61495 1.8444,5.16286 2.9087,7.64127 -2.7087,0.54206 -5.4142,1.10801 -8.1161,1.69764 2.7522,-0.25253 5.5043,-0.5064 8.2562,-0.76162 -0.2943,2.67617 -0.4835,5.3872 -0.5679,8.12289 0.408,-2.7088 0.9184,-5.37096 1.5291,-7.97556 1.4476,0.61392 2.9007,1.19663 4.3584,1.74857 0.117,0.66282 0.2407,1.32443 0.3712,1.9847 -0.8747,0.002 -1.7496,0.002 -2.6246,-0.002 0.8662,0.0994 1.7324,0.1933 2.5985,0.28182 -0.2824,0.77428 -0.5558,1.55621 -0.82,2.34546 0.3594,-0.75634 0.7272,-1.50403 1.1031,-2.24276 0.7003,0.47114 1.4039,0.93126 2.1106,1.38045 -0.6419,-0.52313 -1.2796,-1.05707 -1.9128,-1.60188 0.5984,-0.39854 1.199,-0.79127 1.8018,-1.1781 0.2081,0.0721 0.4162,0.14361 0.6244,0.21449 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4190"
         d="m 1029.8178,647.81338 c -0.6372,0.31764 -1.273,0.63992 -1.9073,0.96683 -0.2068,-0.62436 -0.4076,-1.25154 -0.6023,-1.88145 0.8352,0.31493 1.6717,0.61977 2.5096,0.91462 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4188"
         d="m 1028.1002,635.45105 c -1.3427,-0.54805 -2.6804,-1.12034 -4.0126,-1.71714 0.8755,-1.11747 1.7713,-2.20314 2.6867,-3.25552 -1.0449,0.94657 -2.0738,1.92782 -3.0859,2.94243 -0.8542,-1.14167 -1.6877,-2.31397 -2.4986,-3.51717 0.6613,1.28844 1.3486,2.54929 2.0599,3.78267 -1.4067,0.42021 -2.8105,0.8601 -4.2111,1.31943 1.4445,-0.29331 2.8903,-0.57378 4.3373,-0.84131 0,1.40282 0.021,2.80617 0.078,4.20888 0.1147,-1.40148 0.2601,-2.79617 0.4364,-4.18269 1.4003,0.43897 2.8037,0.85906 4.2096,1.26042 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4186"
         d="m 1016.8328,650.72936 c -0.8981,0.50845 -1.793,1.02621 -2.6846,1.55316 -0.3319,-1.03127 -0.6496,-2.06978 -0.9528,-3.11529 0.1862,1.0739 0.3878,2.1441 0.6044,3.21026 -1.0307,-0.002 -2.0617,-0.007 -3.0929,-0.0179 1.0258,0.14051 2.0517,0.27343 3.0776,0.39882 -0.3021,1.03549 -0.5901,2.08041 -0.8639,3.13416 0.3875,-1.00898 0.7881,-2.00716 1.2013,-2.99399 0.8449,0.63503 1.6952,1.2543 2.5501,1.85794 -0.782,-0.70148 -1.5576,-1.41857 -2.3261,-2.15137 0.824,-0.63654 1.653,-1.26187 2.4869,-1.87578 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4184"
         d="m 1018.9084,634.47769 c -1.7304,0.63853 -3.4544,1.31091 -5.1713,2.01652 -0.3261,-1.90528 -0.6012,-3.82894 -0.8227,-5.76948 0,1.9548 0.064,3.90469 0.1765,5.84758 -1.8302,-0.26752 -3.6594,-0.55015 -5.4875,-0.84797 1.7828,0.53196 3.5693,1.03775 5.3589,1.51761 -0.7915,1.75791 -1.54,3.55414 -2.2441,5.38545 0.9003,-1.72809 1.8401,-3.41472 2.8176,-5.05686 1.3449,1.33138 2.7145,2.61107 4.106,3.83987 -1.2413,-1.38449 -2.4549,-2.81907 -3.6376,-4.30439 1.6232,-0.91725 3.2583,-1.79371 4.9042,-2.62833 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4182"
         d="m 1036.0568,669.75337 c -0.1983,-0.0472 -0.3966,-0.0948 -0.5949,-0.14306 0.078,-0.079 0.156,-0.15794 0.2341,-0.23674 -0.093,0.0746 -0.1854,0.14945 -0.278,0.22433 -2.3953,-0.57901 -4.7927,-1.23839 -7.1883,-1.98027 0.231,-0.39107 0.464,-0.77995 0.699,-1.16662 1.1728,-1.92706 2.3954,-3.7982 3.6642,-5.60909 -1.7127,1.93298 -3.374,3.94426 -4.9793,6.02874 -0.063,0.0817 -0.1257,0.16358 -0.1884,0.24554 -0.044,-0.0476 -0.088,-0.0954 -0.1325,-0.14315 -1.7833,-1.93087 -3.5176,-3.95215 -5.192,-6.06326 1.3538,2.19109 2.7728,4.31324 4.2481,6.36444 0.1057,0.14697 0.2118,0.29358 0.3181,0.43985 -2.5213,1.13162 -5.0347,2.28318 -7.5401,3.4545 2.6286,-0.85545 5.2569,-1.71203 7.8848,-2.56975 0.3067,2.68348 0.7119,5.37474 1.2142,8.0668 -0.1805,-2.73478 -0.2617,-5.44895 -0.2438,-8.13475 1.5483,0.28202 3.0951,0.5358 4.6396,0.76177 0.2604,0.62675 0.5266,1.25095 0.7983,1.87254 -0.8534,0.19063 -1.7077,0.37853 -2.5628,0.56368 0.8672,-0.0897 1.7334,-0.18413 2.5984,-0.28331 -0.1066,0.8225 -0.2036,1.64975 -0.2912,2.4815 0.1876,-0.81969 0.3844,-1.63354 0.5901,-2.4413 0.7867,0.3132 1.5741,0.616 2.3622,0.9085 -0.7409,-0.37918 -1.4801,-0.76881 -2.2175,-1.16895 0.4972,-0.52099 0.9975,-1.03736 1.5009,-1.54907 0.219,0.0263 0.4379,0.052 0.6568,0.0771 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4180"
         d="m 1035.34,669.66267 c -0.5522,0.45086 -1.1022,0.90548 -1.65,1.36382 -0.3386,-0.57 -0.6724,-1.14378 -1.0014,-1.72129 0.8846,0.12824 1.7684,0.24737 2.6514,0.35747 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4178"
         d="m 1030.8656,657.8549 c -1.4362,-0.22968 -2.873,-0.48146 -4.31,-0.75562 0.5897,-1.29889 1.203,-2.57439 1.8392,-3.82499 -0.7875,1.17748 -1.555,2.38175 -2.3014,3.6115 -1.0999,-0.91844 -2.1882,-1.8676 -3.263,-2.84778 0.9497,1.09878 1.9165,2.16875 2.8984,3.21001 -1.2707,0.73923 -2.535,1.49493 -3.7926,2.26683 1.3388,-0.62029 2.6813,-1.22972 4.0275,-1.82818 0.3235,1.37454 0.6741,2.74312 1.0508,4.10458 -0.209,-1.39936 -0.3904,-2.79937 -0.5436,-4.19863 1.4662,0.10435 2.9312,0.19172 4.3947,0.26228 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4176"
         d="m 1023.2996,675.32641 c -0.767,0.68947 -1.5293,1.38643 -2.2868,2.09081 -0.5443,-0.93007 -1.0777,-1.86916 -1.6,-2.81713 0.4143,1.0011 0.8411,1.99604 1.2802,2.9846 -1.0062,0.22098 -2.0136,0.43824 -3.0222,0.65175 1.0311,-0.0862 2.0606,-0.17909 3.0885,-0.27853 -0.074,1.07073 -0.134,2.14706 -0.1798,3.22856 0.1662,-1.06232 0.346,-2.1175 0.539,-3.16514 0.96,0.43484 1.9215,0.85489 2.884,1.26031 -0.9121,-0.51622 -1.8215,-1.04739 -2.7279,-1.59365 0.6684,-0.79611 1.3434,-1.58335 2.025,-2.36158 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4174"
         d="m 1021.6868,659.0306 c -1.5365,1.02367 -3.0609,2.07542 -4.5721,3.15463 -0.7538,-1.77208 -1.4665,-3.57036 -2.1354,-5.39334 0.4616,1.88781 0.9701,3.76109 1.5236,5.61775 -1.8443,0.16189 -3.6909,0.31047 -5.5395,0.44564 1.8579,0.10093 3.7138,0.17843 5.5671,0.23275 -0.3705,1.88498 -0.6951,3.79466 -0.9725,5.72577 0.4918,-1.87531 1.0278,-3.7226 1.6062,-5.53878 1.614,0.98272 3.2391,1.91548 4.8724,2.79905 -1.5219,-1.06903 -3.0303,-2.1878 -4.5218,-3.35695 1.3722,-1.26227 2.7633,-2.49147 4.172,-3.68652 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4172"
         d="m 1046.0794,690.01605 c -0.2041,-0.007 -0.4083,-0.0152 -0.6127,-0.0235 0.06,-0.0932 0.1212,-0.18632 0.1819,-0.27936 -0.076,0.0919 -0.1517,0.18377 -0.2275,0.27578 -2.4677,-0.0973 -4.9528,-0.26876 -7.4513,-0.51639 0.8815,-2.57571 1.8423,-5.09228 2.8789,-7.54388 -1.3226,2.3408 -2.58,4.74677 -3.7691,7.21335 -2.1951,-1.5701 -4.3596,-3.23507 -6.4853,-4.99578 1.9048,1.99619 3.8618,3.90796 5.8632,5.73482 -2.2419,1.61689 -4.4729,3.25068 -6.6931,4.9012 2.4038,-1.36652 4.8071,-2.73402 7.2098,-4.10249 0.8421,2.57117 1.7759,5.1314 2.7999,7.67373 -0.7169,-2.64761 -1.3376,-5.29515 -1.8624,-7.93488 1.5748,-0.0333 3.143,-0.0923 4.7038,-0.17658 0.3821,0.56475 0.7688,1.12606 1.1601,1.68387 -0.7991,0.35601 -1.5996,0.70963 -2.4014,1.06086 0.8328,-0.25984 1.6637,-0.52388 2.4926,-0.79208 0.06,0.83008 0.1302,1.66274 0.2096,2.49772 0.021,-0.84278 0.052,-1.6819 0.092,-2.51712 0.8348,0.153 1.6682,0.29621 2.5001,0.42974 -0.8029,-0.22813 -1.6064,-0.46627 -2.4102,-0.71453 0.3833,-0.61063 0.7704,-1.21761 1.1613,-1.82084 0.2202,-0.0173 0.4402,-0.0353 0.6601,-0.0536 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4170"
         d="m 1045.3576,690.06815 c -0.451,0.55296 -0.8992,1.10898 -1.3448,1.66804 -0.4466,-0.49396 -0.8897,-0.99232 -1.329,-1.49507 0.8937,-0.0494 1.785,-0.10708 2.6738,-0.17297 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4168"
         d="m 1038.529,679.33926 c -1.4539,0.0696 -2.9125,0.11951 -4.3753,0.14957 0.3023,-1.39757 0.6303,-2.77908 0.9835,-4.14337 -0.5168,1.32425 -1.0104,2.66797 -1.4805,4.03017 -1.2693,-0.67177 -2.5339,-1.3732 -3.7926,-2.10466 1.1618,0.87405 2.3331,1.71929 3.5126,2.53598 -1.0865,0.98981 -2.1642,1.99298 -3.2329,3.00931 1.1796,-0.88497 2.3646,-1.76097 3.5549,-2.62794 0.6056,1.2811 1.2343,2.55155 1.8854,3.81064 -0.4948,-1.33058 -0.9647,-2.667 -1.4093,-4.00833 1.4558,-0.20229 2.9072,-0.41947 4.3542,-0.65137 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4166"
         d="m 1034.679,698.01571 c -0.6154,0.82783 -1.2251,1.66173 -1.829,2.50162 -0.7165,-0.80199 -1.4246,-1.61432 -2.1238,-2.43687 0.604,0.89613 1.2185,1.7843 1.8433,2.66431 -0.9428,0.41627 -1.8873,0.8293 -2.8336,1.23908 0.9933,-0.28986 1.984,-0.58556 2.972,-0.88706 0.1379,1.06242 0.29,2.12741 0.4564,3.19456 -0.045,-1.07218 -0.075,-2.14027 -0.092,-3.20383 1.0265,0.23494 2.0516,0.45593 3.0748,0.66312 -0.9955,-0.32567 -1.9914,-0.66574 -2.9874,-1.02034 0.4986,-0.9119 1.005,-1.81682 1.5192,-2.71459 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4164"
         d="m 1029.7992,682.39467 c -1.2885,1.32102 -2.5607,2.6647 -3.8164,4.03053 -1.1004,-1.57069 -2.1692,-3.1719 -3.2045,-4.8029 0.8465,1.73803 1.7312,3.45466 2.6526,5.14866 -1.7693,0.54091 -3.5432,1.07037 -5.3213,1.58829 1.8354,-0.29065 3.6645,-0.60174 5.4871,-0.93301 0.023,1.91362 0.091,3.8413 0.2054,5.78063 0.1069,-1.92869 0.2579,-3.83935 0.4523,-5.72963 1.7785,0.62398 3.5577,1.20152 5.3356,1.73347 -1.7065,-0.73607 -3.4096,-1.51914 -5.1071,-2.35001 1.0829,-1.51512 2.1885,-3.00408 3.3163,-4.46603 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4162"
         d="m 1059.8846,707.98034 c -0.2012,0.0329 -0.4027,0.0652 -0.6045,0.0972 0.042,-0.10308 0.083,-0.20612 0.1245,-0.30906 -0.057,0.10476 -0.1133,0.20959 -0.1698,0.31447 -2.4352,0.38841 -4.9047,0.70357 -7.4036,0.9451 0.3669,-2.69751 0.8238,-5.35287 1.3646,-7.96171 -0.8432,2.55526 -1.6121,5.15966 -2.3018,7.81001 -2.4571,-1.11512 -4.9041,-2.33155 -7.3321,-3.64631 2.257,1.58876 4.5478,3.08744 6.8648,4.49187 -1.8866,2.02074 -3.7592,4.05608 -5.6173,6.1059 2.0937,-1.80665 4.1866,-3.61415 6.2787,-5.4225 1.3236,2.35882 2.7354,4.68714 4.2375,6.97712 -1.2216,-2.45358 -2.3431,-4.92791 -3.3684,-7.41514 1.5383,-0.33824 3.0645,-0.70092 4.5778,-1.08796 0.4834,0.47877 0.9705,0.95285 1.4614,1.42221 -0.7141,0.50522 -1.4299,1.00826 -2.1476,1.50912 0.7657,-0.41738 1.5287,-0.83872 2.2887,-1.26391 0.2193,0.80071 0.4487,1.60183 0.6884,2.40311 -0.1428,-0.82874 -0.275,-1.6559 -0.397,-2.48124 0.8469,-0.0142 1.6903,-0.0382 2.53,-0.0723 -0.8295,-0.0641 -1.6619,-0.13883 -2.497,-0.22406 0.2576,-0.67292 0.5199,-1.34289 0.7866,-2.00992 0.2123,-0.0602 0.4244,-0.1208 0.6361,-0.18194 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4160"
         d="m 1059.1878,708.17282 c -0.3352,0.62963 -0.6672,1.26175 -0.9957,1.89638 -0.5328,-0.39595 -1.0628,-0.79738 -1.5904,-1.20419 0.8664,-0.22277 1.7285,-0.45349 2.5861,-0.69219 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4158"
         d="m 1050.4119,698.96978 c -1.4141,0.34984 -2.8364,0.68181 -4.2664,0.99583 0.01,-0.43959 0.016,-0.87823 0.028,-1.31588 0.027,-0.988 0.067,-1.97107 0.1206,-2.94883 -0.1866,1.06899 -0.3586,2.14585 -0.5158,3.23016 -0.049,0.33928 -0.097,0.67929 -0.1428,1.02004 -0.3013,-0.0903 -0.6026,-0.18192 -0.904,-0.27495 -1.0763,-0.33261 -2.1535,-0.6828 -3.2309,-1.05077 0.9486,0.45549 1.8989,0.89598 2.8504,1.32159 0.3647,0.16294 0.7295,0.32369 1.0945,0.48226 -0.8722,1.18358 -1.7337,2.37803 -2.5842,3.58327 0.985,-1.09794 1.9768,-2.1884 2.9751,-3.27133 0.8456,1.14052 1.7104,2.26643 2.5941,3.37667 -0.7442,-1.2107 -1.4661,-2.43221 -2.1656,-3.6634 1.3893,-0.48165 2.7717,-0.97655 4.1472,-1.48466 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4156"
         d="m 1050.263,718.04771 c -0.4418,0.93215 -0.8763,1.86939 -1.3035,2.8116 -0.8613,-0.64797 -1.7158,-1.30811 -2.5631,-1.98015 0.7682,0.76275 1.5458,1.51553 2.3326,2.2581 -0.8433,0.59224 -1.6892,1.18151 -2.5374,1.76783 0.9181,-0.47762 1.8324,-0.96066 2.7427,-1.4491 0.345,1.01644 0.7056,2.03282 1.0819,3.04878 -0.2577,-1.04472 -0.4996,-2.0878 -0.7259,-3.12891 1.0539,0.0308 2.1035,0.0474 3.1484,0.0501 -1.0412,-0.12438 -2.0857,-0.26369 -3.1331,-0.41787 0.3095,-0.99246 0.6287,-1.97929 0.9574,-2.96038 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4154"
         d="m 1042.4408,703.66596 c -1.0066,1.54711 -1.9939,3.1126 -2.9611,4.69616 -0.9828,-0.94182 -1.9529,-1.9009 -2.9097,-2.87663 -0.3905,-0.39762 -0.7789,-0.79813 -1.165,-1.20149 0.3345,0.43916 0.6717,0.87608 1.0114,1.31076 0.8466,1.08481 1.7097,2.15632 2.5889,3.21379 -1.6309,0.87478 -3.268,1.73954 -4.9114,2.59418 1.7433,-0.64329 3.477,-1.30465 5.2008,-1.98401 0.3929,1.87171 0.8323,3.74908 1.3199,5.62987 -0.2688,-1.91311 -0.4898,-3.81637 -0.6649,-5.70777 1.8655,0.2661 3.7233,0.48805 5.571,0.66579 -1.8171,-0.39187 -3.6401,-0.83021 -5.4661,-1.31481 0.7689,-1.69628 1.5647,-3.37177 2.3862,-5.02584 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4152"
         d="m 1076.8784,722.60908 c -0.1884,0.0765 -0.3772,0.15252 -0.5665,0.22801 0.019,-0.1092 0.038,-0.21834 0.057,-0.32743 -0.034,0.11417 -0.067,0.22838 -0.1,0.34266 -2.2004,0.88122 -4.4547,1.69296 -6.7534,2.43436 -0.087,0.0279 -0.1734,0.0557 -0.2601,0.0834 -0.1995,-2.70843 -0.2912,-5.39078 -0.2813,-8.04267 -0.3149,2.66253 -0.5381,5.36087 -0.6646,8.09172 -2.6282,-0.57277 -5.2674,-1.25905 -7.9088,-2.05589 2.5292,1.09953 5.0742,2.09398 7.6273,2.97921 -0.8805,1.46481 -1.7541,2.93455 -2.6203,4.40917 -0.5344,0.90963 -1.0661,1.8212 -1.595,2.73471 1.6686,-2.20454 3.3363,-4.40989 5.003,-6.61605 1.7834,2.02201 3.6565,3.99371 5.6229,5.89809 -1.7286,-2.12588 -3.3477,-4.30132 -4.8656,-6.50919 1.4312,-0.65594 2.844,-1.33668 4.2366,-2.04192 0.5695,0.36052 1.1419,0.71504 1.717,1.06332 -0.5884,0.64845 -1.1794,1.29483 -1.7729,1.93913 0.658,-0.57349 1.3118,-1.15075 1.9614,-1.73176 0.3805,0.73027 0.772,1.4587 1.175,2.18476 -0.3147,-0.77442 -0.6173,-1.54956 -0.9084,-2.32499 0.8197,-0.20079 1.6326,-0.41206 2.4383,-0.63375 -0.8164,0.12409 -1.6392,0.23684 -2.4681,0.33833 0.1098,-0.71095 0.2254,-1.4196 0.3465,-2.12592 0.1937,-0.10526 0.3869,-0.21104 0.5797,-0.31727 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4150"
         d="m 1076.2421,722.94998 c -0.1956,0.68513 -0.3867,1.37234 -0.5736,2.06166 -0.6001,-0.2676 -1.1991,-0.54191 -1.7967,-0.8228 0.7969,-0.40494 1.5871,-0.8179 2.3703,-1.23886 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4148"
         d="m 1065.8492,715.85775 c -1.3104,0.62947 -2.6338,1.24153 -3.9697,1.83603 -0.2598,-1.40391 -0.4889,-2.8034 -0.6881,-4.1975 0.033,1.42039 0.095,2.84926 0.1867,4.2858 -1.4282,-0.12706 -2.8646,-0.285 -4.3077,-0.4737 1.4087,0.35764 2.8146,0.68419 4.216,0.97938 -0.6195,1.33243 -1.2249,2.67408 -1.8161,4.02474 0.7443,-1.27263 1.4976,-2.53875 2.2597,-3.79834 1.0518,0.94473 2.1207,1.869 3.2065,2.77173 -0.9698,-1.02942 -1.9178,-2.07589 -2.8442,-3.13832 1.2628,-0.75059 2.5151,-1.5139 3.7569,-2.28982 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4146"
         d="m 1069.6333,734.51772 c -0.2299,1.00736 -0.4504,2.01881 -0.6612,3.0342 -0.989,-0.45145 -1.9723,-0.91855 -2.9495,-1.40072 0.9191,0.58777 1.8476,1.16222 2.7848,1.72256 -0.6968,0.76108 -1.3972,1.51935 -2.1011,2.27481 0.7969,-0.66342 1.5881,-1.3321 2.3734,-2.00603 0.5649,0.92314 1.1482,1.84238 1.7504,2.75683 -0.4922,-0.96843 -0.9648,-1.93925 -1.4187,-2.91167 1.0417,-0.19587 2.0753,-0.40684 3.0999,-0.63285 -1.0483,0.10607 -2.1041,0.19571 -3.1665,0.26892 0.084,-1.03952 0.18,-2.07495 0.2885,-3.10605 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4144"
         d="m 1058.9895,722.0575 c -0.6762,1.71654 -1.3273,3.44835 -1.9525,5.19507 -1.6274,-1.02297 -3.2355,-2.08822 -4.8226,-3.19405 1.4543,1.2775 2.9375,2.52046 4.4486,3.72691 -1.4208,1.18458 -2.8508,2.35979 -4.2897,3.52559 1.5808,-0.97784 3.147,-1.97291 4.6985,-2.98509 0.7692,1.75711 1.59,3.51005 2.464,5.25663 -0.6662,-1.82283 -1.2781,-3.64503 -1.8376,-5.46454 1.8838,-0.11405 3.7492,-0.27386 5.5937,-0.47945 -1.8588,-0.0104 -3.7343,-0.0696 -5.6238,-0.17802 0.407,-1.81766 0.8478,-3.61886 1.3214,-5.40305 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4142"
         d="m 1096.2908,732.56737 c -0.1572,0.12489 -0.315,0.24924 -0.4735,0.37307 -0.01,-0.10958 -0.018,-0.21913 -0.027,-0.32867 0,0.11828 -0.01,0.2366 -0.01,0.35493 -1.912,1.49747 -3.9226,2.91935 -6.0211,4.26468 -0.8554,-2.5603 -1.5677,-5.12607 -2.1499,-7.68755 0.2943,2.64688 0.7091,5.30779 1.2556,7.97544 -2.6614,0.11258 -5.379,0.0867 -8.1337,-0.0718 2.7161,0.47907 5.4185,0.82671 8.0904,1.03428 -0.7834,2.64702 -1.5388,5.3036 -2.2659,7.96957 1.0526,-2.55292 2.1037,-5.10646 3.1532,-7.66061 2.2152,1.49529 4.5229,2.8913 6.9267,4.17105 -2.2371,-1.55808 -4.352,-3.21523 -6.3529,-4.95429 1.2069,-0.99965 2.3817,-2.02332 3.5223,-3.07073 0.6269,0.19416 1.2554,0.37935 1.8852,0.55533 -0.3899,0.78134 -0.7837,1.56099 -1.1814,2.33893 0.477,-0.72743 0.9475,-1.45813 1.4114,-2.19216 0.544,0.59416 1.1013,1.18164 1.6726,1.76194 -0.5007,-0.65132 -0.9863,-1.30793 -1.4573,-1.96934 0.7201,-0.41757 1.4282,-0.84623 2.1237,-1.28603 -0.7306,0.34978 -1.473,0.68701 -2.2267,1.01172 -0.077,-0.71004 -0.1455,-1.41931 -0.2063,-2.12777 0.1553,-0.15354 0.3099,-0.30753 0.4638,-0.46203 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4140"
         d="m 1095.7798,733.06746 c -0.014,0.70849 -0.022,1.41804 -0.023,2.12861 -0.6323,-0.0918 -1.2654,-0.19283 -1.899,-0.303 0.6521,-0.6008 1.2931,-1.20936 1.9225,-1.82561 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4138"
         d="m 1084.2987,728.87971 c -1.1192,0.92104 -2.2599,1.82512 -3.4205,2.71204 -0.5624,-1.30372 -1.0878,-2.61111 -1.5783,-3.92008 0.3353,1.37225 0.7054,2.74675 1.1124,4.1218 -1.411,0.206 -2.8416,0.37785 -4.2886,0.51578 1.4506,0.0345 2.8889,0.0336 4.3121,-0.003 -0.3035,1.43823 -0.5879,2.88326 -0.8526,4.33484 0.4316,-1.41092 0.8759,-2.81683 1.3326,-4.21751 1.2289,0.67402 2.4709,1.31864 3.7255,1.93163 -1.172,-0.76368 -2.3242,-1.55514 -3.4566,-2.37189 1.0544,-1.02251 2.0926,-2.05705 3.114,-3.10349 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4136"
         d="m 1092.4905,745.94549 c 0.052,1.03081 0.1162,2.0635 0.1943,3.098 -1.0882,-0.17204 -2.175,-0.36508 -3.2597,-0.57853 1.0567,0.33039 2.12,0.64144 3.1893,0.93243 -0.4658,0.91865 -0.937,1.83497 -1.4136,2.74897 0.5937,-0.84954 1.1785,-1.7037 1.754,-2.56243 0.8092,0.73899 1.64,1.46737 2.4931,2.18428 -0.7613,-0.7989 -1.4989,-1.6065 -2.2136,-2.422 0.9586,-0.4671 1.9019,-0.95018 2.829,-1.44919 -0.9841,0.39024 -1.983,0.76235 -2.9958,1.11639 -0.2093,-1.02376 -0.4015,-2.04644 -0.577,-3.06792 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4134"
         d="m 1079.0565,736.50341 c -0.265,1.82738 -0.4954,3.66545 -0.69,5.51355 -1.8393,-0.62277 -3.6667,-1.30254 -5.4784,-2.03575 1.7207,0.93053 3.4679,1.81255 5.2396,2.64183 -1.1087,1.48308 -2.2313,2.95768 -3.3675,4.42377 1.3222,-1.3141 2.6221,-2.64445 3.8987,-3.99085 1.1792,1.53588 2.4213,3.05046 3.7299,4.53895 -1.1238,-1.61273 -2.1778,-3.24319 -3.1662,-4.88701 1.8181,-0.54905 3.6005,-1.14777 5.3418,-1.79604 -1.8083,0.44243 -3.6535,0.82967 -5.5298,1.16203 -0.039,-1.86653 -0.031,-3.7238 0.022,-5.57048 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4132"
         d="m 1116.4228,736.2504 c -0.1209,0.15823 -0.2415,0.31641 -0.362,0.47459 -0.046,-0.0969 -0.091,-0.19382 -0.1364,-0.29075 0.036,0.10836 0.072,0.21672 0.108,0.32508 -1.4515,1.91161 -2.8869,3.81726 -4.366,5.69899 -0.8968,-1.11149 -1.7645,-2.23152 -2.5876,-3.36402 -0.6922,-0.9395 -1.3505,-1.88095 -1.9497,-2.82204 0.5764,1.17722 1.2199,2.35546 1.8994,3.52998 0.6119,1.07412 1.2536,2.14137 1.9167,3.20331 -0.7322,0.29666 -1.4666,0.58681 -2.2059,0.86828 -1.6808,0.62521 -3.364,1.24046 -5.1084,1.75018 1.7125,-0.28853 3.3882,-0.67783 5.0609,-1.08238 0.8472,-0.2097 1.6902,-0.43072 2.5316,-0.65986 0.1594,2.62519 0.3363,5.25036 0.5273,7.87539 0.1279,-2.62783 0.2549,-5.25571 0.3812,-7.88363 2.5078,0.63511 5.0755,1.20906 7.6454,1.80538 -2.4827,-0.89306 -4.9686,-1.76539 -7.3754,-2.69149 0.7828,-1.28158 1.5511,-2.56906 2.316,-3.85977 0.6727,-0.0133 1.3514,-0.029 2.0361,-0.0452 -0.1448,0.82105 -0.2897,1.64211 -0.435,2.46305 0.2373,-0.79766 0.4742,-1.59551 0.7112,-2.39341 0.7299,0.39104 1.468,0.78165 2.2107,1.17374 -0.6912,-0.47491 -1.3786,-0.94854 -2.0587,-1.42241 0.5961,-0.57922 1.1958,-1.15868 1.8023,-1.73721 -0.6707,0.50456 -1.3336,1.01025 -1.9918,1.5155 -0.2999,-0.62609 -0.5979,-1.25227 -0.8928,-1.87865 0.1076,-0.18417 0.2151,-0.36837 0.3229,-0.55262 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4130"
         d="m 1116.0644,736.85121 c 0.2188,0.64781 0.4397,1.29555 0.6619,1.94323 -0.6631,0.0938 -1.3204,0.1871 -1.9728,0.27818 0.4374,-0.73959 0.8737,-1.48024 1.3109,-2.22141 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4128"
         d="m 1104.207,736.81531 c -0.6532,1.19358 -1.3446,2.36838 -2.0908,3.51468 -0.7622,-0.9932 -1.3964,-2.01121 -1.8516,-3.05665 0.3475,1.14179 0.8683,2.26816 1.5152,3.37755 -1.1157,0.60543 -2.2753,1.1412 -3.5141,1.57041 1.2687,-0.27121 2.4756,-0.65781 3.6527,-1.11838 0.09,1.37935 0.2381,2.76481 0.4344,4.15323 -0.035,-1.40242 -0.038,-2.80102 -0.01,-4.19429 1.1938,0.22442 2.4471,0.38083 3.7455,0.50664 -1.2749,-0.28814 -2.4942,-0.60532 -3.6308,-0.98321 0.6212,-1.24043 1.1997,-2.49875 1.745,-3.76998 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4126"
         d="m 1116.7928,749.50133 c 0.324,0.92418 0.6485,1.84819 0.9717,2.77215 -0.9698,0.13716 -1.9482,0.2741 -2.9373,0.40611 0.998,-0.0178 1.9862,-0.0407 2.9649,-0.0637 -0.1686,0.96517 -0.3374,1.93035 -0.5067,2.89549 0.2811,-0.93871 0.5611,-1.8775 0.8408,-2.81627 0.8634,0.46059 1.7186,0.9214 2.56,1.38556 -0.7823,-0.56109 -1.5776,-1.11933 -2.3804,-1.67718 0.7017,-0.68055 1.4,-1.36075 2.0998,-2.03867 -0.773,0.59091 -1.5454,1.18455 -2.3224,1.77842 -0.4285,-0.88055 -0.8596,-1.76107 -1.2904,-2.64191 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4124"
         d="m 1101.8391,745.28963 c 0.2946,1.72865 0.6776,3.46162 1.1219,5.19168 -1.9361,0.003 -3.9481,-0.12353 -6.0426,-0.46516 2.0579,0.54483 4.0724,0.88135 6.0245,1.08649 -0.537,1.68173 -1.1051,3.35475 -1.709,5.01691 0.8457,-1.57557 1.6261,-3.17515 2.3555,-4.79143 1.4819,0.92205 2.9863,1.77377 4.4377,2.57055 0.1469,0.0811 0.2939,0.16198 0.4409,0.24254 -0.1456,-0.10275 -0.2909,-0.20577 -0.4362,-0.30911 -1.3318,-0.94815 -2.7026,-1.94486 -4.0377,-2.99642 1.4955,-1.0752 2.877,-2.22143 4.2114,-3.38211 -1.462,0.99939 -2.9727,1.97923 -4.6018,2.87083 -0.67,-1.67001 -1.2728,-3.35146 -1.7646,-5.03477 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4122"
         d="m 1023.8,668.00978 c 0.2421,0.0977 0.4848,0.19436 0.7279,0.28975 -0.072,0.11354 -0.1432,0.22773 -0.2141,0.34259 0.089,-0.10684 0.1785,-0.21312 0.2682,-0.31884 0.1478,0.0575 0.2957,0.11458 0.4438,0.17112 0,0 0,0 0,0 1.9433,0.71246 4.3975,1.84707 6.924,2.55539 0,0 0,0 0,0 0.9247,0.34753 2.0373,0.59411 3.1757,0.68289 0.3094,0.50655 0.721,1.02573 1.2582,1.55288 1.2279,0.97384 2.3071,1.7302 2.7786,2.24167 0,0 0,0 0,0 0.2588,0.65042 0.028,1.14059 -1.0538,1.43047 0,0 0,0 0,0 -1.2497,0.23611 -2.4701,0.52591 -3.1672,0.77858 -0.07,0.0444 -0.1403,0.0894 -0.2111,0.13505 0.088,-0.0611 0.1757,-0.12203 0.2623,-0.18287 0.853,-0.40702 2.1891,-0.90056 3.3852,-1.40445 0,0 0,0 0,0 1.0279,-0.46843 1.1783,-1.14034 0.9008,-1.9385 -0.4071,-0.6016 -1.2245,-1.37544 -2.0321,-2.27095 1.0698,0.13149 1.7961,0.0358 2.2699,-0.14852 0.4406,-0.16698 0.6871,-0.4083 0.8304,-0.56976 0.2933,-0.28424 0.8553,-0.25339 1.5054,-0.0749 0,0 0,0 0,0 0.961,0.29878 1.9367,0.89157 2.8912,1.57439 -0.8287,-0.75485 -1.6867,-1.43502 -2.574,-1.87067 -0.6014,-0.27841 -1.1592,-0.4345 -1.5514,-0.30749 0,0 0,0 0,0 -0.2297,0.0609 -0.5491,0.21101 -1.0096,0.31295 -0.513,0.13024 -1.2534,0.18004 -2.2946,-0.0202 -0.1634,-0.0462 -0.3236,-0.0962 -0.4803,-0.14979 0.7427,-3.00615 2.5082,-5.5552 4.6968,-7.68295 -2.0921,2.21924 -4.2143,4.41224 -6.3648,6.57916 -0.2244,-0.27055 -0.4096,-0.54515 -0.5591,-0.81913 0,0 0,0 0,0 -0.8123,-1.42582 -1.2153,-2.76927 -1.4728,-3.98648 0,0 0,0 0,-10e-6 -0.3916,-1.71319 -0.6403,-3.39528 -0.8318,-5.0557 0,1.72346 0.056,3.47944 0.2733,5.30252 0,0 0,0 0,0 0.1253,1.29217 0.4237,2.75201 1.2155,4.40053 0,0 0,0 0,0 0.082,0.17733 0.1775,0.3558 0.288,0.53465 -0.2855,-0.0184 -0.5665,-0.0483 -0.8389,-0.0883 -1.7697,-0.13651 -3.5906,-0.55729 -5.2957,-0.97788 -0.3047,-0.54576 -0.5501,-1.04632 -0.7427,-1.494 -0.2133,-0.44321 -0.4171,-0.88267 -0.6125,-1.31782 0.9499,-0.19032 1.897,-0.38992 2.8409,-0.59979 -0.9698,0.0845 -1.9433,0.15208 -2.9198,0.20563 0.017,-1.13059 0.086,-2.2117 0.1901,-3.25374 -0.2158,1.01352 -0.4001,2.06529 -0.5369,3.16765 -0.9382,-0.5185 -1.863,-1.05212 -2.7723,-1.58364 0.8593,0.6428 1.7397,1.29364 2.6403,1.93318 -0.4983,0.6825 -0.9815,1.38785 -1.4468,2.12022 -0.2616,-0.0635 -0.523,-0.12856 -0.7842,-0.19487 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4120"
         d="m 1024.6574,668.23186 c 0.5358,-0.6346 1.0838,-1.24915 1.6424,-1.8462 0.231,0.40689 0.4696,0.81684 0.7165,1.22904 0.229,0.41597 0.5081,0.88134 0.8414,1.38673 -0.901,-0.22174 -1.7688,-0.4421 -2.5788,-0.61891 -0.2072,-0.0492 -0.4144,-0.0995 -0.6215,-0.15066 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4118"
         d="m 1036.2672,678.51381 c 1.5285,-0.27649 3.0899,-0.45076 4.673,-0.55007 -0.3677,1.44028 -0.7943,2.87679 -1.2144,4.35385 0.5991,-1.43071 1.2012,-2.83479 1.7495,-4.25819 1.3578,0.64801 2.726,1.42716 4.0953,2.25913 -1.2596,-0.98645 -2.5201,-1.9186 -3.7805,-2.71535 1.2014,-1.06678 2.3767,-2.16947 3.5153,-3.32213 -1.2646,1.01396 -2.5514,1.99365 -3.8559,2.94514 -0.2415,-0.4898 -0.4898,-0.96504 -0.7479,-1.42385 -0.4482,-0.75289 -0.8057,-1.37555 -1.1388,-1.79547 0.2412,0.49205 0.4877,1.16289 0.8308,1.96384 0.1888,0.48172 0.3667,0.97656 0.5371,1.48378 -1.5763,0.29094 -3.1332,0.63903 -4.6635,1.05932 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4116"
         d="m 1037.6309,661.42854 c 0.8503,-0.72939 1.7163,-1.43481 2.5932,-2.12377 0.4057,0.68759 0.8181,1.332 1.246,1.92209 0.1178,0.15229 0.2267,0.29193 0.3274,0.41734 -0.077,-0.1364 -0.1623,-0.28636 -0.2564,-0.44874 -0.3349,-0.64078 -0.6505,-1.32959 -0.958,-2.05907 1.1019,-0.24364 2.2002,-0.49904 3.2942,-0.76776 -1.1033,0.16422 -2.2139,0.30288 -3.3299,0.42081 0.1857,-1.00677 0.39,-2.03412 0.5846,-3.09902 -0.3225,1.03869 -0.6529,2.04729 -0.9652,3.04587 -0.9916,-0.40013 -1.9896,-0.85913 -2.9906,-1.34907 0.9332,0.60094 1.8638,1.16765 2.7903,1.66878 -0.7943,0.77129 -1.5756,1.55818 -2.3356,2.37254 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4114"
         d="m 1045.6956,674.72962 c 0.944,-1.01064 1.8597,-2.05842 2.7386,-3.15411 0.4148,-0.50851 0.8205,-1.03014 1.2096,-1.57045 0.1685,0.22013 0.3283,0.43621 0.4797,0.64701 1.2397,1.66864 2.3348,3.36908 3.3346,5.02447 -0.8043,-1.73601 -1.7089,-3.52951 -2.7781,-5.32868 -0.1423,-0.25133 -0.2959,-0.51057 -0.4619,-0.77642 1.6,-0.5629 3.2115,-1.08932 4.813,-1.602 0.336,-0.10476 0.6726,-0.20818 1.0097,-0.3103 -0.2014,0.0288 -0.4025,0.0582 -0.6035,0.0882 -1.8229,0.29434 -3.6999,0.58912 -5.5502,0.97687 -0.2347,-1.12946 -0.6401,-2.36577 -1.3087,-3.72526 0,0 0,0 0,0 -0.6365,-1.34394 -1.9034,-2.76582 -4.0349,-4.14535 0,0 0,0 0,0 -0.8823,-0.44299 -1.6629,-0.80214 -2.3153,-1.08232 0.6447,0.32193 1.4117,0.72143 2.2679,1.2006 0,0 0,0 0,0 2.065,1.47579 3.209,2.96376 3.735,4.3514 0.4687,1.20772 0.7354,2.31246 0.8691,3.33495 -1.1027,-0.39177 -2.253,-0.74537 -3.4019,-0.96923 -1.237,-0.28915 -2.6642,-0.37763 -3.8574,-0.0705 1.1352,-0.16208 2.4174,0.0296 3.5149,0.3904 1.2543,0.36611 2.4873,0.89874 3.6356,1.4539 -0.4375,0.92577 -0.9435,1.78801 -1.4761,2.61493 -0.5794,0.91502 -1.1883,1.79642 -1.8197,2.65183 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4112"
         d="m 1012.1677,611.8131 c 0.266,0.24487 0.5318,0.49117 0.7976,0.73871 -0.1817,0.0699 -0.3633,0.14002 -0.545,0.21042 0.2008,-0.0511 0.4016,-0.10199 0.6023,-0.15273 0.6742,0.6261 1.348,1.25999 2.0223,1.89863 2.5391,2.36086 5.0838,4.7644 7.6606,7.12226 -2.4298,1.90032 -4.8383,3.88952 -7.2074,6.04106 -1.3463,1.18316 -2.6768,2.44565 -3.972,3.82603 1.638,-1.37281 3.3112,-2.61324 4.9982,-3.77089 2.3494,-1.66057 4.7224,-3.20388 7.1104,-4.67576 0.5879,1.72593 1.1965,3.44951 1.8374,5.15658 1.0687,2.84556 2.2301,5.7262 3.6069,8.39503 -1.0128,-2.68876 -1.8062,-5.5282 -2.5142,-8.33631 -0.4769,-1.88768 -0.9137,-3.78881 -1.3266,-5.68954 4.7538,-0.12163 9.5068,-0.20644 14.259,-0.26453 -4.7305,-0.479 -9.461,-0.95962 -14.1912,-1.44186 0.519,-1.71264 1.0537,-3.4045 1.5914,-5.0843 0.9166,-2.87904 1.8569,-5.69178 2.7069,-8.52216 -1.2189,2.79855 -2.5262,5.55642 -3.8115,8.40308 -0.6912,1.52004 -1.3802,3.05341 -2.0574,4.61061 -2.2266,-1.60435 -4.4411,-3.23188 -6.6513,-4.84973 0.014,-0.23232 0.028,-0.46403 0.043,-0.69513 0.064,-1.05068 0.1289,-2.07891 0.1907,-3.0844 1.456,0.38582 2.9117,0.77376 4.3672,1.16276 -1.3994,-0.55216 -2.7991,-1.10154 -4.1998,-1.6449 0.8144,-1.23663 1.6217,-2.43855 2.4119,-3.62414 -0.9336,1.08914 -1.8818,2.18825 -2.8367,3.31673 -0.9535,-1.14146 -1.9128,-2.25193 -2.8848,-3.31475 0.8313,1.15712 1.6473,2.36854 2.4572,3.61635 -1.1726,0.43706 -2.3463,0.87888 -3.5205,1.33077 -0.3147,-0.22697 -0.6294,-0.45299 -0.9443,-0.67789 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4110"
         d="m 1013.1931,612.56408 c 1.201,-0.30845 2.4016,-0.61091 3.6018,-0.9105 0.056,0.99791 0.1079,2.01878 0.1618,3.06065 0.011,0.2124 0.022,0.4253 0.034,0.63867 -0.3403,-0.24864 -0.6806,-0.49704 -1.0207,-0.74508 -0.9258,-0.68653 -1.8509,-1.36925 -2.7765,-2.04374 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4108"
         d="m 1013.3878,639.61602 c 1.1514,0.58993 2.3103,1.15166 3.4767,1.67841 1.2837,0.59032 2.5978,1.16691 3.9298,1.69224 -0.4392,1.44183 -0.7585,3.04587 -0.8963,4.85961 -0.2083,2.04953 0.109,4.49804 1.2588,7.40054 -0.9804,-3.02829 -1.0765,-5.53074 -0.6585,-7.60657 0.266,-1.48809 0.6554,-2.82142 1.1309,-4.0342 0.7973,0.9477 1.6505,1.88453 2.5574,2.76841 1.405,1.42615 3.2154,2.82212 5.1803,3.76387 -1.8048,-1.07835 -3.3883,-2.52305 -4.5832,-3.9688 -0.9341,-1.08466 -1.7844,-2.22565 -2.5541,-3.36227 1.5588,-1.06044 3.1749,-1.98056 4.8148,-2.81086 0.6444,-0.32573 1.292,-0.63928 1.9425,-0.94147 -1.0633,0.3476 -2.1232,0.71355 -3.1792,1.09916 -1.3401,0.49047 -2.6728,1.01667 -3.9921,1.58891 -0.057,-0.36018 -0.106,-0.71398 -0.1481,-1.061 -0.3429,-2.71306 -0.4683,-5.33483 -0.4678,-7.84743 -0.264,2.51028 -0.4016,5.15462 -0.3158,7.94734 0.01,0.34156 0.025,0.69064 0.048,1.04713 -0.8979,-0.22283 -1.7918,-0.46215 -2.6792,-0.71162 -1.6275,-0.44953 -3.2493,-0.95319 -4.8649,-1.5014 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4106"
         d="m 1036.0806,613.17646 c 1.7136,-0.44513 3.427,-0.8982 5.1399,-1.36849 0.1005,1.82916 0.1884,3.614 0.29,5.34404 0.1052,-1.72879 0.2243,-3.5115 0.3308,-5.3466 1.7128,0.4538 3.4248,0.91137 5.1364,1.37099 -1.6466,-0.66544 -3.2941,-1.32985 -4.9437,-1.98796 0.9577,-1.56784 1.9043,-3.19569 2.8234,-4.91355 -1.0884,1.58875 -2.2002,3.08949 -3.3223,4.53388 -1.1237,-1.42073 -2.2577,-2.84591 -3.4136,-4.24853 0.9917,1.53636 1.9574,3.09023 2.9121,4.63256 -1.6496,0.68258 -3.301,1.33878 -4.953,1.98366 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4104"
         d="m 1029.3245,639.94738 c 0.1959,-0.10701 0.3923,-0.21257 0.589,-0.31682 2.6076,-1.38219 5.2781,-2.54299 7.9895,-3.55335 0.2164,0.85307 0.4612,1.6684 0.7429,2.43988 0.4191,1.11078 0.8189,1.96689 1.2823,2.45491 0,0 0,0 0,0 0.1959,0.1692 0.3324,0.26091 0.4126,0.25448 -0.02,-0.0238 -0.091,-0.13607 -0.2214,-0.32011 -0.286,-0.52863 -0.4959,-1.38104 -0.733,-2.4837 0,0 0,0 0,0 -0.1623,-0.79478 -0.2846,-1.62812 -0.3767,-2.49683 3.1549,0.2229 6.3096,0.34842 9.4621,0.35916 -3.0903,-0.22191 -6.1765,-0.65759 -9.254,-1.2541 1.1021,-1.92119 2.3332,-3.84237 3.5701,-5.89301 0.296,-0.47009 0.5954,-0.93979 0.8978,-1.40972 -0.3875,0.46433 -0.772,0.92939 -1.1532,1.396 -1.4696,1.87038 -2.9363,3.64711 -4.2981,5.46655 -2.1674,-1.74765 -4.248,-3.84046 -6.2774,-6.03484 -0.1147,-0.12369 -0.2291,-0.24772 -0.3435,-0.37211 0.089,0.12296 0.1782,0.24564 0.2675,0.36803 1.768,2.42717 3.5961,4.74992 5.5456,6.69535 -2.6322,1.26544 -5.2065,2.69396 -7.6802,4.40471 -0.141,0.0975 -0.2816,0.19599 -0.4219,0.29552 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4102"
         d="m 1050.9764,546.96917 c -0.017,0.0643 -0.033,0.12867 -0.048,0.19286 -0.095,0.34489 -0.184,0.68801 -0.268,1.02942 -0.1974,-0.0699 -0.3953,-0.13911 -0.5935,-0.20766 0.1896,0.099 0.3788,0.1985 0.5675,0.29866 -0.7961,3.30077 -1.0992,6.44153 -1.1328,9.46922 -0.022,1.45063 0,2.88218 0.071,4.29716 -1.9485,-0.12207 -3.9153,-0.18331 -5.883,-0.20309 -2.8722,-0.037 -5.781,0.0351 -8.7168,0.21481 3.3353,0.19352 6.6249,0.51482 9.8564,0.9649 1.4805,0.20277 2.9549,0.42924 4.4163,0.68629 -0.4111,0.89233 -0.8002,1.78349 -1.1713,2.67312 -1.4721,3.53439 -2.7209,7.08428 -3.7668,10.62896 1.3875,-3.25071 2.9518,-6.47605 4.7063,-9.65644 0.5423,-0.98264 1.1072,-1.96361 1.7005,-2.94141 3.4661,3.03956 6.8717,6.1403 10.205,9.30969 -2.995,-3.50006 -5.9859,-7.00366 -8.9727,-10.51082 0.4683,-0.269 0.9396,-0.5335 1.414,-0.79295 0,0 0,0 0,0 1.7953,-0.9836 3.6704,-1.91357 5.6162,-2.70224 1.6113,-0.66059 3.3609,-1.24558 5.1865,-1.57211 0.6235,-0.12593 1.2919,-0.20725 1.9792,-0.22125 -0.7008,-0.0537 -1.3962,-0.0382 -2.0496,0.0272 -1.9143,0.14752 -3.8053,0.57608 -5.5502,1.08892 0,0 0,10e-6 0,10e-6 -2.1101,0.6116 -4.1717,1.38094 -6.1499,2.20802 0,0 0,0 0,0 -0.3771,0.15738 -0.7528,0.31772 -1.1274,0.4808 -0.1115,-0.73289 -0.213,-1.47046 -0.3038,-2.21306 -0.2455,-1.96396 -0.4018,-3.9702 -0.4197,-6.03183 0.9414,-0.75268 1.9406,-1.50286 3.0028,-2.24277 0.2939,-0.2131 0.6029,-0.42714 0.9272,-0.64134 0.4796,1.40064 0.9958,2.7846 1.5399,4.15342 -0.3541,-1.44928 -0.6512,-2.92396 -0.8655,-4.42755 1.7716,-0.36353 3.7521,-0.68116 5.8635,-0.8705 0.2794,-0.045 0.5745,-0.0815 0.8841,-0.10892 -0.3172,0.004 -0.6208,0.0173 -0.9093,0.0396 -2.0147,0.0215 -3.9497,0.16595 -5.7204,0.36304 0.8617,-1.67935 2.0592,-3.40973 3.7357,-5.17782 -1.9479,1.73798 -3.3556,3.45044 -4.3814,5.11026 -0.9288,-0.37022 -1.852,-0.72237 -2.7545,-1.06273 -0.3449,-0.12783 -0.6911,-0.25337 -1.0385,-0.37677 0.038,-0.34732 0.079,-0.69636 0.126,-1.04716 0.01,-0.0758 0.017,-0.15181 0.026,-0.22789 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4100"
         d="m 1050.7966,548.3656 c 0.4622,0.24326 0.9215,0.49023 1.3775,0.74117 0.6501,0.36338 1.3049,0.73348 1.9594,1.11205 -0.2859,0.22507 -0.5576,0.44947 -0.8156,0.67264 -0.9901,0.82044 -1.9117,1.64551 -2.7725,2.46926 -0.011,-1.62826 0.065,-3.29115 0.2512,-4.99512 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4098"
         d="m 1031.5093,568.30836 c 0.2122,0.50845 0.4269,1.01513 0.644,1.52004 0.773,1.80439 1.5672,3.60122 2.3955,5.3752 -1.129,0.38872 -2.267,0.81589 -3.4152,1.29186 -1.3635,0.52304 -2.826,1.26088 -4.3947,2.35624 1.7513,-0.98644 3.3805,-1.58881 4.911,-1.98098 1.0294,-0.29247 2.0498,-0.55035 3.0625,-0.78009 -0.069,0.96097 -0.1259,1.92381 -0.1657,2.88546 -0.052,1.6308 -0.1372,3.39782 -0.08,5.16457 0.1257,-1.66311 0.3739,-3.29273 0.5906,-4.79315 0.1633,-1.07939 0.3487,-2.15647 0.549,-3.22737 2.3578,0.77553 4.6792,1.61749 6.9746,2.50321 -2.174,-1.14839 -4.3666,-2.26939 -6.5826,-3.35364 0.3627,-0.45914 0.7269,-0.91144 1.0917,-1.35735 1.2985,-1.59045 2.6392,-3.15 4.0217,-4.67541 -1.548,1.37358 -3.0621,2.78993 -4.5408,4.246 -0.4059,0.39898 -0.812,0.80503 -1.2176,1.21883 -0.9238,-1.47869 -1.8286,-2.97274 -2.7196,-4.47567 -0.3781,-0.63654 -0.753,-1.27579 -1.1247,-1.91775 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4096"
         d="m 1064.3145,565.98123 c 1.2368,1.13585 2.3657,2.34869 3.3175,3.66386 -0.3748,0.38077 -0.8294,0.86169 -1.3971,1.40189 -0.3339,0.33815 -0.6674,0.69483 -1.0031,1.06793 0.3804,-0.31053 0.7557,-0.60261 1.1276,-0.87367 0.642,-0.44113 1.1544,-0.81343 1.5555,-1.06956 0.6247,1.582 1.3066,3.14178 2.0322,4.68175 -0.66,-1.53134 -1.2608,-3.08665 -1.7607,-4.6716 0.1755,0.0983 0.3317,0.21196 0.4672,0.34268 0.5898,0.63563 0.2057,1.19162 -1.7167,1.83326 1.946,-0.82949 2.2171,-1.57847 1.523,-2.36717 -0.1121,-0.11815 -0.2349,-0.22784 -0.3677,-0.32966 -0.01,-0.23521 -0.01,-0.46837 -0.01,-0.69933 0.064,-0.94763 -0.1664,-2.07826 -0.2371,-3.06923 0.07,0.78263 0.1934,1.70539 0.022,2.47847 -0.044,0.30784 -0.079,0.62313 -0.1087,0.94509 -0.9355,-1.24875 -2.122,-2.34486 -3.4488,-3.33471 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4094"
         d="m 1042.1895,579.4507 c 0.9073,0.299 1.81,0.60641 2.709,0.92057 1.9983,0.69813 3.9773,1.43115 5.9354,2.19901 -0.36,0.60834 -0.7136,1.21958 -1.0605,1.83351 0,0 0,0 0,0 -0.7827,1.38971 -1.5024,2.75324 -2.1268,4.09332 -0.227,0.48789 -0.4252,0.93405 -0.584,1.33873 0.2169,-0.36552 0.4712,-0.7695 0.754,-1.21519 0.7846,-1.21675 1.6555,-2.44501 2.5859,-3.6964 0.4326,-0.58003 0.8711,-1.15561 1.3154,-1.72652 2.0285,2.31073 4.0833,4.59486 6.1637,6.85222 -1.831,-2.4328 -3.6161,-4.90917 -5.3527,-7.42846 2.6983,-0.98214 5.3949,-1.82259 8.0743,-2.51412 -2.7871,0.35676 -5.6103,0.86415 -8.4532,1.51688 -0.3116,-2.94893 -0.4975,-5.95231 -0.5444,-9.00341 -0.3085,3.03068 -0.4696,6.02669 -0.4974,8.97941 -2.2272,-0.61823 -4.4836,-1.18123 -6.7659,-1.68906 -0.715,-0.15914 -1.4324,-0.31305 -2.1528,-0.46049 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4092"
         d="m 1098.0977,530.52849 c -0.1244,0.19366 -0.2479,0.38788 -0.3704,0.58262 -0.083,-0.0836 -0.167,-0.16686 -0.2513,-0.24992 0.075,0.0974 0.1484,0.19504 0.2219,0.29285 -1.0084,1.613 -1.9471,3.26261 -2.7431,4.94077 -0.4019,0.78916 -0.7487,1.58319 -1.0439,2.3782 -1.8079,-0.67668 -3.7745,-1.15391 -5.8326,-1.41158 -1.0345,-0.2068 -2.0119,-0.42869 -2.8808,-0.71992 0.9715,0.45433 2.0547,0.83741 3.1817,1.2131 1.752,0.45328 3.4142,1.06178 4.9457,1.81056 -0.841,0.82831 -1.5902,1.70045 -2.2538,2.60033 0,0 0,0 0,0 -0.9943,1.39523 -1.7652,2.75449 -2.7531,4.02693 0,0 0,0 0,0 -0.032,0.0418 -0.065,0.0835 -0.098,0.12517 0.036,-0.0358 0.071,-0.0717 0.1071,-0.10771 0,0 0,0 0,0 1.0816,-1.09548 1.9879,-2.30151 3.0673,-3.51468 0,0 0,0 0,0 0.7916,-0.87336 1.671,-1.70269 2.6419,-2.46851 1.3547,2.3548 2.5987,4.764 3.7241,7.22282 -0.9159,-2.55252 -1.8251,-5.1075 -2.7277,-7.66493 0.321,-0.055 0.6424,-0.10275 0.964,-0.14328 2.6548,-0.30357 5.1841,-0.21804 7.6414,-0.004 -2.4913,-0.51232 -5.0829,-0.89412 -7.9089,-0.85521 -0.2441,0.008 -0.4887,0.0196 -0.7336,0.0353 0.1097,-0.40601 0.2314,-0.81239 0.365,-1.21881 0.3523,-1.15791 0.7673,-2.31155 1.2286,-3.45818 0.8624,-0.24553 1.7124,-0.45942 2.547,-0.64712 -0.01,0.8648 -4e-4,1.72876 0.011,2.59166 0.1001,-0.86243 0.2138,-1.72553 0.3392,-2.58878 0.9646,0.22112 1.8882,0.47643 2.7788,0.75482 -0.8457,-0.37138 -1.7241,-0.72217 -2.6443,-1.04229 0.6085,-0.7258 1.2297,-1.43836 1.8517,-2.13729 -0.7099,0.63506 -1.4234,1.28763 -2.1276,1.9583 -0.4961,-0.55985 -1.0111,-1.11106 -1.5481,-1.65187 0.099,-0.21675 0.199,-0.43318 0.3002,-0.64926 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4090"
         d="m 1097.7619,531.23664 c 0.4421,0.58449 0.868,1.17579 1.2794,1.77295 -0.7978,0.26261 -1.6065,0.54915 -2.4215,0.86388 0.356,-0.88353 0.7393,-1.7629 1.1421,-2.63683 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4088"
         d="m 1083.6234,538.28494 c 0.2235,1.34759 0.3308,2.72774 0.3436,4.12831 -1.1876,-0.4552 -2.3388,-0.99173 -3.4846,-1.54998 1.0961,0.70936 2.2115,1.39747 3.3793,2.01183 -0.6119,1.13505 -1.3768,2.26638 -2.2295,3.37862 0.9743,-0.99732 1.8632,-2.0203 2.5983,-3.06024 0.8425,1.15228 1.7384,2.27299 2.6985,3.35176 -0.8303,-1.18287 -1.6169,-2.39064 -2.3644,-3.61912 0.6096,-0.24613 1.1913,-0.51435 1.7397,-0.81154 0.4286,-0.22006 0.8852,-0.49608 1.3808,-0.80943 -0.5356,0.24867 -1.0294,0.45852 -1.4859,0.60713 -0.5784,0.20883 -1.1812,0.38531 -1.8053,0.53803 -0.181,-1.41065 -0.4338,-2.80156 -0.7705,-4.16537 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4086"
         d="m 1101.2967,543.81657 c 0.4857,0.87625 0.9504,1.76117 1.3994,2.65198 -0.8503,0.28821 -1.6558,0.59357 -2.403,0.92889 0.7827,-0.22309 1.6142,-0.41281 2.4862,-0.58462 0.013,1.00802 0.036,2.01491 0.07,3.02032 0.062,-0.99476 0.1445,-1.99158 0.2441,-2.98958 0.8562,0.34193 1.7196,0.70068 2.6033,1.05814 -0.8387,-0.46478 -1.6626,-0.93086 -2.487,-1.38185 0.5333,-0.79694 1.1117,-1.59015 1.7158,-2.37899 -0.6887,0.70987 -1.3498,1.42513 -1.9616,2.14673 -0.5366,-0.8329 -1.0892,-1.65823 -1.6668,-2.47102 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4084"
         d="m 1086.509,546.86519 c 1.2316,1.32317 2.569,2.57558 4.0382,3.73141 -1.8104,1.24731 -3.7107,2.27285 -5.6006,3.12555 1.9727,-0.6559 3.9852,-1.49703 5.9628,-2.59671 0.5197,1.74756 0.978,3.51814 1.3808,5.30779 -0.066,-1.13427 -0.1655,-2.26023 -0.3032,-3.37537 -0.082,-0.74002 -0.1897,-1.46836 -0.3188,-2.18747 1.7342,-0.2226 3.2957,-0.47723 4.5433,-0.48181 0.2604,0.0283 0.5158,0.0646 0.7655,0.10893 -0.2738,-0.0883 -0.5554,-0.16745 -0.8439,-0.23743 -1.2479,-0.1543 -2.7697,-0.0923 -4.4005,-0.0645 0.6375,-1.76002 0.9218,-3.41526 1.2777,-5.05263 0.021,-0.10547 0.043,-0.21103 0.067,-0.3167 -0.031,0.0914 -0.062,0.1829 -0.092,0.27433 -0.5473,1.5904 -1.0267,3.21567 -1.9282,4.93752 -0.3053,-0.16993 -0.6081,-0.34305 -0.9075,-0.52044 -1.3118,-0.80362 -2.5177,-1.69568 -3.6397,-2.65245 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4082"
         d="m 1139.8661,523.75364 c -0.3605,0.21305 -0.7174,0.42891 -1.0707,0.64744 -0.069,-0.20258 -0.1382,-0.40502 -0.2084,-0.60732 0.043,0.21781 0.085,0.43568 0.1267,0.65358 -1.0797,0.67307 -2.1259,1.37102 -3.1413,2.0897 -2.9886,2.09495 -5.7672,4.34339 -8.3333,6.71495 -1.9113,-2.52416 -4.0199,-4.98049 -6.3146,-7.34521 -1.4309,-1.48948 -2.9582,-2.94207 -4.5995,-4.34192 1.6403,1.77791 3.144,3.60866 4.5342,5.47381 1.7414,2.31659 3.3388,4.68658 4.7861,7.09541 -1.8065,0.50116 -3.5717,1.06492 -5.2929,1.68578 -3.1227,1.1235 -6.1479,2.44097 -8.9434,3.97897 2.827,-1.15186 5.8202,-2.07786 8.8764,-2.81822 1.901,-0.46212 3.8404,-0.85355 5.8139,-1.16848 -0.062,4.91174 -0.2334,9.8155 -0.516,14.70736 0.7787,-4.84579 1.5636,-9.6906 2.3546,-14.53442 1.7023,0.61187 3.3728,1.28113 5.0071,2.0059 3.0983,1.36878 6.1099,2.95953 8.9015,4.80982 -2.6404,-2.21733 -5.5741,-4.20529 -8.6351,-5.97123 -1.4709,-0.85165 -2.9838,-1.65917 -4.535,-2.41997 1.898,-2.17037 3.9312,-4.27352 6.0991,-6.29616 0.1392,0.0255 0.2784,0.0513 0.4175,0.0775 1.3806,0.25196 2.7763,0.5492 4.1836,0.89675 -0.7032,1.39801 -1.3888,2.80308 -2.0575,4.21452 0.8524,-1.32036 1.7337,-2.6276 2.6458,-3.9196 1.4534,1.16053 2.8706,2.37688 4.2335,3.64621 -1.2008,-1.37495 -2.4638,-2.70947 -3.7715,-3.9986 1.628,-0.66235 3.3225,-1.26185 5.0911,-1.78472 -1.8766,0.33882 -3.679,0.76573 -5.4145,1.26477 -0.386,-1.31858 -0.803,-2.63424 -1.2469,-3.94446 0.333,-0.27301 0.6695,-0.54374 1.0095,-0.81208 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4080"
         d="m 1138.752,524.63292 c 0.2541,1.30476 0.4862,2.61098 0.6941,3.91705 -1.4275,-0.21269 -2.8357,-0.37426 -4.2229,-0.49082 -0.1161,-0.0104 -0.2322,-0.0206 -0.3482,-0.0305 0.1497,-0.13944 0.2999,-0.2785 0.4509,-0.41717 1.1003,-1.01792 2.241,-2.01265 3.4261,-2.97856 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4078"
         d="m 1107.9151,523.67236 c -0.3479,0.74842 -0.6838,1.49932 -1.0066,2.25251 -0.7428,1.7595 -1.4583,3.5665 -2.0974,5.397 -2.9182,-1.00762 -6.2796,-1.63471 -10.2964,-1.51894 3.8128,0.23628 6.9786,1.13103 9.7217,2.36695 -2.2964,2.06909 -4.4763,4.40359 -6.1271,6.92789 1.9539,-2.38541 4.3963,-4.49404 6.8971,-6.29295 1.3851,2.15781 2.6016,4.38679 3.7108,6.63358 0.054,0.1088 0.1075,0.21767 0.1609,0.32662 -0.063,-0.17862 -0.1254,-0.35715 -0.1888,-0.53558 -0.8125,-2.29404 -1.6914,-4.58141 -2.6612,-6.84244 0.5804,-0.096 1.1517,-0.17652 1.7127,-0.24329 2.4821,-0.33985 4.9435,-0.52122 7.3702,-0.57298 -2.4302,-0.19734 -4.9213,-0.26441 -7.4693,-0.16761 -0.56,0.01 -1.1321,0.0329 -1.7157,0.0718 0.333,-1.5646 0.7057,-3.12024 1.1019,-4.65792 0.2771,-1.04989 0.5732,-2.09822 0.8872,-3.14467 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4076"
         d="m 1134.4972,547.9062 c 0.077,1.80519 0.096,3.60222 0.05,5.38641 -1.4814,-0.17607 -2.9954,-0.28582 -4.5351,-0.35303 1.5086,0.27826 2.9742,0.59656 4.3836,0.97405 -0.781,1.64454 -1.5376,3.29937 -2.2708,4.9634 0.8611,-1.57748 1.7598,-3.1379 2.6996,-4.67781 0.9508,1.19633 1.7761,2.41305 2.4465,3.64545 -0.5253,-1.36668 -1.2086,-2.72975 -2.0212,-4.08115 1.4009,-0.88413 2.8595,-1.70507 4.3886,-2.4405 -1.575,0.54085 -3.0897,1.17581 -4.556,1.87897 -0.1124,-1.75422 -0.3111,-3.52187 -0.5847,-5.29579 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4074"
         d="m 1107.9659,540.12991 c 0.3849,0.68096 0.757,1.36545 1.1185,2.05143 1.1554,2.20231 2.1867,4.44308 3.1098,6.71252 -0.7238,0.20448 -1.4317,0.42729 -2.1217,0.67005 -1.8851,0.70491 -3.4682,1.38856 -4.5144,2.18047 1.1435,-0.53005 2.7402,-0.91993 4.6258,-1.34796 0.7192,-0.14291 1.4523,-0.26369 2.1979,-0.36453 -0.1467,3.26428 -0.2002,6.52694 -0.1532,9.78502 0.1892,-3.20113 0.5584,-6.40324 1.0852,-9.59825 2.0745,1.11503 4.057,2.37561 5.9938,3.7058 0.3737,0.26103 0.7424,0.52549 1.106,0.79325 -0.3578,-0.34263 -0.7221,-0.68207 -1.093,-1.01815 -1.7718,-1.58248 -3.6153,-3.10797 -5.5833,-4.50925 1.7904,-2.37512 3.9102,-4.65174 6.2368,-6.81521 0.043,-0.0396 0.085,-0.0792 0.1281,-0.11875 -0.043,0.0308 -0.084,0.0615 -0.1266,0.0924 -2.5608,1.87541 -4.9186,3.88666 -6.9346,6.02789 -1.19,-2.31329 -2.525,-4.58008 -4.0348,-6.77943 -0.3385,-0.49132 -0.6846,-0.98094 -1.0403,-1.46729 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4072"
         d="m 1172.4647,552.40275 c -0.2798,-0.008 -0.5592,-0.0146 -0.8382,-0.0199 0.047,-0.13817 0.094,-0.27653 0.1403,-0.41508 -0.067,0.13734 -0.1351,0.27449 -0.203,0.41144 -3.3659,-0.0542 -6.6749,0.0936 -9.8986,0.44318 0.037,-2.31653 -0.042,-4.67425 -0.2457,-7.06691 -0.1014,-1.28031 -0.2439,-2.57364 -0.4348,-3.87878 0.039,1.48991 0.023,2.96194 -0.041,4.41518 -0.083,2.1561 -0.2592,4.27731 -0.5216,6.36013 -1.2886,-0.51063 -2.5811,-0.97851 -3.8748,-1.40252 -2.0854,-0.68602 -4.191,-1.26499 -6.2803,-1.70148 1.9365,0.64659 3.8659,1.41925 5.7635,2.28417 1.3176,0.5989 2.626,1.2454 3.9225,1.93774 -2.1278,2.69601 -4.2983,5.3543 -6.5097,7.97446 2.4791,-2.37426 4.9606,-4.74624 7.4442,-7.11595 1.9593,3.02109 3.6602,6.14376 5.1163,9.32445 -1.0786,-3.32446 -2.4186,-6.63826 -4.0454,-9.89839 1.9561,-0.43295 3.9459,-0.79951 5.9642,-1.09934 0.711,0.74156 1.4076,1.49639 2.0895,2.26378 -0.9514,0.5353 -1.8986,1.07664 -2.8416,1.62401 1.0069,-0.42727 2.0203,-0.84383 3.0398,-1.24965 0.315,1.16495 0.5995,2.32775 0.8545,3.48716 -0.1246,-1.16775 -0.2778,-2.34264 -0.4612,-3.52358 1.1495,0.1947 2.3029,0.41646 3.4588,0.66514 -1.1405,-0.38523 -2.2816,-0.74216 -3.4218,-1.07055 0.329,-0.87653 0.6459,-1.76141 0.9505,-2.65444 0.2907,-0.0328 0.5818,-0.0642 0.8735,-0.0943 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4070"
         d="m 1171.5075,552.49685 c -0.4038,0.82184 -0.8166,1.63674 -1.2381,2.44461 -0.7412,-0.68 -1.4938,-1.3454 -2.2574,-1.99561 1.1561,-0.17154 2.3216,-0.32123 3.4955,-0.449 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4068"
         d="m 1155.8672,539.45648 c -1.7224,0.83793 -3.4007,1.73083 -5.0231,2.68215 -0.8846,-1.80578 -1.9167,-3.60615 -3.1273,-5.39149 0.9862,1.86142 1.8002,3.72256 2.4714,5.577 -2.0018,0.0505 -3.9677,0.21546 -5.8702,0.51221 1.9412,-0.0791 3.9268,-0.0197 5.9305,0.15781 -0.3695,1.81687 -0.8037,3.60866 -1.2954,5.37555 0.696,-1.69503 1.3554,-3.40862 1.9753,-5.14101 1.744,1.10166 3.405,2.2919 4.9861,3.54525 -1.4397,-1.41354 -2.9738,-2.77692 -4.614,-4.06624 1.4795,-1.12415 3.0039,-2.20736 4.5667,-3.25123 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4066"
         d="m 1159.7143,564.09265 c -0.6609,1.08395 -1.3387,2.15322 -2.0329,3.20754 -0.8633,-0.77016 -1.7421,-1.51287 -2.6346,-2.22638 0.7893,0.82118 1.559,1.66617 2.3084,2.53298 -1.103,0.64056 -2.2005,1.28932 -3.2923,1.94627 1.1439,-0.5408 2.2971,-1.0669 3.4589,-1.57822 0.1199,0.83009 0.2225,1.65714 0.3083,2.48041 0.034,0.32944 0.064,0.65796 0.091,0.9855 0.014,-0.35662 0.025,-0.71478 0.033,-1.07438 0.015,-0.81586 0.014,-1.63763 0,-2.46471 1.0027,0.0757 2.0114,0.17581 3.0249,0.30037 0.2129,0.0263 0.4259,0.0536 0.6392,0.082 -0.1862,-0.0475 -0.3723,-0.0941 -0.5583,-0.13983 -1.0052,-0.24629 -2.0077,-0.4661 -3.0059,-0.65921 0.5759,-1.11342 1.1305,-2.24436 1.6627,-3.39232 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4064"
         d="m 1148.3091,548.13836 c -0.4935,2.2403 -1.0912,4.43966 -1.7752,6.59826 -1.8386,-0.88113 -3.6787,-1.60914 -5.503,-2.13274 1.7204,0.77141 3.4161,1.73019 5.0871,2.82561 -1.5815,1.65609 -3.1273,3.34061 -4.6344,5.05417 1.6297,-1.55523 3.3263,-3.05613 5.08,-4.505 0.6431,1.51159 1.2098,3.04248 1.7296,4.57836 0.13,0.39527 0.2549,0.79069 0.3748,1.18616 -0.075,-0.444 -0.1563,-0.8888 -0.2434,-1.33427 -0.3238,-1.58901 -0.6986,-3.18466 -1.1536,-4.77681 1.9765,-0.39726 4.0345,-0.67032 6.1336,-0.8388 0.1604,-0.0128 0.321,-0.0251 0.4819,-0.0367 -0.1447,-0.006 -0.2892,-0.0125 -0.4335,-0.0178 -2.1164,-0.0787 -4.1998,-0.0445 -6.2059,0.1285 0.4688,-2.19966 0.8323,-4.44297 1.062,-6.7289 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4062"
         d="m 1188.9735,585.93373 c -0.2433,-0.16118 -0.4872,-0.31969 -0.7316,-0.47557 0.1066,-0.10545 0.213,-0.21134 0.3191,-0.31767 -0.1241,0.0939 -0.2485,0.18729 -0.3729,0.28029 -2.954,-1.87008 -5.9895,-3.3591 -9.0457,-4.53846 0.7772,-1.53133 1.4942,-3.11812 2.1482,-4.74479 0.7232,-1.78355 1.3782,-3.62332 1.9653,-5.51029 -0.9124,2.038 -1.9017,4.00956 -2.9674,5.9034 -0.6945,1.24058 -1.4251,2.45098 -2.1901,3.62407 -0.6199,-0.69713 -1.2526,-1.37046 -1.8953,-2.02131 -1.8915,-1.91967 -3.8679,-3.65882 -5.9038,-5.23674 1.7587,1.72516 3.4423,3.58137 5.0273,5.5806 0.6357,0.80033 1.2553,1.62554 1.855,2.47676 -3.1098,1.46919 -6.2475,2.87059 -9.4111,4.1996 3.2878,-1.00158 6.5768,-1.99907 9.8671,-2.99245 0.4007,3.64317 0.4243,7.2932 -0.01,10.81995 0.83,-3.44803 1.2214,-7.11451 1.2273,-10.84094 1.9485,0.52445 3.8957,1.15599 5.8314,1.9081 0.2911,1.05277 0.5531,2.12167 0.7837,3.20591 -1.0927,-0.0133 -2.1846,-0.0143 -3.2754,-0.003 1.0895,0.1318 2.1793,0.28479 3.2691,0.4597 -0.2866,1.25841 -0.6155,2.49871 -0.9875,3.71527 0.4884,-1.14987 0.9383,-2.33009 1.3497,-3.535 0.9125,0.81061 1.8077,1.67133 2.6825,2.58561 -0.7929,-1.03529 -1.6123,-2.01577 -2.4542,-2.94498 0.7111,-0.64178 1.4119,-1.30381 2.1019,-1.98471 0.2726,0.12628 0.5448,0.25513 0.8167,0.38659 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4060"
         d="m 1188.0828,585.50177 c -0.744,0.55978 -1.495,1.10405 -2.2529,1.63201 -0.3255,-1.03683 -0.6793,-2.053 -1.0591,-3.04849 1.1085,0.43176 2.2132,0.90307 3.312,1.41648 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4058"
         d="m 1179.7842,566.32976 c -1.8902,0.0242 -3.7654,0.10855 -5.6237,0.24912 0.075,-1.95169 0.07,-3.93154 -0.013,-5.92811 -0.1418,1.96615 -0.3566,3.90645 -0.645,5.81022 -1.7653,-0.81239 -3.5371,-1.53357 -5.3079,-2.1723 1.6941,0.84298 3.3792,1.76804 5.0466,2.78332 -1.1705,1.43105 -2.3701,2.82881 -3.5982,4.19073 1.3787,-1.2071 2.7402,-2.4388 4.0842,-3.69404 1.0191,1.71187 1.9716,3.47136 2.8484,5.27606 -0.6803,-1.88772 -1.4434,-3.74763 -2.2815,-5.57433 1.815,-0.35618 3.6453,-0.67048 5.4902,-0.94067 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4056"
         d="m 1172.158,589.94288 c -1.1097,0.60237 -2.2317,1.16799 -3.3652,1.6945 -0.3456,-1.00437 -0.74,-1.99425 -1.1755,-2.96959 0.2934,1.02028 0.5421,2.04313 0.7393,3.06622 -1.2719,0.0121 -2.5429,0.0414 -3.8126,0.0874 1.2548,0.0637 2.5103,0.15596 3.7657,0.27801 -0.4569,0.98926 -0.9618,1.92615 -1.5159,2.80149 0.684,-0.82327 1.3241,-1.71441 1.9203,-2.6642 0.9868,0.62513 1.9541,1.30732 2.8963,2.05218 -0.8353,-0.83762 -1.7029,-1.61449 -2.5959,-2.33636 1.0654,-0.62188 2.1136,-1.29307 3.1435,-2.00968 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4054"
         d="m 1169.171,570.76924 c -1.4479,1.78002 -2.9472,3.49987 -4.4967,5.1533 -1.2937,-1.63581 -2.6704,-3.19638 -4.1111,-4.68502 1.2312,1.65785 2.3823,3.36768 3.4353,5.12682 -2.1499,0.78907 -4.2854,1.61127 -6.4061,2.46546 2.1702,-0.64476 4.3628,-1.23389 6.5765,-1.76402 -0.078,2.07505 -0.2834,4.09316 -0.6222,6.03278 0,0.0145 -0.01,0.0291 -0.01,0.0436 0.01,-0.0154 0.01,-0.0308 0.014,-0.0463 0.5949,-1.92136 1.0623,-3.93839 1.4059,-6.02892 2.1119,0.55781 4.2266,1.24681 6.3328,2.08331 -1.9894,-1.07383 -4.0028,-1.99739 -6.0261,-2.78791 1.3701,-1.7866 2.6721,-3.65438 3.9049,-5.59316 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4052"
         d="m 1188.0101,617.30941 c -0.1484,-0.19519 -0.2981,-0.38813 -0.449,-0.57889 0.1145,-0.054 0.2289,-0.10827 0.3432,-0.16295 -0.1252,0.0399 -0.2504,0.0794 -0.3756,0.11855 -1.8274,-2.29372 -3.8297,-4.26984 -5.9131,-6.05045 1.1078,-1.00356 2.1891,-2.04649 3.2402,-3.09963 1.0757,-1.06807 2.1347,-2.14572 3.187,-3.19925 -1.3433,1.06059 -2.6933,2.14155 -4.0597,3.20012 -0.9788,0.76228 -1.9739,1.51303 -2.9827,2.23823 -0.3032,-0.75956 -0.62,-1.50339 -0.9454,-2.23431 -0.8762,-1.99541 -1.8173,-3.89402 -2.744,-5.80087 0.6672,1.91383 1.3486,3.82318 1.9654,5.80165 0.2683,0.84865 0.5249,1.71049 0.7627,2.58802 -2.896,0.24527 -5.7942,0.4483 -8.6914,0.60135 2.9011,0.1541 5.802,0.3109 8.7028,0.47043 -0.7314,2.96194 -1.6983,5.89244 -3.0428,8.58535 1.637,-2.51772 2.9427,-5.35485 4.0169,-8.25644 1.3985,0.95909 2.7707,1.98847 4.101,3.11112 -0.064,0.90421 -0.1539,1.82104 -0.2738,2.74938 -0.866,-0.31335 -1.735,-0.6162 -2.6068,-0.90899 0.8307,0.40623 1.6556,0.82975 2.4739,1.27183 -0.5804,0.92618 -1.1901,1.83489 -1.8306,2.71697 0.7141,-0.79509 1.4034,-1.62227 2.0684,-2.47229 0.499,0.90203 0.9689,1.84594 1.4044,2.83769 -0.336,-1.06727 -0.7123,-2.08578 -1.122,-3.06171 0.7457,-0.31552 1.489,-0.64858 2.2293,-0.99688 0.1816,0.17517 0.3622,0.35247 0.5417,0.53197 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4050"
         d="m 1187.4223,616.72113 c -0.7494,0.2374 -1.4998,0.46224 -2.2509,0.67316 0.031,-0.91655 0.034,-1.81675 0.01,-2.70077 0.7615,0.64377 1.5093,1.31821 2.2402,2.02761 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4048"
         d="m 1186.9667,600.55013 c -1.4221,-0.57657 -2.841,-1.15133 -4.2539,-1.74295 0.8864,-1.1951 1.794,-2.32525 2.744,-3.34422 -1.0866,0.91758 -2.1384,1.94127 -3.1712,3.02685 -0.9266,-1.17022 -1.8292,-2.34539 -2.6865,-3.57143 0.7009,1.31387 1.4546,2.58585 2.2342,3.86061 -1.4627,0.47703 -2.9225,0.97864 -4.3805,1.49357 1.5078,-0.34156 3.0164,-0.67443 4.5259,-0.99386 0.033,1.48084 0.095,3.00495 0.1466,4.57271 0.1289,-1.5647 0.247,-3.08859 0.3936,-4.55822 1.48,0.42803 2.963,0.84349 4.4478,1.25694 z"
         style="font-size:12px;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4046"
         d="m 1173.5039,615.84623 c -1.0499,0.17181 -2.0989,0.30948 -3.1457,0.40909 4e-4,-0.8833 -0.045,-1.78053 -0.123,-2.69226 -0.047,0.90817 -0.1274,1.79171 -0.2508,2.64743 -1.016,-0.34205 -2.0363,-0.66949 -3.0607,-0.98301 0.9828,0.39516 1.9575,0.813 2.9231,1.25558 -0.6353,0.64487 -1.2961,1.22004 -1.9848,1.71057 0.7769,-0.41469 1.533,-0.91691 2.2689,-1.49157 0.6131,0.7605 1.1919,1.55867 1.7276,2.40416 -0.4246,-0.8868 -0.8982,-1.73104 -1.4104,-2.54274 1.0189,-0.1913 2.0381,-0.43255 3.0558,-0.71725 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path118-1-9"
         d="m 1177.3034,599.72136 c -1.7982,0.71291 -3.5916,1.45377 -5.3836,2.19505 -0.3672,-1.92547 -0.7202,-3.92201 -0.9832,-6.02623 0.036,2.12366 0.1645,4.15862 0.3062,6.11495 -1.9234,-0.2423 -3.8464,-0.49009 -5.7687,-0.74865 1.8786,0.49193 3.7591,0.96056 5.6402,1.42175 -0.7932,1.70747 -1.5833,3.35786 -2.4205,4.87394 -0.027,0.0484 -0.055,0.0967 -0.082,0.14492 0.036,-0.0482 0.072,-0.0965 0.1075,-0.14495 1.0269,-1.4145 2.013,-2.95881 2.9989,-4.55074 1.4163,1.32026 2.8329,2.606 4.2215,3.93967 -1.2226,-1.48484 -2.4797,-2.92498 -3.7328,-4.40983 1.6956,-0.94195 3.3922,-1.89334 5.0968,-2.80988 z"
         style="font-size:12px;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
    </g>
    <path
       sodipodi:type="star"
       style="opacity:0.64299999;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4570);enable-background:accumulate"
       id="path4470"
       sodipodi:sides="5"
       sodipodi:cx="40.637859"
       sodipodi:cy="26.507965"
       sodipodi:r1="24.03194"
       sodipodi:r2="2.2188783"
       sodipodi:arg1="0.62879629"
       sodipodi:arg2="1.2571148"
       inkscape:flatsided="false"
       inkscape:rounded="0"
       inkscape:randomized="0"
       d="M 60.073357,40.642872 41.322522,28.618571 33.200663,49.360148 38.842126,27.811331 16.605922,26.496484 38.843372,25.202884 33.222502,3.6486861 41.324539,24.398014 60.086854,12.391635 42.856737,26.509025 z"
       transform="translate(0,48)"
       inkscape:transform-center-x="2.2914716"
       inkscape:transform-center-y="-0.0035479466" />
    <use
       id="use4472"
       xlink:href="#path4470"
       transform="matrix(0.58947807,-0.37953525,0.37953525,0.58947807,147.57455,1104.5732)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4474"
       xlink:href="#path4470"
       transform="matrix(-0.11874639,0.29712625,-0.29712625,-0.11874639,-1.6559411,1039.1643)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4476"
       xlink:href="#path4470"
       transform="matrix(0.55550829,-0.56243351,0.56243351,0.55550829,-9.1438643,777.84298)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4478"
       xlink:href="#path4470"
       transform="matrix(0.0564113,-0.0509497,0.0509497,0.0564113,63.012839,749.76584)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4480"
       xlink:href="#path4470"
       transform="matrix(0.57286944,1.007046,-1.007046,0.57286944,252.69576,862.68381)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4482"
       xlink:href="#path4470"
       transform="matrix(0.09619769,-0.29014861,0.29014861,0.09619769,179.8402,806.23821)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4484"
       xlink:href="#path4470"
       transform="matrix(0.00821821,0.01864816,-0.01864816,0.00821821,77.000975,725.6338)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4486"
       xlink:href="#path4470"
       transform="matrix(0.24705197,-0.90177679,0.90177679,0.24705197,-44.45781,534.45244)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4488"
       xlink:href="#path4470"
       transform="matrix(-0.15527398,0.55482352,-0.55482352,-0.15527398,88.897318,352.63184)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4490"
       xlink:href="#path4470"
       transform="matrix(0.82764269,-0.30764964,0.30764964,0.82764269,41.804763,231.72276)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4492"
       xlink:href="#path4470"
       transform="matrix(0.04483716,-0.33412635,0.33412635,0.04483716,256.62502,407.24779)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4494"
       xlink:href="#path4470"
       transform="matrix(0.87264966,-0.82995795,0.82995795,0.87264966,259.99827,124.12553)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4496"
       xlink:href="#path4470"
       transform="matrix(0.47522881,-0.45675467,0.45675467,0.47522881,403.50716,244.05959)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4498"
       xlink:href="#path4470"
       transform="matrix(0.99704965,1.3801986,-1.3801986,0.99704965,658.48348,-59.117048)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4500"
       xlink:href="#path4470"
       transform="matrix(0.89780865,0.81452996,-0.81452996,0.89780865,639.9755,131.649)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4502"
       xlink:href="#path4470"
       transform="matrix(0.21454324,-0.25981353,0.25981353,0.21454324,793.88432,167.22953)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4504"
       xlink:href="#path4470"
       transform="matrix(1.5304112,-0.42941227,0.42941227,1.5304112,771.8407,-158.56207)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4506"
       xlink:href="#path4470"
       transform="matrix(1.2086539,0.0274705,-0.0274705,1.2086539,1058.8249,-45.301142)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4508"
       xlink:href="#path4470"
       transform="matrix(0.46917246,-0.05641088,0.05641088,0.46917246,920.7345,6.4641267)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4510"
       xlink:href="#path4470"
       transform="matrix(-0.76571459,-0.92324516,0.92324516,-0.76571459,1179.431,285.19092)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4512"
       xlink:href="#path4470"
       transform="matrix(0.93749438,0.2444285,-0.2444285,0.93749438,1178.7915,-108.52218)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4514"
       xlink:href="#path4470"
       transform="matrix(-0.12535727,0.22831384,-0.22831384,-0.12535727,1495.0841,55.473974)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4516"
       xlink:href="#path4470"
       transform="matrix(1.5353211,-0.44534852,0.44534852,1.5353211,1400.572,-124.39945)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4518"
       xlink:href="#path4470"
       transform="matrix(-0.01088829,-0.18871045,0.18871045,-0.01088829,1433.9072,-28.985794)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4542"
       xlink:href="#path4470"
       transform="matrix(0.00517017,-0.15140552,0.15140552,0.00517017,1320.7884,457.55666)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4544"
       xlink:href="#path4470"
       transform="matrix(-0.83860657,-1.8025864,1.8025864,-0.83860657,1382.2112,582.92617)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4546"
       xlink:href="#path4470"
       transform="matrix(0.43526924,-0.28654031,0.28654031,0.43526924,1424.5599,503.30269)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4548"
       xlink:href="#path4470"
       transform="matrix(-0.00751168,-0.95402339,0.95402339,-0.00751168,1261.0519,826.98204)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4550"
       xlink:href="#path4470"
       transform="matrix(0.53202195,-0.5986413,0.5986413,0.53202195,1081.3153,1143.9276)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4552"
       xlink:href="#path4470"
       transform="matrix(0.50346129,-0.43084522,0.43084522,0.50346129,1140.644,1005.6562)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <path
       sodipodi:type="star"
       style="opacity:0.66787002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       id="path4574"
       sodipodi:sides="5"
       sodipodi:cx="43.320133"
       sodipodi:cy="1055.9423"
       sodipodi:r1="21.057991"
       sodipodi:r2="1.9442924"
       sodipodi:arg1="0.46364761"
       sodipodi:arg2="1.0919661"
       inkscape:flatsided="false"
       inkscape:rounded="0"
       inkscape:randomized="0"
       d="m 62.154973,1065.3597 -17.939024,-7.6918 -4.032029,19.0975 1.771867,-19.4379 -19.40878,2.0667 19.034098,-4.3215 -7.963257,-17.8201 9.991853,16.7671 14.487216,-13.0803 -12.858793,14.6841 z"
       transform="matrix(0.49999999,0,0,0.49999999,21.660067,575.97114)"
       inkscape:transform-center-x="0.48457159"
       inkscape:transform-center-y="0.53336064" />
    <use
       id="use4626"
       xlink:href="#path4574"
       transform="matrix(-0.24764368,-1.0528341,1.0528341,-0.24764368,-944.67934,1033.9412)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4628"
       xlink:href="#path4574"
       transform="matrix(0.57909386,-0.37879624,0.37879624,0.57909386,-330.80867,287.14189)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4630"
       xlink:href="#path4574"
       transform="matrix(0.20608492,-0.47575305,0.47575305,0.20608492,-434.65534,440.84123)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4632"
       xlink:href="#path4574"
       transform="matrix(-0.47115609,-0.87465861,0.87465861,-0.47115609,-741.98338,1182.53)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4634"
       xlink:href="#path4574"
       transform="matrix(0.11970991,0.27374232,-0.27374232,0.11970991,505.45791,281.83824)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4636"
       xlink:href="#path4574"
       transform="matrix(-0.45157807,-0.89098104,0.89098104,-0.45157807,-342.28638,883.20135)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4638"
       xlink:href="#path4574"
       transform="matrix(0.78877199,-0.00390987,0.00390987,0.78877199,631.32063,-681.97799)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4640"
       xlink:href="#path4574"
       transform="matrix(-0.7198514,1.3906708,-1.3906708,-0.7198514,2494.1698,896.43628)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4642"
       xlink:href="#path4574"
       transform="matrix(0.25081555,-0.3652594,0.3652594,0.25081555,1028.0999,44.847913)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4644"
       xlink:href="#path4574"
       transform="matrix(-0.78386935,0.95281203,-0.95281203,-0.78386935,2474.9119,1250.0201)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4646"
       xlink:href="#path4574"
       transform="matrix(0.66010444,-0.85843151,0.85843151,0.66010444,344.49381,-322.9469)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4648"
       xlink:href="#path4574"
       transform="matrix(1.3407353,-1.0724587,1.0724587,1.3407353,179.65468,-882.27963)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4650"
       xlink:href="#path4574"
       transform="matrix(0.61325505,-0.24587213,0.24587213,0.61325505,1023.4204,-156.50236)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4652"
       xlink:href="#path4574"
       transform="matrix(0.50246578,-0.33136017,0.33136017,0.50246578,973.94572,5.3299193)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4654"
       xlink:href="#path4574"
       transform="matrix(0.86457571,-0.18250012,0.18250012,0.86457571,946.20533,-29.397366)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4656"
       xlink:href="#path4574"
       transform="matrix(-0.06003773,0.72193883,-0.72193883,-0.06003773,2081.7378,1106.3961)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4658"
       xlink:href="#path4574"
       transform="matrix(0.47069034,-0.08864777,0.08864777,0.47069034,956.86852,526.64092)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4660"
       xlink:href="#path4574"
       transform="matrix(-0.73374224,1.3457462,-1.3457462,-0.73374224,2630.0177,1698.7881)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4662"
       xlink:href="#path4574"
       transform="matrix(0.57567194,1.1624634,-1.1624634,0.57567194,2311.5328,482.77626)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4664"
       xlink:href="#path4574"
       transform="matrix(0.49914851,0.62894358,-0.62894358,0.49914851,1792.6735,442.13487)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4666"
       xlink:href="#path4574"
       transform="matrix(0.04117376,-0.31253124,0.31253124,0.04117376,568.11043,1003.4451)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4668"
       xlink:href="#path4574"
       transform="matrix(0.54471715,0.19255614,-0.19255614,0.54471715,1052.9125,456.76494)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4670"
       xlink:href="#path4574"
       transform="matrix(0.8199727,1.0078968,-1.0078968,0.8199727,1723.0488,127.19752)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4672"
       xlink:href="#path4574"
       transform="matrix(1.302228,0.51445861,-0.51445861,1.302228,835.05524,-497.7078)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4674"
       xlink:href="#path4574"
       transform="matrix(-0.83037839,1.3244989,-1.3244989,-0.83037839,1974.287,1939.9492)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4676"
       xlink:href="#path4574"
       transform="matrix(-0.50901471,-1.7739146,1.7739146,-0.50901471,-1462.8157,1529.1586)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4678"
       xlink:href="#path4574"
       transform="matrix(-0.14667517,-0.21332863,0.21332863,-0.14667517,188.6638,1093.7265)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4680"
       xlink:href="#path4574"
       transform="matrix(-0.02870837,-1.4326508,1.4326508,-0.02870837,-1437.024,209.02005)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4682"
       xlink:href="#path4574"
       transform="matrix(-0.57071816,-0.78978031,0.78978031,-0.57071816,-197.45452,1222.1099)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4684"
       xlink:href="#path4574"
       transform="matrix(-0.0277565,0.16141045,-0.16141045,-0.0277565,593.27988,593.4323)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4686"
       xlink:href="#path4574"
       transform="matrix(0.18289844,-0.02137544,0.02137544,0.18289844,393.46146,356.61861)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4688"
       xlink:href="#path4574"
       transform="matrix(-0.11888823,0.43542603,-0.43542603,-0.11888823,1319.8136,903.5746)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4690"
       xlink:href="#path4574"
       transform="matrix(-0.12137978,0.25843163,-0.25843163,-0.12137978,1110.9367,930.84303)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4692"
       xlink:href="#path4574"
       transform="matrix(0.85840718,-1.1900932,1.1900932,0.85840718,-700.40457,-183.52603)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4694"
       xlink:href="#path4574"
       transform="matrix(1.7868033,-0.22264712,0.22264712,1.7868033,723.92929,-1538.4546)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <path
       sodipodi:type="star"
       style="opacity:0.71119133;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       id="path4696"
       sodipodi:sides="5"
       sodipodi:cx="1361.7589"
       sodipodi:cy="57.695793"
       sodipodi:r1="13.581996"
       sodipodi:r2="1.2540309"
       sodipodi:arg1="0.5880026"
       sodipodi:arg2="1.2163211"
       inkscape:flatsided="false"
       inkscape:rounded="0"
       inkscape:randomized="0"
       d="m 1373.0598,65.229729 -10.8656,-6.35787 -4.1083,11.899847 2.689,-12.29852 -12.5869,-0.22997 12.5275,-1.243034 -3.6709,-12.041976 5.0534,11.530283 10.3183,-7.21238 -9.4044,8.36914 z"
       transform="translate(0,48)"
       inkscape:transform-center-x="1.1350279"
       inkscape:transform-center-y="0.16916284" />
    <use
       id="use4698"
       xlink:href="#path4696"
       transform="matrix(1.1812458,-0.74493106,0.74493106,1.1812458,-1440.1832,1204.4072)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4700"
       xlink:href="#path4696"
       transform="matrix(1.3567196,0.72987291,-0.72987291,1.3567196,-1363.6714,-737.31532)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4702"
       xlink:href="#path4696"
       transform="matrix(0.68480461,0.00932803,-0.00932803,0.68480461,-630.35127,585.98848)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4704"
       xlink:href="#path4696"
       transform="matrix(0.51038924,-0.71718291,0.71718291,0.51038924,129.13906,1972.9699)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4706"
       xlink:href="#path4696"
       transform="matrix(0.35064616,-1.5215955,1.5215955,0.35064616,208.22996,3156.8877)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4708"
       xlink:href="#path4696"
       transform="matrix(1.4912009,-0.66888337,0.66888337,1.4912009,-1130.2074,807.29952)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4710"
       xlink:href="#path4696"
       transform="matrix(-0.10738461,0.98714076,-0.98714076,-0.10738461,390.56719,-603.30766)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4714"
       xlink:href="#path4696"
       transform="matrix(-0.5352429,0.80515612,-0.80515612,-0.5352429,1226.3875,-151.88383)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4716"
       xlink:href="#path4696"
       transform="matrix(0.62162442,-1.4655345,1.4655345,0.62162442,302.38442,2227.2192)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4718"
       xlink:href="#path4696"
       transform="matrix(0.40452363,0.20559656,-0.20559656,0.40452363,734.45726,186.32303)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <use
       id="use4720"
       xlink:href="#path4696"
       transform="matrix(0.76314788,0.38180872,-0.38180872,0.76314788,120.77417,-349.39042)"
       x="0"
       y="0"
       width="1440"
       height="1152" />
    <g
       id="g4813"
       style="fill:url(#radialGradient4901);fill-opacity:1"
       transform="matrix(-0.01841945,-0.03981492,-0.03981492,0.01841945,1207.2886,861.726)">
      <path
         id="path4811"
         d="m 2193.9621,-91.747977 0,1.59375 c -3.2194,14.18096 -7.3784,28.08727 -12.2812,41.71875 4.6009,0.19176 9.2713,0.28125 14,0.28125 3.6989,0 7.3463,-0.06953 10.9688,-0.1875 -4.9177,-13.66128 -9.0853,-27.59922 -12.3126,-41.8125 l 0,-1.59375 c -0.06,0.27129 -0.1269,0.54141 -0.1874,0.8125 -0.061,-0.27109 -0.1271,-0.54121 -0.1876,-0.8125 z"
         style="color:#000000;fill:url(#radialGradient4903);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4809"
         d="m 2178.2121,-39.122977 c -5.8685,15.12698 -12.6543,29.9101597 -20.0624,44.3124997 12.3894,0.82574 25.1141,1.25 38.0937,1.25 11.5596,0 22.901,-0.37344 34,-1.03125 -7.4402,-14.44858 -14.2336,-29.2904097 -20.125,-44.4687497 -5.0011,0.2272 -10.0649,0.34375 -15.2187,0.34375 -5.654,0 -11.2195,-0.13359 -16.6876,-0.40625 z"
         style="color:#000000;fill:url(#radialGradient4905);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4807"
         d="m 2149.7121,20.939523 c -49.717,89.476087 -121.6174,163.890267 -152.5312,219.374997 39.3417,27.5347 113.7315,46.125 199.0625,46.125 83.175,0 155.9675,-17.64109 196.0313,-44.03125 -30.2329,-55.6784 -103.3132,-130.78622 -153.6563,-221.343747 -14.1538,1.08878 -28.7652,1.65625 -43.7187,1.65625 -15.4699,0 -30.5788,-0.61795 -45.1876,-1.78125 z"
         style="color:#000000;fill:url(#radialGradient4907);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4805"
         d="m 2165.6809,32.314523 c 4.9263,0.04278 10.2269,0.82611 15.8438,2.25 -16.2003,31.0639 -64.4107,171.158957 -52.25,230.281247 -46.2145,0.81153 -83.245,-7.83657 -108.5,-33.0625 24.6086,-44.13631 96.624,-133.864117 136.4374,-198.718747 2.6798,-0.52653 5.513,-0.77567 8.4688,-0.75 z"
         style="color:#000000;fill:url(#radialGradient4935);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4803"
         d="m 2222.6184,32.314523 c 2.9558,-0.02567 5.7892,0.22347 8.4687,0.75 39.8136,64.85463 111.8288,154.582437 136.4376,198.718747 -25.2552,25.22593 -62.2857,33.87403 -108.5,33.0625 12.1605,-59.12229 -36.0499,-199.217347 -52.25,-230.281247 5.6167,-1.42389 10.9174,-2.20722 15.8437,-2.25 z"
         style="color:#000000;fill:url(#radialGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4801"
         d="m 2187.9309,34.564523 11.2812,0 c 25.0597,76.847067 43.7486,160.288387 45.7188,230.499997 -30.9803,13.04243 -66.9663,15.60009 -101.125,2.125 -6.1705,-64.1835 19.7021,-155.09137 44.125,-232.624997 z"
         style="color:#000000;fill:url(#radialGradient4933);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4799"
         d="m 1990.7747,252.90827 c -2.5784,5.60443 -4.6695,10.9944 -6.125,16.15625 -1.5373,5.45055 -2.6755,11.31441 -3.4376,17.53125 31.9982,34.90654 116.1799,59.84375 215.0313,59.84375 95.1608,0 176.7414,-23.10424 211.25,-55.96875 -0.7401,-7.66625 -1.9918,-14.8387 -3.8437,-21.40625 -1.3824,-4.9015 -3.3209,-10.01172 -5.7188,-15.3125 -38.1749,29.10585 -114.7601,48.96875 -203.0312,48.96875 -89.1169,0 -166.3302,-20.25029 -204.125,-49.8125 z"
         style="color:#000000;fill:url(#radialGradient4915);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4797"
         d="m 1980.0559,303.15827 c -2.1553,83.4099 44.912,215.10294 57.5312,308.875 4.258,31.63794 6.2047,66.42705 6.8438,99.81245 40.3978,6.6384 93.5376,10.6876 151.8125,10.6876 56.2627,0 107.7449,-3.7672 147.5937,-10 0.6254,-33.5957 2.5881,-68.64449 6.875,-100.50005 12.5445,-93.21403 59.1252,-223.89317 57.5626,-307.375 -33.1915,33.97416 -116.1993,58.0625 -213.375,58.0625 -98.6191,0 -182.6698,-24.78884 -214.8438,-59.5625 z"
         style="color:#000000;fill:url(#radialGradient4917);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4795"
         d="m 2044.5559,719.68952 c 0.3421,25.8743 -0.079,50.529 -0.7812,72.0625 40.4773,6.7027 93.8772,10.7813 152.4687,10.7813 56.6015,0 108.3652,-3.7933 148.3125,-10.0938 -0.7136,-21.6289 -1.1529,-46.4659 -0.8125,-72.5312 -40.0227,6.3497 -91.9891,10.2187 -148.8437,10.2187 -57.5663,0 -110.1253,-3.9446 -150.3438,-10.4375 z"
         style="color:#000000;fill:url(#radialGradient4919);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4793"
         d="m 2043.4934,799.53332 c -1.4268,38.5732 -3.625,65.0312 -3.625,65.0312 l 18.2813,4.6875 38.2812,4.6875 18.2812,-35.3125 15.6563,-30.2187 c -32.5641,-1.7683 -62.0994,-4.826 -86.875,-8.875 z"
         style="color:#000000;fill:url(#radialGradient4955);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4791"
         d="m 2344.8059,799.75202 c -24.8285,3.9881 -54.3409,6.9982 -86.8125,8.7187 l 15.5937,30.1563 18.2813,35.3125 38.2813,-4.6875 18.2812,-4.6875 c 0,0 -2.1979,-26.362 -3.625,-64.8125 z"
         style="color:#000000;fill:url(#radialGradient4951);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4752"
         d="m 2135.6809,808.68952 15.5938,31.2812 18.2812,36.6876 c 29.7394,-0.7526 19.4478,-0.5087 49.1875,0 l 18.2813,-36.6876 15.5624,-31.2187 c -18.4322,0.8859 -37.7573,1.375 -57.6874,1.375 -20.4856,0 -40.3247,-0.5033 -59.2188,-1.4375 z"
         style="color:#000000;fill:url(#radialGradient4953);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4959-9-3"
         style="color:#000000;fill:url(#linearGradient5029);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         d="m 2231.6907,403.46337 c -13.527,0.752 -23.666,16.196 -22.647,34.497 1.019,18.301 12.81,32.525 26.336,31.772 13.526,-0.752 23.665,-16.199 22.646,-34.499 -1.018,-18.299 -12.809,-32.523 -26.335,-31.77 z m -88.878,2.647 c -13.307,2.539 -21.309,19.193 -17.873,37.195 3.435,18.003 17.008,30.542 30.315,28 13.307,-2.539 21.309,-19.193 17.873,-37.195 -3.436,-18.003 -17.009,-30.539 -30.315,-28 z m -110.806,-38.158 c -15.805,7.064 -20.87,30.125 -11.312,51.509 9.558,21.381 30.119,32.991 45.924,25.927 15.805,-7.064 20.868,-30.128 11.311,-51.511 -9.558,-21.382 -30.118,-32.989 -45.923,-25.925 z m 310.243,2.403 c -16.084,-6.404 -36.145,6.045 -44.808,27.806 -8.663,21.761 -2.648,44.593 13.437,50.997 16.084,6.402 36.146,-6.05 44.809,-27.811 8.663,-21.759 2.646,-44.59 -13.436,-50.992 z"
         inkscape:connector-curvature="0" />
    </g>
    <g
       id="g4128"
       transform="translate(0,20)">
      <g
         style="fill:#000000;filter:url(#filter4124)"
         id="g3332"
         transform="matrix(0.22369454,0,0,0.22369454,1430.7007,488.44445)">
        <path
           id="path3334"
           d="m -593.8125,778.84375 c -37.00871,0 -68.10732,25.13667 -77.28125,59.25 -2.54417,1.20137 -4.97749,2.40258 -7.34375,3.59375 -0.0419,0.018 -0.0831,0.0444 -0.125,0.0625 -35.52842,15.31632 -56.84035,32.50818 -52.78125,45.5625 4.03697,12.98315 32.18285,18.74977 71.5,16.8125 14.41616,21.03951 38.59825,34.84375 66.03125,34.84375 39.81284,0 72.81529,-29.05966 79,-67.125 38.9891,-15.90647 62.83841,-34.27966 58.5625,-48.03125 -3.57633,-11.50167 -26.08228,-17.35551 -58.5,-17.1875 -0.0106,5e-5 -0.0206,-6e-5 -0.0312,0 -3.73846,-0.21107 -7.44629,-0.36531 -11.125,-0.4375 -2.60107,-0.051 -5.18141,-0.0783 -7.75,-0.0625 -14.66577,-16.71683 -36.17076,-27.28125 -60.15625,-27.28125 z"
           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           inkscape:connector-curvature="0" />
        <path
           id="path3336"
           d="m -532.8125,807.125 c 16.73679,-0.0551 34.17159,1.27527 52.125,4.4375 7.88351,2.64729 12.97074,6.40106 14.46875,11.21875 5.92783,19.06427 -46.38692,47.70007 -116.84375,63.96875 -70.45683,16.26868 -132.38467,14.00177 -138.3125,-5.0625 -1.60496,-5.16167 1.09616,-11.02995 7.25,-17.15625 4.35913,-3.42086 11.6516,-8.45207 21.46875,-14.09375 6.11689,-3.51523 13.24486,-7.30475 21.21875,-11.09375 -1.09225,4.33385 -1.86828,8.79209 -2.21875,13.375 -12.82571,6.98997 -19.41869,13.52108 -17,18.21875 5.30206,10.29783 51.85252,7.83736 103.96875,-5.5 52.11624,-13.33736 90.05206,-32.48342 84.75,-42.78125 -2.13269,-4.14216 -10.96406,-6.20455 -24.125,-6.34375 -2.03283,-3.22576 -4.29238,-6.29291 -6.75,-9.1875 z"
           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           inkscape:connector-curvature="0" />
        <path
           id="path3338"
           d="m -505.4375,807.28125 c 4.45839,0.30358 8.62148,0.76172 12.4375,1.375 -4.17784,-0.54917 -8.32494,-1.01251 -12.4375,-1.375 z"
           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           inkscape:connector-curvature="0" />
        <path
           d="m -594.625,791.34375 c 21.74749,0 41.15725,9.91682 54,25.46875 0.0886,0.12568 0.0772,0.10148 0.15625,0.1875 -0.023,-0.0367 0.0356,-0.17457 0,0 5.76596,7.03165 10.18216,15.19906 12.875,24.125 0.99682,-0.50996 1.94775,-1.02464 2.875,-1.53125 0.85135,-0.46514 1.67775,-0.91426 2.46875,-1.375 -0.79055,0.45862 -1.61821,0.91167 -2.46875,1.375 -0.92441,0.50357 -1.88204,1.02326 -2.875,1.53125 -14.23825,7.28412 -35.38552,14.96677 -59.9375,21.25 -30.00754,7.6794 -58.01387,11.45024 -76.125,10.9375 -0.66392,-3.87332 -1.03125,-7.8437 -1.03125,-11.90625 0,-4.54188 0.45545,-8.98 1.28125,-13.28125 0.0206,-0.20787 0.0565,-0.25894 0.0937,-0.5312 6.414,-32.07854 34.72398,-56.25 68.6875,-56.25 z m 68.4375,84.90625 c -6.80393,31.56247 -34.83998,55.21875 -68.4375,55.21875 -22.86849,0 -43.15963,-10.98162 -55.9375,-27.9375 20.7301,-1.58284 44.06369,-5.14366 68.34375,-10.75 20.3674,-4.70289 39.31032,-10.36723 56.03125,-16.53125 z"
           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="path3340"
           inkscape:connector-curvature="0" />
        <path
           transform="translate(0,48)"
           d="m -549.6013,848.84363 c 0,3.91511 -3.36052,7.08894 -7.50594,7.08894 -4.14541,0 -7.50593,-3.17383 -7.50593,-7.08894 0,-3.91512 3.36052,-7.08894 7.50593,-7.08894 4.14542,0 7.50594,3.17382 7.50594,7.08894 z m -27.52176,16.67981 c 0,2.53331 -2.24034,4.58696 -5.00395,4.58696 -2.76361,0 -5.00396,-2.05365 -5.00396,-4.58696 0,-2.53331 2.24035,-4.58696 5.00396,-4.58696 2.76361,0 5.00395,2.05365 5.00395,4.58696 z m -24.18576,-2.91895 c 0,4.14542 -3.36052,7.50594 -7.50594,7.50594 -4.14541,0 -7.50593,-3.36052 -7.50593,-7.50594 0,-4.14541 3.36052,-7.50593 7.50593,-7.50593 4.14542,0 7.50594,3.36052 7.50594,7.50593 z m 14.17785,-61.29846 c 0,2.99391 -2.98714,5.42095 -6.67195,5.42095 -3.68481,0 -6.67194,-2.42704 -6.67194,-5.42095 0,-2.99391 2.98713,-5.42095 6.67194,-5.42095 3.68481,0 6.67195,2.42704 6.67195,5.42095 z m 40.03164,-20.43286 c 0,5.52722 -4.294,10.00791 -9.59092,10.00791 -5.29691,0 -9.59091,-4.48069 -9.59091,-10.00791 0,-5.52722 4.294,-10.00792 9.59091,-10.00792 5.29692,0 9.59092,4.4807 9.59092,10.00792 z m -34.19371,-12.92688 c 0,5.75752 -4.85409,10.42491 -10.84191,10.42491 -5.98782,0 -10.84191,-4.66739 -10.84191,-10.42491 0,-5.75752 4.85409,-10.42491 10.84191,-10.42491 5.98782,0 10.84191,4.66739 10.84191,10.42491 z m -36.69566,13.76086 c 0,3.22421 -2.98713,5.83795 -6.67194,5.83795 -3.68482,0 -6.67195,-2.61374 -6.67195,-5.83795 0,-3.22421 2.98713,-5.83795 6.67195,-5.83795 3.68481,0 6.67194,2.61374 6.67194,5.83795 z m -2.50199,23.7688 c 0,4.83632 -4.294,8.75693 -9.59091,8.75693 -5.29692,0 -9.59092,-3.92061 -9.59092,-8.75693 0,-4.83631 4.294,-8.75692 9.59092,-8.75692 5.29691,0 9.59091,3.92061 9.59091,8.75692 z"
           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="path3342"
           inkscape:connector-curvature="0" />
      </g>
      <g
         transform="matrix(0.2326311,0,0,0.2326311,1436.0072,480.76878)"
         id="g3291">
        <path
           inkscape:connector-curvature="0"
           style="color:#000000;fill:url(#radialGradient3304);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           d="m -593.8125,778.84375 c -37.00871,0 -68.10732,25.13667 -77.28125,59.25 -2.54417,1.20137 -4.97749,2.40258 -7.34375,3.59375 -0.0419,0.018 -0.0831,0.0444 -0.125,0.0625 -35.52842,15.31632 -56.84035,32.50818 -52.78125,45.5625 4.03697,12.98315 32.18285,18.74977 71.5,16.8125 14.41616,21.03951 38.59825,34.84375 66.03125,34.84375 39.81284,0 72.81529,-29.05966 79,-67.125 38.9891,-15.90647 62.83841,-34.27966 58.5625,-48.03125 -3.57633,-11.50167 -26.08228,-17.35551 -58.5,-17.1875 -0.0106,5e-5 -0.0206,-6e-5 -0.0312,0 -3.73846,-0.21107 -7.44629,-0.36531 -11.125,-0.4375 -2.60107,-0.051 -5.18141,-0.0783 -7.75,-0.0625 -14.66577,-16.71683 -36.17076,-27.28125 -60.15625,-27.28125 z"
           id="path3289" />
        <path
           inkscape:connector-curvature="0"
           style="color:#000000;fill:url(#radialGradient3320);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           d="m -532.8125,807.125 c 16.73679,-0.0551 34.17159,1.27527 52.125,4.4375 7.88351,2.64729 12.97074,6.40106 14.46875,11.21875 5.92783,19.06427 -46.38692,47.70007 -116.84375,63.96875 -70.45683,16.26868 -132.38467,14.00177 -138.3125,-5.0625 -1.60496,-5.16167 1.09616,-11.02995 7.25,-17.15625 4.35913,-3.42086 11.6516,-8.45207 21.46875,-14.09375 6.11689,-3.51523 13.24486,-7.30475 21.21875,-11.09375 -1.09225,4.33385 -1.86828,8.79209 -2.21875,13.375 -12.82571,6.98997 -19.41869,13.52108 -17,18.21875 5.30206,10.29783 51.85252,7.83736 103.96875,-5.5 52.11624,-13.33736 90.05206,-32.48342 84.75,-42.78125 -2.13269,-4.14216 -10.96406,-6.20455 -24.125,-6.34375 -2.03283,-3.22576 -4.29238,-6.29291 -6.75,-9.1875 z"
           id="path3287" />
        <path
           inkscape:connector-curvature="0"
           style="color:#000000;fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           d="m -505.4375,807.28125 c 4.45839,0.30358 8.62148,0.76172 12.4375,1.375 -4.17784,-0.54917 -8.32494,-1.01251 -12.4375,-1.375 z"
           id="path3285" />
        <path
           inkscape:connector-curvature="0"
           id="path5100"
           style="color:#000000;fill:url(#radialGradient3328);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           d="m -594.625,791.34375 c 21.74749,0 41.15725,9.91682 54,25.46875 0.0886,0.12568 0.0772,0.10148 0.15625,0.1875 -0.023,-0.0367 0.0356,-0.17457 0,0 5.76596,7.03165 10.18216,15.19906 12.875,24.125 0.99682,-0.50996 1.94775,-1.02464 2.875,-1.53125 0.85135,-0.46514 1.67775,-0.91426 2.46875,-1.375 -0.79055,0.45862 -1.61821,0.91167 -2.46875,1.375 -0.92441,0.50357 -1.88204,1.02326 -2.875,1.53125 -14.23825,7.28412 -35.38552,14.96677 -59.9375,21.25 -30.00754,7.6794 -58.01387,11.45024 -76.125,10.9375 -0.66392,-3.87332 -1.03125,-7.8437 -1.03125,-11.90625 0,-4.54188 0.45545,-8.98 1.28125,-13.28125 0.0206,-0.20787 0.0565,-0.25894 0.0937,-0.5312 6.414,-32.07854 34.72398,-56.25 68.6875,-56.25 z m 68.4375,84.90625 c -6.80393,31.56247 -34.83998,55.21875 -68.4375,55.21875 -22.86849,0 -43.15963,-10.98162 -55.9375,-27.9375 20.7301,-1.58284 44.06369,-5.14366 68.34375,-10.75 20.3674,-4.70289 39.31032,-10.36723 56.03125,-16.53125 z" />
        <path
           inkscape:connector-curvature="0"
           id="path5085"
           style="color:#000000;fill:url(#radialGradient3312);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           d="m -549.6013,848.84363 c 0,3.91511 -3.36052,7.08894 -7.50594,7.08894 -4.14541,0 -7.50593,-3.17383 -7.50593,-7.08894 0,-3.91512 3.36052,-7.08894 7.50593,-7.08894 4.14542,0 7.50594,3.17382 7.50594,7.08894 z m -27.52176,16.67981 c 0,2.53331 -2.24034,4.58696 -5.00395,4.58696 -2.76361,0 -5.00396,-2.05365 -5.00396,-4.58696 0,-2.53331 2.24035,-4.58696 5.00396,-4.58696 2.76361,0 5.00395,2.05365 5.00395,4.58696 z m -24.18576,-2.91895 c 0,4.14542 -3.36052,7.50594 -7.50594,7.50594 -4.14541,0 -7.50593,-3.36052 -7.50593,-7.50594 0,-4.14541 3.36052,-7.50593 7.50593,-7.50593 4.14542,0 7.50594,3.36052 7.50594,7.50593 z m 14.17785,-61.29846 c 0,2.99391 -2.98714,5.42095 -6.67195,5.42095 -3.68481,0 -6.67194,-2.42704 -6.67194,-5.42095 0,-2.99391 2.98713,-5.42095 6.67194,-5.42095 3.68481,0 6.67195,2.42704 6.67195,5.42095 z m 40.03164,-20.43286 c 0,5.52722 -4.294,10.00791 -9.59092,10.00791 -5.29691,0 -9.59091,-4.48069 -9.59091,-10.00791 0,-5.52722 4.294,-10.00792 9.59091,-10.00792 5.29692,0 9.59092,4.4807 9.59092,10.00792 z m -34.19371,-12.92688 c 0,5.75752 -4.85409,10.42491 -10.84191,10.42491 -5.98782,0 -10.84191,-4.66739 -10.84191,-10.42491 0,-5.75752 4.85409,-10.42491 10.84191,-10.42491 5.98782,0 10.84191,4.66739 10.84191,10.42491 z m -36.69566,13.76086 c 0,3.22421 -2.98713,5.83795 -6.67194,5.83795 -3.68482,0 -6.67195,-2.61374 -6.67195,-5.83795 0,-3.22421 2.98713,-5.83795 6.67195,-5.83795 3.68481,0 6.67194,2.61374 6.67194,5.83795 z m -2.50199,23.7688 c 0,4.83632 -4.294,8.75693 -9.59091,8.75693 -5.29692,0 -9.59092,-3.92061 -9.59092,-8.75693 0,-4.83631 4.294,-8.75692 9.59092,-8.75692 5.29691,0 9.59091,3.92061 9.59091,8.75692 z"
           transform="translate(0,48)" />
      </g>
    </g>
  </g>
</svg>