summaryrefslogtreecommitdiff
path: root/grafik/promotion-material/installation.svg
blob: 7619785c8d52fa89930f079dfd9af1eb9fdba6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="210mm"
   height="297mm"
   id="svg8348"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="G:\NEO\yahoo"
   sodipodi:docname="installation.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="/home/nepomuk/daten/bilder/neo2/install_auslage2_hg3.png"
   inkscape:export-xdpi="59.865322"
   inkscape:export-ydpi="59.865322">
  <defs
     id="defs8350">
    <linearGradient
       inkscape:collect="always"
       id="linearGradient18795">
      <stop
         style="stop-color:#ff6600;stop-opacity:1;"
         offset="0"
         id="stop18797" />
      <stop
         style="stop-color:#ff6600;stop-opacity:0;"
         offset="1"
         id="stop18799" />
    </linearGradient>
    <linearGradient
       id="linearGradient17818">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop17820" />
      <stop
         style="stop-color:#0000ff;stop-opacity:0"
         offset="1"
         id="stop17822" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient17802">
      <stop
         style="stop-color:#ffcc00;stop-opacity:1;"
         offset="0"
         id="stop17804" />
      <stop
         style="stop-color:#ffcc00;stop-opacity:0;"
         offset="1"
         id="stop17806" />
    </linearGradient>
    <linearGradient
       id="linearGradient17790">
      <stop
         id="stop17792"
         offset="0"
         style="stop-color:#00ff00;stop-opacity:1;" />
      <stop
         id="stop17794"
         offset="1"
         style="stop-color:#0000ff;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       id="linearGradient15838">
      <stop
         style="stop-color:#0000ff;stop-opacity:1;"
         offset="0"
         id="stop15840" />
      <stop
         style="stop-color:#0000ff;stop-opacity:0"
         offset="1"
         id="stop15842" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6536"
       id="radialGradient10427"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.598235,-2.39429e-6,5.622594e-6,1.404856,1281.1956,-341.30214)"
       cx="623.38293"
       cy="233.13782"
       fx="623.38293"
       fy="233.13782"
       r="31.428574" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3730"
       id="linearGradient10425"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(1454.5341,-162.92645)"
       x1="183.82088"
       y1="152.68343"
       x2="233.54607"
       y2="152.17834" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4720"
       id="radialGradient10423"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.308336,-0.808817,1.413042,0.538676,1410.156,265.81908)"
       cx="316.07376"
       cy="126.72243"
       fx="316.07376"
       fy="126.72243"
       r="46.277191" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702"
       id="radialGradient10421"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.254091,-5.681726e-3,1.251906e-2,1.756906,1253.0413,-86.513622)"
       cx="382.62219"
       cy="53.614029"
       fx="382.62219"
       fy="53.614029"
       r="35.777191" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4720"
       id="linearGradient10419"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.011033,0,0,1,1341.6021,-48.926426)"
       x1="247.74515"
       y1="47.647896"
       x2="278.87097"
       y2="47.647896" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3730"
       id="radialGradient10417"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.491136,-0.305596,0.552048,0.887218,1623.692,75.679074)"
       cx="146.65874"
       cy="-12.182395"
       fx="146.65874"
       fy="-12.182395"
       r="46.277191" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3765"
       id="radialGradient10415"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,1.044946,1452.5341,-170.19175)"
       cx="203.52232"
       cy="161.6479"
       fx="203.52232"
       fy="161.6479"
       r="46.277191" />
    <linearGradient
       id="linearGradient6536">
      <stop
         style="stop-color:#c5c5c5;stop-opacity:1"
         offset="0"
         id="stop6542" />
      <stop
         style="stop-color:#a9a9a9;stop-opacity:0"
         offset="1"
         id="stop6544" />
    </linearGradient>
    <radialGradient
       cx="623.38293"
       cy="233.13782"
       r="31.428574"
       fx="623.38293"
       fy="233.13782"
       id="radialGradient6534"
       xlink:href="#linearGradient6536"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.598235,-2.39429e-6,5.622594e-6,1.404856,752.89899,-476.31289)" />
    <linearGradient
       x1="183.82088"
       y1="152.68343"
       x2="233.54607"
       y2="152.17834"
       id="linearGradient4760"
       xlink:href="#linearGradient3730"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(926.23748,-297.93719)" />
    <radialGradient
       cx="316.07376"
       cy="126.72243"
       r="46.277191"
       fx="316.07376"
       fy="126.72243"
       id="radialGradient4752"
       xlink:href="#linearGradient4720"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.308336,-0.808817,1.413042,0.538676,871.85935,130.80861)" />
    <linearGradient
       id="linearGradient4702">
      <stop
         style="stop-color:black;stop-opacity:1"
         offset="0"
         id="stop4704" />
      <stop
         style="stop-color:black;stop-opacity:0"
         offset="1"
         id="stop4706" />
    </linearGradient>
    <radialGradient
       cx="382.62219"
       cy="53.614029"
       r="35.777191"
       fx="382.62219"
       fy="53.614029"
       id="radialGradient4750"
       xlink:href="#linearGradient4702"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.254091,-5.681726e-3,1.251906e-2,1.756906,724.74469,-221.52439)" />
    <linearGradient
       id="linearGradient3746">
      <stop
         style="stop-color:#ededed;stop-opacity:1"
         offset="0"
         id="stop3748" />
      <stop
         style="stop-color:#f0f0f0;stop-opacity:0"
         offset="1"
         id="stop3750" />
    </linearGradient>
    <radialGradient
       cx="203.52232"
       cy="161.6479"
       r="46.277191"
       fx="203.52232"
       fy="161.6479"
       id="radialGradient4756"
       xlink:href="#linearGradient3746"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,1.044946,926.23748,-315.20249)" />
    <linearGradient
       id="linearGradient4720">
      <stop
         style="stop-color:black;stop-opacity:1"
         offset="0"
         id="stop4722" />
      <stop
         style="stop-color:black;stop-opacity:0"
         offset="1"
         id="stop4724" />
    </linearGradient>
    <linearGradient
       x1="247.74515"
       y1="47.647896"
       x2="278.87097"
       y2="47.647896"
       id="linearGradient4758"
       xlink:href="#linearGradient4720"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.011033,0,0,1,813.30545,-183.93719)" />
    <linearGradient
       id="linearGradient3730">
      <stop
         style="stop-color:#d6d6d6;stop-opacity:1"
         offset="0"
         id="stop3732" />
      <stop
         style="stop-color:#d5d5d5;stop-opacity:1"
         offset="0.15977488"
         id="stop3738" />
      <stop
         style="stop-color:#cbcbcb;stop-opacity:1"
         offset="0.40777084"
         id="stop3740" />
      <stop
         style="stop-color:#a9a9a9;stop-opacity:1"
         offset="1"
         id="stop3734" />
    </linearGradient>
    <radialGradient
       cx="146.65874"
       cy="-12.182395"
       r="46.277191"
       fx="146.65874"
       fy="-12.182395"
       id="radialGradient4754"
       xlink:href="#linearGradient3730"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.491136,-0.305596,0.552048,0.887218,1095.3954,-59.331694)" />
    <linearGradient
       id="linearGradient3765">
      <stop
         style="stop-color:#ededed;stop-opacity:1"
         offset="0"
         id="stop3767" />
      <stop
         style="stop-color:#bababa;stop-opacity:1"
         offset="0.50660795"
         id="stop3771" />
      <stop
         style="stop-color:#878787;stop-opacity:1"
         offset="1"
         id="stop3769" />
    </linearGradient>
    <radialGradient
       cx="203.52232"
       cy="161.6479"
       r="46.277191"
       fx="203.52232"
       fy="161.6479"
       id="radialGradient4748"
       xlink:href="#linearGradient3765"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,1.044946,924.23748,-305.20249)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient15838"
       id="linearGradient17788"
       x1="944.4184"
       y1="391.80191"
       x2="1248.6582"
       y2="262.97256"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(847.20091,386.87502)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient17790"
       id="radialGradient17798"
       cx="1340.2549"
       cy="358.0553"
       fx="1340.2549"
       fy="358.0553"
       r="310.18369"
       gradientTransform="matrix(1.0949887,-6.8409216e-2,2.1310071e-2,0.3410985,591.18076,702.64485)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient17802"
       id="radialGradient17808"
       cx="1111.8965"
       cy="386.909"
       fx="1111.8965"
       fy="386.909"
       r="171.44215"
       gradientTransform="matrix(1,0,0,0.367052,0,244.89324)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient17818"
       id="radialGradient17816"
       cx="1076.901"
       cy="634.48041"
       fx="1076.901"
       fy="634.48041"
       r="310.18369"
       gradientTransform="matrix(2.0894222,4.0135706e-2,-8.3181884e-3,0.4330361,-448.31879,489.00719)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient18795"
       id="radialGradient18801"
       cx="1111.8965"
       cy="386.90897"
       fx="1111.8965"
       fy="386.90897"
       r="171.44215"
       gradientTransform="matrix(1,0,0,0.367052,0,244.89324)"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.1849159"
     inkscape:cx="301.74147"
     inkscape:cy="635.06778"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1280"
     inkscape:window-height="756"
     inkscape:window-x="1276"
     inkscape:window-y="220" />
  <metadata
     id="metadata8353">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     inkscape:groupmode="layer"
     id="layer1">
    <rect
       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00399995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
       id="rect14861"
       width="828.47192"
       height="1144.5994"
       x="-35.675823"
       y="-30.795488" />
    <g
       id="g13094"
       style="opacity:0.5"
       transform="matrix(0.9991076,-4.2236926e-2,4.2236926e-2,0.9991076,-18.450336,15.059755)">
      <g
         id="g13017">
        <g
           id="g12946"
           transform="matrix(1.3330482,0,0,1.3330482,-1556.5562,5.6233021)">
          <g
             inkscape:tile-cy="4.8099258"
             inkscape:tile-cx="1158.7738"
             inkscape:tile-h="43.388547"
             inkscape:tile-w="41.357001"
             transform="matrix(0.4499553,0,0,0.4499553,413.24871,5.5459184)"
             id="g10399">
            <path
               id="path10401"
               style="fill:url(#radialGradient10415);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
               d="M 1685.7483,-49.135706 C 1685.7483,-49.135706 1696.8198,-44.492846 1699.3198,-41.278556 C 1701.8198,-38.064276 1702.5341,32.650014 1701.1055,38.007154 C 1699.6769,43.364294 1694.6769,46.578584 1694.6769,46.578584 L 1620.0341,45.864294 C 1620.0341,45.864294 1611.8198,45.507154 1611.8198,40.507154 C 1611.8198,35.507154 1609.4983,-36.189276 1612.3555,-38.332126 C 1615.2126,-40.474986 1629.3198,-49.135706 1629.3198,-49.135706 L 1685.7483,-49.135706 z " />
            <path
               id="path10403"
               style="opacity:0.88161208;fill:url(#radialGradient10417);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
               d="M 1685.7483,-49.135706 C 1685.7483,-49.135706 1696.8198,-44.492846 1699.3198,-41.278556 C 1701.8198,-38.064276 1702.5341,32.650014 1701.1055,38.007154 C 1699.6769,43.364294 1694.6769,46.578584 1694.6769,46.578584 L 1620.0341,45.864294 C 1620.0341,45.864294 1611.8198,45.507154 1611.8198,40.507154 C 1611.8198,35.507154 1609.4983,-36.099996 1612.3555,-38.242846 C 1615.2126,-40.385706 1629.3198,-49.135706 1629.3198,-49.135706 L 1685.7483,-49.135706 z " />
            <path
               id="path10405"
               style="opacity:0.88161208;fill:url(#linearGradient10419);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
               d="M 1686.581,-49.135706 C 1686.581,-49.135706 1697.7746,-44.492846 1700.3022,-41.278556 C 1702.8298,-38.064276 1703.5519,32.650014 1702.1076,38.007154 C 1700.6633,43.364294 1695.6081,46.578584 1695.6081,46.578584 L 1620.1417,45.864294 C 1620.1417,45.864294 1611.8368,45.507154 1611.8368,40.507154 C 1611.8368,35.507154 1609.4799,-36.546416 1612.3685,-38.689266 C 1615.2572,-40.832126 1629.5298,-49.135706 1629.5298,-49.135706 L 1686.581,-49.135706 z " />
            <path
               id="path10407"
               style="opacity:0.99924436;fill:url(#radialGradient10421);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
               d="M 1681.6609,-49.135706 C 1681.6609,-49.135706 1695.5457,-44.492846 1698.681,-41.278556 C 1701.8163,-38.064276 1702.7121,32.650014 1700.9205,38.007154 C 1699.1289,43.364294 1692.8583,46.578584 1692.8583,46.578584 L 1624.3301,45.864294 C 1624.3301,45.864294 1614.0285,45.507154 1614.0285,40.507154 C 1614.0285,35.507154 1609.9974,-36.635706 1613.5806,-38.778556 C 1617.1638,-40.921416 1635.9754,-49.135706 1635.9754,-49.135706 L 1681.6609,-49.135706 z " />
            <path
               id="path10409"
               style="opacity:0.88161208;fill:url(#radialGradient10423);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
               d="M 1685.7483,-49.135706 C 1685.7483,-49.135706 1696.8198,-44.492846 1699.3198,-41.278556 C 1701.8198,-38.064276 1702.5341,32.650014 1701.1055,38.007154 C 1699.6769,43.364294 1694.6769,46.578584 1694.6769,46.578584 L 1620.0341,45.864294 C 1620.0341,45.864294 1611.8198,45.507154 1611.8198,40.507154 C 1611.8198,35.507154 1612.6233,-30.742846 1612.2662,-38.599986 C 1612.104,-42.167726 1629.3198,-49.135706 1629.3198,-49.135706 L 1685.7483,-49.135706 z " />
            <rect
               id="rect10411"
               style="fill:url(#linearGradient10425);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.05200005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.48627451"
               y="-49.849987"
               x="1627.7484"
               ry="8.4049931"
               height="72.142853"
               width="62.857147" />
            <rect
               id="rect10413"
               style="opacity:0.57430731;fill:url(#radialGradient10427);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.05200005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.48627451"
               y="-49.849987"
               x="1627.7484"
               ry="8.4049931"
               height="72.142853"
               width="62.857147" />
          </g>
          <use
             height="1052.3622"
             width="744.09448"
             id="use12198"
             transform="translate(-12,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12200"
             transform="translate(10,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12202"
             transform="translate(-10,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12246"
             transform="translate(41.357001,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12248"
             transform="translate(29.357001,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12250"
             transform="translate(51.357001,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12252"
             transform="translate(31.357001,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12296"
             transform="translate(82.714002,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12298"
             transform="translate(70.714,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12300"
             transform="translate(92.714002,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12302"
             transform="translate(72.714002,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12346"
             transform="translate(124.071,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12348"
             transform="translate(112.071,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12350"
             transform="translate(134.071,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12352"
             transform="translate(114.071,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12396"
             transform="translate(165.428,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12398"
             transform="translate(153.428,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12400"
             transform="translate(175.428,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12402"
             transform="translate(155.428,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12446"
             transform="translate(206.785,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12448"
             transform="translate(194.785,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12450"
             transform="translate(216.785,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12452"
             transform="translate(196.785,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12496"
             transform="translate(248.14201,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12498"
             transform="translate(236.14201,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12500"
             transform="translate(258.14201,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12502"
             transform="translate(238.14201,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12546"
             transform="translate(289.49901,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12548"
             transform="translate(277.49901,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12550"
             transform="translate(299.49901,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12552"
             transform="translate(279.49901,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12596"
             transform="translate(330.85601,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12598"
             transform="translate(318.85601,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12600"
             transform="translate(340.85601,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12602"
             transform="translate(320.85601,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12646"
             transform="translate(372.21301,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12648"
             transform="translate(360.21301,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12650"
             transform="translate(382.21301,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12652"
             transform="translate(362.21301,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12696"
             transform="translate(413.57001,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12698"
             transform="translate(401.57001,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12700"
             transform="translate(423.57001,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12702"
             transform="translate(403.57001,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12746"
             transform="translate(454.92701,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12748"
             transform="translate(442.92701,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12750"
             transform="translate(464.92701,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12752"
             transform="translate(444.92701,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12796"
             transform="translate(496.28401,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12798"
             transform="translate(484.28401,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12800"
             transform="translate(506.28401,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12802"
             transform="translate(486.28401,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12846"
             transform="translate(537.64101,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12848"
             transform="translate(525.64101,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12850"
             transform="translate(547.64101,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12852"
             transform="translate(527.64101,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             id="use12896"
             transform="translate(578.99801,0)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0"
             width="744.09448"
             height="1052.3622" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12898"
             transform="translate(566.99801,43.388547)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12900"
             transform="translate(588.99801,86.777093)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
          <use
             height="1052.3622"
             width="744.09448"
             id="use12902"
             transform="translate(568.99801,130.16564)"
             xlink:href="#g10399"
             inkscape:tiled-clone-of="#g10399"
             y="0"
             x="0" />
        </g>
        <use
           x="0"
           y="0"
           xlink:href="#g12946"
           id="use13015"
           transform="translate(0.2155042,231.65479)"
           width="744.09448"
           height="1052.3622" />
      </g>
      <use
         height="1052.3622"
         width="744.09448"
         transform="translate(0,464)"
         id="use13088"
         xlink:href="#g13017"
         y="0"
         x="0" />
      <use
         height="1052.3622"
         width="744.09448"
         transform="translate(0,464)"
         id="use13092"
         xlink:href="#use13088"
         y="0"
         x="0" />
    </g>
    <rect
       style="opacity:0.56000005;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00399995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
       id="rect14859"
       width="206.01738"
       height="325.14307"
       x="465.29099"
       y="-110.86518" />
    <g
       id="g13828"
       transform="translate(-15.959758,211.05665)">
      <g
         transform="matrix(0.999363,-3.5686598e-2,3.5686598e-2,0.999363,181.8925,22.765788)"
         id="g13564">
        <g
           id="g13488"
           style="opacity:0.46840001"
           transform="translate(0,280)">
          <path
             id="path13450"
             style="opacity:0.6;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 534.52348,480.18535 L 539.20115,480.18535 C 544.39703,480.18535 548.57999,484.36832 548.57999,489.5642 L 548.57999,494.45068 C 548.57999,501.47554 549.20852,503.82953 539.20115,503.82953 L 534.52348,503.82953 C 525.20962,503.82953 525.14463,501.01829 525.14463,494.45068 L 525.14463,489.5642 C 525.14463,484.36832 529.3276,480.18535 534.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 504.52348,480.18535 L 509.20115,480.18535 C 514.39703,480.18535 518.57999,484.36832 518.57999,489.5642 L 518.57999,494.45068 C 518.57999,501.47554 519.20852,503.82953 509.20115,503.82953 L 504.52348,503.82953 C 495.20962,503.82953 495.14463,501.01829 495.14463,494.45068 L 495.14463,489.5642 C 495.14463,484.36832 499.3276,480.18535 504.52348,480.18535 z "
             style="opacity:1;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13462" />
          <path
             id="path13464"
             style="opacity:0.6;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 474.52348,480.18535 L 479.20115,480.18535 C 484.39703,480.18535 488.57999,484.36832 488.57999,489.5642 L 488.57999,494.45068 C 488.57999,501.47554 489.20852,503.82953 479.20115,503.82953 L 474.52348,503.82953 C 465.20962,503.82953 465.14463,501.01829 465.14463,494.45068 L 465.14463,489.5642 C 465.14463,484.36832 469.3276,480.18535 474.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 444.52348,480.18535 L 449.20115,480.18535 C 454.39703,480.18535 458.57999,484.36832 458.57999,489.5642 L 458.57999,494.45068 C 458.57999,501.47554 459.20852,503.82953 449.20115,503.82953 L 444.52348,503.82953 C 435.20962,503.82953 435.14463,501.01829 435.14463,494.45068 L 435.14463,489.5642 C 435.14463,484.36832 439.3276,480.18535 444.52348,480.18535 z "
             style="opacity:0.2;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13466" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 414.52348,480.18535 L 419.20115,480.18535 C 424.39703,480.18535 428.57999,484.36832 428.57999,489.5642 L 428.57999,494.45068 C 428.57999,501.47554 429.20852,503.82953 419.20115,503.82953 L 414.52348,503.82953 C 405.20962,503.82953 405.14463,501.01829 405.14463,494.45068 L 405.14463,489.5642 C 405.14463,484.36832 409.3276,480.18535 414.52348,480.18535 z "
             style="opacity:0.6;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13468" />
          <path
             id="path13470"
             style="opacity:1;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 384.52348,480.18535 L 389.20115,480.18535 C 394.39703,480.18535 398.57999,484.36832 398.57999,489.5642 L 398.57999,494.45068 C 398.57999,501.47554 399.20852,503.82953 389.20115,503.82953 L 384.52348,503.82953 C 375.20962,503.82953 375.14463,501.01829 375.14463,494.45068 L 375.14463,489.5642 C 375.14463,484.36832 379.3276,480.18535 384.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 354.52348,480.18535 L 359.20115,480.18535 C 364.39703,480.18535 368.57999,484.36832 368.57999,489.5642 L 368.57999,494.45068 C 368.57999,501.47554 369.20852,503.82953 359.20115,503.82953 L 354.52348,503.82953 C 345.20962,503.82953 345.14463,501.01829 345.14463,494.45068 L 345.14463,489.5642 C 345.14463,484.36832 349.3276,480.18535 354.52348,480.18535 z "
             style="opacity:0.6;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13472" />
          <path
             id="path13474"
             style="opacity:0.2;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 324.52348,480.18535 L 329.20115,480.18535 C 334.39703,480.18535 338.57999,484.36832 338.57999,489.5642 L 338.57999,494.45068 C 338.57999,501.47554 339.20852,503.82953 329.20115,503.82953 L 324.52348,503.82953 C 315.20962,503.82953 315.14463,501.01829 315.14463,494.45068 L 315.14463,489.5642 C 315.14463,484.36832 319.3276,480.18535 324.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             id="path13476"
             style="opacity:0.6;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 294.52348,480.18535 L 299.20115,480.18535 C 304.39703,480.18535 308.57999,484.36832 308.57999,489.5642 L 308.57999,494.45068 C 308.57999,501.47554 309.20852,503.82953 299.20115,503.82953 L 294.52348,503.82953 C 285.20962,503.82953 285.14463,501.01829 285.14463,494.45068 L 285.14463,489.5642 C 285.14463,484.36832 289.3276,480.18535 294.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 264.52348,480.18535 L 269.20115,480.18535 C 274.39703,480.18535 278.57999,484.36832 278.57999,489.5642 L 278.57999,494.45068 C 278.57999,501.47554 279.20852,503.82953 269.20115,503.82953 L 264.52348,503.82953 C 255.20962,503.82953 255.14463,501.01829 255.14463,494.45068 L 255.14463,489.5642 C 255.14463,484.36832 259.3276,480.18535 264.52348,480.18535 z "
             style="opacity:1;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13478" />
          <path
             id="path13480"
             style="opacity:0.6;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 234.52348,480.18535 L 239.20115,480.18535 C 244.39703,480.18535 248.57999,484.36832 248.57999,489.5642 L 248.57999,494.45068 C 248.57999,501.47554 249.20852,503.82953 239.20115,503.82953 L 234.52348,503.82953 C 225.20962,503.82953 225.14463,501.01829 225.14463,494.45068 L 225.14463,489.5642 C 225.14463,484.36832 229.3276,480.18535 234.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 204.52348,480.18535 L 209.20115,480.18535 C 214.39703,480.18535 218.57999,484.36832 218.57999,489.5642 L 218.57999,494.45068 C 218.57999,501.47554 219.20852,503.82953 209.20115,503.82953 L 204.52348,503.82953 C 195.20962,503.82953 195.14463,501.01829 195.14463,494.45068 L 195.14463,489.5642 C 195.14463,484.36832 199.3276,480.18535 204.52348,480.18535 z "
             style="opacity:0.2;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13482" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 174.52348,480.18535 L 179.20115,480.18535 C 184.39703,480.18535 188.57999,484.36832 188.57999,489.5642 L 188.57999,494.45068 C 188.57999,501.47554 189.20852,503.82953 179.20115,503.82953 L 174.52348,503.82953 C 165.20962,503.82953 165.14463,501.01829 165.14463,494.45068 L 165.14463,489.5642 C 165.14463,484.36832 169.3276,480.18535 174.52348,480.18535 z "
             style="opacity:0.6;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13484" />
          <path
             id="path13486"
             style="opacity:1;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 144.52348,480.18535 L 149.20115,480.18535 C 154.39703,480.18535 158.57999,484.36832 158.57999,489.5642 L 158.57999,494.45068 C 158.57999,501.47554 159.20852,503.82953 149.20115,503.82953 L 144.52348,503.82953 C 135.20962,503.82953 135.14463,501.01829 135.14463,494.45068 L 135.14463,489.5642 C 135.14463,484.36832 139.3276,480.18535 144.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
        </g>
        <g
           transform="translate(14,308)"
           style="opacity:0.46840001;fill:#ffccaa;fill-opacity:1"
           id="g13504">
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 534.52348,480.18535 L 539.20115,480.18535 C 544.39703,480.18535 548.57999,484.36832 548.57999,489.5642 L 548.57999,494.45068 C 548.57999,501.47554 549.20852,503.82953 539.20115,503.82953 L 534.52348,503.82953 C 525.20962,503.82953 525.14463,501.01829 525.14463,494.45068 L 525.14463,489.5642 C 525.14463,484.36832 529.3276,480.18535 534.52348,480.18535 z "
             style="opacity:0.6;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13506" />
          <path
             id="path13508"
             style="opacity:1;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 504.52348,480.18535 L 509.20115,480.18535 C 514.39703,480.18535 518.57999,484.36832 518.57999,489.5642 L 518.57999,494.45068 C 518.57999,501.47554 519.20852,503.82953 509.20115,503.82953 L 504.52348,503.82953 C 495.20962,503.82953 495.14463,501.01829 495.14463,494.45068 L 495.14463,489.5642 C 495.14463,484.36832 499.3276,480.18535 504.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 474.52348,480.18535 L 479.20115,480.18535 C 484.39703,480.18535 488.57999,484.36832 488.57999,489.5642 L 488.57999,494.45068 C 488.57999,501.47554 489.20852,503.82953 479.20115,503.82953 L 474.52348,503.82953 C 465.20962,503.82953 465.14463,501.01829 465.14463,494.45068 L 465.14463,489.5642 C 465.14463,484.36832 469.3276,480.18535 474.52348,480.18535 z "
             style="opacity:0.6;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13510" />
          <path
             id="path13512"
             style="opacity:0.2;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 444.52348,480.18535 L 449.20115,480.18535 C 454.39703,480.18535 458.57999,484.36832 458.57999,489.5642 L 458.57999,494.45068 C 458.57999,501.47554 459.20852,503.82953 449.20115,503.82953 L 444.52348,503.82953 C 435.20962,503.82953 435.14463,501.01829 435.14463,494.45068 L 435.14463,489.5642 C 435.14463,484.36832 439.3276,480.18535 444.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             id="path13514"
             style="opacity:0.6;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 414.52348,480.18535 L 419.20115,480.18535 C 424.39703,480.18535 428.57999,484.36832 428.57999,489.5642 L 428.57999,494.45068 C 428.57999,501.47554 429.20852,503.82953 419.20115,503.82953 L 414.52348,503.82953 C 405.20962,503.82953 405.14463,501.01829 405.14463,494.45068 L 405.14463,489.5642 C 405.14463,484.36832 409.3276,480.18535 414.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 384.52348,480.18535 L 389.20115,480.18535 C 394.39703,480.18535 398.57999,484.36832 398.57999,489.5642 L 398.57999,494.45068 C 398.57999,501.47554 399.20852,503.82953 389.20115,503.82953 L 384.52348,503.82953 C 375.20962,503.82953 375.14463,501.01829 375.14463,494.45068 L 375.14463,489.5642 C 375.14463,484.36832 379.3276,480.18535 384.52348,480.18535 z "
             style="opacity:1;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13516" />
          <path
             id="path13518"
             style="opacity:0.6;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 354.52348,480.18535 L 359.20115,480.18535 C 364.39703,480.18535 368.57999,484.36832 368.57999,489.5642 L 368.57999,494.45068 C 368.57999,501.47554 369.20852,503.82953 359.20115,503.82953 L 354.52348,503.82953 C 345.20962,503.82953 345.14463,501.01829 345.14463,494.45068 L 345.14463,489.5642 C 345.14463,484.36832 349.3276,480.18535 354.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 324.52348,480.18535 L 329.20115,480.18535 C 334.39703,480.18535 338.57999,484.36832 338.57999,489.5642 L 338.57999,494.45068 C 338.57999,501.47554 339.20852,503.82953 329.20115,503.82953 L 324.52348,503.82953 C 315.20962,503.82953 315.14463,501.01829 315.14463,494.45068 L 315.14463,489.5642 C 315.14463,484.36832 319.3276,480.18535 324.52348,480.18535 z "
             style="opacity:0.2;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13520" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 294.52348,480.18535 L 299.20115,480.18535 C 304.39703,480.18535 308.57999,484.36832 308.57999,489.5642 L 308.57999,494.45068 C 308.57999,501.47554 309.20852,503.82953 299.20115,503.82953 L 294.52348,503.82953 C 285.20962,503.82953 285.14463,501.01829 285.14463,494.45068 L 285.14463,489.5642 C 285.14463,484.36832 289.3276,480.18535 294.52348,480.18535 z "
             style="opacity:0.6;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13522" />
          <path
             id="path13524"
             style="opacity:1;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 264.52348,480.18535 L 269.20115,480.18535 C 274.39703,480.18535 278.57999,484.36832 278.57999,489.5642 L 278.57999,494.45068 C 278.57999,501.47554 279.20852,503.82953 269.20115,503.82953 L 264.52348,503.82953 C 255.20962,503.82953 255.14463,501.01829 255.14463,494.45068 L 255.14463,489.5642 C 255.14463,484.36832 259.3276,480.18535 264.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 234.52348,480.18535 L 239.20115,480.18535 C 244.39703,480.18535 248.57999,484.36832 248.57999,489.5642 L 248.57999,494.45068 C 248.57999,501.47554 249.20852,503.82953 239.20115,503.82953 L 234.52348,503.82953 C 225.20962,503.82953 225.14463,501.01829 225.14463,494.45068 L 225.14463,489.5642 C 225.14463,484.36832 229.3276,480.18535 234.52348,480.18535 z "
             style="opacity:0.6;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13526" />
          <path
             id="path13528"
             style="opacity:0.2;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 204.52348,480.18535 L 209.20115,480.18535 C 214.39703,480.18535 218.57999,484.36832 218.57999,489.5642 L 218.57999,494.45068 C 218.57999,501.47554 219.20852,503.82953 209.20115,503.82953 L 204.52348,503.82953 C 195.20962,503.82953 195.14463,501.01829 195.14463,494.45068 L 195.14463,489.5642 C 195.14463,484.36832 199.3276,480.18535 204.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             id="path13530"
             style="opacity:0.6;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 174.52348,480.18535 L 179.20115,480.18535 C 184.39703,480.18535 188.57999,484.36832 188.57999,489.5642 L 188.57999,494.45068 C 188.57999,501.47554 189.20852,503.82953 179.20115,503.82953 L 174.52348,503.82953 C 165.20962,503.82953 165.14463,501.01829 165.14463,494.45068 L 165.14463,489.5642 C 165.14463,484.36832 169.3276,480.18535 174.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 144.52348,480.18535 L 149.20115,480.18535 C 154.39703,480.18535 158.57999,484.36832 158.57999,489.5642 L 158.57999,494.45068 C 158.57999,501.47554 159.20852,503.82953 149.20115,503.82953 L 144.52348,503.82953 C 135.20962,503.82953 135.14463,501.01829 135.14463,494.45068 L 135.14463,489.5642 C 135.14463,484.36832 139.3276,480.18535 144.52348,480.18535 z "
             style="opacity:1;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13532" />
        </g>
        <g
           id="g13534"
           style="opacity:0.46840001;fill:#aaffaa;fill-opacity:1"
           transform="translate(2,336)">
          <path
             id="path13536"
             style="opacity:0.6;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 534.52348,480.18535 L 539.20115,480.18535 C 544.39703,480.18535 548.57999,484.36832 548.57999,489.5642 L 548.57999,494.45068 C 548.57999,501.47554 549.20852,503.82953 539.20115,503.82953 L 534.52348,503.82953 C 525.20962,503.82953 525.14463,501.01829 525.14463,494.45068 L 525.14463,489.5642 C 525.14463,484.36832 529.3276,480.18535 534.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 504.52348,480.18535 L 509.20115,480.18535 C 514.39703,480.18535 518.57999,484.36832 518.57999,489.5642 L 518.57999,494.45068 C 518.57999,501.47554 519.20852,503.82953 509.20115,503.82953 L 504.52348,503.82953 C 495.20962,503.82953 495.14463,501.01829 495.14463,494.45068 L 495.14463,489.5642 C 495.14463,484.36832 499.3276,480.18535 504.52348,480.18535 z "
             style="opacity:1;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13538" />
          <path
             id="path13540"
             style="opacity:0.6;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 474.52348,480.18535 L 479.20115,480.18535 C 484.39703,480.18535 488.57999,484.36832 488.57999,489.5642 L 488.57999,494.45068 C 488.57999,501.47554 489.20852,503.82953 479.20115,503.82953 L 474.52348,503.82953 C 465.20962,503.82953 465.14463,501.01829 465.14463,494.45068 L 465.14463,489.5642 C 465.14463,484.36832 469.3276,480.18535 474.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 444.52348,480.18535 L 449.20115,480.18535 C 454.39703,480.18535 458.57999,484.36832 458.57999,489.5642 L 458.57999,494.45068 C 458.57999,501.47554 459.20852,503.82953 449.20115,503.82953 L 444.52348,503.82953 C 435.20962,503.82953 435.14463,501.01829 435.14463,494.45068 L 435.14463,489.5642 C 435.14463,484.36832 439.3276,480.18535 444.52348,480.18535 z "
             style="opacity:0.2;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13542" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 414.52348,480.18535 L 419.20115,480.18535 C 424.39703,480.18535 428.57999,484.36832 428.57999,489.5642 L 428.57999,494.45068 C 428.57999,501.47554 429.20852,503.82953 419.20115,503.82953 L 414.52348,503.82953 C 405.20962,503.82953 405.14463,501.01829 405.14463,494.45068 L 405.14463,489.5642 C 405.14463,484.36832 409.3276,480.18535 414.52348,480.18535 z "
             style="opacity:0.6;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13544" />
          <path
             id="path13546"
             style="opacity:1;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 384.52348,480.18535 L 389.20115,480.18535 C 394.39703,480.18535 398.57999,484.36832 398.57999,489.5642 L 398.57999,494.45068 C 398.57999,501.47554 399.20852,503.82953 389.20115,503.82953 L 384.52348,503.82953 C 375.20962,503.82953 375.14463,501.01829 375.14463,494.45068 L 375.14463,489.5642 C 375.14463,484.36832 379.3276,480.18535 384.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 354.52348,480.18535 L 359.20115,480.18535 C 364.39703,480.18535 368.57999,484.36832 368.57999,489.5642 L 368.57999,494.45068 C 368.57999,501.47554 369.20852,503.82953 359.20115,503.82953 L 354.52348,503.82953 C 345.20962,503.82953 345.14463,501.01829 345.14463,494.45068 L 345.14463,489.5642 C 345.14463,484.36832 349.3276,480.18535 354.52348,480.18535 z "
             style="opacity:0.6;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13548" />
          <path
             id="path13550"
             style="opacity:0.2;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 324.52348,480.18535 L 329.20115,480.18535 C 334.39703,480.18535 338.57999,484.36832 338.57999,489.5642 L 338.57999,494.45068 C 338.57999,501.47554 339.20852,503.82953 329.20115,503.82953 L 324.52348,503.82953 C 315.20962,503.82953 315.14463,501.01829 315.14463,494.45068 L 315.14463,489.5642 C 315.14463,484.36832 319.3276,480.18535 324.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             id="path13552"
             style="opacity:0.6;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 294.52348,480.18535 L 299.20115,480.18535 C 304.39703,480.18535 308.57999,484.36832 308.57999,489.5642 L 308.57999,494.45068 C 308.57999,501.47554 309.20852,503.82953 299.20115,503.82953 L 294.52348,503.82953 C 285.20962,503.82953 285.14463,501.01829 285.14463,494.45068 L 285.14463,489.5642 C 285.14463,484.36832 289.3276,480.18535 294.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 264.52348,480.18535 L 269.20115,480.18535 C 274.39703,480.18535 278.57999,484.36832 278.57999,489.5642 L 278.57999,494.45068 C 278.57999,501.47554 279.20852,503.82953 269.20115,503.82953 L 264.52348,503.82953 C 255.20962,503.82953 255.14463,501.01829 255.14463,494.45068 L 255.14463,489.5642 C 255.14463,484.36832 259.3276,480.18535 264.52348,480.18535 z "
             style="opacity:1;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13554" />
          <path
             id="path13556"
             style="opacity:0.6;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 234.52348,480.18535 L 239.20115,480.18535 C 244.39703,480.18535 248.57999,484.36832 248.57999,489.5642 L 248.57999,494.45068 C 248.57999,501.47554 249.20852,503.82953 239.20115,503.82953 L 234.52348,503.82953 C 225.20962,503.82953 225.14463,501.01829 225.14463,494.45068 L 225.14463,489.5642 C 225.14463,484.36832 229.3276,480.18535 234.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 204.52348,480.18535 L 209.20115,480.18535 C 214.39703,480.18535 218.57999,484.36832 218.57999,489.5642 L 218.57999,494.45068 C 218.57999,501.47554 219.20852,503.82953 209.20115,503.82953 L 204.52348,503.82953 C 195.20962,503.82953 195.14463,501.01829 195.14463,494.45068 L 195.14463,489.5642 C 195.14463,484.36832 199.3276,480.18535 204.52348,480.18535 z "
             style="opacity:0.2;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13558" />
          <path
             sodipodi:nodetypes="ccccccccc"
             d="M 174.52348,480.18535 L 179.20115,480.18535 C 184.39703,480.18535 188.57999,484.36832 188.57999,489.5642 L 188.57999,494.45068 C 188.57999,501.47554 189.20852,503.82953 179.20115,503.82953 L 174.52348,503.82953 C 165.20962,503.82953 165.14463,501.01829 165.14463,494.45068 L 165.14463,489.5642 C 165.14463,484.36832 169.3276,480.18535 174.52348,480.18535 z "
             style="opacity:0.6;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             id="path13560" />
          <path
             id="path13562"
             style="opacity:1;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
             d="M 144.52348,480.18535 L 149.20115,480.18535 C 154.39703,480.18535 158.57999,484.36832 158.57999,489.5642 L 158.57999,494.45068 C 158.57999,501.47554 159.20852,503.82953 149.20115,503.82953 L 144.52348,503.82953 C 135.20962,503.82953 135.14463,501.01829 135.14463,494.45068 L 135.14463,489.5642 C 135.14463,484.36832 139.3276,480.18535 144.52348,480.18535 z "
             sodipodi:nodetypes="ccccccccc" />
        </g>
      </g>
      <g
         transform="translate(-42.6308,-729.37241)"
         id="g13790">
        <path
           id="path13619"
           style="opacity:0.28104003;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 366.03204,1508.3394 L 370.70673,1508.1725 C 375.8993,1507.9871 380.22887,1512.0181 380.4143,1517.2107 L 380.58868,1522.0941 C 380.83937,1529.1144 381.55151,1531.4445 371.55051,1531.8016 L 366.87582,1531.9686 C 357.56789,1532.3009 357.40262,1529.4938 357.16825,1522.9304 L 356.99386,1518.047 C 356.80844,1512.8544 360.83947,1508.5249 366.03204,1508.3394 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 336.05115,1509.41 L 340.72584,1509.2431 C 345.91841,1509.0577 350.24798,1513.0887 350.43341,1518.2813 L 350.60779,1523.1647 C 350.85848,1530.185 351.57062,1532.5151 341.56962,1532.8722 L 336.89493,1533.0392 C 327.587,1533.3715 327.42173,1530.5644 327.18736,1524.001 L 327.01297,1519.1176 C 326.82755,1513.925 330.85858,1509.5955 336.05115,1509.41 z "
           style="opacity:0.09367999;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13621" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 306.07026,1510.4806 L 310.74495,1510.3137 C 315.93752,1510.1283 320.26709,1514.1593 320.45252,1519.3519 L 320.6269,1524.2353 C 320.87759,1531.2556 321.58973,1533.5857 311.58873,1533.9428 L 306.91404,1534.1098 C 297.60611,1534.4421 297.44084,1531.635 297.20647,1525.0716 L 297.03208,1520.1882 C 296.84666,1514.9956 300.87769,1510.6661 306.07026,1510.4806 z "
           style="opacity:0.28104003;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13623" />
        <path
           id="path13625"
           style="opacity:0.46840001;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 276.08937,1511.5512 L 280.76406,1511.3843 C 285.95663,1511.1989 290.2862,1515.2299 290.47163,1520.4225 L 290.64601,1525.3059 C 290.8967,1532.3262 291.60884,1534.6563 281.60784,1535.0134 L 276.93315,1535.1804 C 267.62522,1535.5127 267.45995,1532.7056 267.22558,1526.1422 L 267.05119,1521.2588 C 266.86577,1516.0662 270.8968,1511.7367 276.08937,1511.5512 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 246.10848,1512.6218 L 250.78317,1512.4549 C 255.97574,1512.2695 260.30531,1516.3005 260.49074,1521.4931 L 260.66512,1526.3764 C 260.91581,1533.3968 261.62795,1535.7269 251.62695,1536.084 L 246.95226,1536.251 C 237.64433,1536.5833 237.47906,1533.7762 237.24469,1527.2128 L 237.0703,1522.3294 C 236.88488,1517.1368 240.91591,1512.8073 246.10848,1512.6218 z "
           style="opacity:0.28104003;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13627" />
        <path
           id="path13629"
           style="opacity:0.09367999;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 216.12759,1513.6924 L 220.80228,1513.5255 C 225.99485,1513.3401 230.32442,1517.3711 230.50985,1522.5637 L 230.68423,1527.447 C 230.93492,1534.4674 231.64706,1536.7975 221.64606,1537.1546 L 216.97137,1537.3216 C 207.66344,1537.6539 207.49817,1534.8468 207.2638,1528.2834 L 207.08941,1523.4 C 206.90399,1518.2074 210.93502,1513.8779 216.12759,1513.6924 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           id="path13631"
           style="opacity:0.28104003;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 186.1467,1514.763 L 190.82139,1514.5961 C 196.01396,1514.4107 200.34353,1518.4417 200.52896,1523.6343 L 200.70334,1528.5176 C 200.95403,1535.538 201.66617,1537.8681 191.66517,1538.2252 L 186.99048,1538.3921 C 177.68255,1538.7245 177.51728,1535.9174 177.28291,1529.354 L 177.10852,1524.4706 C 176.9231,1519.278 180.95413,1514.9485 186.1467,1514.763 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 156.16581,1515.8336 L 160.8405,1515.6667 C 166.03307,1515.4813 170.36264,1519.5123 170.54807,1524.7049 L 170.72245,1529.5882 C 170.97314,1536.6086 171.68528,1538.9387 161.68428,1539.2958 L 157.00959,1539.4627 C 147.70166,1539.7951 147.53639,1536.988 147.30202,1530.4246 L 147.12763,1525.5412 C 146.94221,1520.3486 150.97324,1516.0191 156.16581,1515.8336 z "
           style="opacity:0.46840001;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13633" />
        <path
           id="path13635"
           style="opacity:0.28104003;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 126.18492,1516.9042 L 130.85961,1516.7373 C 136.05218,1516.5519 140.38175,1520.5829 140.56718,1525.7755 L 140.74156,1530.6588 C 140.99225,1537.6792 141.70439,1540.0093 131.70339,1540.3664 L 127.0287,1540.5333 C 117.72077,1540.8657 117.5555,1538.0586 117.32113,1531.4952 L 117.14674,1526.6118 C 116.96132,1521.4192 120.99235,1517.0897 126.18492,1516.9042 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 96.20403,1517.9748 L 100.87872,1517.8079 C 106.07129,1517.6225 110.40086,1521.6535 110.58629,1526.8461 L 110.76067,1531.7294 C 111.01136,1538.7498 111.7235,1541.0799 101.7225,1541.437 L 97.04781,1541.6039 C 87.739883,1541.9363 87.574611,1539.1292 87.340236,1532.5658 L 87.165854,1527.6824 C 86.98043,1522.4898 91.01146,1518.1602 96.20403,1517.9748 z "
           style="opacity:0.09367999;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13637" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 66.22314,1519.0454 L 70.89783,1518.8785 C 76.090401,1518.6931 80.419972,1522.7241 80.605395,1527.9167 L 80.779777,1532.8 C 81.030471,1539.8204 81.742606,1542.1505 71.741611,1542.5076 L 67.06692,1542.6745 C 57.758993,1543.0069 57.593721,1540.1998 57.359346,1533.6364 L 57.184964,1528.753 C 56.99954,1523.5604 61.03057,1519.2308 66.22314,1519.0454 z "
           style="opacity:0.28104003;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13639" />
        <path
           id="path13641"
           style="opacity:0.46840001;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 36.24225,1520.116 L 40.91694,1519.9491 C 46.109511,1519.7637 50.439082,1523.7947 50.624505,1528.9873 L 50.798887,1533.8706 C 51.049581,1540.891 51.761716,1543.2211 41.760721,1543.5782 L 37.08603,1543.7451 C 27.778103,1544.0775 27.612831,1541.2704 27.378456,1534.707 L 27.204074,1529.8236 C 27.01865,1524.631 31.04968,1520.3014 36.24225,1520.116 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 381.02234,1535.822 L 385.69703,1535.6551 C 390.8896,1535.4697 395.21917,1539.5007 395.4046,1544.6933 L 395.57898,1549.5767 C 395.82967,1556.597 396.54181,1558.9271 386.54081,1559.2842 L 381.86612,1559.4512 C 372.55819,1559.7835 372.39292,1556.9764 372.15855,1550.413 L 371.98416,1545.5296 C 371.79874,1540.337 375.82977,1536.0075 381.02234,1535.822 z "
           style="opacity:0.28104003;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13649" />
        <path
           id="path13651"
           style="opacity:0.09367999;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 351.04145,1536.8926 L 355.71614,1536.7257 C 360.90871,1536.5403 365.23828,1540.5713 365.42371,1545.7639 L 365.59809,1550.6473 C 365.84878,1557.6676 366.56092,1559.9977 356.55992,1560.3548 L 351.88523,1560.5218 C 342.5773,1560.8541 342.41203,1558.047 342.17766,1551.4836 L 342.00327,1546.6002 C 341.81785,1541.4076 345.84888,1537.0781 351.04145,1536.8926 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           id="path13653"
           style="opacity:0.28104003;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 321.06056,1537.9632 L 325.73525,1537.7963 C 330.92782,1537.6109 335.25739,1541.6419 335.44282,1546.8345 L 335.6172,1551.7179 C 335.86789,1558.7382 336.58003,1561.0683 326.57903,1561.4254 L 321.90434,1561.5924 C 312.59641,1561.9247 312.43114,1559.1176 312.19677,1552.5542 L 312.02238,1547.6708 C 311.83696,1542.4782 315.86799,1538.1487 321.06056,1537.9632 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 291.07967,1539.0338 L 295.75436,1538.8669 C 300.94693,1538.6815 305.2765,1542.7125 305.46193,1547.9051 L 305.63631,1552.7885 C 305.887,1559.8088 306.59914,1562.1389 296.59814,1562.496 L 291.92345,1562.663 C 282.61552,1562.9953 282.45025,1560.1882 282.21588,1553.6248 L 282.04149,1548.7414 C 281.85607,1543.5488 285.8871,1539.2193 291.07967,1539.0338 z "
           style="opacity:0.46840001;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13655" />
        <path
           id="path13657"
           style="opacity:0.28104003;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 261.09878,1540.1044 L 265.77347,1539.9375 C 270.96604,1539.7521 275.29561,1543.7831 275.48104,1548.9757 L 275.65542,1553.859 C 275.90611,1560.8794 276.61825,1563.2095 266.61725,1563.5666 L 261.94256,1563.7336 C 252.63463,1564.0659 252.46936,1561.2588 252.23499,1554.6954 L 252.0606,1549.812 C 251.87518,1544.6194 255.90621,1540.2899 261.09878,1540.1044 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 231.11789,1541.175 L 235.79258,1541.0081 C 240.98515,1540.8227 245.31472,1544.8537 245.50015,1550.0463 L 245.67453,1554.9296 C 245.92522,1561.95 246.63736,1564.2801 236.63636,1564.6372 L 231.96167,1564.8042 C 222.65374,1565.1365 222.48847,1562.3294 222.2541,1555.766 L 222.07971,1550.8826 C 221.89429,1545.69 225.92532,1541.3605 231.11789,1541.175 z "
           style="opacity:0.09367999;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13659" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 201.137,1542.2456 L 205.81169,1542.0787 C 211.00426,1541.8933 215.33383,1545.9243 215.51926,1551.1169 L 215.69364,1556.0002 C 215.94433,1563.0206 216.65647,1565.3507 206.65547,1565.7078 L 201.98078,1565.8747 C 192.67285,1566.2071 192.50758,1563.4 192.27321,1556.8366 L 192.09882,1551.9532 C 191.9134,1546.7606 195.94443,1542.4311 201.137,1542.2456 z "
           style="opacity:0.28104003;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13661" />
        <path
           id="path13663"
           style="opacity:0.46840001;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 171.15611,1543.3162 L 175.8308,1543.1493 C 181.02337,1542.9639 185.35294,1546.9949 185.53837,1552.1875 L 185.71275,1557.0708 C 185.96344,1564.0912 186.67558,1566.4213 176.67458,1566.7784 L 171.99989,1566.9453 C 162.69196,1567.2777 162.52669,1564.4706 162.29232,1557.9072 L 162.11793,1553.0238 C 161.93251,1547.8312 165.96354,1543.5017 171.15611,1543.3162 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 141.17522,1544.3868 L 145.84991,1544.2199 C 151.04248,1544.0345 155.37205,1548.0655 155.55748,1553.2581 L 155.73186,1558.1414 C 155.98255,1565.1618 156.69469,1567.4919 146.69369,1567.849 L 142.019,1568.0159 C 132.71107,1568.3483 132.5458,1565.5412 132.31143,1558.9778 L 132.13704,1554.0944 C 131.95162,1548.9018 135.98265,1544.5723 141.17522,1544.3868 z "
           style="opacity:0.28104003;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13665" />
        <path
           id="path13667"
           style="opacity:0.09367999;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 111.19433,1545.4574 L 115.86902,1545.2905 C 121.06159,1545.1051 125.39116,1549.1361 125.57659,1554.3287 L 125.75097,1559.212 C 126.00166,1566.2324 126.7138,1568.5625 116.7128,1568.9196 L 112.03811,1569.0865 C 102.73018,1569.4189 102.56491,1566.6118 102.33054,1560.0484 L 102.15615,1555.165 C 101.97073,1549.9724 106.00176,1545.6428 111.19433,1545.4574 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           id="path13669"
           style="opacity:0.28104003;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 81.21344,1546.528 L 85.88813,1546.3611 C 91.080701,1546.1757 95.410272,1550.2067 95.595695,1555.3993 L 95.770077,1560.2826 C 96.020771,1567.303 96.732906,1569.6331 86.731911,1569.9902 L 82.05722,1570.1571 C 72.749293,1570.4895 72.584021,1567.6824 72.349646,1561.119 L 72.175264,1556.2356 C 71.98984,1551.043 76.02087,1546.7134 81.21344,1546.528 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 51.23255,1547.5986 L 55.90724,1547.4317 C 61.099811,1547.2463 65.429382,1551.2773 65.614805,1556.4699 L 65.789187,1561.3532 C 66.039881,1568.3736 66.752016,1570.7037 56.751021,1571.0608 L 52.07633,1571.2277 C 42.768403,1571.5601 42.603131,1568.753 42.368756,1562.1896 L 42.194374,1557.3062 C 42.00895,1552.1136 46.03998,1547.784 51.23255,1547.5986 z "
           style="opacity:0.46840001;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13671" />
        <path
           id="path13679"
           style="opacity:0.28104003;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 370.02921,1564.2324 L 374.7039,1564.0655 C 379.89647,1563.8801 384.22604,1567.9111 384.41147,1573.1037 L 384.58585,1577.9871 C 384.83654,1585.0074 385.54868,1587.3375 375.54768,1587.6946 L 370.87299,1587.8616 C 361.56506,1588.1939 361.39979,1585.3868 361.16542,1578.8234 L 360.99103,1573.94 C 360.80561,1568.7474 364.83664,1564.4179 370.02921,1564.2324 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 340.04832,1565.303 L 344.72301,1565.1361 C 349.91558,1564.9507 354.24515,1568.9817 354.43058,1574.1743 L 354.60496,1579.0577 C 354.85565,1586.078 355.56779,1588.4081 345.56679,1588.7652 L 340.8921,1588.9322 C 331.58417,1589.2645 331.4189,1586.4574 331.18453,1579.894 L 331.01014,1575.0106 C 330.82472,1569.818 334.85575,1565.4885 340.04832,1565.303 z "
           style="opacity:0.09367999;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13681" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 310.06743,1566.3736 L 314.74212,1566.2067 C 319.93469,1566.0213 324.26426,1570.0523 324.44969,1575.2449 L 324.62407,1580.1283 C 324.87476,1587.1486 325.5869,1589.4787 315.5859,1589.8358 L 310.91121,1590.0028 C 301.60328,1590.3351 301.43801,1587.528 301.20364,1580.9646 L 301.02925,1576.0812 C 300.84383,1570.8886 304.87486,1566.5591 310.06743,1566.3736 z "
           style="opacity:0.28104003;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13683" />
        <path
           id="path13685"
           style="opacity:0.46840001;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 280.08654,1567.4442 L 284.76123,1567.2773 C 289.9538,1567.0919 294.28337,1571.1229 294.4688,1576.3155 L 294.64318,1581.1989 C 294.89387,1588.2192 295.60601,1590.5493 285.60501,1590.9064 L 280.93032,1591.0734 C 271.62239,1591.4057 271.45712,1588.5986 271.22275,1582.0352 L 271.04836,1577.1518 C 270.86294,1571.9592 274.89397,1567.6297 280.08654,1567.4442 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 250.10565,1568.5148 L 254.78034,1568.3479 C 259.97291,1568.1625 264.30248,1572.1935 264.48791,1577.3861 L 264.66229,1582.2694 C 264.91298,1589.2898 265.62512,1591.6199 255.62412,1591.977 L 250.94943,1592.144 C 241.6415,1592.4763 241.47623,1589.6692 241.24186,1583.1058 L 241.06747,1578.2224 C 240.88205,1573.0298 244.91308,1568.7003 250.10565,1568.5148 z "
           style="opacity:0.28104003;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13687" />
        <path
           id="path13689"
           style="opacity:0.09367999;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 220.12476,1569.5854 L 224.79945,1569.4185 C 229.99202,1569.2331 234.32159,1573.2641 234.50702,1578.4567 L 234.6814,1583.34 C 234.93209,1590.3604 235.64423,1592.6905 225.64323,1593.0476 L 220.96854,1593.2146 C 211.66061,1593.5469 211.49534,1590.7398 211.26097,1584.1764 L 211.08658,1579.293 C 210.90116,1574.1004 214.93219,1569.7709 220.12476,1569.5854 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           id="path13691"
           style="opacity:0.28104003;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 190.14387,1570.656 L 194.81856,1570.4891 C 200.01113,1570.3037 204.3407,1574.3347 204.52613,1579.5273 L 204.70051,1584.4106 C 204.9512,1591.431 205.66334,1593.7611 195.66234,1594.1182 L 190.98765,1594.2851 C 181.67972,1594.6175 181.51445,1591.8104 181.28008,1585.247 L 181.10569,1580.3636 C 180.92027,1575.171 184.9513,1570.8415 190.14387,1570.656 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 160.16298,1571.7266 L 164.83767,1571.5597 C 170.03024,1571.3743 174.35981,1575.4053 174.54524,1580.5979 L 174.71962,1585.4812 C 174.97031,1592.5016 175.68245,1594.8317 165.68145,1595.1888 L 161.00676,1595.3557 C 151.69883,1595.6881 151.53356,1592.881 151.29919,1586.3176 L 151.1248,1581.4342 C 150.93938,1576.2416 154.97041,1571.9121 160.16298,1571.7266 z "
           style="opacity:0.46840001;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13693" />
        <path
           id="path13695"
           style="opacity:0.28104003;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 130.18209,1572.7972 L 134.85678,1572.6303 C 140.04935,1572.4449 144.37892,1576.4759 144.56435,1581.6685 L 144.73873,1586.5518 C 144.98942,1593.5722 145.70156,1595.9023 135.70056,1596.2594 L 131.02587,1596.4263 C 121.71794,1596.7587 121.55267,1593.9516 121.3183,1587.3882 L 121.14391,1582.5048 C 120.95849,1577.3122 124.98952,1572.9827 130.18209,1572.7972 z "
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 100.2012,1573.8678 L 104.87589,1573.7009 C 110.06846,1573.5155 114.39803,1577.5465 114.58346,1582.7391 L 114.75784,1587.6224 C 115.00853,1594.6428 115.72067,1596.9729 105.71967,1597.33 L 101.04498,1597.4969 C 91.737053,1597.8293 91.571781,1595.0222 91.337406,1588.4588 L 91.163024,1583.5754 C 90.9776,1578.3828 95.00863,1574.0532 100.2012,1573.8678 z "
           style="opacity:0.09367999;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13697" />
        <path
           sodipodi:nodetypes="ccccccccc"
           d="M 70.22031,1574.9384 L 74.895,1574.7715 C 80.087571,1574.5861 84.417142,1578.6171 84.602565,1583.8097 L 84.776947,1588.693 C 85.027641,1595.7134 85.739776,1598.0435 75.738781,1598.4006 L 71.06409,1598.5675 C 61.756163,1598.8999 61.590891,1596.0928 61.356516,1589.5294 L 61.182134,1584.646 C 60.99671,1579.4534 65.02774,1575.1238 70.22031,1574.9384 z "
           style="opacity:0.28104003;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           id="path13699" />
        <path
           id="path13701"
           style="opacity:0.46840001;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
           d="M 40.23942,1576.009 L 44.91411,1575.8421 C 50.106681,1575.6567 54.436252,1579.6877 54.621675,1584.8803 L 54.796057,1589.7636 C 55.046751,1596.784 55.758886,1599.1141 45.757891,1599.4712 L 41.0832,1599.6381 C 31.775273,1599.9705 31.610001,1597.1634 31.375626,1590.6 L 31.201244,1585.7166 C 31.01582,1580.524 35.04685,1576.1944 40.23942,1576.009 z "
           sodipodi:nodetypes="ccccccccc" />
      </g>
    </g>
    <path
       id="rect2926"
       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline;opacity:0.5"
       d="M 88.52348,100.18535 L 649.20115,100.18535 C 654.39703,100.18535 658.57999,104.36832 658.57999,109.5642 L 658.57999,934.45068 C 658.57999,939.64657 654.39703,943.82953 649.20115,943.82953 L 88.52348,943.82953 C 83.3276,943.82953 79.14463,939.64657 79.14463,934.45068 L 79.14463,109.5642 C 79.14463,104.36832 83.3276,100.18535 88.52348,100.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <path
       id="path9394"
       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline;opacity:0.5"
       d="M 108.52348,380.18535 L 629.20115,380.18535 C 634.39703,380.18535 638.57999,384.36832 638.57999,389.5642 L 638.57999,494.45068 C 638.57999,499.64657 634.39703,503.82953 629.20115,503.82953 L 108.52348,503.82953 C 103.3276,503.82953 99.14463,499.64657 99.14463,494.45068 L 99.14463,389.5642 C 99.14463,384.36832 103.3276,380.18535 108.52348,380.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <g
       id="g13300"
       transform="translate(118.6177,6.2518548)">
      <path
         sodipodi:nodetypes="czzzzzzzzzzzzzz"
         style="opacity:0.5;fill:#f1ffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 1024.2205,85.100694 C 1004.2378,99.200104 1055.7104,54.492964 1018.6202,97.731164 C 981.53009,140.96936 974.3486,141.54947 991.38166,147.12432 C 1008.6133,152.76416 991.7092,170.03492 993.5126,185.07429 C 995.31601,200.11366 1023.3643,203.73311 1035.6265,198.71998 C 1047.8888,193.70686 1033.591,183.86785 1094.3841,201.41378 C 1155.1772,218.95972 1161.835,204.50203 1179.9604,196.98235 C 1198.0858,189.46266 1202.2036,214.25286 1251.0526,168.50811 C 1299.9016,122.76332 1232.7743,156.21053 1246.9805,125.50513 C 1261.1868,94.799744 1250.7172,127.44957 1269.7438,87.856594 C 1289.0069,47.771324 1244.0935,79.757214 1238.197,75.942324 C 1232.2653,72.104694 1209.3646,32.060514 1195.9629,38.544574 C 1182.5467,45.035674 1156.1232,56.844504 1144.2341,49.324824 C 1132.3449,41.805134 1085.8037,35.973094 1070.8335,49.132544 C 1055.8632,62.291994 1044.2033,71.001284 1024.2205,85.100694 z "
         id="path6182" />
      <path
         sodipodi:nodetypes="csssssz"
         id="path6184"
         d="M 1056.1521,161.07687 C 1040.9597,168.05795 1018.3763,184.638 1020.4294,154.09579 C 1022.4824,123.55357 1006.8794,104.79193 1045.0657,110.90037 C 1083.2521,117.00881 1040.5491,132.71625 1086.9476,134.89783 C 1133.3461,137.07942 1133.7567,159.76792 1128.0082,160.64056 C 1122.2597,161.51319 1110.3521,137.51574 1086.1264,150.16894 C 1061.9006,162.82214 1071.3445,154.09579 1056.1521,161.07687 z "
         style="opacity:0.87000002;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         style="opacity:0.87000002;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 1192.5785,138.6767 C 1207.7709,145.65778 1230.3543,162.23783 1228.3012,131.69562 C 1226.2482,101.1534 1241.8512,82.391764 1203.6649,88.500204 C 1165.4785,94.608644 1208.1815,110.31607 1161.783,112.49765 C 1115.3845,114.67924 1114.9739,137.36775 1120.7224,138.24039 C 1126.4709,139.11302 1138.3785,115.11556 1162.6042,127.76877 C 1186.83,140.42197 1177.3861,131.69562 1192.5785,138.6767 z "
         id="path6186"
         sodipodi:nodetypes="csssssz" />
    </g>
    <path
       sodipodi:nodetypes="ccccccccc"
       d="M 624.52348,480.18535 L 629.20115,480.18535 C 636.01274,480.18535 638.57999,480.25034 638.57999,489.5642 L 638.57999,494.45068 C 638.57999,499.64657 634.39703,503.82953 629.20115,503.82953 L 624.52348,503.82953 C 614.94007,503.82953 615.14463,500.78967 615.14463,494.45068 L 615.14463,489.5642 C 615.14463,484.36832 619.3276,480.18535 624.52348,480.18535 z "
       style="fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       id="path2238" />
    <path
       id="path2240"
       style="opacity:0.6;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       d="M 594.52348,480.18535 L 599.20115,480.18535 C 604.39703,480.18535 608.57999,484.36832 608.57999,489.5642 L 608.57999,494.45068 C 608.57999,501.47554 609.20852,503.82953 599.20115,503.82953 L 594.52348,503.82953 C 585.20962,503.82953 585.14463,501.01829 585.14463,494.45068 L 585.14463,489.5642 C 585.14463,484.36832 589.3276,480.18535 594.52348,480.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <path
       sodipodi:nodetypes="ccccccccc"
       d="M 108.52348,520.18535 L 629.20115,520.18535 C 634.39703,520.18535 638.57999,524.36832 638.57999,529.5642 L 638.57999,734.45068 C 638.57999,739.64657 634.39703,743.82953 629.20115,743.82953 L 108.52348,743.82953 C 103.3276,743.82953 99.14463,739.64657 99.14463,734.45068 L 99.14463,529.5642 C 99.14463,524.36832 103.3276,520.18535 108.52348,520.18535 z "
       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline;opacity:0.5"
       id="path9402" />
    <path
       id="path2244"
       style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       d="M 624.52348,720.18535 L 629.20115,720.18535 C 636.01274,720.18535 638.57999,720.25034 638.57999,729.5642 L 638.57999,734.45068 C 638.57999,739.64657 634.39703,743.82953 629.20115,743.82953 L 624.52348,743.82953 C 614.94007,743.82953 615.14463,740.78967 615.14463,734.45068 L 615.14463,729.5642 C 615.14463,724.36832 619.3276,720.18535 624.52348,720.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <path
       sodipodi:nodetypes="ccccccccc"
       d="M 594.52348,720.18535 L 599.20115,720.18535 C 604.39703,720.18535 608.57999,724.36832 608.57999,729.5642 L 608.57999,734.45068 C 608.57999,741.47554 609.20852,743.82953 599.20115,743.82953 L 594.52348,743.82953 C 585.20962,743.82953 585.14463,741.01829 585.14463,734.45068 L 585.14463,729.5642 C 585.14463,724.36832 589.3276,720.18535 594.52348,720.18535 z "
       style="opacity:0.6;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       id="path2246" />
    <path
       sodipodi:nodetypes="ccccccccc"
       d="M 108.52348,240.18535 L 629.20115,240.18535 C 634.39703,240.18535 638.57999,244.36832 638.57999,249.5642 L 638.57999,354.45068 C 638.57999,359.64657 634.39703,363.82953 629.20115,363.82953 L 108.52348,363.82953 C 103.3276,363.82953 99.14463,359.64657 99.14463,354.45068 L 99.14463,249.5642 C 99.14463,244.36832 103.3276,240.18535 108.52348,240.18535 z "
       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline;opacity:0.5"
       id="path9384" />
    <path
       id="path9386"
       style="fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       d="M 108.52348,240.18535 L 175.20115,240.18535 C 183.82634,240.41397 184.57999,242.75261 184.57999,249.5642 L 184.57999,254.45068 C 184.57999,259.64657 180.39703,263.82953 175.20115,263.82953 L 108.52348,263.82953 C 101.49863,263.82953 99.14463,263.536 99.14463,254.45068 L 99.14463,249.5642 C 99.14463,244.36832 103.3276,240.18535 108.52348,240.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <path
       sodipodi:nodetypes="ccccccccc"
       d="M 564.52348,480.18535 L 569.20115,480.18535 C 574.39703,480.18535 578.57999,484.36832 578.57999,489.5642 L 578.57999,494.45068 C 578.57999,501.47554 579.20852,503.82953 569.20115,503.82953 L 564.52348,503.82953 C 555.20962,503.82953 555.14463,501.01829 555.14463,494.45068 L 555.14463,489.5642 C 555.14463,484.36832 559.3276,480.18535 564.52348,480.18535 z "
       style="opacity:0.2;fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       id="path2242" />
    <path
       id="path2248"
       style="opacity:0.2;fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       d="M 564.52348,720.18535 L 569.20115,720.18535 C 574.39703,720.18535 578.57999,724.36832 578.57999,729.5642 L 578.57999,734.45068 C 578.57999,741.47554 579.20852,743.82953 569.20115,743.82953 L 564.52348,743.82953 C 555.20962,743.82953 555.14463,741.01829 555.14463,734.45068 L 555.14463,729.5642 C 555.14463,724.36832 559.3276,720.18535 564.52348,720.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <path
       style="fill:#e3f5d7;fill-opacity:0.49803922;fill-rule:nonzero;stroke:none;stroke-width:1.00399995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
       id="path8344"
       d="M 484.13669,157.89345 C 484.26264,160.38808 485.08001,162.70837 485.97298,165.00679 C 486.383,166.42223 487.31935,166.66938 488.26689,167.16524 C 463.78088,181.07808 474.76476,178.46058 476.10879,170.58396 C 475.16638,163.16783 491.35104,153.83293 491.47007,163.47099 C 491.70427,173.04838 495.99058,165.03805 477.41016,175.44878 C 479.70113,171.52362 482.10292,167.65859 484.48919,163.78569 C 488.69445,156.69232 505.95205,146.90696 499.20217,158.77485 C 494.11172,167.60773 498.13405,161.60433 482.44488,170.28303 C 489.24389,162.79806 494.00042,160.32581 503.94762,154.26346 C 505.90364,158.35609 502.82162,163.38541 501.99984,167.70769 C 484.48822,176.2721 485.9788,181.39624 493.90393,168.35108 C 499.18995,156.6379 499.94269,157.59121 513.59474,148.89786 C 515.4737,152.88726 511.82244,156.97501 510.01415,160.57487 C 507.75345,164.75949 510.98117,161.62833 512.81115,160.48929 C 508.61374,163.04876 504.44063,165.64856 500.21888,168.16772 C 499.37341,168.67223 501.61093,166.70544 502.50944,166.30289 C 507.76545,163.9999 513.02148,161.69689 518.27749,159.39389 C 518.03875,159.64335 517.80002,159.89281 517.56128,160.14226 C 516.72997,161.11227 515.91901,162.1719 515.51874,163.38505 C 534.62468,153.13401 499.78173,175.59947 518.01371,161.94612 C 534.78534,146.90468 538.44111,150.41232 531.54688,161.84094 C 530.63814,162.50853 527.40894,170.0236 529.48286,165.64099 C 534.99516,162.87904 540.40819,159.94865 545.73765,156.84821 C 549.96737,159.20521 542.93276,163.39235 540.11889,166.39574 C 536.21279,171.22905 537.41968,170.89419 542.19403,168.63885 C 551.02697,163.41102 537.37284,171.72029 534.87611,173.11363 C 532.52715,174.42451 539.04543,169.68094 541.35668,168.30463 C 546.41168,165.29447 551.52452,162.38254 556.60844,159.42151 C 558.87453,162.23587 555.71892,165.09216 554.30135,167.66042 C 558.6997,167.24076 563.2732,166.60976 567.69494,165.79191 C 571.55764,165.9464 580.53517,160.2913 582.41617,164.78549 C 580.66223,167.33163 578.13295,169.1804 576.29468,171.69526 C 585.69076,159.01508 554.61552,186.69333 573.30613,170.96781 C 581.15257,162.23271 582.93796,162.12829 596.02422,156.17275 C 594.40583,159.97511 591.74103,163.25253 589.83191,166.93584 C 591.38282,159.21029 566.80048,181.53301 584.34082,167.8215 C 588.9965,163.32685 609.18111,149.1366 604.31525,159.01225 C 603.05249,162.44297 601.47063,161.72069 604.37431,159.87643 C 579.39092,175.70531 597.54426,163.78627 603.33599,159.90415 C 614.00267,150.79248 625.32757,146.32319 616.52097,157.17699 C 615.36897,157.79203 612.35821,164.12806 614.23137,160.38505 C 618.41547,153.10748 593.50395,175.59173 609.89661,161.06924 C 623.09467,148.96148 630.99747,149.53363 622.04807,158.9705 C 620.25417,162.11276 600.9615,171.78283 607.06971,167.18004 C 612.30441,163.07734 624.11047,146.02538 627.75127,155.47442 C 625.68227,158.93136 622.89387,161.87611 620.84897,165.35859 C 622.25087,158.39226 600.30323,177.46809 612.91167,167.74498 C 617.31567,163.46814 638.74497,147.04141 633.05637,158.38055 C 631.86077,160.34017 630.84007,162.4299 629.39417,164.21282 C 638.45727,155.46452 608.20671,178.84899 627.11267,163.9925 C 632.63557,159.85131 649.14017,143.9585 647.98087,155.45017 C 647.05297,158.86599 645.35087,162.02047 644.29687,165.36407 C 648.86447,162.32264 663.83617,153.54739 641.69697,166.91169 C 644.62497,163.38529 667.10827,149.89141 660.55057,157.83143 C 658.59567,159.72173 655.84477,164.80304 655.32187,165.92498 C 661.68547,157.72536 637.12487,178.95411 647.05007,169.09238 C 650.21467,163.28208 666.73427,153.80836 663.33247,162.14738 C 662.45257,163.61368 661.41067,164.97359 660.41057,166.3581 C 655.44617,164.0234 650.33987,170.79163 645.64917,173.63664 C 646.35457,173.01346 646.66087,172.18018 647.03127,171.35186 L 662.61297,163.83221 C 662.19567,164.71241 661.77837,165.61157 661.36887,166.51291 C 657.70207,168.92222 643.67757,182.86144 644.84237,173.67142 C 645.77037,172.28637 646.78947,170.9721 647.69207,169.57027 C 650.92637,170.80215 669.92657,157.68657 662.60477,162.14512 C 656.71487,168.03023 649.14547,176.61767 640.80527,175.38199 C 638.66177,171.94113 643.83157,167.86146 645.31197,164.8827 C 651.75557,154.99917 670.31297,152.12101 656.47597,160.66196 C 649.52497,165.04017 637.94237,175.9998 629.18277,173.41457 C 629.36877,169.79673 632.47507,166.91775 632.93357,163.28264 C 636.00827,161.26216 653.04317,149.69758 641.96587,157.59191 C 633.93367,163.87216 625.17327,172.93482 615.13127,174.08238 C 612.92627,171.27031 616.60547,168.40466 617.85407,165.68846 C 620.18947,161.74044 641.90067,151.60397 627.87717,161.2877 C 621.85807,166.18042 608.60621,180.69953 605.5491,172.62378 C 607.56581,169.338 610.06811,166.39759 612.26881,163.23863 C 618.20267,168.56288 635.60427,147.04485 622.40107,160.48891 C 615.88987,166.97974 598.14417,176.69051 607.0124,165.71657 C 611.41581,161.04253 624.50347,153.76881 625.29057,154.37281 C 617.60157,160.53428 610.69511,167.75352 601.0059,171.13655 C 595.6744,171.12262 599.79504,166.10152 601.48717,164.08682 C 604.33424,160.34736 623.10057,149.48496 618.69137,153.43971 C 609.66261,159.25221 600.98858,165.57524 591.53068,170.72767 C 587.38544,172.44233 586.79416,169.23898 588.94836,166.37518 C 592.75215,166.17259 610.69461,153.2649 599.19963,161.41762 C 592.95672,166.3343 579.99588,181.35042 574.6132,174.41464 C 576.20306,170.88245 578.59704,167.68978 580.78703,164.52205 C 608.50571,150.23766 594.30755,156.63396 587.82964,164.61769 C 580.87528,170.92412 568.9449,184.08579 560.8948,179.4395 C 562.28383,176.75193 564.18061,174.15267 566.95272,172.64179 C 568.99421,174.1812 557.4183,174.67023 555.47385,175.54438 C 551.01162,176.43085 542.12149,179.93457 538.9749,175.33875 C 539.88138,173.41611 541.07722,169.68614 543.28008,170.228 C 576.24651,149.65494 535.08343,176.15919 529.71602,179.03791 C 523.35725,181.49875 520.29379,178.357 525.38598,173.04561 C 527.32647,170.81874 531.7488,164.40956 533.02598,167.6713 C 527.49995,170.5724 522.05814,173.64257 516.45041,176.38315 C 510.53226,176.97791 515.43182,171.17562 516.84036,168.82052 C 522.10944,160.11847 520.78994,162.85825 532.82863,155.60942 C 523.26902,162.62618 513.44436,170.83742 501.84795,173.56653 C 498.24559,171.79043 500.1349,169.85399 501.93739,167.2775 C 534.69588,151.58636 510.67562,163.59184 500.07058,171.33175 C 496.5333,173.07258 492.41235,172.58041 495.01164,167.81185 C 496.11658,165.76116 498.45339,158.75129 500.24055,160.12084 C 523.6225,145.083 512.62097,150.8668 508.35772,161.44357 C 505.32705,167.17127 489.40121,187.85733 487.23642,175.32788 C 487.92241,172.39889 489.02033,166.00187 490.50005,165.2162 C 515.89953,149.16068 503.06728,156.45834 498.05337,163.57254 C 481.95774,172.93367 478.0788,176.81355 484.17035,165.97598 C 487.0117,160.73254 507.08879,148.24626 499.46466,156.72658 C 497.05717,160.34902 494.40169,163.94488 493.04126,168.11836 C 478.64399,176.87441 477.03811,182.67757 476.65709,171.581 C 476.21828,163.92672 493.92233,152.64439 491.16429,162.69433 C 489.90263,172.48515 487.30813,171.02156 474.17588,177.34877 C 472.83143,176.40149 471.87685,175.31168 471.30473,173.71495 C 470.46529,171.32446 469.69011,168.91348 469.08455,166.45 L 484.13669,157.89345 z " />
    <path
       d="M 564.54551,79.646284 C 566.76378,77.603994 569.1036,75.684884 571.37257,73.691724 C 588.21077,62.657984 625.35107,45.745984 605.65524,62.188754 C 597.93124,68.409154 589.88595,74.215044 582.30721,80.614664 C 578.29566,83.156944 577.11185,88.989584 574.92729,83.005954 C 583.38414,81.772514 591.202,78.317214 598.78854,74.529184 C 600.44879,73.579934 605.42982,70.732634 603.7693,71.681424 C 524.87567,116.7597 614.73467,64.659814 615.63157,65.272194 C 616.63257,65.955624 617.07687,67.218374 617.79947,68.191464 C 617.15687,75.477284 609.09744,80.472844 603.92785,85.031724 C 597.72412,89.541284 597.88166,95.698784 594.08868,87.195514 C 526.62772,128.54376 565.57177,103.50581 580.12231,92.164434 C 593.4256,82.942504 621.28007,46.097414 630.14867,67.125114 C 625.85817,74.929854 617.77357,80.292314 611.00008,85.909034 C 608.2443,87.068384 606.62378,90.533044 604.15474,92.030564 C 602.60765,92.968904 604.25788,86.145674 602.58466,86.834354 C 590.83553,91.670184 580.53674,99.467584 569.51279,105.78419 C 578.59323,100.39958 587.04233,93.991324 595.39946,87.556184 C 601.91498,67.066214 652.60007,52.467914 633.15667,76.375064 C 624.66727,85.370514 614.46317,92.430964 604.56639,99.749994 C 601.20982,108.53302 592.97336,102.25782 598.13363,99.810014 C 600.46272,100.30732 620.66787,88.793094 618.37127,90.087034 C 592.82931,104.47796 584.6312,109.9765 598.88962,100.69683 C 611.66257,92.447294 652.29237,54.319744 647.64817,78.714854 C 640.48517,88.560144 631.29627,96.661614 622.23087,104.69477 C 623.02797,107.80918 606.25762,118.45231 612.55108,107.81594 C 548.5582,146.41457 589.34814,120.75219 603.96903,111.28154 C 614.21367,96.881324 661.18317,75.854404 648.98157,93.557724 C 640.25287,100.93135 630.77997,107.41836 622.48977,115.30622 C 612.63039,113.52457 623.65917,109.64268 627.23857,107.88767 C 624.76077,109.50267 637.02007,102.24371 634.56827,103.64358 C 550.76233,151.49421 640.15287,100.54095 641.55287,99.982784 C 643.28937,99.290444 643.08187,103.39482 643.84627,105.10083 C 638.04767,111.00282 630.99247,115.59159 624.54057,120.77789 C 619.68437,126.05571 618.98807,119.47265 624.78797,117.32068 C 629.90427,115.63186 642.68287,107.47514 639.82997,118.8952 C 634.58127,123.08061 629.07207,126.9005 624.03587,131.33808 C 622.36317,125.76562 632.19367,125.36955 636.70937,123.71925 C 642.49007,120.5804 646.96177,120.61237 645.71137,127.80921 C 642.71807,130.03982 643.05607,126.33953 647.79107,125.76732 C 652.78437,125.1644 658.94637,121.6707 662.62217,126.40628 C 663.78527,128.58358 663.33067,130.13407 662.42167,132.14122 C 661.96747,132.49761 661.71057,132.98088 661.42617,133.31668 L 622.05837,151.57768 C 622.24177,150.85469 622.32227,150.00149 622.78427,149.33173 C 623.79577,148.18502 624.05567,147.53893 625.51907,148.2742 C 624.48197,148.48939 617.66237,149.96908 615.04517,150.28121 C 611.16508,150.91075 601.34446,150.01671 606.39712,144.41604 C 610.06298,145.356 611.0976,147.70243 605.08824,148.34073 C 599.76048,150.06905 585.98053,157.31469 585.31118,147.45425 C 589.8937,142.60207 595.85562,139.2825 600.90526,134.94559 C 609.2131,139.71721 597.4484,139.35842 593.04553,142.26346 C 585.08356,145.56919 578.07919,141.54214 587.36258,135.65902 C 593.06119,131.2754 598.78141,126.77337 604.41567,122.40478 C 605.44965,123.69672 605.9953,126.92927 607.51763,126.28061 C 628.56347,117.3131 685.37767,81.547714 603.41155,128.86551 C 601.102,130.19878 598.36381,131.59568 596.01885,132.8218 C 592.26269,134.66532 573.67958,142.7994 585.20146,130.38936 C 593.81527,123.68745 602.58459,117.10578 610.54288,109.62646 C 610.97392,109.40195 611.40495,109.17743 611.83598,108.95291 C 612.75187,110.03348 613.66777,111.11404 614.58367,112.1946 C 614.81577,112.49691 610.17692,114.76653 613.05857,113.07883 C 636.83957,99.150744 656.19467,88.128214 640.37747,97.148434 C 620.22457,109.47161 601.7811,124.2345 579.94215,133.93398 C 566.94829,136.57781 582.65979,118.41101 587.25633,118.88423 C 595.34538,112.06591 603.73082,105.1433 609.26958,95.980874 C 624.04847,106.57199 668.43497,61.480294 633.70047,87.122994 C 611.90084,101.27576 589.47433,114.89986 565.5695,125.21321 C 552.53015,129.03847 562.28186,113.25996 568.70853,113.92175 C 578.25914,107.25914 588.07658,100.77786 596.06517,92.206414 C 602.95407,83.551844 600.01229,91.585554 601.86481,90.573364 C 624.27587,78.328344 647.55967,62.844414 632.37897,72.887274 C 624.04537,78.797274 615.72827,84.725034 607.71911,91.073734 C 594.91917,98.439844 582.85826,107.27338 569.31929,113.17206 C 560.15605,117.16432 569.43731,100.76647 574.69459,100.54892 C 580.46909,95.778514 586.22061,90.975174 591.56204,85.735034 C 604.33212,100.17001 651.63647,48.544214 616.00217,77.815244 C 597.9866,91.899574 583.16511,104.71748 560.29668,113.82738 C 553.90731,106.49598 561.43304,105.50906 567.14757,100.01937 C 570.91242,96.627704 576.19392,90.346654 579.95695,89.273644 C 580.57148,89.966124 580.52997,92.152344 581.33072,91.687634 C 592.4398,85.240534 603.52625,78.754534 614.62677,72.292694 C 615.78937,71.615894 612.30949,73.660024 611.14434,74.332484 C 598.64135,81.548534 586.1703,88.820454 573.62243,95.958164 C 572.05379,96.850464 570.40763,97.599014 568.80023,98.419434 C 559.66793,102.54668 549.83439,107.2099 539.68646,107.49323 C 534.21426,101.22183 540.466,99.756894 545.58487,95.408104 C 553.00923,89.450644 560.57872,83.681344 567.85724,77.544134 C 578.06678,68.120134 624.96927,45.358564 610.77852,57.663324 C 608.60759,59.485314 606.5123,61.416364 604.30006,63.179404 L 564.54551,79.646284 z "
       id="path6190"
       style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00399995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <path
       d="M 574.99583,97.958904 C 570.57493,102.30223 566.59951,107.09862 562.85605,112.03285 C 560.38837,114.85147 559.10984,121.06826 558.42478,114.24389 C 558.99711,113.80553 560.77022,112.57556 560.14178,112.92881 C 499.56094,146.98201 533.73157,128.60654 547.23666,118.1879 C 561.39117,107.71166 601.53031,80.747354 588.25828,102.92071 C 585.37931,106.65465 581.50869,110.29647 578.44038,113.46916 C 574.48867,107.4765 579.37076,106.07577 584.66539,104.31251 C 592.11712,109.02393 582.53686,115.48452 578.82846,118.86145 C 578.27005,120.43376 569.81816,126.44958 573.3161,118.26277 C 574.52858,115.42499 579.09688,116.0999 581.97004,114.97382 C 585.32814,109.20855 606.57648,106.72887 596.01692,117.69665 C 590.33938,122.37827 584.42662,126.77153 578.87452,131.59413 C 579.05854,130.10232 577.51706,128.80921 577.75091,127.37162 C 577.8425,126.80864 585.84923,123.28655 586.21229,123.08897 C 576.28693,128.78639 566.36158,134.48381 556.43622,140.18123 C 570.22753,132.74986 607.71058,96.483554 603.71499,120.05559 C 598.57248,124.53619 598.02315,133.91933 594.52235,124.93448 C 530.9458,162.57901 564.02946,145.15159 574.94385,130.35702 C 633.93797,99.853114 618.45627,110.09391 600.42668,125.0807 C 591.92018,129.88489 589.05491,142.5488 584.44552,131.29783 C 517.17361,171.99217 554.24955,149.27894 568.59759,137.70717 C 594.09642,134.44906 625.63717,107.96166 594.03962,130.58037 C 584.35431,135.4972 581.17557,148.60128 576.88004,136.93001 C 509.76103,178.06248 552.74528,150.49442 567.3411,139.15706 C 605.04231,110.0258 621.87897,109.91088 595.88488,134.66572 C 587.29689,145.41603 596.15385,132.92679 591.33983,134.83857 C 538.00501,156.0193 549.20045,158.29738 565.36067,147.20206 C 576.66297,135.89216 630.89597,112.42507 603.88354,131.36504 C 595.76346,137.95421 583.19287,144.27464 577.91955,152.12773 C 574.39775,135.37213 578.46142,146.65066 546.04714,164.61639 C 543.96428,165.77082 550.07978,162.08096 552.05795,160.7551 C 558.85945,156.19644 565.42145,151.27603 572.12626,146.57733 C 587.88848,138.33685 625.73167,101.95126 626.33207,122.68414 C 620.60197,131.48611 613.14897,139.06506 605.31752,146.00688 C 591.77349,154.99184 560.14286,191.34727 556.92419,167.6673 C 569.35359,157.97054 599.13659,131.27476 608.06918,143.20601 C 601.98272,150.89656 592.65319,156.16774 584.94552,162.44511 C 578.92457,169.40162 581.84171,159.42752 581.2089,159.75172 C 565.26373,167.92065 536.67936,186.08994 555.15392,174.4142 C 569.86211,165.38091 598.35203,133.40133 610.97292,141.66711 C 613.15347,148.16257 607.19302,152.00259 603.30632,156.47726 C 513.23313,197.35603 597.19103,153.00861 609.13037,146.13355 C 615.52637,144.81115 613.82877,152.1658 611.9598,155.61729 C 607.96099,157.77856 611.3585,152.18694 613.98537,150.52362 C 511.63819,211.04672 643.16557,128.05986 619.63467,155.55922 C 617.73757,157.73673 613.56947,161.51902 612.21842,162.76073 C 612.15878,162.61403 612.05209,163.03026 611.96893,163.16502 C 611.09713,161.02931 611.27519,160.90661 613.15087,160.64102 C 614.96997,162.89906 617.68167,171.87114 612.75704,162.41988 C 600.42244,169.44776 588.08785,176.47563 575.75325,183.5035 L 615.86077,167.17019 C 603.29238,174.40547 590.72402,181.64074 578.15565,188.87602 C 574.65943,183.22586 575.55633,182.30543 578.54904,186.67766 C 576.58929,187.03212 575.85797,187.22711 574.39717,184.91753 C 573.84526,183.77856 573.52594,182.68772 573.08577,181.49116 C 574.33214,177.32715 578.48076,174.95367 581.37374,171.62998 C 585.86924,167.09272 683.03947,124.524 581.92307,176.48488 C 577.69283,178.72023 569.51821,179.42906 573.17333,172.5467 C 575.34926,169.71926 577.07643,169.06368 576.7038,172.24962 C 647.81837,131.00928 585.7731,167.54428 564.294,172.74954 C 567.10923,170.17637 572.0956,162.60482 575.05086,165.51488 C 627.57647,137.03296 610.5993,144.74197 591.12654,160.27281 C 579.37245,169.29212 527.15594,200.84472 548.35313,177.08925 C 554.93943,172.08931 562.03973,165.43676 568.96006,162.09929 C 569.99499,163.20738 571.35513,164.08369 572.06486,165.42355 C 572.67461,166.57467 567.44849,167.83587 568.57368,167.17952 C 624.12977,134.77232 608.39896,145.00196 596.08213,150.93711 C 581.33416,134.52987 538.25509,183.91576 569.25029,160.57217 C 576.55678,154.80573 583.29526,148.30071 588.25449,140.34774 C 589.20075,140.75017 591.1794,140.81261 590.96614,141.81853 C 590.85623,142.33697 589.03036,142.66904 589.48531,142.39723 C 645.67727,108.82648 617.95217,125.50972 605.96952,133.25793 C 589.15122,144.87189 553.27744,179.65075 539.01767,169.70162 C 545.72071,159.4325 559.21693,154.57685 567.59751,145.82969 C 582.07134,133.40996 631.11207,114.87243 601.5224,132.87404 C 587.26368,144.06855 536.23829,173.45769 559.99587,149.391 C 561.0252,148.44554 568.59677,139.5096 569.82981,139.56544 C 571.39074,139.63612 572.18551,142.97921 573.61008,142.33726 C 584.13368,137.59507 621.46067,114.61422 603.46884,124.79971 C 583.87679,138.91587 566.18858,154.00077 543.3312,163.77026 C 542.11173,162.08324 540.25335,160.70823 539.6728,158.70922 C 539.05454,156.58034 557.34039,147.29096 558.38437,144.76643 C 568.96306,136.34041 623.67597,104.05736 605.78771,122.86662 C 587.76728,136.16418 572.70316,149.67864 550.52272,158.32856 C 549.50478,156.53138 547.86577,154.96398 547.46889,152.93702 C 546.96196,150.34804 563.68786,142.71997 564.55231,139.60824 C 573.91443,131.38833 615.94487,92.905504 612.88067,114.39644 C 595.73883,131.14572 589.98347,141.30631 560.85833,151.42294 C 554.45793,144.77873 561.41708,143.65135 565.04603,137.17335 C 580.30689,149.66806 622.59717,105.09272 593.27101,126.01012 C 580.62648,133.30464 568.01862,140.66309 555.33742,147.89369 C 553.31674,149.04584 546.19134,153.61816 543.55499,152.73188 C 539.15617,151.2531 539.83468,150.23603 540.1686,147.54798 C 545.6457,142.26469 552.49215,138.54847 558.03822,133.30911 C 562.97331,129.29002 564.45179,137.16533 552.02146,138.5496 C 543.77566,141.99787 525.03721,146.72019 541.18854,134.17462 C 545.03557,130.89894 547.70152,124.87724 551.29429,130.5727 C 546.16308,133.38821 542.59526,138.02327 538.9589,130.90979 C 542.27666,126.97978 546.48142,123.70588 549.95226,119.78901 C 553.39375,114.76303 549.34611,122.86504 553.78546,120.77252 C 618.22417,90.398914 597.08294,94.685054 584.03119,103.60183 C 565.04265,116.93255 546.53094,131.99223 524.43188,139.93573 C 517.46747,136.6498 522.25085,132.35151 525.61315,128.03461 C 528.91582,123.77275 532.52236,119.59758 535.14397,114.89097 L 574.99583,97.958904 z "
       id="path6192"
       style="fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00399995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <path
       d="M 535.45344,74.927114 C 530.46018,79.685494 525.66125,84.640074 520.77607,89.508504 C 515.21762,101.81426 463.45777,125.92077 477.23005,111.4409 C 482.31198,106.63417 487.28036,101.71159 492.04473,96.588534 C 501.10283,80.925694 544.22712,62.330514 530.43233,83.829114 C 527.79208,87.553554 525.44803,91.534174 522.3431,94.881084 C 517.36385,75.054254 466.02687,131.26968 500.01731,100.73287 C 515.74431,86.600964 556.21212,67.816964 533.347,91.072594 C 526.79184,99.184434 516.59411,104.72837 511.02254,113.63303 C 511.5363,112.35884 510.29401,110.79276 510.94752,109.6286 C 512.38879,107.06113 521.17611,103.79057 518.61729,105.24715 C 491.14022,120.88811 484.93921,125.22913 499.74289,115.38456 C 519.02315,99.488854 522.49584,100.25108 552.86837,87.847344 C 545.60884,93.449664 539.10176,99.991974 532.19347,106.03426 C 517.57263,120.42352 532.99244,103.21166 523.08857,107.11577 C 510.73286,111.98639 500.06199,120.35672 488.54869,126.9772 C 495.66335,122.17387 503.04967,117.5817 509.45504,111.83086 C 514.53366,130.0969 570.81532,79.464744 533.82327,105.07156 C 530.97689,101.34858 525.2723,117.98865 522.91335,113.93923 C 522.35209,112.97577 523.21078,110.26789 522.17352,110.67701 C 509.74795,115.57791 498.21581,122.49577 486.23695,128.40516 C 496.82768,122.49322 506.54868,115.12782 515.53295,107.00713 C 522.62258,98.424664 510.40307,113.16051 519.47632,109.62199 C 565.1852,91.795744 560.76121,83.637114 543.31735,98.410694 C 535.27869,106.82768 524.24251,112.75064 517.17768,122.10119 C 516.68735,106.05717 517.93379,119.73531 481.06417,136.46808 C 480.15117,136.88243 481.77254,136.45898 492.58039,129.30341 C 499.17963,124.93422 500.23347,124.12108 506.72406,119.54826 C 526.88929,102.15859 534.0798,100.72915 563.28585,89.534724 C 550.65592,100.27934 537.69674,110.63536 524.6436,120.86002 C 508.90575,140.47825 452.85324,160.04329 492.99694,132.05055 C 503.66156,124.30567 514.65073,116.90595 524.59521,108.22502 C 580.30153,70.701824 565.51589,92.182424 544.54383,112.14054 C 542.20102,108.10895 527.58408,134.5609 526.78034,130.97493 C 526.40658,129.30734 526.21783,127.60362 525.93657,125.91796 C 461.81621,166.73358 514.63186,130.2641 527.6845,116.34267 C 535.63402,101.87665 584.14548,74.331324 569.4234,98.726204 C 562.92398,109.79221 552.36989,117.88175 545.4132,128.51645 C 558.05083,105.02889 491.52216,159.91527 533.922,130.00919 C 539.77075,119.95905 598.2486,93.706014 577.06477,110.522 C 567.40356,119.59424 555.16221,126.47684 546.64602,136.74382 C 484.00101,165.21748 516.16982,148.47453 535.43853,133.23968 C 540.97918,121.35177 599.5909,96.005714 583.18749,108.16203 C 574.24491,117.48791 565.52075,127.02633 557.43404,137.10728 C 551.43268,146.41551 561.39921,131.56373 553.26565,134.76754 C 509.17934,152.13308 509.35972,161.77499 526.3219,149.30778 C 541.22677,140.81113 569.68442,101.73271 579.46314,122.98352 C 571.36138,130.28706 561.94321,135.99712 554.12399,143.6484 C 550.2872,130.34918 556.62342,137.52299 521.73406,156.71269 C 519.43468,157.97738 526.19738,153.94888 528.37416,152.48319 C 533.51787,149.01979 536.22436,146.86427 541.08158,143.17763 C 551.21212,132.73174 606.10988,99.056474 585.7055,123.25955 C 581.13218,128.24981 576.16578,132.91426 572.2854,138.49059 C 562.93976,130.87616 579.75236,129.49195 532.78412,156.28995 L 573.14063,140.46868 C 566.87217,144.05755 529.85522,176.36122 533.78038,154.90605 C 538.41718,149.7795 543.28881,144.85725 547.63692,139.4771 C 552.53393,133.16492 542.1853,145.45884 551.66989,141.26079 C 564.39329,135.62917 575.83185,127.45473 587.9488,120.61515 C 592.42559,118.08816 570.74772,131.79122 575.36501,129.53112 C 562.9454,138.85845 510.58718,180.85288 517.3156,158.63139 C 524.86845,152.41297 532.50717,146.25805 540.0269,140.02637 C 555.34227,157.88141 600.94493,103.77489 562.95538,134.69986 C 549.09715,145.82888 501.17877,177.02796 521.63576,152.17317 C 530.09157,143.49613 538.43856,134.5084 545.13073,124.37783 C 547.62744,114.8967 612.73766,89.988014 569.4499,119.58949 C 559.25627,127.84934 508.07464,168.47539 509.02565,152.06042 C 520.03242,143.73253 530.7367,134.96162 540.68805,125.3877 C 557.98066,106.04784 608.33485,93.101904 567.83349,116.60587 C 554.66816,126.22152 505.71865,163.73333 508.93825,144.09606 C 517.30065,134.90152 526.86681,126.53442 532.49581,115.21759 C 538.30588,103.61704 593.36236,79.795144 561.99524,102.10977 C 540.81937,122.54511 520.92249,139.63423 492.80013,151.73266 C 491.31472,150.46636 489.0846,149.73968 488.34389,147.93377 C 486.68628,143.89238 509.7341,129.99269 510.92832,126.02611 C 511.65616,125.28829 524.25743,110.37519 524.95748,110.57361 C 526.25172,110.94045 526.57017,114.00896 527.79204,113.44623 C 539.92657,107.85769 550.89373,100.02141 562.44457,93.308994 C 550.26813,100.78184 539.15145,109.87484 527.64488,118.30908 C 512.92851,129.90709 523.48523,117.38389 515.68767,120.65064 C 454.83718,146.14371 476.2864,146.52993 491.27647,134.16392 C 502.94213,125.46111 514.76629,116.59382 524.53183,105.73832 C 601.5613,72.810434 557.39392,90.068904 540.31612,106.27425 C 527.84783,115.36225 482.51388,152.3409 479.08459,137.81905 C 488.90255,129.61913 498.96913,121.69814 508.17091,112.79005 C 520.59202,100.26946 572.01797,67.717014 551.74961,92.312474 C 543.03179,99.574584 534.08603,106.54619 525.09878,113.4697 C 478.80849,136.7216 474.12435,138.19987 497.8837,119.29027 C 510.68923,109.58554 553.19539,74.263324 547.32035,96.540984 C 540.80147,101.72405 533.94026,106.45241 527.45028,111.67394 C 514.76654,119.10604 502.94299,128.25399 489.39907,133.97025 C 481.6776,137.22912 490.83407,119.99586 495.97695,120.71136 C 502.11164,115.55394 508.42385,110.39777 513.08781,103.80166 C 585.56946,73.151824 551.31599,86.635254 533.87611,101.99465 C 529.44345,105.07226 475.99589,145.64999 473.0919,129.88058 C 480.49412,121.41606 490.04185,114.99006 497.18658,106.23611 C 505.93706,95.794694 557.81258,70.881144 537.23293,85.590764 C 523.51566,97.475604 500.21811,126.75701 484.52533,115.87655 C 483.31003,110.05408 490.7757,105.67414 492.75039,100.43224 C 497.25853,93.088844 550.11054,71.069614 530.16209,80.887004 C 525.10148,85.322164 520.38948,90.127674 515.92165,95.155124 C 484.91375,109.22165 463.5803,124.53551 484.05897,104.78267 C 488.0929,100.47558 492.33008,96.371834 495.82271,91.587374 L 535.45344,74.927114 z "
       id="path6194"
       style="fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00399995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
    <path
       sodipodi:nodetypes="cccccccccc"
       id="path6196"
       d="M 508.74438,87.508184 L 546.25683,87.508184 C 551.45271,87.508184 555.63568,91.691154 555.63568,96.887034 L 555.63568,107.27763 C 551.77471,107.27763 548.05852,111.9748 548.05852,116.71861 L 547.86395,152.31759 L 508.74438,152.31759 C 503.5485,152.31759 499.36553,148.13462 499.36553,142.93874 L 499.36553,96.887034 C 499.36553,91.691154 503.5485,87.508184 508.74438,87.508184 z "
       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline" />
    <path
       id="path6198"
       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       d="M 587.76727,76.515184 L 626.44497,76.515184 C 631.64077,76.515184 635.82377,80.698154 635.82377,85.894034 L 635.82377,130.78052 C 635.82377,135.97641 631.64077,140.15937 626.44497,140.15937 L 587.76727,140.15937 C 582.57139,140.15937 578.38842,135.97641 578.38842,130.78052 L 578.38842,85.894034 C 578.38842,80.698154 582.57139,76.515184 587.76727,76.515184 z " />
    <path
       id="path6200"
       style="font-size:25.71306038px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:DejaVu LGC Sans"
       d="M 561.29611,129.57479 C 561.2961,130.94794 561.65655,132.10653 562.37746,133.05057 C 563.11552,133.97745 564.06814,134.44088 565.23533,134.44088 C 566.8316,134.44088 569.10588,133.41102 572.05816,131.3513 L 573.49997,133.23079 C 572.47009,134.192 571.19134,134.99872 569.66373,135.65097 C 568.13609,136.28605 566.47973,136.60359 564.69465,136.60359 C 563.13269,136.60359 561.75096,136.44911 560.54946,136.14015 C 559.36511,135.83119 558.42108,135.445 557.71734,134.98156 C 557.03076,134.51812 556.46434,133.96886 556.01807,133.33378 C 555.58896,132.6987 555.29717,132.09795 555.14269,131.53152 C 554.98821,130.94794 554.91097,130.34719 554.91097,129.72927 C 554.91097,127.0688 556.61882,125.12064 560.03453,123.88479 C 558.60988,123.30122 557.57144,122.63181 556.9192,121.87656 C 556.26695,121.12135 555.94083,120.15156 555.94083,118.9672 C 555.94083,118.48662 556.02665,117.98885 556.1983,117.47391 C 556.36994,116.94183 556.67889,116.37541 557.12517,115.77463 C 557.57144,115.1739 558.1207,114.63323 558.77295,114.1526 C 559.44235,113.67202 560.31773,113.27724 561.3991,112.96826 C 562.49761,112.65933 563.71627,112.50485 565.0551,112.50482 C 567.33795,112.50485 569.26894,112.90821 570.84807,113.71491 C 572.42718,114.50449 573.21674,115.4142 573.21676,116.44404 C 573.21674,117.18213 572.89919,117.72281 572.26413,118.06608 C 571.62903,118.40938 570.95104,118.58102 570.23016,118.58101 C 569.32043,118.58102 568.64244,118.42654 568.19618,118.11757 C 567.74989,117.80863 567.37228,117.35377 567.06333,116.753 C 566.78869,116.25526 566.56555,115.88622 566.39392,115.6459 C 566.23943,115.38846 566.00771,115.12241 565.69877,114.84776 C 565.3898,114.57315 565.07226,114.43584 564.74615,114.43581 C 564.0424,114.43584 563.39015,114.80487 562.78941,115.54292 C 562.20581,116.26384 561.91402,117.36236 561.91403,118.83847 C 561.91402,120.43477 562.17148,121.55045 562.68642,122.18552 C 563.21851,122.82062 563.93941,123.13816 564.84913,123.13814 L 565.28682,123.08665 C 566.52264,122.94935 567.27787,122.88069 567.55252,122.88068 C 569.30327,122.88069 570.17865,123.25831 570.17866,124.01353 C 570.17865,124.87175 569.2861,125.30086 567.50103,125.30085 C 567.22638,125.30086 566.74578,125.24937 566.05922,125.14637 C 565.30397,125.0434 564.89203,124.9919 564.82339,124.99189 C 563.72486,124.9919 562.85806,125.40385 562.22299,126.22774 C 561.60506,127.03447 561.2961,128.15015 561.29611,129.57479" />
    <path
       id="path6202"
       style="font-size:52.72890091px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:DejaVu LGC Sans"
       d="M 538.2727,104.92031 C 538.27267,104.07929 538.04953,103.48712 537.60329,103.1438 C 537.17415,102.78338 536.43609,102.60316 535.38909,102.60313 L 534.64244,102.60313 C 534.52226,102.60316 534.41928,102.56883 534.33348,102.50014 C 534.24763,102.41435 534.20472,102.30278 534.20475,102.16543 L 534.20475,100.9296 L 534.30773,100.82661 L 536.47044,100.87811 C 537.91222,100.91247 539.06223,100.92964 539.92048,100.9296 L 545.55897,100.82661 L 545.66196,100.9296 L 545.66196,102.16543 C 545.66192,102.45726 545.5246,102.60316 545.25001,102.60313 L 544.50336,102.60313 C 543.4563,102.60316 542.70965,102.80055 542.26341,103.1953 C 541.83427,103.57294 541.61972,104.14795 541.61975,104.92031 L 541.61975,133.60196 C 541.61972,134.90645 540.95031,135.5587 539.61152,135.5587 C 539.33686,135.5587 539.07081,135.52437 538.81338,135.45571 C 538.57305,135.38705 538.36708,135.29265 538.19546,135.1725 C 538.02379,135.06951 537.86931,134.95795 537.73202,134.8378 C 537.59468,134.71765 537.48311,134.60608 537.39732,134.50309 C 537.32863,134.40011 537.26856,134.31428 537.21709,134.24563 L 537.1656,134.11689 L 518.70533,110.68754 L 518.70533,130.87283 C 518.70533,131.64523 518.91988,132.22882 519.349,132.62359 C 519.79526,133.00121 520.54191,133.19002 521.58895,133.19002 L 522.3356,133.19002 C 522.61021,133.19002 522.74753,133.33592 522.74754,133.62771 L 522.74754,134.86354 L 522.64455,134.96653 L 520.37886,134.91504 C 518.86839,134.88071 517.71838,134.86354 516.92882,134.86354 L 510.98137,134.96653 L 510.87839,134.86354 L 510.87839,133.62771 C 510.87839,133.33592 511.02428,133.19002 511.31608,133.19002 L 512.06273,133.19002 C 514.25976,133.19002 515.35828,132.41762 515.35829,130.87283 L 515.35829,105.4095 C 515.06649,104.98042 514.8176,104.63713 514.61164,104.37964 C 514.40566,104.1222 514.13961,103.83899 513.81349,103.53 C 513.50453,103.22107 513.16983,102.98936 512.80938,102.83484 C 512.46609,102.6804 512.09705,102.60316 511.70228,102.60313 C 511.27317,102.60316 510.98137,102.56025 510.8269,102.47439 C 510.68958,102.37144 510.62092,102.21696 510.62092,102.01096 L 510.62092,101.03259 L 510.7754,100.82661 L 518.42212,100.87811 L 521.64044,104.6371 C 523.78597,107.12596 526.43786,110.30136 529.59612,114.16332 C 532.75434,118.00815 535.34615,121.29512 537.37157,124.02424 C 537.80065,124.64217 538.10103,125.09702 538.2727,125.38881 L 538.2727,104.92031" />
    <path
       id="path6204"
       style="font-size:25.71306038px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:DejaVu LGC Sans"
       d="M 594.95702,113.94712 C 593.89282,113.94714 592.97452,114.41916 592.20214,115.36317 C 591.42973,116.29007 590.87189,117.4315 590.52861,118.78746 C 590.18532,120.14346 590.01368,121.60243 590.01368,123.16437 C 590.01368,124.21141 590.14241,125.31851 590.39988,126.48569 C 590.65734,127.65287 591.02637,128.78572 591.50698,129.88423 C 591.98757,130.96559 592.6484,131.86672 593.48947,132.58762 C 594.33051,133.29136 595.26596,133.64323 596.29584,133.64322 C 596.82792,133.64323 597.34285,133.53166 597.84063,133.30852 C 598.33838,133.06822 598.83615,132.68202 599.33393,132.14992 C 599.83168,131.60067 600.22646,130.75962 600.51827,129.62676 C 600.82721,128.49392 600.98169,127.13794 600.98171,125.5588 C 600.98169,121.86848 600.43243,119.01062 599.33393,116.98521 C 598.25256,114.95983 596.79359,113.94714 594.95702,113.94712 M 583.57705,124.37446 C 583.57705,120.64981 584.62407,117.62889 586.71813,115.31168 C 588.82934,112.97735 591.75586,111.81018 595.4977,111.81015 C 597.14546,111.81018 598.64734,112.05906 600.00334,112.5568 C 601.3593,113.03743 602.48357,113.67251 603.37613,114.46205 C 604.26866,115.25163 605.01531,116.1785 605.61608,117.24267 C 606.23398,118.30688 606.67167,119.39681 606.92916,120.51248 C 607.20376,121.61101 607.34108,122.73528 607.3411,123.88528 C 607.34108,124.98381 607.1866,126.08233 606.87766,127.18084 C 606.58584,128.27937 606.11383,129.36072 605.4616,130.42491 C 604.8265,131.47194 604.0541,132.40739 603.14442,133.23128 C 602.23468,134.038 601.11042,134.69025 599.77162,135.18802 C 598.44995,135.66862 596.99956,135.90892 595.42046,135.90892 C 593.56669,135.90892 591.86742,135.56563 590.32264,134.87906 C 588.77784,134.19248 587.52485,133.29136 586.56365,132.17567 C 585.61961,131.05999 584.88154,129.83274 584.34945,128.49392 C 583.83451,127.13794 583.57705,125.76479 583.57705,124.37446" />
    <path
       sodipodi:nodetypes="ccccccccccc"
       id="path6206"
       d="M 557.28097,107.23551 L 578.03719,107.23551 L 578.79342,131.23552 C 578.79342,136.53314 583.10509,140.12001 588.14755,140.12001 L 604.37443,139.95537 L 604.17227,162.08345 C 604.17227,167.27933 599.9893,171.46229 594.79342,171.46229 L 557.28097,171.46229 C 552.08509,171.46229 547.90212,167.27933 547.90212,162.08345 L 547.90212,116.61435 C 547.90212,111.41847 552.08509,107.23551 557.28097,107.23551 z "
       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline" />
    <path
       id="path6208"
       style="font-size:20px;stroke:#ffffff;stroke-width:1.92613077;stroke-miterlimit:4;display:inline"
       d="M 497.91568,164.42175 L 498.90307,164.54385 C 498.74735,165.12071 498.45892,165.5684 498.03778,165.88691 C 497.61663,166.20543 497.0787,166.36468 496.42398,166.36469 C 495.59938,166.36468 494.94465,166.11164 494.45981,165.60556 C 493.9785,165.09594 493.73784,164.38282 493.73784,163.46621 C 493.73784,162.51775 493.98204,161.78163 494.47042,161.25785 C 494.95881,160.73407 495.5923,160.47218 496.37089,160.47218 C 497.1247,160.47218 497.7405,160.72876 498.21827,161.24192 C 498.69604,161.75509 498.93492,162.47705 498.93493,163.40781 C 498.93492,163.46444 498.93315,163.54938 498.92961,163.66263 L 494.72523,163.66263 C 494.76062,164.28196 494.9358,164.75619 495.25079,165.08532 C 495.56576,165.41445 495.95859,165.57902 496.42928,165.57902 C 496.77965,165.57902 497.0787,165.487 497.32643,165.30297 C 497.57416,165.11894 497.77057,164.8252 497.91568,164.42175 M 494.77832,162.87696 L 497.9263,162.87696 C 497.88383,162.40273 497.7635,162.04706 497.56532,161.80994 C 497.26095,161.44188 496.86635,161.25785 496.3815,161.25785 C 495.94266,161.25785 495.57283,161.40472 495.27202,161.69846 C 494.97474,161.9922 494.81017,162.38503 494.77832,162.87696 M 500.0975,166.23728 L 500.0975,160.59959 L 500.95749,160.59959 L 500.95749,161.45426 C 501.1769,161.05436 501.37863,160.7907 501.56266,160.66329 C 501.75023,160.53589 501.95549,160.47218 502.17846,160.47218 C 502.50051,160.47218 502.82787,160.57482 503.16054,160.78008 L 502.83141,161.66661 C 502.59783,161.52859 502.36426,161.45958 502.13068,161.45957 C 501.92188,161.45958 501.7343,161.52328 501.56797,161.65068 C 501.40164,161.77455 501.28308,161.94796 501.2123,162.17092 C 501.10613,162.51067 501.05304,162.88227 501.05304,163.28572 L 501.05304,166.23728 L 500.0975,166.23728 M 503.56399,166.70443 L 504.49299,166.84245 C 504.53192,167.12912 504.63986,167.33792 504.81681,167.46887 C 505.05393,167.64582 505.37775,167.73429 505.78828,167.73429 C 506.23066,167.73429 506.57217,167.64582 506.81284,167.46887 C 507.05349,167.29191 507.21628,167.04418 507.30122,166.72567 C 507.35076,166.53102 507.37377,166.12226 507.37023,165.49939 C 506.95262,165.99132 506.43238,166.23728 505.80951,166.23728 C 505.03446,166.23728 504.43459,165.95769 504.00991,165.39853 C 503.58523,164.83936 503.37288,164.16871 503.37288,163.38658 C 503.37288,162.84865 503.47021,162.35318 503.66485,161.90018 C 503.8595,161.44365 504.14085,161.09152 504.50891,160.84378 C 504.88052,160.59605 505.31582,160.47218 505.81482,160.47218 C 506.48016,160.47218 507.02871,160.74115 507.46048,161.27908 L 507.46048,160.59959 L 508.3417,160.59959 L 508.3417,165.47285 C 508.3417,166.35053 508.25145,166.97163 508.07096,167.33615 C 507.89401,167.70421 507.61089,167.99441 507.22159,168.20676 C 506.83583,168.4191 506.35983,168.52527 505.79359,168.52527 C 505.12117,168.52527 504.57793,168.37309 504.16386,168.06873 C 503.74979,167.76791 503.54983,167.31315 503.56399,166.70443 M 504.35497,163.31757 C 504.35497,164.05723 504.50184,164.59693 504.79558,164.93668 C 505.08932,165.27643 505.45738,165.4463 505.89976,165.4463 C 506.3386,165.4463 506.70666,165.2782 507.00394,164.94199 C 507.30122,164.60224 507.44985,164.07139 507.44986,163.34942 C 507.44985,162.65931 507.29591,162.13907 506.98802,161.7887 C 506.68365,161.43834 506.3156,161.26316 505.88383,161.26315 C 505.45915,161.26316 505.09817,161.43657 504.80089,161.78339 C 504.50361,162.12669 504.35497,162.63808 504.35497,163.31757 M 509.43526,163.41843 C 509.43526,162.37442 509.72547,161.60114 510.30587,161.09859 C 510.79071,160.68099 511.38174,160.47218 512.07893,160.47218 C 512.85398,160.47218 513.48746,160.727 513.97939,161.23661 C 514.47132,161.7427 514.71728,162.44343 514.71728,163.3388 C 514.71728,164.06431 514.60757,164.63586 514.38815,165.05347 C 514.17227,165.46754 513.85552,165.78959 513.43792,166.01963 C 513.02385,166.24967 512.57085,166.36468 512.07893,166.36469 C 511.28972,166.36468 510.65092,166.11164 510.16254,165.60556 C 509.67769,165.09948 509.43526,164.37044 509.43526,163.41843 M 510.41735,163.41843 C 510.41734,164.1404 510.57484,164.68187 510.88981,165.04285 C 511.20478,165.4003 511.60116,165.57902 512.07893,165.57902 C 512.55316,165.57902 512.94776,165.39853 513.26274,165.03754 C 513.57771,164.67656 513.73519,164.12624 513.7352,163.38658 C 513.73519,162.68939 513.57594,162.16208 513.25743,161.80463 C 512.94245,161.44365 512.54962,161.26316 512.07893,161.26315 C 511.60116,161.26316 511.20478,161.44188 510.88981,161.79932 C 510.57484,162.15677 510.41734,162.69647 510.41735,163.41843 M 515.8427,166.23728 L 515.8427,160.59959 L 516.70269,160.59959 L 516.70269,161.40118 C 517.11675,160.78185 517.71485,160.47218 518.49698,160.47218 C 518.83673,160.47218 519.14816,160.53412 519.43129,160.65798 C 519.71794,160.77831 519.93206,160.93757 520.07363,161.13575 C 520.21518,161.33394 520.31428,161.56929 520.3709,161.84179 C 520.40629,162.01874 520.42398,162.32841 520.42399,162.77079 L 520.42399,166.23728 L 519.46845,166.23728 L 519.46845,162.80795 C 519.46844,162.41866 519.43128,162.12846 519.35697,161.93734 C 519.28264,161.7427 519.14993,161.58875 518.95883,161.4755 C 518.77126,161.35871 518.55006,161.30032 518.29525,161.30031 C 517.88826,161.30032 517.53613,161.4295 517.23885,161.68784 C 516.94511,161.9462 516.79824,162.43635 516.79824,163.15831 L 516.79824,166.23728 L 515.8427,166.23728 M 521.53879,163.41843 C 521.53879,162.37442 521.82899,161.60114 522.40939,161.09859 C 522.89424,160.68099 523.48526,160.47218 524.18245,160.47218 C 524.9575,160.47218 525.59099,160.727 526.08292,161.23661 C 526.57484,161.7427 526.82081,162.44343 526.82081,163.3388 C 526.82081,164.06431 526.71109,164.63586 526.49168,165.05347 C 526.27579,165.46754 525.95905,165.78959 525.54145,166.01963 C 525.12738,166.24967 524.67437,166.36468 524.18245,166.36469 C 523.39324,166.36468 522.75445,166.11164 522.26606,165.60556 C 521.78121,165.09948 521.53879,164.37044 521.53879,163.41843 M 522.52087,163.41843 C 522.52087,164.1404 522.67836,164.68187 522.99333,165.04285 C 523.30831,165.4003 523.70468,165.57902 524.18245,165.57902 C 524.65668,165.57902 525.05128,165.39853 525.36626,165.03754 C 525.68123,164.67656 525.83872,164.12624 525.83873,163.38658 C 525.83872,162.68939 525.67946,162.16208 525.36095,161.80463 C 525.04598,161.44365 524.65314,161.26316 524.18245,161.26315 C 523.70468,161.26316 523.30831,161.44188 522.99333,161.79932 C 522.67836,162.15677 522.52087,162.69647 522.52087,163.41843 M 527.94622,166.23728 L 527.94622,160.59959 L 528.8009,160.59959 L 528.8009,161.39056 C 528.97785,161.11452 529.2132,160.89333 529.50694,160.72699 C 529.80068,160.55712 530.13512,160.47218 530.51026,160.47218 C 530.92786,160.47218 531.26938,160.55889 531.53481,160.7323 C 531.80378,160.90572 531.99311,161.14814 532.10283,161.45957 C 532.54875,160.80132 533.12914,160.47218 533.84404,160.47218 C 534.4032,160.47218 534.83319,160.6279 535.13402,160.93933 C 535.43483,161.24723 535.58524,161.72324 535.58524,162.36734 L 535.58524,166.23728 L 534.63502,166.23728 L 534.63502,162.68585 C 534.63501,162.30364 534.60316,162.02936 534.53946,161.86302 C 534.47929,161.69315 534.36781,161.5569 534.20502,161.45426 C 534.04222,161.35164 533.85111,161.30032 533.63169,161.30031 C 533.23532,161.30032 532.90619,161.43303 532.6443,161.69846 C 532.38241,161.96035 532.25146,162.3815 532.25147,162.9619 L 532.25147,166.23728 L 531.29593,166.23728 L 531.29593,162.57437 C 531.29592,162.14969 531.21806,161.83118 531.06235,161.61883 C 530.90663,161.40649 530.65182,161.30032 530.29792,161.30031 C 530.02895,161.30032 529.77945,161.3711 529.54941,161.51266 C 529.32291,161.65422 529.15834,161.86126 529.05572,162.13376 C 528.95308,162.40627 528.90176,162.7991 528.90176,163.31226 L 528.90176,166.23728 L 527.94622,166.23728 M 537.0398,159.5538 L 537.0398,158.45493 L 537.99534,158.45493 L 537.99534,159.5538 L 537.0398,159.5538 M 537.0398,166.23728 L 537.0398,160.59959 L 537.99534,160.59959 L 537.99534,166.23728 L 537.0398,166.23728 M 539.07297,164.55447 L 540.0179,164.40583 C 540.07098,164.7845 540.21785,165.07471 540.45851,165.27643 C 540.7027,165.47816 541.04245,165.57902 541.47775,165.57902 C 541.91659,165.57902 542.24218,165.49054 542.45453,165.31359 C 542.66687,165.1331 542.77304,164.92253 542.77304,164.68187 C 542.77304,164.46599 542.67926,164.29612 542.49169,164.17225 C 542.36074,164.08731 542.03515,163.97937 541.51491,163.84843 C 540.81418,163.67148 540.32756,163.5193 540.05506,163.39189 C 539.78609,163.26095 539.58082,163.08223 539.43927,162.85573 C 539.30124,162.62569 539.23223,162.37265 539.23223,162.0966 C 539.23223,161.84533 539.28885,161.61352 539.40211,161.40118 C 539.51889,161.1853 539.67638,161.00658 539.87457,160.86501 C 540.0232,160.75531 540.22493,160.66329 540.47974,160.58897 C 540.73809,160.51111 541.01414,160.47218 541.30788,160.47218 C 541.75025,160.47218 542.13778,160.53589 542.47045,160.66329 C 542.80666,160.7907 543.05439,160.96411 543.21365,161.18353 C 543.37291,161.39941 543.48262,161.68962 543.54279,162.05413 L 542.60848,162.18154 C 542.566,161.89134 542.44214,161.66484 542.23688,161.50204 C 542.03515,161.33925 541.74849,161.25785 541.37689,161.25785 C 540.93804,161.25785 540.62484,161.3304 540.43728,161.4755 C 540.2497,161.6206 540.15592,161.79048 540.15592,161.98512 C 540.15592,162.10899 540.19485,162.22047 540.27271,162.31956 C 540.35057,162.4222 540.47267,162.50713 540.639,162.57437 C 540.73455,162.60976 541.0159,162.69116 541.48306,162.81856 C 542.15902,162.99906 542.62971,163.1477 542.89514,163.26448 C 543.1641,163.37774 543.37467,163.54407 543.52686,163.76349 C 543.67903,163.98291 543.75512,164.25542 543.75513,164.58101 C 543.75512,164.89952 543.66134,165.20034 543.47377,165.48346 C 543.28974,165.76305 543.02254,165.9807 542.67218,166.13642 C 542.32181,166.28859 541.92544,166.36468 541.48306,166.36469 C 540.75048,166.36468 540.19131,166.21251 539.80556,165.90815 C 539.42334,165.60379 539.17914,165.15256 539.07297,164.55447 M 548.56999,164.17225 L 549.50961,164.29435 C 549.40697,164.94199 549.14331,165.44984 548.71863,165.8179 C 548.29748,166.18242 547.77901,166.36468 547.16322,166.36469 C 546.39171,166.36468 545.77061,166.11341 545.29992,165.61087 C 544.83276,165.10479 544.59919,164.38105 544.59919,163.43967 C 544.59919,162.83095 544.70005,162.29833 544.90178,161.84179 C 545.1035,161.38526 545.40963,161.04374 545.82016,160.81724 C 546.23422,160.5872 546.68368,160.47218 547.16853,160.47218 C 547.78078,160.47218 548.28156,160.6279 548.67086,160.93933 C 549.06015,161.24723 549.30965,161.68608 549.41936,162.25586 L 548.49037,162.39919 C 548.40189,162.02052 548.2444,161.73562 548.0179,161.54451 C 547.79494,161.35341 547.5242,161.25785 547.2057,161.25785 C 546.72438,161.25785 546.33332,161.43126 546.0325,161.77809 C 545.73168,162.12138 545.58127,162.66639 545.58128,163.41312 C 545.58127,164.17048 545.72637,164.7208 546.01658,165.06409 C 546.30678,165.40737 546.68545,165.57902 547.15261,165.57902 C 547.52774,165.57902 547.84095,165.464 548.09222,165.23396 C 548.34349,165.00392 548.50275,164.65002 548.56999,164.17225 M 550.32713,166.23728 L 550.32713,158.45493 L 551.28267,158.45493 L 551.28267,161.24723 C 551.72859,160.73054 552.29129,160.47218 552.9708,160.47218 C 553.3884,160.47218 553.75115,160.55535 554.05905,160.72168 C 554.36694,160.88448 554.58636,161.11098 554.71731,161.40118 C 554.85179,161.69138 554.91903,162.11253 554.91904,162.66462 L 554.91904,166.23728 L 553.9635,166.23728 L 553.9635,162.66462 C 553.96349,162.18685 553.85909,161.84002 553.65029,161.62414 C 553.44502,161.40472 553.15305,161.29501 552.77438,161.29501 C 552.49125,161.29501 552.22405,161.36933 551.97278,161.51797 C 551.72505,161.66307 551.54809,161.86126 551.44193,162.11253 C 551.33575,162.3638 551.28267,162.71063 551.28267,163.153 L 551.28267,166.23728 L 550.32713,166.23728 M 560.23822,164.42175 L 561.22561,164.54385 C 561.06988,165.12071 560.78146,165.5684 560.36032,165.88691 C 559.93916,166.20543 559.40123,166.36468 558.74651,166.36469 C 557.92191,166.36468 557.26719,166.11164 556.78234,165.60556 C 556.30103,165.09594 556.06038,164.38282 556.06038,163.46621 C 556.06038,162.51775 556.30457,161.78163 556.79296,161.25785 C 557.28134,160.73407 557.91483,160.47218 558.69343,160.47218 C 559.44724,160.47218 560.06303,160.72876 560.54081,161.24192 C 561.01857,161.75509 561.25746,162.47705 561.25746,163.40781 C 561.25746,163.46444 561.25568,163.54938 561.25215,163.66263 L 557.04777,163.66263 C 557.08316,164.28196 557.25834,164.75619 557.57332,165.08532 C 557.88829,165.41445 558.28112,165.57902 558.75182,165.57902 C 559.10218,165.57902 559.40123,165.487 559.64897,165.30297 C 559.89669,165.11894 560.09311,164.8252 560.23822,164.42175 M 557.10085,162.87696 L 560.24883,162.87696 C 560.20636,162.40273 560.08603,162.04706 559.88785,161.80994 C 559.58349,161.44188 559.18889,161.25785 558.70404,161.25785 C 558.2652,161.25785 557.89537,161.40472 557.59455,161.69846 C 557.29727,161.9922 557.1327,162.38503 557.10085,162.87696 M 567.357,166.23728 L 567.357,159.37331 L 564.79296,159.37331 L 564.79296,158.45493 L 570.96152,158.45493 L 570.96152,159.37331 L 568.38686,159.37331 L 568.38686,166.23728 L 567.357,166.23728 M 574.41208,165.54186 C 574.05818,165.84268 573.71665,166.05502 573.38753,166.17889 C 573.06194,166.30275 572.71157,166.36468 572.33644,166.36469 C 571.7171,166.36468 571.2411,166.21427 570.90843,165.91346 C 570.57576,165.6091 570.40942,165.22157 570.40942,164.75088 C 570.40942,164.47484 570.47136,164.22357 570.59522,163.99707 C 570.72263,163.76703 570.8872,163.583 571.08892,163.44497 C 571.29419,163.30695 571.52422,163.20255 571.77903,163.13177 C 571.9666,163.08223 572.24973,163.03445 572.6284,162.98844 C 573.39991,162.89643 573.96793,162.78672 574.33245,162.65931 C 574.33599,162.52837 574.33776,162.4452 574.33776,162.40981 C 574.33776,162.02052 574.24751,161.74624 574.06702,161.58698 C 573.82282,161.3711 573.46008,161.26316 572.97877,161.26315 C 572.52931,161.26316 572.19664,161.34279 571.98076,161.50204 C 571.76841,161.65776 571.61093,161.93558 571.5083,162.33549 L 570.57399,162.20808 C 570.65893,161.80817 570.79872,161.48612 570.99336,161.24192 C 571.18801,160.99419 571.46937,160.80486 571.83743,160.67391 C 572.20549,160.53943 572.63194,160.47218 573.11679,160.47218 C 573.5981,160.47218 573.98916,160.52881 574.28999,160.64205 C 574.5908,160.75531 574.81199,160.89864 574.95356,161.07205 C 575.09511,161.24193 575.19421,161.45781 575.25083,161.71969 C 575.28268,161.88249 575.2986,162.17623 575.29861,162.60091 L 575.29861,163.87497 C 575.2986,164.76327 575.31807,165.32598 575.35701,165.56309 C 575.39947,165.79667 575.48087,166.0214 575.6012,166.23728 L 574.60319,166.23728 C 574.50409,166.03909 574.44039,165.80729 574.41208,165.54186 M 574.33245,163.40781 C 573.98562,163.54938 573.46538,163.66971 572.77174,163.7688 C 572.3789,163.82542 572.10108,163.88913 571.93829,163.95991 C 571.77549,164.03069 571.64986,164.13509 571.56138,164.27311 C 571.4729,164.4076 571.42867,164.55801 571.42867,164.72434 C 571.42867,164.97915 571.52422,165.19149 571.71533,165.36137 C 571.90998,165.53124 572.1931,165.61618 572.5647,165.61618 C 572.93276,165.61618 573.26012,165.53655 573.54679,165.37729 C 573.83344,165.2145 574.04401,164.99331 574.1785,164.71372 C 574.28113,164.49784 574.33245,164.17933 574.33245,163.75818 L 574.33245,163.40781 M 576.40279,164.55447 L 577.34772,164.40583 C 577.4008,164.7845 577.54767,165.07471 577.78833,165.27643 C 578.03252,165.47816 578.37227,165.57902 578.80757,165.57902 C 579.24641,165.57902 579.572,165.49054 579.78435,165.31359 C 579.99669,165.1331 580.10286,164.92253 580.10286,164.68187 C 580.10286,164.46599 580.00907,164.29612 579.82151,164.17225 C 579.69056,164.08731 579.36497,163.97937 578.84473,163.84843 C 578.144,163.67148 577.65738,163.5193 577.38487,163.39189 C 577.11591,163.26095 576.91064,163.08223 576.76908,162.85573 C 576.63106,162.62569 576.56205,162.37265 576.56205,162.0966 C 576.56205,161.84533 576.61867,161.61352 576.73192,161.40118 C 576.84871,161.1853 577.0062,161.00658 577.20438,160.86501 C 577.35302,160.75531 577.55475,160.66329 577.80956,160.58897 C 578.06791,160.51111 578.34395,160.47218 578.6377,160.47218 C 579.08008,160.47218 579.4676,160.53589 579.80027,160.66329 C 580.13648,160.7907 580.38421,160.96411 580.54347,161.18353 C 580.70272,161.39941 580.81243,161.68962 580.8726,162.05413 L 579.9383,162.18154 C 579.89582,161.89134 579.77195,161.66484 579.5667,161.50204 C 579.36497,161.33925 579.0783,161.25785 578.70671,161.25785 C 578.26786,161.25785 577.95466,161.3304 577.76709,161.4755 C 577.57953,161.6206 577.48574,161.79048 577.48574,161.98512 C 577.48574,162.10899 577.52466,162.22047 577.60253,162.31956 C 577.68038,162.4222 577.80248,162.50713 577.96882,162.57437 C 578.06437,162.60976 578.34572,162.69116 578.81288,162.81856 C 579.48883,162.99906 579.95953,163.1477 580.22496,163.26448 C 580.49392,163.37774 580.7045,163.54407 580.85668,163.76349 C 581.00885,163.98291 581.08494,164.25542 581.08495,164.58101 C 581.08494,164.89952 580.99116,165.20034 580.80359,165.48346 C 580.61956,165.76305 580.35236,165.9807 580.002,166.13642 C 579.65163,166.28859 579.25526,166.36468 578.81288,166.36469 C 578.0803,166.36468 577.52113,166.21251 577.13537,165.90815 C 576.75315,165.60379 576.50896,165.15256 576.40279,164.55447 M 584.30724,165.3826 L 584.44527,166.22666 C 584.1763,166.28329 583.93564,166.3116 583.7233,166.3116 C 583.37647,166.3116 583.10751,166.25674 582.9164,166.14703 C 582.72529,166.03732 582.59081,165.89399 582.51295,165.71704 C 582.43509,165.53655 582.39616,165.15964 582.39616,164.58632 L 582.39616,161.34278 L 581.69543,161.34278 L 581.69543,160.59959 L 582.39616,160.59959 L 582.39616,159.20343 L 583.34639,158.63011 L 583.34639,160.59959 L 584.30724,160.59959 L 584.30724,161.34278 L 583.34639,161.34278 L 583.34639,164.6394 C 583.34639,164.91191 583.36232,165.08709 583.39417,165.16495 C 583.42956,165.24281 583.48441,165.30474 583.55874,165.35075 C 583.63659,165.39676 583.7463,165.41976 583.88787,165.41976 C 583.99403,165.41976 584.13382,165.40737 584.30724,165.3826 M 588.91507,165.54186 C 588.56117,165.84268 588.21965,166.05502 587.89052,166.17889 C 587.56493,166.30275 587.21456,166.36468 586.83943,166.36469 C 586.22009,166.36468 585.74409,166.21427 585.41142,165.91346 C 585.07875,165.6091 584.91242,165.22157 584.91242,164.75088 C 584.91242,164.47484 584.97435,164.22357 585.09822,163.99707 C 585.22562,163.76703 585.39019,163.583 585.59191,163.44497 C 585.79718,163.30695 586.02722,163.20255 586.28203,163.13177 C 586.46959,163.08223 586.75272,163.03445 587.1314,162.98844 C 587.90291,162.89643 588.47092,162.78672 588.83545,162.65931 C 588.83898,162.52837 588.84075,162.4452 588.84075,162.40981 C 588.84075,162.02052 588.75051,161.74624 588.57002,161.58698 C 588.32582,161.3711 587.96307,161.26316 587.48176,161.26315 C 587.03231,161.26316 586.69963,161.34279 586.48376,161.50204 C 586.27141,161.65776 586.11392,161.93558 586.01129,162.33549 L 585.07699,162.20808 C 585.16192,161.80817 585.30171,161.48612 585.49636,161.24192 C 585.69101,160.99419 585.97236,160.80486 586.34042,160.67391 C 586.70848,160.53943 587.13494,160.47218 587.61979,160.47218 C 588.10109,160.47218 588.49216,160.52881 588.79298,160.64205 C 589.09379,160.75531 589.31498,160.89864 589.45655,161.07205 C 589.5981,161.24193 589.6972,161.45781 589.75383,161.71969 C 589.78568,161.88249 589.8016,162.17623 589.80161,162.60091 L 589.80161,163.87497 C 589.8016,164.76327 589.82107,165.32598 589.86,165.56309 C 589.90246,165.79667 589.98386,166.0214 590.10419,166.23728 L 589.10618,166.23728 C 589.00709,166.03909 588.94339,165.80729 588.91507,165.54186 M 588.83545,163.40781 C 588.48862,163.54938 587.96838,163.66971 587.27473,163.7688 C 586.88189,163.82542 586.60408,163.88913 586.44129,163.95991 C 586.27849,164.03069 586.15285,164.13509 586.06438,164.27311 C 585.9759,164.4076 585.93166,164.55801 585.93166,164.72434 C 585.93166,164.97915 586.02722,165.19149 586.21832,165.36137 C 586.41297,165.53124 586.6961,165.61618 587.06769,165.61618 C 587.43575,165.61618 587.76312,165.53655 588.04978,165.37729 C 588.33644,165.2145 588.54701,164.99331 588.6815,164.71372 C 588.78413,164.49784 588.83544,164.17933 588.83545,163.75818 L 588.83545,163.40781 M 593.37427,165.3826 L 593.51229,166.22666 C 593.24332,166.28329 593.00267,166.3116 592.79033,166.3116 C 592.4435,166.3116 592.17453,166.25674 591.98342,166.14703 C 591.79232,166.03732 591.65783,165.89399 591.57998,165.71704 C 591.50212,165.53655 591.46319,165.15964 591.46319,164.58632 L 591.46319,161.34278 L 590.76246,161.34278 L 590.76246,160.59959 L 591.46319,160.59959 L 591.46319,159.20343 L 592.41342,158.63011 L 592.41342,160.59959 L 593.37427,160.59959 L 593.37427,161.34278 L 592.41342,161.34278 L 592.41342,164.6394 C 592.41342,164.91191 592.42934,165.08709 592.4612,165.16495 C 592.49659,165.24281 592.55144,165.30474 592.62576,165.35075 C 592.70362,165.39676 592.81333,165.41976 592.95489,165.41976 C 593.06106,165.41976 593.20085,165.40737 593.37427,165.3826 M 597.99803,166.23728 L 597.99803,165.40914 C 597.55918,166.04617 596.96285,166.36468 596.20904,166.36469 C 595.87637,166.36468 595.56493,166.30098 595.27473,166.17358 C 594.98807,166.04617 594.77396,165.88691 594.6324,165.69581 C 594.49437,165.50116 594.39705,165.26404 594.34043,164.98446 C 594.3015,164.79689 594.28203,164.49961 594.28203,164.09262 L 594.28203,160.59959 L 595.23757,160.59959 L 595.23757,163.72633 C 595.23757,164.22533 595.25704,164.56154 595.29597,164.73496 C 595.35613,164.98623 595.48354,165.18441 595.67819,165.32951 C 595.87283,165.47108 596.11349,165.54186 596.40015,165.54186 C 596.68681,165.54186 596.95578,165.46931 597.20705,165.32421 C 597.45832,165.17557 597.63527,164.97561 597.73791,164.72434 C 597.84408,164.46953 597.89716,164.10147 597.89717,163.62016 L 597.89717,160.59959 L 598.85271,160.59959 L 598.85271,166.23728 L 597.99803,166.23728 M 600.34441,166.23728 L 600.34441,160.59959 L 601.2044,160.59959 L 601.2044,161.45426 C 601.42382,161.05436 601.62554,160.7907 601.80958,160.66329 C 601.99714,160.53589 602.20241,160.47218 602.42537,160.47218 C 602.74742,160.47218 603.07478,160.57482 603.40746,160.78008 L 603.07832,161.66661 C 602.84475,161.52859 602.61117,161.45958 602.37759,161.45957 C 602.16879,161.45958 601.98122,161.52328 601.81488,161.65068 C 601.64855,161.77455 601.52999,161.94796 601.45921,162.17092 C 601.35304,162.51067 601.29995,162.88227 601.29996,163.28572 L 601.29996,166.23728 L 600.34441,166.23728 M 604.86731,166.23728 L 603.98078,166.23728 L 603.98078,158.45493 L 604.93632,158.45493 L 604.93632,161.2313 C 605.33977,160.72523 605.8547,160.47218 606.48112,160.47218 C 606.82794,160.47218 607.15529,160.54297 607.4632,160.68452 C 607.77463,160.82255 608.02944,161.01897 608.22763,161.27377 C 608.42935,161.52505 608.58684,161.82941 608.70009,162.18685 C 608.81334,162.54429 608.86996,162.92651 608.86997,163.33349 C 608.86996,164.29965 608.63107,165.04639 608.15331,165.57371 C 607.67553,166.10103 607.10221,166.36468 606.43333,166.36469 C 605.76799,166.36468 605.24599,166.08687 604.86731,165.53124 L 604.86731,166.23728 M 604.85669,163.37596 C 604.85669,164.05192 604.9487,164.54031 605.13274,164.84113 C 605.43355,165.33305 605.84055,165.57902 606.35371,165.57902 C 606.77131,165.57902 607.1323,165.39853 607.43666,165.03754 C 607.74101,164.67302 607.89318,164.13155 607.89319,163.41312 C 607.89318,162.67701 607.74632,162.13376 607.45258,161.78339 C 607.16237,161.43303 606.81024,161.25785 606.39618,161.25785 C 605.97857,161.25785 605.61758,161.44011 605.31323,161.80463 C 605.00887,162.16562 604.85669,162.68939 604.85669,163.37596 M 613.89717,164.42175 L 614.88457,164.54385 C 614.72887,165.12071 614.44037,165.5684 614.01927,165.88691 C 613.59817,166.20543 613.06017,166.36468 612.40547,166.36469 C 611.58087,166.36468 610.92615,166.11164 610.4413,165.60556 C 609.95999,165.09594 609.71934,164.38282 609.71934,163.46621 C 609.71934,162.51775 609.96353,161.78163 610.45192,161.25785 C 610.94031,160.73407 611.57379,160.47218 612.35239,160.47218 C 613.10617,160.47218 613.72197,160.72876 614.19977,161.24192 C 614.67757,161.75509 614.91637,162.47705 614.91647,163.40781 C 614.91637,163.46444 614.91467,163.54938 614.91107,163.66263 L 610.70673,163.66263 C 610.74212,164.28196 610.9173,164.75619 611.23228,165.08532 C 611.54725,165.41445 611.94008,165.57902 612.41078,165.57902 C 612.76114,165.57902 613.06017,165.487 613.30797,165.30297 C 613.55567,165.11894 613.75207,164.8252 613.89717,164.42175 M 610.75982,162.87696 L 613.90777,162.87696 C 613.86537,162.40273 613.74497,162.04706 613.54677,161.80994 C 613.24247,161.44188 612.84787,161.25785 612.363,161.25785 C 611.92416,161.25785 611.55433,161.40472 611.25351,161.69846 C 610.95623,161.9922 610.79166,162.38503 610.75982,162.87696 M 616.06837,166.23728 L 616.06837,158.45493 L 617.02387,158.45493 L 617.02387,166.23728 L 616.06837,166.23728 M 622.36967,164.42175 L 623.35707,164.54385 C 623.20127,165.12071 622.91287,165.5684 622.49177,165.88691 C 622.07057,166.20543 621.53267,166.36468 620.87797,166.36469 C 620.05337,166.36468 619.39857,166.11164 618.91377,165.60556 C 618.43247,165.09594 618.19177,164.38282 618.19177,163.46621 C 618.19177,162.51775 618.43597,161.78163 618.92437,161.25785 C 619.41277,160.73407 620.04627,160.47218 620.82487,160.47218 C 621.57867,160.47218 622.19447,160.72876 622.67227,161.24192 C 623.14997,161.75509 623.38887,162.47705 623.38887,163.40781 C 623.38887,163.46444 623.38707,163.54938 623.38357,163.66263 L 619.17917,163.66263 C 619.21457,164.28196 619.38977,164.75619 619.70477,165.08532 C 620.01977,165.41445 620.41257,165.57902 620.88327,165.57902 C 621.23357,165.57902 621.53267,165.487 621.78037,165.30297 C 622.02807,165.11894 622.22457,164.8252 622.36967,164.42175 M 619.23227,162.87696 L 622.38027,162.87696 C 622.33777,162.40273 622.21747,162.04706 622.01927,161.80994 C 621.71497,161.44188 621.32027,161.25785 620.83547,161.25785 C 620.39657,161.25785 620.02677,161.40472 619.72597,161.69846 C 619.42867,161.9922 619.26417,162.38503 619.23227,162.87696 M 624.38687,166.70443 L 625.31587,166.84245 C 625.35487,167.12912 625.46277,167.33792 625.63977,167.46887 C 625.87687,167.64582 626.20067,167.73429 626.61117,167.73429 C 627.05357,167.73429 627.39507,167.64582 627.63577,167.46887 C 627.87637,167.29191 628.03917,167.04418 628.12417,166.72567 C 628.17367,166.53102 628.19667,166.12226 628.19317,165.49939 C 627.77557,165.99132 627.25527,166.23728 626.63247,166.23728 C 625.85737,166.23728 625.25747,165.95769 624.83277,165.39853 C 624.40817,164.83936 624.19577,164.16871 624.19577,163.38658 C 624.19577,162.84865 624.29307,162.35318 624.48777,161.90018 C 624.68237,161.44365 624.96377,161.09152 625.33187,160.84378 C 625.70337,160.59605 626.13877,160.47218 626.63777,160.47218 C 627.30307,160.47218 627.85167,160.74115 628.28337,161.27908 L 628.28337,160.59959 L 629.16457,160.59959 L 629.16457,165.47285 C 629.16457,166.35053 629.07437,166.97163 628.89387,167.33615 C 628.71687,167.70421 628.43377,167.99441 628.04447,168.20676 C 627.65877,168.4191 627.18277,168.52527 626.61647,168.52527 C 625.94407,168.52527 625.40087,168.37309 624.98677,168.06873 C 624.57267,167.76791 624.37277,167.31315 624.38687,166.70443 M 625.17787,163.31757 C 625.17787,164.05723 625.32477,164.59693 625.61847,164.93668 C 625.91217,165.27643 626.28027,165.4463 626.72267,165.4463 C 627.16147,165.4463 627.52957,165.2782 627.82687,164.94199 C 628.12407,164.60224 628.27277,164.07139 628.27277,163.34942 C 628.27277,162.65931 628.11877,162.13907 627.81097,161.7887 C 627.50657,161.43834 627.13847,161.26316 626.70677,161.26315 C 626.28207,161.26316 625.92107,161.43657 625.62377,161.78339 C 625.32647,162.12669 625.17787,162.63808 625.17787,163.31757 M 634.30857,166.23728 L 634.30857,165.40914 C 633.86977,166.04617 633.27347,166.36468 632.51967,166.36469 C 632.18697,166.36468 631.87547,166.30098 631.58527,166.17358 C 631.29867,166.04617 631.08457,165.88691 630.94297,165.69581 C 630.80497,165.50116 630.70767,165.26404 630.65097,164.98446 C 630.61207,164.79689 630.59257,164.49961 630.59257,164.09262 L 630.59257,160.59959 L 631.54817,160.59959 L 631.54817,163.72633 C 631.54817,164.22533 631.56757,164.56154 631.60657,164.73496 C 631.66667,164.98623 631.79407,165.18441 631.98877,165.32951 C 632.18337,165.47108 632.42407,165.54186 632.71077,165.54186 C 632.99737,165.54186 633.26637,165.46931 633.51767,165.32421 C 633.76887,165.17557 633.94587,164.97561 634.04847,164.72434 C 634.15467,164.46953 634.20777,164.10147 634.20777,163.62016 L 634.20777,160.59959 L 635.16327,160.59959 L 635.16327,166.23728 L 634.30857,166.23728 M 636.66557,166.23728 L 636.66557,160.59959 L 637.52557,160.59959 L 637.52557,161.40118 C 637.93967,160.78185 638.53777,160.47218 639.31987,160.47218 C 639.65967,160.47218 639.97107,160.53412 640.25417,160.65798 C 640.54087,160.77831 640.75497,160.93757 640.89657,161.13575 C 641.03807,161.33394 641.13717,161.56929 641.19377,161.84179 C 641.22917,162.01874 641.24687,162.32841 641.24687,162.77079 L 641.24687,166.23728 L 640.29137,166.23728 L 640.29137,162.80795 C 640.29137,162.41866 640.25417,162.12846 640.17987,161.93734 C 640.10557,161.7427 639.97287,161.58875 639.78177,161.4755 C 639.59417,161.35871 639.37297,161.30032 639.11817,161.30031 C 638.71117,161.30032 638.35907,161.4295 638.06177,161.68784 C 637.76797,161.9462 637.62117,162.43635 637.62117,163.15831 L 637.62117,166.23728 L 636.66557,166.23728 M 642.54217,166.70443 L 643.47117,166.84245 C 643.51007,167.12912 643.61807,167.33792 643.79497,167.46887 C 644.03207,167.64582 644.35597,167.73429 644.76647,167.73429 C 645.20887,167.73429 645.55037,167.64582 645.79107,167.46887 C 646.03167,167.29191 646.19447,167.04418 646.27937,166.72567 C 646.32897,166.53102 646.35197,166.12226 646.34847,165.49939 C 645.93077,165.99132 645.41057,166.23728 644.78767,166.23728 C 644.01267,166.23728 643.41277,165.95769 642.98807,165.39853 C 642.56337,164.83936 642.35107,164.16871 642.35107,163.38658 C 642.35107,162.84865 642.44837,162.35318 642.64307,161.90018 C 642.83767,161.44365 643.11907,161.09152 643.48707,160.84378 C 643.85867,160.59605 644.29397,160.47218 644.79297,160.47218 C 645.45837,160.47218 646.00687,160.74115 646.43867,161.27908 L 646.43867,160.59959 L 647.31987,160.59959 L 647.31987,165.47285 C 647.31987,166.35053 647.22967,166.97163 647.04917,167.33615 C 646.87217,167.70421 646.58907,167.99441 646.19977,168.20676 C 645.81407,168.4191 645.33807,168.52527 644.77177,168.52527 C 644.09937,168.52527 643.55607,168.37309 643.14207,168.06873 C 642.72797,167.76791 642.52807,167.31315 642.54217,166.70443 M 643.33317,163.31757 C 643.33317,164.05723 643.48007,164.59693 643.77377,164.93668 C 644.06747,165.27643 644.43557,165.4463 644.87797,165.4463 C 645.31677,165.4463 645.68487,165.2782 645.98217,164.94199 C 646.27937,164.60224 646.42807,164.07139 646.42807,163.34942 C 646.42807,162.65931 646.27407,162.13907 645.96617,161.7887 C 645.66187,161.43834 645.29377,161.26316 644.86207,161.26315 C 644.43737,161.26316 644.07637,161.43657 643.77907,161.78339 C 643.48177,162.12669 643.33317,162.63808 643.33317,163.31757" />
    <path
       id="path6210"
       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:64.99999762%;writing-mode:lr-tb;text-anchor:start;font-family:Linux Libertine"
       d="M 616.11017,127.00004 C 616.11017,126.77213 616.16717,126.53927 616.28117,126.30144 C 616.39507,126.06362 616.55607,125.84066 616.76417,125.63255 C 616.97227,125.41951 617.25227,125.24609 617.60407,125.11231 C 617.95577,124.97854 618.34477,124.91165 618.77087,124.91164 C 619.12757,124.91165 619.46197,124.94633 619.77417,125.01569 C 620.08627,125.08506 620.38607,125.19902 620.67347,125.35756 C 620.96077,125.51612 621.18867,125.749 621.35717,126.05618 C 621.52567,126.35842 621.60987,126.72259 621.60987,127.14868 C 621.60987,127.3221 621.58757,127.49551 621.54297,127.66892 C 621.49837,127.83739 621.42157,128.01327 621.31257,128.19659 C 621.20357,128.37992 621.09457,128.5459 620.98557,128.69453 C 620.88157,128.84318 620.72797,129.02403 620.52477,129.23707 C 620.32657,129.44517 620.15567,129.62106 620.01197,129.76474 C 619.87327,129.90347 619.67257,130.09918 619.40997,130.35187 C 618.27537,131.43199 617.70807,132.22226 617.70807,132.72267 L 619.98227,132.72267 C 620.25977,132.72267 620.46777,132.64092 620.60657,132.47742 C 620.74527,132.30896 620.88397,131.98195 621.02277,131.4964 L 621.66927,131.63017 C 621.54547,132.15041 621.43397,132.84406 621.33487,133.71113 L 616.00617,133.71113 C 616.00617,133.38908 616.03587,133.11161 616.09537,132.87875 C 616.15977,132.64588 616.31337,132.34612 616.55607,131.97948 C 616.80387,131.60788 617.16557,131.17682 617.64117,130.68631 L 618.69657,129.59381 C 619.09787,129.17762 619.38767,128.79115 619.56607,128.43441 C 619.74447,128.07768 619.83357,127.66893 619.83367,127.20813 C 619.83357,126.896 619.79147,126.6235 619.70727,126.39062 C 619.62797,126.1528 619.52397,125.97444 619.39517,125.85551 C 619.27127,125.73166 619.14737,125.64246 619.02357,125.58796 C 618.90467,125.52851 618.78817,125.49878 618.67427,125.49877 C 618.31747,125.49878 618.04997,125.58796 617.87157,125.76633 C 617.69817,125.94471 617.61147,126.13794 617.61147,126.34603 C 617.61147,126.48972 617.62877,126.61111 617.66347,126.71019 C 617.70317,126.8192 617.72297,126.92077 617.72297,127.01491 C 617.72297,127.2131 617.64117,127.36422 617.47767,127.46826 C 617.31417,127.56735 617.13087,127.6169 616.92767,127.6169 C 616.69977,127.6169 616.50657,127.55744 616.34807,127.43853 C 616.18947,127.31962 616.11017,127.17346 616.11017,127.00004 M 623.59417,133.65167 C 623.43067,133.48321 623.34897,133.28255 623.34897,133.04968 C 623.34897,132.81681 623.43067,132.61863 623.59417,132.45512 C 623.76267,132.28667 623.96337,132.20244 624.19617,132.20243 C 624.42907,132.20244 624.62727,132.28667 624.79077,132.45512 C 624.95917,132.61863 625.04347,132.81681 625.04347,133.04968 C 625.04347,133.28255 624.95917,133.48321 624.79077,133.65167 C 624.62727,133.81517 624.42907,133.89693 624.19617,133.89693 C 623.96337,133.89693 623.76267,133.81517 623.59417,133.65167 M 629.61407,125.55823 C 629.50017,125.55823 629.39117,125.58796 629.28707,125.64741 C 629.18307,125.70192 629.07157,125.81836 628.95267,125.99672 C 628.83377,126.17014 628.73217,126.40054 628.64797,126.6879 C 628.56377,126.97527 628.49187,127.37165 628.43247,127.87701 C 628.37797,128.37744 628.35067,128.95961 628.35067,129.62353 C 628.35067,129.99018 628.36557,130.35683 628.39527,130.72347 C 628.42997,131.09012 628.48697,131.47906 628.56617,131.89029 C 628.64547,132.30153 628.77177,132.63597 628.94527,132.89361 C 629.11867,133.15125 629.32677,133.28007 629.56957,133.28007 C 629.62397,133.28007 629.68597,133.26521 629.75537,133.23548 C 629.82467,133.2008 629.90647,133.14382 630.00057,133.06454 C 630.09967,132.98032 630.19627,132.84654 630.29047,132.66322 C 630.38457,132.47494 630.46627,132.24951 630.53567,131.98691 C 630.73387,131.26848 630.83297,130.29242 630.83297,129.0587 C 630.83297,128.16687 630.75367,127.44349 630.59517,126.88856 C 630.44157,126.33365 630.25327,125.95957 630.03027,125.76633 C 629.88667,125.6276 629.74787,125.55823 629.61407,125.55823 M 629.55467,133.89693 C 629.11367,133.89693 628.70497,133.77554 628.32837,133.53276 C 627.95187,133.28998 627.63717,132.96545 627.38447,132.55917 C 627.13187,132.15289 626.93367,131.6822 626.78997,131.14709 C 626.65127,130.60703 626.58187,130.04468 626.58187,129.46003 C 626.58187,128.54838 626.72557,127.74077 627.01297,127.0372 C 627.30027,126.33365 627.67187,125.8035 628.12767,125.44675 C 628.58357,125.09002 629.07897,124.91165 629.61407,124.91164 C 629.97577,124.91165 630.33997,125.01074 630.70667,125.20892 C 631.07327,125.40216 631.37797,125.64494 631.62077,125.93726 C 632.26487,126.79938 632.58687,127.93152 632.58687,129.33369 C 632.58687,129.98275 632.52007,130.57235 632.38627,131.1025 C 632.25747,131.63265 632.08647,132.06866 631.87347,132.41053 C 631.66537,132.74745 631.42507,133.03234 631.15257,133.26521 C 630.88007,133.49312 630.60997,133.65415 630.34247,133.74828 C 630.07987,133.84738 629.81727,133.89693 629.55467,133.89693" />
    <path
       id="path6212"
       style="font-size:20px;display:inline"
       d="M 497.91568,164.42175 L 498.90307,164.54385 C 498.74735,165.12071 498.45892,165.5684 498.03778,165.88691 C 497.61663,166.20543 497.0787,166.36468 496.42398,166.36469 C 495.59938,166.36468 494.94465,166.11164 494.45981,165.60556 C 493.9785,165.09594 493.73784,164.38282 493.73784,163.46621 C 493.73784,162.51775 493.98204,161.78163 494.47042,161.25785 C 494.95881,160.73407 495.5923,160.47218 496.37089,160.47218 C 497.1247,160.47218 497.7405,160.72876 498.21827,161.24192 C 498.69604,161.75509 498.93492,162.47705 498.93493,163.40781 C 498.93492,163.46444 498.93315,163.54938 498.92961,163.66263 L 494.72523,163.66263 C 494.76062,164.28196 494.9358,164.75619 495.25079,165.08532 C 495.56576,165.41445 495.95859,165.57902 496.42928,165.57902 C 496.77965,165.57902 497.0787,165.487 497.32643,165.30297 C 497.57416,165.11894 497.77057,164.8252 497.91568,164.42175 M 494.77832,162.87696 L 497.9263,162.87696 C 497.88383,162.40273 497.7635,162.04706 497.56532,161.80994 C 497.26095,161.44188 496.86635,161.25785 496.3815,161.25785 C 495.94266,161.25785 495.57283,161.40472 495.27202,161.69846 C 494.97474,161.9922 494.81017,162.38503 494.77832,162.87696 M 500.0975,166.23728 L 500.0975,160.59959 L 500.95749,160.59959 L 500.95749,161.45426 C 501.1769,161.05436 501.37863,160.7907 501.56266,160.66329 C 501.75023,160.53589 501.95549,160.47218 502.17846,160.47218 C 502.50051,160.47218 502.82787,160.57482 503.16054,160.78008 L 502.83141,161.66661 C 502.59783,161.52859 502.36426,161.45958 502.13068,161.45957 C 501.92188,161.45958 501.7343,161.52328 501.56797,161.65068 C 501.40164,161.77455 501.28308,161.94796 501.2123,162.17092 C 501.10613,162.51067 501.05304,162.88227 501.05304,163.28572 L 501.05304,166.23728 L 500.0975,166.23728 M 503.56399,166.70443 L 504.49299,166.84245 C 504.53192,167.12912 504.63986,167.33792 504.81681,167.46887 C 505.05393,167.64582 505.37775,167.73429 505.78828,167.73429 C 506.23066,167.73429 506.57217,167.64582 506.81284,167.46887 C 507.05349,167.29191 507.21628,167.04418 507.30122,166.72567 C 507.35076,166.53102 507.37377,166.12226 507.37023,165.49939 C 506.95262,165.99132 506.43238,166.23728 505.80951,166.23728 C 505.03446,166.23728 504.43459,165.95769 504.00991,165.39853 C 503.58523,164.83936 503.37288,164.16871 503.37288,163.38658 C 503.37288,162.84865 503.47021,162.35318 503.66485,161.90018 C 503.8595,161.44365 504.14085,161.09152 504.50891,160.84378 C 504.88052,160.59605 505.31582,160.47218 505.81482,160.47218 C 506.48016,160.47218 507.02871,160.74115 507.46048,161.27908 L 507.46048,160.59959 L 508.3417,160.59959 L 508.3417,165.47285 C 508.3417,166.35053 508.25145,166.97163 508.07096,167.33615 C 507.89401,167.70421 507.61089,167.99441 507.22159,168.20676 C 506.83583,168.4191 506.35983,168.52527 505.79359,168.52527 C 505.12117,168.52527 504.57793,168.37309 504.16386,168.06873 C 503.74979,167.76791 503.54983,167.31315 503.56399,166.70443 M 504.35497,163.31757 C 504.35497,164.05723 504.50184,164.59693 504.79558,164.93668 C 505.08932,165.27643 505.45738,165.4463 505.89976,165.4463 C 506.3386,165.4463 506.70666,165.2782 507.00394,164.94199 C 507.30122,164.60224 507.44985,164.07139 507.44986,163.34942 C 507.44985,162.65931 507.29591,162.13907 506.98802,161.7887 C 506.68365,161.43834 506.3156,161.26316 505.88383,161.26315 C 505.45915,161.26316 505.09817,161.43657 504.80089,161.78339 C 504.50361,162.12669 504.35497,162.63808 504.35497,163.31757 M 509.43526,163.41843 C 509.43526,162.37442 509.72547,161.60114 510.30587,161.09859 C 510.79071,160.68099 511.38174,160.47218 512.07893,160.47218 C 512.85398,160.47218 513.48746,160.727 513.97939,161.23661 C 514.47132,161.7427 514.71728,162.44343 514.71728,163.3388 C 514.71728,164.06431 514.60757,164.63586 514.38815,165.05347 C 514.17227,165.46754 513.85552,165.78959 513.43792,166.01963 C 513.02385,166.24967 512.57085,166.36468 512.07893,166.36469 C 511.28972,166.36468 510.65092,166.11164 510.16254,165.60556 C 509.67769,165.09948 509.43526,164.37044 509.43526,163.41843 M 510.41735,163.41843 C 510.41734,164.1404 510.57484,164.68187 510.88981,165.04285 C 511.20478,165.4003 511.60116,165.57902 512.07893,165.57902 C 512.55316,165.57902 512.94776,165.39853 513.26274,165.03754 C 513.57771,164.67656 513.73519,164.12624 513.7352,163.38658 C 513.73519,162.68939 513.57594,162.16208 513.25743,161.80463 C 512.94245,161.44365 512.54962,161.26316 512.07893,161.26315 C 511.60116,161.26316 511.20478,161.44188 510.88981,161.79932 C 510.57484,162.15677 510.41734,162.69647 510.41735,163.41843 M 515.8427,166.23728 L 515.8427,160.59959 L 516.70269,160.59959 L 516.70269,161.40118 C 517.11675,160.78185 517.71485,160.47218 518.49698,160.47218 C 518.83673,160.47218 519.14816,160.53412 519.43129,160.65798 C 519.71794,160.77831 519.93206,160.93757 520.07363,161.13575 C 520.21518,161.33394 520.31428,161.56929 520.3709,161.84179 C 520.40629,162.01874 520.42398,162.32841 520.42399,162.77079 L 520.42399,166.23728 L 519.46845,166.23728 L 519.46845,162.80795 C 519.46844,162.41866 519.43128,162.12846 519.35697,161.93734 C 519.28264,161.7427 519.14993,161.58875 518.95883,161.4755 C 518.77126,161.35871 518.55006,161.30032 518.29525,161.30031 C 517.88826,161.30032 517.53613,161.4295 517.23885,161.68784 C 516.94511,161.9462 516.79824,162.43635 516.79824,163.15831 L 516.79824,166.23728 L 515.8427,166.23728 M 521.53879,163.41843 C 521.53879,162.37442 521.82899,161.60114 522.40939,161.09859 C 522.89424,160.68099 523.48526,160.47218 524.18245,160.47218 C 524.9575,160.47218 525.59099,160.727 526.08292,161.23661 C 526.57484,161.7427 526.82081,162.44343 526.82081,163.3388 C 526.82081,164.06431 526.71109,164.63586 526.49168,165.05347 C 526.27579,165.46754 525.95905,165.78959 525.54145,166.01963 C 525.12738,166.24967 524.67437,166.36468 524.18245,166.36469 C 523.39324,166.36468 522.75445,166.11164 522.26606,165.60556 C 521.78121,165.09948 521.53879,164.37044 521.53879,163.41843 M 522.52087,163.41843 C 522.52087,164.1404 522.67836,164.68187 522.99333,165.04285 C 523.30831,165.4003 523.70468,165.57902 524.18245,165.57902 C 524.65668,165.57902 525.05128,165.39853 525.36626,165.03754 C 525.68123,164.67656 525.83872,164.12624 525.83873,163.38658 C 525.83872,162.68939 525.67946,162.16208 525.36095,161.80463 C 525.04598,161.44365 524.65314,161.26316 524.18245,161.26315 C 523.70468,161.26316 523.30831,161.44188 522.99333,161.79932 C 522.67836,162.15677 522.52087,162.69647 522.52087,163.41843 M 527.94622,166.23728 L 527.94622,160.59959 L 528.8009,160.59959 L 528.8009,161.39056 C 528.97785,161.11452 529.2132,160.89333 529.50694,160.72699 C 529.80068,160.55712 530.13512,160.47218 530.51026,160.47218 C 530.92786,160.47218 531.26938,160.55889 531.53481,160.7323 C 531.80378,160.90572 531.99311,161.14814 532.10283,161.45957 C 532.54875,160.80132 533.12914,160.47218 533.84404,160.47218 C 534.4032,160.47218 534.83319,160.6279 535.13402,160.93933 C 535.43483,161.24723 535.58524,161.72324 535.58524,162.36734 L 535.58524,166.23728 L 534.63502,166.23728 L 534.63502,162.68585 C 534.63501,162.30364 534.60316,162.02936 534.53946,161.86302 C 534.47929,161.69315 534.36781,161.5569 534.20502,161.45426 C 534.04222,161.35164 533.85111,161.30032 533.63169,161.30031 C 533.23532,161.30032 532.90619,161.43303 532.6443,161.69846 C 532.38241,161.96035 532.25146,162.3815 532.25147,162.9619 L 532.25147,166.23728 L 531.29593,166.23728 L 531.29593,162.57437 C 531.29592,162.14969 531.21806,161.83118 531.06235,161.61883 C 530.90663,161.40649 530.65182,161.30032 530.29792,161.30031 C 530.02895,161.30032 529.77945,161.3711 529.54941,161.51266 C 529.32291,161.65422 529.15834,161.86126 529.05572,162.13376 C 528.95308,162.40627 528.90176,162.7991 528.90176,163.31226 L 528.90176,166.23728 L 527.94622,166.23728 M 537.0398,159.5538 L 537.0398,158.45493 L 537.99534,158.45493 L 537.99534,159.5538 L 537.0398,159.5538 M 537.0398,166.23728 L 537.0398,160.59959 L 537.99534,160.59959 L 537.99534,166.23728 L 537.0398,166.23728 M 539.07297,164.55447 L 540.0179,164.40583 C 540.07098,164.7845 540.21785,165.07471 540.45851,165.27643 C 540.7027,165.47816 541.04245,165.57902 541.47775,165.57902 C 541.91659,165.57902 542.24218,165.49054 542.45453,165.31359 C 542.66687,165.1331 542.77304,164.92253 542.77304,164.68187 C 542.77304,164.46599 542.67926,164.29612 542.49169,164.17225 C 542.36074,164.08731 542.03515,163.97937 541.51491,163.84843 C 540.81418,163.67148 540.32756,163.5193 540.05506,163.39189 C 539.78609,163.26095 539.58082,163.08223 539.43927,162.85573 C 539.30124,162.62569 539.23223,162.37265 539.23223,162.0966 C 539.23223,161.84533 539.28885,161.61352 539.40211,161.40118 C 539.51889,161.1853 539.67638,161.00658 539.87457,160.86501 C 540.0232,160.75531 540.22493,160.66329 540.47974,160.58897 C 540.73809,160.51111 541.01414,160.47218 541.30788,160.47218 C 541.75025,160.47218 542.13778,160.53589 542.47045,160.66329 C 542.80666,160.7907 543.05439,160.96411 543.21365,161.18353 C 543.37291,161.39941 543.48262,161.68962 543.54279,162.05413 L 542.60848,162.18154 C 542.566,161.89134 542.44214,161.66484 542.23688,161.50204 C 542.03515,161.33925 541.74849,161.25785 541.37689,161.25785 C 540.93804,161.25785 540.62484,161.3304 540.43728,161.4755 C 540.2497,161.6206 540.15592,161.79048 540.15592,161.98512 C 540.15592,162.10899 540.19485,162.22047 540.27271,162.31956 C 540.35057,162.4222 540.47267,162.50713 540.639,162.57437 C 540.73455,162.60976 541.0159,162.69116 541.48306,162.81856 C 542.15902,162.99906 542.62971,163.1477 542.89514,163.26448 C 543.1641,163.37774 543.37467,163.54407 543.52686,163.76349 C 543.67903,163.98291 543.75512,164.25542 543.75513,164.58101 C 543.75512,164.89952 543.66134,165.20034 543.47377,165.48346 C 543.28974,165.76305 543.02254,165.9807 542.67218,166.13642 C 542.32181,166.28859 541.92544,166.36468 541.48306,166.36469 C 540.75048,166.36468 540.19131,166.21251 539.80556,165.90815 C 539.42334,165.60379 539.17914,165.15256 539.07297,164.55447 M 548.56999,164.17225 L 549.50961,164.29435 C 549.40697,164.94199 549.14331,165.44984 548.71863,165.8179 C 548.29748,166.18242 547.77901,166.36468 547.16322,166.36469 C 546.39171,166.36468 545.77061,166.11341 545.29992,165.61087 C 544.83276,165.10479 544.59919,164.38105 544.59919,163.43967 C 544.59919,162.83095 544.70005,162.29833 544.90178,161.84179 C 545.1035,161.38526 545.40963,161.04374 545.82016,160.81724 C 546.23422,160.5872 546.68368,160.47218 547.16853,160.47218 C 547.78078,160.47218 548.28156,160.6279 548.67086,160.93933 C 549.06015,161.24723 549.30965,161.68608 549.41936,162.25586 L 548.49037,162.39919 C 548.40189,162.02052 548.2444,161.73562 548.0179,161.54451 C 547.79494,161.35341 547.5242,161.25785 547.2057,161.25785 C 546.72438,161.25785 546.33332,161.43126 546.0325,161.77809 C 545.73168,162.12138 545.58127,162.66639 545.58128,163.41312 C 545.58127,164.17048 545.72637,164.7208 546.01658,165.06409 C 546.30678,165.40737 546.68545,165.57902 547.15261,165.57902 C 547.52774,165.57902 547.84095,165.464 548.09222,165.23396 C 548.34349,165.00392 548.50275,164.65002 548.56999,164.17225 M 550.32713,166.23728 L 550.32713,158.45493 L 551.28267,158.45493 L 551.28267,161.24723 C 551.72859,160.73054 552.29129,160.47218 552.9708,160.47218 C 553.3884,160.47218 553.75115,160.55535 554.05905,160.72168 C 554.36694,160.88448 554.58636,161.11098 554.71731,161.40118 C 554.85179,161.69138 554.91903,162.11253 554.91904,162.66462 L 554.91904,166.23728 L 553.9635,166.23728 L 553.9635,162.66462 C 553.96349,162.18685 553.85909,161.84002 553.65029,161.62414 C 553.44502,161.40472 553.15305,161.29501 552.77438,161.29501 C 552.49125,161.29501 552.22405,161.36933 551.97278,161.51797 C 551.72505,161.66307 551.54809,161.86126 551.44193,162.11253 C 551.33575,162.3638 551.28267,162.71063 551.28267,163.153 L 551.28267,166.23728 L 550.32713,166.23728 M 560.23822,164.42175 L 561.22561,164.54385 C 561.06988,165.12071 560.78146,165.5684 560.36032,165.88691 C 559.93916,166.20543 559.40123,166.36468 558.74651,166.36469 C 557.92191,166.36468 557.26719,166.11164 556.78234,165.60556 C 556.30103,165.09594 556.06038,164.38282 556.06038,163.46621 C 556.06038,162.51775 556.30457,161.78163 556.79296,161.25785 C 557.28134,160.73407 557.91483,160.47218 558.69343,160.47218 C 559.44724,160.47218 560.06303,160.72876 560.54081,161.24192 C 561.01857,161.75509 561.25746,162.47705 561.25746,163.40781 C 561.25746,163.46444 561.25568,163.54938 561.25215,163.66263 L 557.04777,163.66263 C 557.08316,164.28196 557.25834,164.75619 557.57332,165.08532 C 557.88829,165.41445 558.28112,165.57902 558.75182,165.57902 C 559.10218,165.57902 559.40123,165.487 559.64897,165.30297 C 559.89669,165.11894 560.09311,164.8252 560.23822,164.42175 M 557.10085,162.87696 L 560.24883,162.87696 C 560.20636,162.40273 560.08603,162.04706 559.88785,161.80994 C 559.58349,161.44188 559.18889,161.25785 558.70404,161.25785 C 558.2652,161.25785 557.89537,161.40472 557.59455,161.69846 C 557.29727,161.9922 557.1327,162.38503 557.10085,162.87696 M 567.357,166.23728 L 567.357,159.37331 L 564.79296,159.37331 L 564.79296,158.45493 L 570.96152,158.45493 L 570.96152,159.37331 L 568.38686,159.37331 L 568.38686,166.23728 L 567.357,166.23728 M 574.41208,165.54186 C 574.05818,165.84268 573.71665,166.05502 573.38753,166.17889 C 573.06194,166.30275 572.71157,166.36468 572.33644,166.36469 C 571.7171,166.36468 571.2411,166.21427 570.90843,165.91346 C 570.57576,165.6091 570.40942,165.22157 570.40942,164.75088 C 570.40942,164.47484 570.47136,164.22357 570.59522,163.99707 C 570.72263,163.76703 570.8872,163.583 571.08892,163.44497 C 571.29419,163.30695 571.52422,163.20255 571.77903,163.13177 C 571.9666,163.08223 572.24973,163.03445 572.6284,162.98844 C 573.39991,162.89643 573.96793,162.78672 574.33245,162.65931 C 574.33599,162.52837 574.33776,162.4452 574.33776,162.40981 C 574.33776,162.02052 574.24751,161.74624 574.06702,161.58698 C 573.82282,161.3711 573.46008,161.26316 572.97877,161.26315 C 572.52931,161.26316 572.19664,161.34279 571.98076,161.50204 C 571.76841,161.65776 571.61093,161.93558 571.5083,162.33549 L 570.57399,162.20808 C 570.65893,161.80817 570.79872,161.48612 570.99336,161.24192 C 571.18801,160.99419 571.46937,160.80486 571.83743,160.67391 C 572.20549,160.53943 572.63194,160.47218 573.11679,160.47218 C 573.5981,160.47218 573.98916,160.52881 574.28999,160.64205 C 574.5908,160.75531 574.81199,160.89864 574.95356,161.07205 C 575.09511,161.24193 575.19421,161.45781 575.25083,161.71969 C 575.28268,161.88249 575.2986,162.17623 575.29861,162.60091 L 575.29861,163.87497 C 575.2986,164.76327 575.31807,165.32598 575.35701,165.56309 C 575.39947,165.79667 575.48087,166.0214 575.6012,166.23728 L 574.60319,166.23728 C 574.50409,166.03909 574.44039,165.80729 574.41208,165.54186 M 574.33245,163.40781 C 573.98562,163.54938 573.46538,163.66971 572.77174,163.7688 C 572.3789,163.82542 572.10108,163.88913 571.93829,163.95991 C 571.77549,164.03069 571.64986,164.13509 571.56138,164.27311 C 571.4729,164.4076 571.42867,164.55801 571.42867,164.72434 C 571.42867,164.97915 571.52422,165.19149 571.71533,165.36137 C 571.90998,165.53124 572.1931,165.61618 572.5647,165.61618 C 572.93276,165.61618 573.26012,165.53655 573.54679,165.37729 C 573.83344,165.2145 574.04401,164.99331 574.1785,164.71372 C 574.28113,164.49784 574.33245,164.17933 574.33245,163.75818 L 574.33245,163.40781 M 576.40279,164.55447 L 577.34772,164.40583 C 577.4008,164.7845 577.54767,165.07471 577.78833,165.27643 C 578.03252,165.47816 578.37227,165.57902 578.80757,165.57902 C 579.24641,165.57902 579.572,165.49054 579.78435,165.31359 C 579.99669,165.1331 580.10286,164.92253 580.10286,164.68187 C 580.10286,164.46599 580.00907,164.29612 579.82151,164.17225 C 579.69056,164.08731 579.36497,163.97937 578.84473,163.84843 C 578.144,163.67148 577.65738,163.5193 577.38487,163.39189 C 577.11591,163.26095 576.91064,163.08223 576.76908,162.85573 C 576.63106,162.62569 576.56205,162.37265 576.56205,162.0966 C 576.56205,161.84533 576.61867,161.61352 576.73192,161.40118 C 576.84871,161.1853 577.0062,161.00658 577.20438,160.86501 C 577.35302,160.75531 577.55475,160.66329 577.80956,160.58897 C 578.06791,160.51111 578.34395,160.47218 578.6377,160.47218 C 579.08008,160.47218 579.4676,160.53589 579.80027,160.66329 C 580.13648,160.7907 580.38421,160.96411 580.54347,161.18353 C 580.70272,161.39941 580.81243,161.68962 580.8726,162.05413 L 579.9383,162.18154 C 579.89582,161.89134 579.77195,161.66484 579.5667,161.50204 C 579.36497,161.33925 579.0783,161.25785 578.70671,161.25785 C 578.26786,161.25785 577.95466,161.3304 577.76709,161.4755 C 577.57953,161.6206 577.48574,161.79048 577.48574,161.98512 C 577.48574,162.10899 577.52466,162.22047 577.60253,162.31956 C 577.68038,162.4222 577.80248,162.50713 577.96882,162.57437 C 578.06437,162.60976 578.34572,162.69116 578.81288,162.81856 C 579.48883,162.99906 579.95953,163.1477 580.22496,163.26448 C 580.49392,163.37774 580.7045,163.54407 580.85668,163.76349 C 581.00885,163.98291 581.08494,164.25542 581.08495,164.58101 C 581.08494,164.89952 580.99116,165.20034 580.80359,165.48346 C 580.61956,165.76305 580.35236,165.9807 580.002,166.13642 C 579.65163,166.28859 579.25526,166.36468 578.81288,166.36469 C 578.0803,166.36468 577.52113,166.21251 577.13537,165.90815 C 576.75315,165.60379 576.50896,165.15256 576.40279,164.55447 M 584.30724,165.3826 L 584.44527,166.22666 C 584.1763,166.28329 583.93564,166.3116 583.7233,166.3116 C 583.37647,166.3116 583.10751,166.25674 582.9164,166.14703 C 582.72529,166.03732 582.59081,165.89399 582.51295,165.71704 C 582.43509,165.53655 582.39616,165.15964 582.39616,164.58632 L 582.39616,161.34278 L 581.69543,161.34278 L 581.69543,160.59959 L 582.39616,160.59959 L 582.39616,159.20343 L 583.34639,158.63011 L 583.34639,160.59959 L 584.30724,160.59959 L 584.30724,161.34278 L 583.34639,161.34278 L 583.34639,164.6394 C 583.34639,164.91191 583.36232,165.08709 583.39417,165.16495 C 583.42956,165.24281 583.48441,165.30474 583.55874,165.35075 C 583.63659,165.39676 583.7463,165.41976 583.88787,165.41976 C 583.99403,165.41976 584.13382,165.40737 584.30724,165.3826 M 588.91507,165.54186 C 588.56117,165.84268 588.21965,166.05502 587.89052,166.17889 C 587.56493,166.30275 587.21456,166.36468 586.83943,166.36469 C 586.22009,166.36468 585.74409,166.21427 585.41142,165.91346 C 585.07875,165.6091 584.91242,165.22157 584.91242,164.75088 C 584.91242,164.47484 584.97435,164.22357 585.09822,163.99707 C 585.22562,163.76703 585.39019,163.583 585.59191,163.44497 C 585.79718,163.30695 586.02722,163.20255 586.28203,163.13177 C 586.46959,163.08223 586.75272,163.03445 587.1314,162.98844 C 587.90291,162.89643 588.47092,162.78672 588.83545,162.65931 C 588.83898,162.52837 588.84075,162.4452 588.84075,162.40981 C 588.84075,162.02052 588.75051,161.74624 588.57002,161.58698 C 588.32582,161.3711 587.96307,161.26316 587.48176,161.26315 C 587.03231,161.26316 586.69963,161.34279 586.48376,161.50204 C 586.27141,161.65776 586.11392,161.93558 586.01129,162.33549 L 585.07699,162.20808 C 585.16192,161.80817 585.30171,161.48612 585.49636,161.24192 C 585.69101,160.99419 585.97236,160.80486 586.34042,160.67391 C 586.70848,160.53943 587.13494,160.47218 587.61979,160.47218 C 588.10109,160.47218 588.49216,160.52881 588.79298,160.64205 C 589.09379,160.75531 589.31498,160.89864 589.45655,161.07205 C 589.5981,161.24193 589.6972,161.45781 589.75383,161.71969 C 589.78568,161.88249 589.8016,162.17623 589.80161,162.60091 L 589.80161,163.87497 C 589.8016,164.76327 589.82107,165.32598 589.86,165.56309 C 589.90246,165.79667 589.98386,166.0214 590.10419,166.23728 L 589.10618,166.23728 C 589.00709,166.03909 588.94339,165.80729 588.91507,165.54186 M 588.83545,163.40781 C 588.48862,163.54938 587.96838,163.66971 587.27473,163.7688 C 586.88189,163.82542 586.60408,163.88913 586.44129,163.95991 C 586.27849,164.03069 586.15285,164.13509 586.06438,164.27311 C 585.9759,164.4076 585.93166,164.55801 585.93166,164.72434 C 585.93166,164.97915 586.02722,165.19149 586.21832,165.36137 C 586.41297,165.53124 586.6961,165.61618 587.06769,165.61618 C 587.43575,165.61618 587.76312,165.53655 588.04978,165.37729 C 588.33644,165.2145 588.54701,164.99331 588.6815,164.71372 C 588.78413,164.49784 588.83544,164.17933 588.83545,163.75818 L 588.83545,163.40781 M 593.37427,165.3826 L 593.51229,166.22666 C 593.24332,166.28329 593.00267,166.3116 592.79033,166.3116 C 592.4435,166.3116 592.17453,166.25674 591.98342,166.14703 C 591.79232,166.03732 591.65783,165.89399 591.57998,165.71704 C 591.50212,165.53655 591.46319,165.15964 591.46319,164.58632 L 591.46319,161.34278 L 590.76246,161.34278 L 590.76246,160.59959 L 591.46319,160.59959 L 591.46319,159.20343 L 592.41342,158.63011 L 592.41342,160.59959 L 593.37427,160.59959 L 593.37427,161.34278 L 592.41342,161.34278 L 592.41342,164.6394 C 592.41342,164.91191 592.42934,165.08709 592.4612,165.16495 C 592.49659,165.24281 592.55144,165.30474 592.62576,165.35075 C 592.70362,165.39676 592.81333,165.41976 592.95489,165.41976 C 593.06106,165.41976 593.20085,165.40737 593.37427,165.3826 M 597.99803,166.23728 L 597.99803,165.40914 C 597.55918,166.04617 596.96285,166.36468 596.20904,166.36469 C 595.87637,166.36468 595.56493,166.30098 595.27473,166.17358 C 594.98807,166.04617 594.77396,165.88691 594.6324,165.69581 C 594.49437,165.50116 594.39705,165.26404 594.34043,164.98446 C 594.3015,164.79689 594.28203,164.49961 594.28203,164.09262 L 594.28203,160.59959 L 595.23757,160.59959 L 595.23757,163.72633 C 595.23757,164.22533 595.25704,164.56154 595.29597,164.73496 C 595.35613,164.98623 595.48354,165.18441 595.67819,165.32951 C 595.87283,165.47108 596.11349,165.54186 596.40015,165.54186 C 596.68681,165.54186 596.95578,165.46931 597.20705,165.32421 C 597.45832,165.17557 597.63527,164.97561 597.73791,164.72434 C 597.84408,164.46953 597.89716,164.10147 597.89717,163.62016 L 597.89717,160.59959 L 598.85271,160.59959 L 598.85271,166.23728 L 597.99803,166.23728 M 600.34441,166.23728 L 600.34441,160.59959 L 601.2044,160.59959 L 601.2044,161.45426 C 601.42382,161.05436 601.62554,160.7907 601.80958,160.66329 C 601.99714,160.53589 602.20241,160.47218 602.42537,160.47218 C 602.74742,160.47218 603.07478,160.57482 603.40746,160.78008 L 603.07832,161.66661 C 602.84475,161.52859 602.61117,161.45958 602.37759,161.45957 C 602.16879,161.45958 601.98122,161.52328 601.81488,161.65068 C 601.64855,161.77455 601.52999,161.94796 601.45921,162.17092 C 601.35304,162.51067 601.29995,162.88227 601.29996,163.28572 L 601.29996,166.23728 L 600.34441,166.23728 M 604.86731,166.23728 L 603.98078,166.23728 L 603.98078,158.45493 L 604.93632,158.45493 L 604.93632,161.2313 C 605.33977,160.72523 605.8547,160.47218 606.48112,160.47218 C 606.82794,160.47218 607.15529,160.54297 607.4632,160.68452 C 607.77463,160.82255 608.02944,161.01897 608.22763,161.27377 C 608.42935,161.52505 608.58684,161.82941 608.70009,162.18685 C 608.81334,162.54429 608.86996,162.92651 608.86997,163.33349 C 608.86996,164.29965 608.63107,165.04639 608.15331,165.57371 C 607.67553,166.10103 607.10221,166.36468 606.43333,166.36469 C 605.76799,166.36468 605.24599,166.08687 604.86731,165.53124 L 604.86731,166.23728 M 604.85669,163.37596 C 604.85669,164.05192 604.9487,164.54031 605.13274,164.84113 C 605.43355,165.33305 605.84055,165.57902 606.35371,165.57902 C 606.77131,165.57902 607.1323,165.39853 607.43666,165.03754 C 607.74101,164.67302 607.89318,164.13155 607.89319,163.41312 C 607.89318,162.67701 607.74632,162.13376 607.45258,161.78339 C 607.16237,161.43303 606.81024,161.25785 606.39618,161.25785 C 605.97857,161.25785 605.61758,161.44011 605.31323,161.80463 C 605.00887,162.16562 604.85669,162.68939 604.85669,163.37596 M 613.89717,164.42175 L 614.88457,164.54385 C 614.72887,165.12071 614.44037,165.5684 614.01927,165.88691 C 613.59817,166.20543 613.06017,166.36468 612.40547,166.36469 C 611.58087,166.36468 610.92615,166.11164 610.4413,165.60556 C 609.95999,165.09594 609.71934,164.38282 609.71934,163.46621 C 609.71934,162.51775 609.96353,161.78163 610.45192,161.25785 C 610.94031,160.73407 611.57379,160.47218 612.35239,160.47218 C 613.10617,160.47218 613.72197,160.72876 614.19977,161.24192 C 614.67757,161.75509 614.91637,162.47705 614.91647,163.40781 C 614.91637,163.46444 614.91467,163.54938 614.91107,163.66263 L 610.70673,163.66263 C 610.74212,164.28196 610.9173,164.75619 611.23228,165.08532 C 611.54725,165.41445 611.94008,165.57902 612.41078,165.57902 C 612.76114,165.57902 613.06017,165.487 613.30797,165.30297 C 613.55567,165.11894 613.75207,164.8252 613.89717,164.42175 M 610.75982,162.87696 L 613.90777,162.87696 C 613.86537,162.40273 613.74497,162.04706 613.54677,161.80994 C 613.24247,161.44188 612.84787,161.25785 612.363,161.25785 C 611.92416,161.25785 611.55433,161.40472 611.25351,161.69846 C 610.95623,161.9922 610.79166,162.38503 610.75982,162.87696 M 616.06837,166.23728 L 616.06837,158.45493 L 617.02387,158.45493 L 617.02387,166.23728 L 616.06837,166.23728 M 622.36967,164.42175 L 623.35707,164.54385 C 623.20127,165.12071 622.91287,165.5684 622.49177,165.88691 C 622.07057,166.20543 621.53267,166.36468 620.87797,166.36469 C 620.05337,166.36468 619.39857,166.11164 618.91377,165.60556 C 618.43247,165.09594 618.19177,164.38282 618.19177,163.46621 C 618.19177,162.51775 618.43597,161.78163 618.92437,161.25785 C 619.41277,160.73407 620.04627,160.47218 620.82487,160.47218 C 621.57867,160.47218 622.19447,160.72876 622.67227,161.24192 C 623.14997,161.75509 623.38887,162.47705 623.38887,163.40781 C 623.38887,163.46444 623.38707,163.54938 623.38357,163.66263 L 619.17917,163.66263 C 619.21457,164.28196 619.38977,164.75619 619.70477,165.08532 C 620.01977,165.41445 620.41257,165.57902 620.88327,165.57902 C 621.23357,165.57902 621.53267,165.487 621.78037,165.30297 C 622.02807,165.11894 622.22457,164.8252 622.36967,164.42175 M 619.23227,162.87696 L 622.38027,162.87696 C 622.33777,162.40273 622.21747,162.04706 622.01927,161.80994 C 621.71497,161.44188 621.32027,161.25785 620.83547,161.25785 C 620.39657,161.25785 620.02677,161.40472 619.72597,161.69846 C 619.42867,161.9922 619.26417,162.38503 619.23227,162.87696 M 624.38687,166.70443 L 625.31587,166.84245 C 625.35487,167.12912 625.46277,167.33792 625.63977,167.46887 C 625.87687,167.64582 626.20067,167.73429 626.61117,167.73429 C 627.05357,167.73429 627.39507,167.64582 627.63577,167.46887 C 627.87637,167.29191 628.03917,167.04418 628.12417,166.72567 C 628.17367,166.53102 628.19667,166.12226 628.19317,165.49939 C 627.77557,165.99132 627.25527,166.23728 626.63247,166.23728 C 625.85737,166.23728 625.25747,165.95769 624.83277,165.39853 C 624.40817,164.83936 624.19577,164.16871 624.19577,163.38658 C 624.19577,162.84865 624.29307,162.35318 624.48777,161.90018 C 624.68237,161.44365 624.96377,161.09152 625.33187,160.84378 C 625.70337,160.59605 626.13877,160.47218 626.63777,160.47218 C 627.30307,160.47218 627.85167,160.74115 628.28337,161.27908 L 628.28337,160.59959 L 629.16457,160.59959 L 629.16457,165.47285 C 629.16457,166.35053 629.07437,166.97163 628.89387,167.33615 C 628.71687,167.70421 628.43377,167.99441 628.04447,168.20676 C 627.65877,168.4191 627.18277,168.52527 626.61647,168.52527 C 625.94407,168.52527 625.40087,168.37309 624.98677,168.06873 C 624.57267,167.76791 624.37277,167.31315 624.38687,166.70443 M 625.17787,163.31757 C 625.17787,164.05723 625.32477,164.59693 625.61847,164.93668 C 625.91217,165.27643 626.28027,165.4463 626.72267,165.4463 C 627.16147,165.4463 627.52957,165.2782 627.82687,164.94199 C 628.12407,164.60224 628.27277,164.07139 628.27277,163.34942 C 628.27277,162.65931 628.11877,162.13907 627.81097,161.7887 C 627.50657,161.43834 627.13847,161.26316 626.70677,161.26315 C 626.28207,161.26316 625.92107,161.43657 625.62377,161.78339 C 625.32647,162.12669 625.17787,162.63808 625.17787,163.31757 M 634.30857,166.23728 L 634.30857,165.40914 C 633.86977,166.04617 633.27347,166.36468 632.51967,166.36469 C 632.18697,166.36468 631.87547,166.30098 631.58527,166.17358 C 631.29867,166.04617 631.08457,165.88691 630.94297,165.69581 C 630.80497,165.50116 630.70767,165.26404 630.65097,164.98446 C 630.61207,164.79689 630.59257,164.49961 630.59257,164.09262 L 630.59257,160.59959 L 631.54817,160.59959 L 631.54817,163.72633 C 631.54817,164.22533 631.56757,164.56154 631.60657,164.73496 C 631.66667,164.98623 631.79407,165.18441 631.98877,165.32951 C 632.18337,165.47108 632.42407,165.54186 632.71077,165.54186 C 632.99737,165.54186 633.26637,165.46931 633.51767,165.32421 C 633.76887,165.17557 633.94587,164.97561 634.04847,164.72434 C 634.15467,164.46953 634.20777,164.10147 634.20777,163.62016 L 634.20777,160.59959 L 635.16327,160.59959 L 635.16327,166.23728 L 634.30857,166.23728 M 636.66557,166.23728 L 636.66557,160.59959 L 637.52557,160.59959 L 637.52557,161.40118 C 637.93967,160.78185 638.53777,160.47218 639.31987,160.47218 C 639.65967,160.47218 639.97107,160.53412 640.25417,160.65798 C 640.54087,160.77831 640.75497,160.93757 640.89657,161.13575 C 641.03807,161.33394 641.13717,161.56929 641.19377,161.84179 C 641.22917,162.01874 641.24687,162.32841 641.24687,162.77079 L 641.24687,166.23728 L 640.29137,166.23728 L 640.29137,162.80795 C 640.29137,162.41866 640.25417,162.12846 640.17987,161.93734 C 640.10557,161.7427 639.97287,161.58875 639.78177,161.4755 C 639.59417,161.35871 639.37297,161.30032 639.11817,161.30031 C 638.71117,161.30032 638.35907,161.4295 638.06177,161.68784 C 637.76797,161.9462 637.62117,162.43635 637.62117,163.15831 L 637.62117,166.23728 L 636.66557,166.23728 M 642.54217,166.70443 L 643.47117,166.84245 C 643.51007,167.12912 643.61807,167.33792 643.79497,167.46887 C 644.03207,167.64582 644.35597,167.73429 644.76647,167.73429 C 645.20887,167.73429 645.55037,167.64582 645.79107,167.46887 C 646.03167,167.29191 646.19447,167.04418 646.27937,166.72567 C 646.32897,166.53102 646.35197,166.12226 646.34847,165.49939 C 645.93077,165.99132 645.41057,166.23728 644.78767,166.23728 C 644.01267,166.23728 643.41277,165.95769 642.98807,165.39853 C 642.56337,164.83936 642.35107,164.16871 642.35107,163.38658 C 642.35107,162.84865 642.44837,162.35318 642.64307,161.90018 C 642.83767,161.44365 643.11907,161.09152 643.48707,160.84378 C 643.85867,160.59605 644.29397,160.47218 644.79297,160.47218 C 645.45837,160.47218 646.00687,160.74115 646.43867,161.27908 L 646.43867,160.59959 L 647.31987,160.59959 L 647.31987,165.47285 C 647.31987,166.35053 647.22967,166.97163 647.04917,167.33615 C 646.87217,167.70421 646.58907,167.99441 646.19977,168.20676 C 645.81407,168.4191 645.33807,168.52527 644.77177,168.52527 C 644.09937,168.52527 643.55607,168.37309 643.14207,168.06873 C 642.72797,167.76791 642.52807,167.31315 642.54217,166.70443 M 643.33317,163.31757 C 643.33317,164.05723 643.48007,164.59693 643.77377,164.93668 C 644.06747,165.27643 644.43557,165.4463 644.87797,165.4463 C 645.31677,165.4463 645.68487,165.2782 645.98217,164.94199 C 646.27937,164.60224 646.42807,164.07139 646.42807,163.34942 C 646.42807,162.65931 646.27407,162.13907 645.96617,161.7887 C 645.66187,161.43834 645.29377,161.26316 644.86207,161.26315 C 644.43737,161.26316 644.07637,161.43657 643.77907,161.78339 C 643.48177,162.12669 643.33317,162.63808 643.33317,163.31757" />
    <text
       xml:space="preserve"
       style="font-size:12px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="110.02989"
       y="256.19012"
       id="text9388"><tspan
         sodipodi:role="line"
         id="tspan9390"
         x="110.02989"
         y="256.19012">Windows     95/98/ME/2000/XP/Vista</tspan></text>
    <path
       sodipodi:nodetypes="ccccccccc"
       d="M 108.52348,380.18535 L 175.20115,380.18535 C 183.82634,380.41397 184.57999,382.75261 184.57999,389.5642 L 184.57999,394.45068 C 184.57999,399.64657 180.39703,403.82953 175.20115,403.82953 L 108.52348,403.82953 C 101.49863,403.82953 99.14463,403.536 99.14463,394.45068 L 99.14463,389.5642 C 99.14463,384.36832 103.3276,380.18535 108.52348,380.18535 z "
       style="fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       id="path2250" />
    <text
       id="text9396"
       y="396.19012"
       x="118.02989"
       style="font-size:12px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       xml:space="preserve"><tspan
         y="396.19012"
         x="118.02989"
         id="tspan9398"
         sodipodi:role="line">MacOS     </tspan></text>
    <path
       id="path2252"
       style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       d="M 108.52348,520.18535 L 175.20115,520.18535 C 183.82634,520.41397 184.57999,522.75261 184.57999,529.5642 L 184.57999,534.45068 C 184.57999,539.64657 180.39703,543.82953 175.20115,543.82953 L 108.52348,543.82953 C 101.49863,543.82953 99.14463,543.536 99.14463,534.45068 L 99.14463,529.5642 C 99.14463,524.36832 103.3276,520.18535 108.52348,520.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <text
       xml:space="preserve"
       style="font-size:12px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="124.02989"
       y="536.19012"
       id="text9404"><tspan
         sodipodi:role="line"
         id="tspan9406"
         x="124.02989"
         y="536.19012">Linux     </tspan></text>
    <path
       id="path2196"
       style="fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       d="M 624.52348,340.18535 L 629.20115,340.18535 C 636.01274,340.18535 638.57999,340.25034 638.57999,349.5642 L 638.57999,354.45068 C 638.57999,359.64657 634.39703,363.82953 629.20115,363.82953 L 624.52348,363.82953 C 614.94007,363.82953 615.14463,360.78967 615.14463,354.45068 L 615.14463,349.5642 C 615.14463,344.36832 619.3276,340.18535 624.52348,340.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <text
       xml:space="preserve"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="117.68797"
       y="286.09711"
       id="text2214"><tspan
         sodipodi:role="line"
         id="tspan2216"
         x="117.68797"
         y="286.09711">Installationsdatei von  www.neo-layout.org/download  beziehen und starten.</tspan><tspan
         sodipodi:role="line"
         x="117.68797"
         y="301.09711"
         id="tspan2218" /><tspan
         sodipodi:role="line"
         x="117.68797"
         y="316.09711"
         id="tspan2220">Umschalten zwischen QWERTZ und Neo </tspan><tspan
         sodipodi:role="line"
         x="117.68797"
         y="331.09711"
         id="tspan2228">einfach über das Tastensymbol in der Taskleiste.</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="120.27452"
       y="910.10199"
       id="text2222"><tspan
         sodipodi:role="line"
         id="tspan2224"
         x="120.27452"
         y="910.10199"><tspan
   style="font-weight:bold"
   id="tspan2388">Fragen oder Probleme?</tspan>  Hier wird einem geholfen:</tspan><tspan
         sodipodi:role="line"
         x="120.27452"
         y="925.10199"
         id="tspan2226">www.neo-layout.org/forum</tspan></text>
    <g
       id="g2320"
       transform="matrix(0.1709899,0,0,0.1709899,162.43803,927.73703)">
      <path
         id="path2322"
         class="ps01"
         d="M 629.90632,585.83167 C 635.1399,585.83167 639.66143,581.74805 639.66143,576.15844 C 639.66143,570.61867 635.1399,566.53506 629.90632,566.53506 C 624.60153,566.53506 620.08,570.61867 620.08,576.15844 C 620.08,581.74805 624.60153,585.83167 629.90632,585.83167 z M 622.03814,576.15844 C 622.03814,571.58707 625.4916,568.14429 629.90632,568.14429 C 634.24984,568.14429 637.70329,571.58707 637.70329,576.15844 C 637.70329,580.80458 634.24984,584.22243 629.90632,584.22243 C 625.4916,584.22243 622.03814,580.80458 622.03814,576.15844 z M 627.84137,576.9239 L 629.79951,576.9239 L 632.71893,581.74805 L 634.60586,581.74805 L 631.43723,576.84557 C 633.07495,576.64264 634.35665,575.77393 634.35665,573.78375 C 634.35665,571.58707 633.03935,570.61867 630.40476,570.61867 L 626.16805,570.61867 L 626.16805,581.74805 L 627.84137,581.74805 L 627.84137,576.9239 z M 627.84137,575.49267 L 627.84137,572.04634 L 630.15554,572.04634 C 631.33042,572.04634 632.57652,572.30268 632.57652,573.6805 C 632.57652,575.39298 631.29482,575.49267 629.87072,575.49267 L 627.84137,575.49267"
         style="fill:#ffffff;fill-rule:evenodd;stroke:none" />
      <path
         id="path2324"
         class="ps02"
         d="M 596.36866,554.74703 C 583.3025,547.84369 573.29817,539.40231 566.17765,531.30983 C 563.79227,534.02987 561.05087,536.58614 557.88224,538.91455 C 550.29888,544.47212 541.96787,545.56868 532.07035,542.68843 C 530.57504,546.3733 529.75618,550.4854 529.64937,554.79331 C 529.43575,565.76248 534.81175,578.15931 540.43696,584.21887 C 545.31452,589.46314 551.8298,589.08219 559.62677,589.88681 C 566.74729,590.62378 572.3369,592.20098 581.05954,586.04529 C 592.55918,577.89941 596.79589,566.47097 596.36866,554.74703"
         style="fill:#c82128;fill-rule:nonzero;stroke:none" />
      <path
         id="path2326"
         class="ps03"
         d="M 611.00133,544.0164 C 610.00446,539.60524 604.27244,494.02322 581.45117,480.80041 C 582.12762,480.78617 582.73286,480.1026 583.62293,480.41234 C 602.02948,486.85641 609.00759,517.89121 613.2087,536.08414 C 613.06629,534.36454 613.03068,532.62001 613.13749,530.85768 C 613.70713,520.16266 615.23804,505.05291 606.69342,486.71044 C 598.57602,469.39689 575.64794,462.52559 574.97149,459.69162 C 574.61547,458.296 576.75162,452.13675 578.10452,447.27699 C 592.45237,458.63423 605.16251,473.93623 608.11752,481.36293 C 609.32801,481.4199 612.38984,480.71496 614.27677,479.14489 C 608.33114,468.28609 596.15505,454.08065 579.1726,440.99313 C 578.92338,438.83917 578.03332,436.08353 577.21446,435.07954 C 573.40498,430.54733 567.10332,429.02353 567.10332,429.02353 C 567.10332,429.02353 567.06771,429.05914 567.06771,429.09118 C 564.89595,428.56426 561.58491,428.07651 559.51996,428.62479 C 556.56494,429.40804 554.39318,432.51615 554.678,434.49922 C 555.42566,439.53342 555.9953,443.91967 555.9953,443.91967 C 555.9953,443.91967 555.9597,444.11548 555.88849,444.48931 C 546.59621,460.45708 539.6181,481.4555 539.15527,482.71227 C 538.12279,485.38603 544.28204,487.67171 547.7711,484.78078 C 546.73862,483.69846 545.77735,481.86493 546.27579,479.31934 C 547.62869,472.1917 550.72611,463.52246 554.10836,456.50519 C 553.53872,461.59636 552.96908,468.02263 552.71986,475.35677 C 554.46439,475.1574 556.42253,475.17876 558.27387,475.4707 C 558.09586,461.47887 560.51683,450.25693 563.68546,442.4564 C 564.96716,441.20319 566.07084,440.27752 567.03211,439.60107 C 568.74104,440.61218 570.44996,441.7123 572.19449,442.88719 C 572.23009,447.63658 569.5955,455.90707 569.27507,461.08368 C 565.42999,465.25275 562.90221,470.57178 561.22888,476.20767 C 568.88345,478.83871 574.36625,485.69933 576.28879,492.48163 C 579.35061,504.56159 576.68042,517.23256 568.66983,527.78517 C 578.31814,539.11393 595.15817,552.53611 618.65589,560.24763 C 615.45166,556.37763 612.63905,551.29002 611.00133,544.0164"
         style="fill:#00a767;fill-rule:nonzero;stroke:none" />
      <path
         id="path2328"
         class="ps02"
         d="M 572.97775,495.4224 C 571.80286,488.79676 567.38814,482.17111 560.44563,479.14489 C 556.60055,477.48937 549.94286,476.8592 547.7711,479.18049 C 548.02032,481.32377 549.40882,483.41008 551.18895,484.90895 C 546.13338,490.50212 537.12592,488.73623 536.05784,483.76967 C 535.38139,480.56543 538.12279,478.15514 540.18774,478.00205 C 538.55002,476.31804 530.14781,472.16678 522.52885,474.61624 C 512.52451,477.84895 506.8281,487.60763 505.4396,499.27816 C 504.1223,510.26869 508.14539,522.9717 513.735,529.90709 C 518.50575,535.79576 523.2765,536.06278 530.39702,537.89632 C 538.2652,539.91854 544.63807,542.48549 554.678,535.84561 C 570.23635,525.58849 575.36312,510.79561 572.97775,495.4224"
         style="fill:#c82128;fill-rule:nonzero;stroke:none" />
      <path
         id="path2330"
         class="ps02"
         d="M 636.84883,478.73546 C 632.22049,476.62778 623.03502,476.17207 616.66215,481.01047 C 615.13124,482.16399 611.8914,483.1217 609.43482,483.77323 C 620.22241,503.19801 617.62342,518.70295 617.08938,531.53769 C 616.91137,536.25148 617.76583,540.69468 619.15433,544.74982 C 624.63713,545.42271 631.57964,544.21578 635.63834,542.12947 C 645.03743,537.31243 652.62078,528.14476 654.00929,517.43906 C 655.71821,504.63636 652.33596,485.77766 636.84883,478.73546"
         style="fill:#c82128;fill-rule:nonzero;stroke:none" />
      <path
         id="path2332"
         class="ps02"
         d="M 98.145737,497.14201 C 100.24629,496.70054 102.52486,496.4264 102.52486,496.4264 L 102.52486,487.80344 L 56.383875,487.80344 L 56.383875,496.4264 C 56.383875,496.4264 58.164006,496.70054 60.26456,497.14201 C 63.183974,497.76861 64.572475,499.26748 64.892899,502.12637 L 64.892899,521.25566 L 41.679997,521.25566 L 41.679997,502.13349 C 42.000421,499.27104 43.317717,497.77217 46.272734,497.14201 C 48.337685,496.70054 50.082213,496.43708 50.082213,496.43708 L 50.082213,487.79632 L 4.1904488,487.80344 L 4.1904488,496.4264 C 4.1904488,496.4264 6.4334133,496.70054 8.5339673,497.14201 C 11.453381,497.76861 12.841883,499.2568 13.162307,502.09433 L 13.162307,550.97315 C 12.841883,553.80712 11.453381,555.29887 8.5339673,555.92548 C 6.4334133,556.37051 4.1904488,556.61973 4.1904488,556.61973 L 4.1904488,565.18216 L 50.082213,565.18216 L 50.082213,556.62685 C 50.082213,556.62685 48.337685,556.36339 46.272734,555.91836 C 43.49573,555.32023 42.071626,553.93173 41.679997,551.33986 L 41.679997,532.96891 L 64.892899,532.95823 L 64.892899,550.68121 C 64.643681,553.70031 63.290781,555.27395 60.26456,555.91836 C 58.164006,556.36339 56.383875,556.61973 56.383875,556.61973 L 56.383875,565.18216 L 102.52486,565.18216 L 102.52486,556.61973 C 102.52486,556.61973 100.24629,556.37051 98.145737,555.92548 C 95.297528,555.31311 93.944629,553.86409 93.553,551.15829 L 93.553,501.9092 C 93.944629,499.19628 95.297528,497.75081 98.145737,497.14201"
         style="fill:#c82128;fill-rule:nonzero;stroke:none" />
      <path
         id="path2334"
         class="ps02"
         d="M 453.21057,487.79632 L 453.21057,496.33739 C 453.21057,496.33739 455.41793,496.57237 457.55408,497.04232 C 459.36982,497.44463 460.29549,498.49491 459.26301,500.65243 L 446.30366,520.82486 L 433.30871,500.80552 C 432.16942,498.55543 433.09509,497.47667 434.98203,497.06724 C 437.08258,496.60085 439.25434,496.35875 439.25434,496.35875 L 439.25434,487.79632 L 389.09027,487.79632 L 389.09027,496.35163 C 389.09027,496.35163 391.04841,496.61509 393.14896,497.06012 C 396.49561,497.77929 398.56056,498.16024 402.29883,503.40807 L 422.55672,536.57902 L 422.55672,552.60731 C 421.91587,554.39813 420.63418,555.43416 418.35561,555.92548 C 416.25506,556.37051 413.15763,556.64109 413.15763,556.64109 L 413.15763,565.18216 L 461.75519,565.18216 L 461.75519,556.64109 C 461.75519,556.64109 458.62216,556.37051 456.52161,555.92548 C 453.81581,555.34516 452.3205,554.01718 451.89327,551.58908 L 451.89327,536.45441 L 473.07682,503.35822 C 476.8151,498.1816 478.88005,497.79354 482.22669,497.07792 C 484.29164,496.63289 486.24979,496.36943 486.24979,496.36943 L 486.28539,487.79632 L 453.21057,487.79632"
         style="fill:#c82128;fill-rule:nonzero;stroke:none" />
      <path
         id="path2336"
         class="ps02"
         d="M 111.56792,487.80344 L 111.56792,496.4264 C 111.56792,496.4264 114.16691,496.70054 116.23186,497.14201 C 119.08007,497.74725 120.46857,499.18204 120.8246,501.85935 L 120.8246,551.20457 C 120.46857,553.88189 119.08007,555.31667 116.23186,555.92548 C 114.16691,556.37051 111.56792,556.61973 111.56792,556.61973 L 111.56792,565.18216 L 192.77747,565.18216 L 192.77747,534.06191 C 192.77747,534.06191 182.80874,534.04055 182.80874,534.05479 C 182.06109,540.61279 182.02549,545.98879 178.92806,549.52769 C 175.93744,552.94554 172.59079,554.29844 165.07864,554.29844 L 149.91193,554.30912 L 149.91193,532.30671 L 158.24294,532.29247 C 161.16236,532.59509 162.83568,533.95511 163.22731,536.92792 C 163.51213,539.24922 163.93936,542.58518 163.93936,542.58518 L 172.55519,542.56026 L 172.55519,511.04839 L 163.93936,511.02703 C 163.93936,511.02703 163.65454,514.23482 163.22731,516.68428 C 162.69327,519.62862 161.12675,520.99932 158.24294,521.31262 L 150.33916,521.34466 L 150.33916,498.00359 L 166.11112,498.00359 C 173.23164,498.00359 176.00864,500.50289 178.53643,503.99907 C 181.49145,508.10405 182.2747,513.73282 182.73754,518.00158 L 192.77747,518.00158 L 192.77747,487.80344 L 111.56792,487.80344"
         style="fill:#c82128;fill-rule:nonzero;stroke:none" />
      <path
         id="path2338"
         class="ps02"
         d="M -20.553365,491.68413 C -26.463398,489.91112 -32.159816,485.64237 -45.902423,485.64237 C -72.070342,485.64237 -88.696761,505.30213 -88.696761,527.77449 C -88.696761,549.2037 -74.277704,568.34011 -41.238482,568.34011 C -21.265417,568.34011 -4.2829723,557.06476 -4.0337541,536.28352 L -18.061182,536.2764 C -19.948121,550.69189 -29.988057,554.06346 -37.108579,554.06346 C -47.718157,554.06346 -57.366464,547.46986 -57.366464,528.86037 C -57.366464,508.84459 -49.53389,501.02981 -36.111706,501.02981 C -26.107372,501.02981 -19.342876,505.90025 -17.883169,517.91969 L -4.1761645,517.91969 L -4.1761645,487.79632 C -4.1761645,487.79632 -14.109293,487.807 -14.07369,487.79632 C -15.177371,489.4376 -16.423462,492.91598 -20.553365,491.68413"
         style="fill:#c82128;fill-rule:nonzero;stroke:none" />
      <path
         id="path2340"
         class="ps04"
         d="M 296.13185,556.13197 C 294.52973,555.54097 292.21556,555.13154 288.15687,549.48497 C 284.81022,544.88867 278.93579,535.50026 278.93579,535.50026 C 276.12318,531.84387 272.10009,530.32008 269.5011,530.23819 C 270.8896,529.90709 273.5598,529.00634 277.33367,527.37574 C 283.67094,524.64858 285.80709,518.61038 285.80709,508.38531 C 285.8427,492.12204 272.2781,487.807 260.67165,487.79632 L 202.10536,487.79632 L 202.10536,496.44776 C 202.10536,496.44776 204.38392,496.88923 206.44888,497.33782 C 209.36829,497.96443 210.8636,499.4811 211.14842,502.36135 L 211.14842,551.81694 C 210.72119,554.32336 209.40389,555.47688 206.7337,556.27794 C 205.06037,556.7835 201.85614,556.61973 201.17969,556.61973 L 201.14409,565.18216 L 247.17826,565.18216 L 247.17826,556.61973 C 247.17826,556.61973 244.9709,556.43459 242.90595,555.98956 C 240.05774,555.37364 238.70484,553.92461 238.34881,551.20457 L 238.34881,535.26528 L 244.11644,535.33293 C 245.46934,535.33293 246.85784,535.71744 248.10393,536.37608 C 249.20761,536.97777 250.24009,537.78239 251.09455,538.76858 L 267.93458,565.18216 L 299.22928,565.18216 L 299.22928,556.70873 C 299.22928,556.70873 297.37794,556.59125 296.13185,556.13197 z M 250.56051,524.38869 L 240.16455,524.38869 L 240.16455,500.05786 L 249.20761,500.05074 C 249.42123,500.05074 249.70605,500.04006 249.88406,500.05074 C 254.26318,500.30352 258.28628,503.36178 258.35748,510.39686 L 258.35748,513.73994 C 258.35748,521.69357 255.08204,524.38869 250.56051,524.38869"
         style="fill:#c82128;fill-rule:evenodd;stroke:none" />
      <path
         id="path2342"
         class="ps04"
         d="M 397.24326,556.13197 C 395.64115,555.54097 393.36258,555.13154 389.26828,549.48497 C 385.92163,544.88867 380.0472,535.50026 380.0472,535.50026 C 377.2346,531.84387 373.2115,530.32008 370.61251,530.23819 C 372.00101,529.90709 374.67121,529.00634 378.44509,527.37574 C 384.78235,524.64858 386.91851,518.61038 386.91851,508.38531 C 386.95411,492.12204 373.38951,487.807 361.78306,487.79632 L 303.21677,487.79632 L 303.21677,496.44776 C 303.21677,496.44776 305.49534,496.88923 307.56029,497.33782 C 310.51531,497.96443 311.97501,499.4811 312.25983,502.36135 L 312.25983,551.81694 C 311.8326,554.32336 310.51531,555.47688 307.84511,556.27794 C 306.17179,556.7835 302.96755,556.61973 302.2555,556.61973 L 302.2911,565.18216 L 348.28967,565.18216 L 348.28967,556.61973 C 348.28967,556.61973 346.08231,556.43459 344.01736,555.98956 C 341.16915,555.37364 339.81625,553.92461 339.46023,551.20457 L 339.46023,535.26528 L 345.22785,535.33293 C 346.58075,535.33293 347.96925,535.71744 349.21534,536.37608 C 350.35463,536.97777 351.3871,537.78239 352.20596,538.76858 L 369.046,565.18216 L 400.34069,565.18216 L 400.34069,556.70873 C 400.34069,556.70873 398.48935,556.59125 397.24326,556.13197 z M 351.67192,524.38869 L 341.27596,524.38869 L 341.27596,500.05786 L 350.31902,500.05074 C 350.53264,500.05074 350.81746,500.04006 350.99547,500.05074 C 355.37459,500.30352 359.39769,503.36178 359.46889,510.39686 L 359.5045,513.73994 C 359.5045,521.69357 356.19345,524.38869 351.67192,524.38869"
         style="fill:#c82128;fill-rule:evenodd;stroke:none" />
    </g>
    <text
       id="text2344"
       y="1022.6169"
       x="47.85117"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       xml:space="preserve"><tspan
         y="1022.6169"
         x="47.85117"
         id="tspan2346"
         sodipodi:role="line">Vielen Dank an</tspan></text>
    <text
       id="text2348"
       y="1022.6169"
       x="285.81366"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       xml:space="preserve"><tspan
         y="1022.6169"
         x="285.81366"
         id="tspan2350"
         sodipodi:role="line">für finanzielle Unterstützung beim Druck von Informationsmaterial.</tspan></text>
    <path
       sodipodi:nodetypes="ccccccccc"
       d="M 594.52348,340.18535 L 599.20115,340.18535 C 604.39703,340.18535 608.57999,344.36832 608.57999,349.5642 L 608.57999,354.45068 C 608.57999,361.47554 609.20852,363.82953 599.20115,363.82953 L 594.52348,363.82953 C 585.20962,363.82953 585.14463,361.01829 585.14463,354.45068 L 585.14463,349.5642 C 585.14463,344.36832 589.3276,340.18535 594.52348,340.18535 z "
       style="fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline;opacity:0.6"
       id="path2352" />
    <text
       transform="matrix(-0.3817138,0.9242806,-0.9242806,-0.3817138,0,0)"
       id="text2372"
       y="-761.51923"
       x="209.46797"
       style="font-size:15.63883495px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       xml:space="preserve"><tspan
         y="-761.51923"
         x="209.46797"
         id="tspan2374"
         sodipodi:role="line">↻</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:15.63883495px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="431.29544"
       y="-853.13055"
       id="text2380"
       transform="matrix(-0.3817138,0.9242806,-0.9242806,-0.3817138,0,0)"><tspan
         sodipodi:role="line"
         id="tspan2382"
         x="431.29544"
         y="-853.13055">↻</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:15.63883495px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="80.068695"
       y="-708.07928"
       id="text2384"
       transform="matrix(-0.3817138,0.9242806,-0.9242806,-0.3817138,0,0)"><tspan
         sodipodi:role="line"
         id="tspan2386"
         x="80.068695"
         y="-708.07928">↻</tspan></text>
    <path
       id="path2236"
       style="opacity:0.2;fill:#aaffaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.24239898;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0.52015748;stroke-opacity:1;display:inline"
       d="M 564.52348,340.18535 L 569.20115,340.18535 C 574.39703,340.18535 578.57999,344.36832 578.57999,349.5642 L 578.57999,354.45068 C 578.57999,361.47554 579.20852,363.82953 569.20115,363.82953 L 564.52348,363.82953 C 555.20962,363.82953 555.14463,361.01829 555.14463,354.45068 L 555.14463,349.5642 C 555.14463,344.36832 559.3276,340.18535 564.52348,340.18535 z "
       sodipodi:nodetypes="ccccccccc" />
    <text
       xml:space="preserve"
       style="font-size:25.06328201px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="112.19029"
       y="153.33818"
       id="text9376"><tspan
         sodipodi:role="line"
         id="tspan9378"
         x="112.19029"
         y="153.33818">Dein neues Tastaturlayout!</tspan></text>
    <use
       x="0"
       y="0"
       inkscape:tiled-clone-of="#g10399"
       xlink:href="#g10399"
       id="use12196"
       transform="matrix(0.9622658,0.272111,-0.272111,0.9622658,83.262941,-347.18208)"
       width="744.09448"
       height="1052.3622"
       style="fill:#ffcc00" />
    <text
       id="text13168"
       y="426.09711"
       x="117.68797"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       xml:space="preserve"><tspan
         y="426.09711"
         x="117.68797"
         id="tspan13170"
         sodipodi:role="line">Installationsdatei von  www.neo-layout.org/download  beziehen und starten.</tspan><tspan
         id="tspan13172"
         y="441.09711"
         x="117.68797"
         sodipodi:role="line" /><tspan
         id="tspan13174"
         y="456.09711"
         x="117.68797"
         sodipodi:role="line">Umschalten zwischen QWERTZ und Neo </tspan><tspan
         id="tspan13176"
         y="471.09711"
         x="117.68797"
         sodipodi:role="line">einfach über das Tastensymbol in der Taskleiste.</tspan></text>
    <text
       xml:space="preserve"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="117.68797"
       y="566.09711"
       id="text13178"><tspan
         sodipodi:role="line"
         id="tspan13180"
         x="117.68797"
         y="566.09711">Installationsdatei von  www.neo-layout.org/download  beziehen und starten.</tspan><tspan
         sodipodi:role="line"
         x="117.68797"
         y="581.09711"
         id="tspan13182" /><tspan
         sodipodi:role="line"
         x="117.68797"
         y="596.09711"
         id="tspan13184">Umschalten zwischen QWERTZ und Neo </tspan><tspan
         sodipodi:role="line"
         x="117.68797"
         y="611.09711"
         id="tspan13186">einfach über das Tastensymbol in der Taskleiste.</tspan></text>
    <text
       id="text13188"
       y="626.09711"
       x="117.68797"
       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       xml:space="preserve"><tspan
         y="626.09711"
         x="117.68797"
         id="tspan13190"
         sodipodi:role="line">Installationsdatei von  www.neo-layout.org/download  beziehen und starten.</tspan><tspan
         id="tspan13192"
         y="641.09711"
         x="117.68797"
         sodipodi:role="line" /><tspan
         id="tspan13194"
         y="656.09711"
         x="117.68797"
         sodipodi:role="line">Umschalten zwischen QWERTZ und Neo </tspan><tspan
         id="tspan13196"
         y="671.09711"
         x="117.68797"
         sodipodi:role="line">einfach über das Tastensymbol in der Taskleiste.</tspan></text>
    <path
       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00399995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
       d="M -238.83128,-156.58101 L -238.83128,1249.6377 L 944.41872,1249.6377 L 944.41872,-156.58101 L -238.83128,-156.58101 z M -5.9562847,-5.9560158 L 752.29372,-5.9560158 L 752.29372,1059.5127 L -5.9562847,1059.5127 L -5.9562847,-5.9560158 z "
       id="rect13294"
       sodipodi:nodetypes="cccccccccc" />
  </g>
</svg>