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
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="750"
height="625"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.45+devel"
sodipodi:docname="about.sl.0.46.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
style="display:inline;enable-background:new"
inkscape:export-filename="/home/needcoffee/Desktop/Inkscape_About_Screen_046.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<sodipodi:namedview
inkscape:window-height="825"
inkscape:window-width="1440"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="false"
inkscape:showpageshadow="false"
inkscape:zoom="0.9552"
inkscape:cx="375"
inkscape:cy="312.5"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="layer4"
showguides="false"
inkscape:guide-bbox="true"
borderlayer="false"
showborder="false">
<sodipodi:guide
id="guide5798"
position="268,300"
orientation="0,1" />
<sodipodi:guide
id="guide5870"
position="100,309"
orientation="1,0" />
<sodipodi:guide
id="guide5872"
position="650,364"
orientation="1,0" />
</sodipodi:namedview>
<metadata
id="metadata51">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Inkscape About Screen (0.46)</dc:title>
<dc:date>2008-01-01</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Sebastian Kraft</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>About Screen for Inkscape Version 0.46</dc:description>
<dc:subject>
<rdf:Bag>
<rdf:li>inkscape</rdf:li>
<rdf:li>about</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:contributor>
<cc:Agent>
<dc:title>Sebastian Kraft (needcoffee.deviantart.com, eska-art.de)
Felipe Sanches (adapted to Slovenian based on Martin Srebotnjak's advice)</dc:title>
</cc:Agent>
</dc:contributor>
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:source />
<dc:relation />
<dc:language />
<dc:coverage />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by/3.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 312.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="750 : 312.5 : 1"
inkscape:persp3d-origin="375 : 208.33333 : 1"
id="perspective4887" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 312.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="750 : 312.5 : 1"
inkscape:persp3d-origin="375 : 208.33333 : 1"
id="perspective5089" />
<linearGradient
inkscape:collect="always"
id="linearGradient8936">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop8938" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop8940" />
</linearGradient>
<linearGradient
id="linearGradient8884">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop8886" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop8888" />
</linearGradient>
<pattern
inkscape:collect="always"
xlink:href="#Checkerboardwhite"
id="pattern8803"
patternTransform="matrix(10,0,0,10,0,490)" />
<pattern
inkscape:stockid="Checkerboard white"
id="Checkerboardwhite"
patternTransform="translate(0,0) scale(10,10)"
height="2"
width="2"
patternUnits="userSpaceOnUse"
inkscape:collect="always">
<rect
id="rect8135"
height="1"
width="1"
y="0"
x="0"
style="fill:white;stroke:none" />
<rect
id="rect8137"
height="1"
width="1"
y="1"
x="1"
style="fill:white;stroke:none" />
</pattern>
<linearGradient
inkscape:collect="always"
id="linearGradient6921">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6923" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6925" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6913">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6915" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6917" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6899">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6901" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6903" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6877">
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="0"
id="stop6879" />
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="1"
id="stop6881" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6869">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6871" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6873" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6850">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6852" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6854" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6842">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6844" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6846" />
</linearGradient>
<pattern
inkscape:collect="always"
xlink:href="#Strips1_1white"
id="pattern23741"
patternTransform="scale(10,10)" />
<pattern
inkscape:stockid="Stripes 1:1 white"
id="Strips1_1white"
patternTransform="matrix(10,0,0,10,0,-272.82958)"
height="1"
width="2"
patternUnits="userSpaceOnUse"
inkscape:collect="always">
<rect
id="rect7002"
height="2"
width="1"
y="-0.5"
x="0"
style="fill:white;stroke:none" />
</pattern>
<linearGradient
id="linearGradient7338">
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="0"
id="stop7340" />
<stop
id="stop7342"
offset="0.5"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="1"
id="stop7344" />
</linearGradient>
<linearGradient
id="linearGradient8515">
<stop
id="stop8517"
offset="0"
style="stop-color:#ffffff;stop-opacity:0.29411766;" />
<stop
style="stop-color:#ffffff;stop-opacity:0.78431374;"
offset="0.5"
id="stop8523" />
<stop
id="stop8519"
offset="1"
style="stop-color:#ffffff;stop-opacity:0.29411766;" />
</linearGradient>
<filter
inkscape:collect="always"
id="filter25331"
x="-0.65892518"
width="2.3178504"
y="-0.44495156"
height="1.8899031"
inkscape:label="dq-sh">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="9.5533439"
id="feGaussianBlur25333" />
</filter>
<filter
id="filter6216"
inkscape:collect="always"
inkscape:label="creds-drop">
<feGaussianBlur
id="feGaussianBlur6218"
stdDeviation="2.2456625"
inkscape:collect="always" />
</filter>
<linearGradient
y2="1504.0625"
x2="550.3125"
y1="1504.0625"
x1="592.25"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9453-567-523-272"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
id="linearGradient9386-244-698-839"
inkscape:collect="always">
<stop
id="stop36846"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop36848"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
y2="1565.6562"
x2="279.71875"
y1="1565.6562"
x1="198"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9455-336-611-915"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1719.4375"
x2="100.375"
y1="1719.4375"
x1="368.375"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9457-852-515-806"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1623.0312"
x2="333.21875"
y1="1623.0312"
x1="210.625"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9459-531-537-829"
xlink:href="#linearGradient9323-557-502-59"
inkscape:collect="always" />
<linearGradient
id="linearGradient9323-557-502-59"
inkscape:collect="always">
<stop
id="stop36864"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop36866"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
y2="1622.0625"
x2="183.8125"
y1="1622.0625"
x1="108.125"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9461-884-586-981"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1625.1562"
x2="550.3125"
y1="1625.1562"
x1="630.34375"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9463-252-598-193"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1466.0625"
x2="432.6875"
y1="1466.0625"
x1="516.53125"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9465-843-430-72"
xlink:href="#linearGradient9378-679-445-64"
inkscape:collect="always" />
<linearGradient
id="linearGradient9378-679-445-64"
inkscape:collect="always">
<stop
id="stop36882"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop36884"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
y2="1574"
x2="448.125"
y1="1425.5625"
x1="310.9375"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9467-730-19-399"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1466.0625"
x2="649.625"
y1="1466.0625"
x1="368.375"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9469-20-629-775"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<pattern
patternTransform="scale(9.9999997,9.9999998)"
id="pattern9264-966-660-585"
xlink:href="#Checkerboardwhite-626-461-583"
inkscape:collect="always" />
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="2"
height="2"
patternTransform="translate(0,0) scale(10,10)"
id="Checkerboardwhite-626-461-583"
inkscape:stockid="Checkerboard white">
<rect
style="fill:#ffffff;stroke:none"
x="0"
y="0"
width="1"
height="1"
id="rect36900" />
<rect
style="fill:#ffffff;stroke:none"
x="1"
y="1"
width="1"
height="1"
id="rect36902" />
</pattern>
<linearGradient
gradientTransform="matrix(1,0,0,1.75,0,-476.25)"
gradientUnits="userSpaceOnUse"
y2="615"
x2="760"
y1="615"
x1="-10"
id="linearGradient28723-447-575-131"
xlink:href="#linearGradient28717-645-494-124"
inkscape:collect="always" />
<linearGradient
id="linearGradient28717-645-494-124">
<stop
id="stop36970"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#1e1e1e;stop-opacity:1;"
offset="0.5"
id="stop36972" />
<stop
id="stop36974"
offset="1"
style="stop-color:#000000;stop-opacity:1;" />
</linearGradient>
<filter
inkscape:collect="always"
id="filter40387"
inkscape:label="dq-tex-blend">
<feBlend
inkscape:collect="always"
mode="multiply"
in2="BackgroundImage"
id="feBlend40389" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8515"
id="linearGradient40391"
x1="96.59375"
y1="298.42188"
x2="650.59375"
y2="298.42188"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.7790421,0,0,0.8954017,82.828161,25.116065)" />
<filter
inkscape:collect="always"
id="filter7324"
x="-0.068697974"
width="1.1373959"
y="-0.28144008"
height="1.5628802"
inkscape:label="bg-glow">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="14.54107"
id="feGaussianBlur7326" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7338"
id="linearGradient7334"
x1="124"
y1="364"
x2="632"
y2="364"
gradientUnits="userSpaceOnUse" />
<filter
inkscape:collect="always"
id="filter7208"
x="-0.10369298"
width="1.207386"
y="-0.50919253"
height="2.0183852"
inkscape:label="046-drop">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="21.424537"
id="feGaussianBlur7210" />
</filter>
<filter
y="0"
x="0"
filterUnits="userSpaceOnUse"
id="ShadowBlur"
inkscape:label="logo-ink-drop">
<feGaussianBlur
id="feGaussianBlur8059"
result="blur"
stdDeviation="3"
in="SourceAlpha" />
</filter>
<clipPath
id="clipoutline1"
clipPathUnits="userSpaceOnUse">
<path
d="M 54.1,12.5 L 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 C 36.6,77.7 18.5,81.3 22.2,85 C 25.8,88.7 43.9,92.1 47.5,95.7 C 51.1,99.4 40.2,103.3 43.8,107 C 47.3,110.7 55.7,107.2 57.2,115.6 C 58.3,121.8 72.6,118.7 79,113.4 C 83,110 72.1,110 75.7,106.3 C 84.7,97.2 92.7,102.2 96,93.8 C 97.8,89.3 82.4,86.1 86.5,83.2 C 96.3,76.3 132.3,72.8 115.7,56.2 L 73,12.5 C 67.7,7.5 59,7.5 54.1,12.5 z M 44.2,77.2 C 45.1,77.2 75,81.2 63.5,84.3 C 59.1,85.5 38.9,77.2 44.2,77.2 z M 101.4,93.8 C 101.4,95.9 117.7,97.1 116.8,93.3 C 115.5,86.9 103.2,87.4 101.4,93.8 z M 31.9,104.9 C 35.6,108.1 41.2,104.2 43,99.7 C 39.4,95 26.1,100 31.9,104.9 z M 99.4,98.2 C 94.8,102.4 100.2,106.8 104.7,103.9 C 105.9,103.1 104.6,99.2 99.4,98.2 z"
id="outline1" />
</clipPath>
<linearGradient
gradientUnits="userSpaceOnUse"
id="blck">
<stop
id="stop8047"
offset="0"
style="stop-color:#000;stop-opacity:1" />
<stop
id="stop8049"
offset="1"
style="stop-color:#000;stop-opacity:0" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
id="white">
<stop
id="stop8042"
offset="0"
style="stop-color:#fff;stop-opacity:1" />
<stop
id="stop8044"
offset="1"
style="stop-color:#fff;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#white"
id="linearGradient8150"
gradientUnits="userSpaceOnUse"
x1="0"
y1="128"
x2="0"
y2="76" />
<linearGradient
inkscape:collect="always"
xlink:href="#white"
id="linearGradient8152"
gradientUnits="userSpaceOnUse"
x1="80"
y1="20"
x2="60"
y2="40" />
<linearGradient
inkscape:collect="always"
xlink:href="#white"
id="linearGradient8154"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(337.13195,802.0315)"
x1="33"
y1="35"
x2="58"
y2="60" />
<linearGradient
inkscape:collect="always"
xlink:href="#blck"
id="linearGradient8156"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(337.13195,802.0315)"
x1="0"
y1="128"
x2="0"
y2="64" />
<linearGradient
inkscape:collect="always"
xlink:href="#white"
id="linearGradient8158"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(337.13195,802.0315)"
x1="60"
y1="20"
x2="90"
y2="50" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6899"
id="linearGradient8805"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="485.5"
y1="1380.3438"
x2="420.28125"
y2="1380.3438" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6869"
id="linearGradient8807"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="235.9375"
y1="1366.75"
x2="310.96875"
y2="1366.75" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6921"
id="linearGradient8809"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="287.42307"
y1="1388.7706"
x2="370.89771"
y2="1388.7706" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6913"
id="linearGradient8811"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="301.1875"
y1="1491.8438"
x2="418.6875"
y2="1409.0938" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6842"
id="linearGradient8813"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="370.0625"
y1="1335.8125"
x2="161.3125"
y2="1335.8125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6850"
id="linearGradient8815"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="370.0625"
y1="1334.1875"
x2="589"
y2="1334.1875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6877"
id="radialGradient8817"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.3911561,7.7781906e-8,-2.0385796e-8,0.4846138,-897.05713,170.69889)"
cx="375.15625"
cy="1614.4845"
fx="375.15625"
fy="1614.4845"
r="213.84375" />
<filter
id="filter8823"
inkscape:label="reflect-fade">
<feGaussianBlur
stdDeviation="24"
id="feGaussianBlur8825" />
</filter>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8884"
id="radialGradient8912"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0000001,-1.1868047e-7,9.9117737e-8,0.8351648,-8.7185639e-5,117.09893)"
cx="256.5"
cy="628.5"
fx="256.5"
fy="628.5"
r="45.5" />
<mask
maskUnits="userSpaceOnUse"
id="mask8908">
<path
style="opacity:1;fill:url(#radialGradient8912);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 211,642 L 302,642 L 302,706 L 211,706 L 211,642 z"
id="path8910" />
</mask>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8936"
id="radialGradient8950"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.5333334,0,0,0.9733333,-309.06674,29.013336)"
cx="579.5"
cy="638"
fx="579.5"
fy="638"
r="37.5" />
<mask
maskUnits="userSpaceOnUse"
id="mask8946">
<rect
style="opacity:1;fill:url(#radialGradient8950);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect8948"
width="75"
height="51"
x="542"
y="650" />
</mask>
<filter
inkscape:collect="always"
id="filter8996"
inkscape:label="refl-objts-blur">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.8596095"
id="feGaussianBlur8998" />
</filter>
<filter
inkscape:collect="always"
id="filter3783">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="3.2936584"
id="feGaussianBlur3785" />
</filter>
<filter
inkscape:collect="always"
id="filter4030">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="2.7421081"
id="feGaussianBlur4032" />
</filter>
</defs>
<style
type="text/css"
id="style26">
.specularity {opacity:0.5}
.low-specularity {opacity:0.25}
.full-specularity {opacity:1}
.black {fill:#000}
.white {fill:#fff}
.outline-big {opacity:0.1;fill:none}
.outline-small {opacity:0.2;fill:none}
.stroke-highlight {fill:none;opacity:0.2}
.bs {fill:#000;opacity:75}
</style>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="background"
style="display:inline"
sodipodi:insensitive="true">
<path
style="fill:#8aa678;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -124,-94.5 L 874,-94.5 L 874,719.5 L -124,719.5 L -124,-94.5 z"
id="rect17124" />
<g
id="g8777"
transform="translate(0,-490)"
style="opacity:1;filter:url(#filter8996)">
<g
transform="matrix(1,0,0,0.7384132,0,281.28283)"
id="g7007"
style="opacity:1">
<path
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 550.1875,769.46875 L 420.28125,819.34375 L 420.28125,851.59375 L 418.6875,852.4375 L 407.34375,848.09375 L 310.96875,893.9375 L 310.96875,876.78125 L 370.90625,851.15625 L 370.90625,827.78125 L 324.65625,811.1875 L 310.96875,814.65625 L 310.96875,805.75 L 210.46875,769.9375 L 161.3125,774.8125 L 161.3125,853 L 235.9375,975.96875 L 301.1875,937.9375 L 301.1875,1083.9688 L 370.0625,1197.625 L 473.96875,1032.0938 L 473.96875,1005.5 L 485.5,1013.7812 L 589,848.8125 L 589,773.1875 L 550.1875,769.46875 z"
id="path6980"
sodipodi:nodetypes="ccccccccccccccccccccccccc" />
<path
inkscape:box3dsidetype="5"
id="path6035"
d="M 420.28529,819.34864 L 485.48753,837.67463 L 588.9932,773.19447 L 550.19838,769.47107 L 420.28529,819.34864 z"
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6037"
d="M 485.48753,837.67463 L 485.48753,1013.7789 L 588.9932,848.81167 L 588.9932,773.19447 L 485.48753,837.67463 z"
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="3"
id="path6039"
d="M 420.28529,819.34864 L 485.48753,837.67463 L 485.48753,1013.7789 L 420.28529,966.89333 L 420.28529,819.34864 z"
style="fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="5"
id="path6049"
d="M 161.31874,774.81652 L 235.92525,822.85141 L 310.96206,805.75684 L 210.46434,769.94206 L 161.31874,774.81652 z"
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6051"
d="M 235.92525,822.85141 L 235.92525,975.95672 L 310.96206,932.20394 L 310.96206,805.75684 L 235.92525,822.85141 z"
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="3"
id="path6053"
d="M 161.31874,774.81652 L 235.92525,822.85141 L 235.92525,975.95672 L 161.31874,853.01356 L 161.31874,774.81652 z"
style="fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="5"
id="path6064"
d="M 247.16836,830.7634 L 287.42307,856.84662 L 370.89772,827.77056 L 324.64117,811.18066 L 247.16836,830.7634 z"
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6066"
d="M 287.42307,856.84662 L 287.42307,886.84324 L 370.89772,851.16842 L 370.89772,827.77056 L 287.42307,856.84662 z"
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="3"
id="path6068"
d="M 247.16836,830.7634 L 287.42307,856.84662 L 287.42307,886.84324 L 247.16836,854.84048 L 247.16836,830.7634 z"
style="fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 407.34375,848.09375 L 301.1875,898.59375 L 341.59375,930.84375 L 370.0625,909.8125 L 342.1875,891.8125 L 418.6875,852.4375 L 407.34375,848.09375 z"
id="path6084"
sodipodi:nodetypes="ccccccc" />
<path
inkscape:box3dsidetype="5"
id="path6096"
d="M 342.1943,891.8062 L 370.07507,909.8146 L 473.95342,845.01747 L 448.39261,837.14044 L 342.1943,891.8062 z"
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 370.07507,909.8146 L 370.07507,1197.6123 L 473.95342,1032.0899 L 473.95342,845.01747 L 370.07507,909.8146 z"
id="path6080" />
<path
style="fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 342.1875,891.8125 L 342.1875,930.46875 L 341.59375,930.84375 L 301.1875,898.59375 L 301.1875,1083.9688 L 370.0625,1197.625 L 370.0625,909.8125 L 342.1875,891.8125 z"
id="path6082"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g7991">
<path
style="opacity:0.2;fill:url(#linearGradient8805);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 420.28125,886.29708 L 420.28125,910.11091 L 448.40625,899.42696 L 473.96875,905.265 L 473.96875,1023.7573 L 485.5,1029.8722 L 485.5,899.84231 L 420.28125,886.29708 z"
id="path6234" />
<path
style="opacity:0.2;fill:url(#linearGradient8807);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 310.96875,876.25924 L 235.9375,888.88153 L 235.9375,1001.951 L 310.96875,969.64547 L 310.96875,928.70962 L 287.4375,936.13997 L 247.15625,912.51075 L 247.15625,894.71957 L 310.96875,882.8357 L 310.96875,876.25924 z"
id="path6238" />
<path
style="opacity:0.2;fill:url(#linearGradient8809);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 287.42307,913.98965 L 287.42307,936.13953 L 370.89772,909.79679 L 370.89772,892.51954 L 287.42307,913.98965 z"
id="path6244"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.2;fill:url(#linearGradient8811);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 407.34375,907.52646 L 301.1875,944.81633 L 341.59375,968.63015 L 342.1875,968.30702 L 342.1875,939.80893 L 418.6875,910.73391 L 407.34375,907.52646 z"
id="path6248" />
<path
style="opacity:0.2;fill:url(#linearGradient8813);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 161.3125,853.41458 L 161.3125,911.14926 L 235.9375,1001.951 L 235.9375,888.88153 L 161.3125,853.41458 z M 247.15625,894.71957 L 247.15625,912.51075 L 287.4375,936.13997 L 287.4375,913.98758 L 247.15625,894.71957 z M 342.1875,939.80893 L 342.1875,968.35325 L 341.59375,968.63015 L 301.1875,944.81633 L 301.1875,1081.6997 L 370.0625,1165.6249 L 370.0625,953.10036 L 342.1875,939.80893 z"
id="path6240" />
<path
style="opacity:0.2;fill:url(#linearGradient8815);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 589,852.21466 L 485.5,899.84231 L 485.5,1029.8722 L 589,908.05716 L 589,852.21466 z M 473.96875,905.265 L 370.0625,953.10036 L 370.0625,1165.6249 L 473.96875,1043.3945 L 473.96875,905.265 z"
id="path6232" />
<path
style="opacity:0.2;fill:url(#radialGradient8817);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 550.1875,849.46872 L 420.28125,886.29708 L 485.5,899.84231 L 589,852.21466 L 550.1875,849.46872 z M 210.46875,849.81482 L 161.3125,853.41458 L 235.9375,888.88153 L 310.96875,876.25924 L 210.46875,849.81482 z M 324.65625,880.27436 L 247.15625,894.71957 L 287.4375,913.98758 L 370.90625,892.52737 L 324.65625,880.27436 z M 448.40625,899.42696 L 342.1875,939.80893 L 370.0625,953.10036 L 473.96875,905.265 L 448.40625,899.42696 z"
id="path6230" />
</g>
<path
id="path8002"
d="M 550.1875,849.4688 L 420.28125,886.3125 L 420.28125,910.125 L 418.6875,910.7188 L 407.34375,907.5312 L 310.96875,941.375 L 310.96875,928.7188 L 370.90625,909.7812 L 370.90625,892.5312 L 324.65625,880.2812 L 310.96875,882.8438 L 310.96875,876.25 L 210.46875,849.8125 L 161.3125,853.4062 L 161.3125,911.1562 L 235.9375,1001.9375 L 301.1875,973.875 L 301.1875,1081.6875 L 370.0625,1165.625 L 473.96875,1043.4062 L 473.96875,1023.75 L 485.5,1029.875 L 589,908.0625 L 589,852.2188 L 550.1875,849.4688 z M 342.1875,968.3125 L 342.1875,968.3438 L 341.59375,968.625 L 342.1875,968.3125 z"
style="opacity:0.05;fill:url(#pattern8803);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<path
id="path7183"
d="M 92.24212,281.5 C 92.24212,281.5 292.75205,461.8979 375,462.5 C 457.24795,463.1021 648.34136,281.5 648.34136,281.5 L 874,719.5 L -124,719.5 C -124,719.5 92.24212,281.5 92.24212,281.5 z"
style="fill:#8aa678;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8823);enable-background:accumulate"
sodipodi:nodetypes="czcccc" />
<path
transform="matrix(2.2834645,0,0,2.8225807,-488.14958,-596.91942)"
d="M 632,364 A 254,62 0 1 1 124,364 A 254,62 0 1 1 632,364 z"
sodipodi:ry="62"
sodipodi:rx="254"
sodipodi:cy="364"
sodipodi:cx="378"
id="path7322"
style="opacity:0.5;fill:url(#linearGradient7334);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter7324);enable-background:accumulate"
sodipodi:type="arc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="046"
style="opacity:1;display:inline"
sodipodi:insensitive="true">
<path
sodipodi:nodetypes="ccccccccccccc"
id="path7915"
d="M 126.92123,359.73923 L 198,392.2657 L 210.625,390.4844 L 210.625,397.2344 L 262.625,417.7344 L 333.25,402.7031 L 333.25,445.5781 L 368.375,459.4219 L 501.90625,408.5157 L 501.90625,400.4531 L 516.53125,402.9531 L 622.79752,358.44067 L 126.92123,359.73923 z"
style="opacity:1;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:5.89080763;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7208)"
transform="matrix(0.9390117,0,0,0.9770435,22.862044,-8.5535142)" />
<path
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"
id="path9268"
d="M 325.06155,173.37497 L 300.74083,186.69407 L 300.74083,233.87064 L 237.07848,221.25102 L 161.02451,263.11105 L 161.02451,341.87846 L 237.07848,376.35143 L 246.91389,374.75646 L 246.91389,380.80041 L 287.42408,399.15615 L 342.44392,385.6971 L 342.44392,424.08745 L 369.80778,436.4832 L 473.83424,390.90171 L 473.83424,383.68244 L 485.22773,385.92095 L 588.69425,340.59124 L 588.91336,293.69458 L 511.54474,281.15895 L 511.54474,260.34086 L 544.26451,256.84324 L 544.26451,241.03385 L 511.54474,223.62939 L 485.22773,209.6108 L 431.93639,222.42624 L 431.93639,214.92725 L 325.06155,173.37497 z M 226.02583,272.96047 L 226.02583,330.09829 L 219.28225,328.97904 L 219.28225,274.52742 L 226.02583,272.96047 z M 539.49288,322.85118 L 539.49288,329.42674 L 511.54474,334.51934 L 511.54474,326.48866 L 539.49288,322.85118 z"
style="opacity:0.3;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.00000095;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 325.06155,173.37498 L 300.74083,186.69408 L 300.74083,233.87064 L 237.07848,221.25103 L 161.0245,263.11106 L 161.0245,341.87847 L 237.07848,376.35144 L 246.91389,374.75645 L 246.91389,380.80041 L 287.42408,399.15615 L 342.44393,385.6971 L 342.44393,424.08744 L 369.80778,436.48321 L 473.83424,390.90171 L 473.83424,383.68245 L 485.22772,385.92095 L 588.69425,340.59124 L 588.91336,293.69457 L 511.54474,281.15895 L 511.54474,260.34086 L 544.26451,256.84325 L 544.26451,241.03386 L 511.54474,223.62939 L 485.22772,209.61081 L 431.93638,222.42625 L 431.93638,214.92725 L 325.06155,173.37498 z M 226.02583,272.96048 L 226.02583,330.0983 L 219.28225,328.97905 L 219.28225,274.52743 L 226.02583,272.96048 z M 539.49287,322.85118 L 539.49287,329.42674 L 511.54474,334.51934 L 511.54474,326.48866 L 539.49287,322.85118 z"
id="path8257"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc" />
<g
transform="matrix(0.7790421,0,0,0.8954017,82.511674,15.309012)"
id="g6846">
<path
inkscape:box3dsidetype="13"
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 433.10655,256.41742 L 516.92891,243.1422 L 592.70789,269.74256 L 524.21909,276.12836 L 433.10655,256.41742 z"
id="path6801" />
<path
inkscape:box3dsidetype="14"
id="path6383"
d="M 198.40756,230.0094 L 198.40756,403.20787 L 295.40366,389.45834 L 295.40366,246.70946 L 198.40756,230.0094 z"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 198.40625,230 L 100.78125,276.75 L 100.78125,364.71875 L 198.40625,403.21875 L 198.40625,230 z M 184.21875,287.75 L 184.21875,351.5625 L 175.5625,350.3125 L 175.5625,289.5 L 184.21875,287.75 z"
id="path6385" />
<path
inkscape:box3dsidetype="5"
id="path6055"
d="M 211.02324,381.20223 L 263.0344,395.05857 L 370.41945,379.61331 L 310.71498,370.80921 L 211.02324,381.20223 z"
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6057"
d="M 263.0344,395.05857 L 263.0344,428.69038 L 370.41945,405.83057 L 370.41945,379.61331 L 263.0344,395.05857 z"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="3"
id="path6059"
d="M 211.02324,381.20223 L 263.0344,395.05857 L 263.0344,428.69038 L 211.02324,408.18227 L 211.02324,381.20223 z"
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 175.5625,350.3125 L 108.53125,353.28125 L 184.21875,373 L 184.21875,351.5625 L 175.5625,350.3125 z"
id="path6396"
sodipodi:nodetypes="ccccc" />
<path
inkscape:box3dsidetype="6"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 108.53974,285.35404 L 108.53974,353.27965 L 175.56819,350.32518 L 175.56819,289.49598 L 108.53974,285.35404 z"
id="path6398" />
<path
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 184.21875,257.6875 L 108.53125,285.34375 L 175.5625,289.5 L 184.21875,287.75 L 184.21875,257.6875 z"
id="path6402"
sodipodi:nodetypes="ccccc" />
<path
inkscape:box3dsidetype="3"
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 586.60624,309.76327 L 630.74081,308.25338 L 630.74081,370.51649 L 586.60624,366.41269 L 586.60624,309.76327 z"
id="path6769" />
<path
inkscape:box3dsidetype="5"
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 433.10655,375.07988 L 516.92891,384.77361 L 641.48122,352.84794 L 588.42275,350.54435 L 433.10655,375.07988 z"
id="path6779" />
<path
inkscape:box3dsidetype="3"
id="path6089"
d="M 433.10655,234.5253 L 516.92891,217.01252 L 516.92891,413.90849 L 433.10655,399.48983 L 433.10655,234.5253 z"
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 311.35012,176.51636 L 311.35012,361.47434 L 448.52837,350.07103 L 448.52837,222.93818 L 311.35012,176.51636 z"
id="path6636" />
<path
inkscape:box3dsidetype="5"
id="path6662"
d="M 280.13561,324.94354 L 368.76453,324.92568 L 502.28421,324.9517 L 416.61726,324.95994 L 280.13561,324.94354 z"
style="opacity:1;fill:#dcdcdc;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6228"
d="M 368.78741,271.44835 L 368.78741,470.38901 L 502.30446,419.48422 L 502.30446,290.19829 L 368.78741,271.44835 z"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 311.34375,176.53125 L 280.125,191.40625 L 280.125,357.8125 L 280.125,399.4375 L 333.65625,413.65625 L 333.65625,456.53125 L 368.78125,470.375 L 368.78125,271.4375 L 333.65625,276.5625 L 333.65625,324.9375 L 311.34375,324.9375 L 311.34375,176.53125 z"
id="path6638" />
<path
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 516.9375,217 L 516.9375,243.15625 L 516.9375,292.15625 L 516.9375,351.34375 L 516.9375,384.78125 L 516.9375,413.90625 L 550.71875,401.03125 L 630.75,370.5 L 630.75,370.53125 L 649.75,363.28125 L 649.75,336.34375 L 650.03125,336.3125 L 650.03125,310.90625 L 550.71875,296.90625 L 550.71875,255 L 592.71875,269.75 L 592.71875,252.09375 L 550.71875,232.65625 L 516.9375,217 z M 630.75,338.5 L 630.75,355.59375 L 550.71875,376.125 L 550.71875,347.53125 L 630.75,338.5 z"
id="path6809" />
</g>
<path
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"
id="path6867"
d="M 325.06155,173.37498 L 300.74083,186.69408 L 300.74083,233.87064 L 237.07848,221.25103 L 161.0245,263.11106 L 161.0245,341.87847 L 237.07848,376.35144 L 246.91389,374.75645 L 246.91389,380.80041 L 287.42408,399.15615 L 342.44393,385.6971 L 342.44393,424.08744 L 369.80778,436.48321 L 473.83424,390.90171 L 473.83424,383.68245 L 485.22772,385.92095 L 588.69425,340.59124 L 588.91336,293.69457 L 511.54474,281.15895 L 511.54474,260.34086 L 544.26451,256.84325 L 544.26451,241.03386 L 511.54474,223.62939 L 485.22772,209.61081 L 431.93638,222.42625 L 431.93638,214.92725 L 325.06155,173.37498 z M 226.02583,272.96048 L 226.02583,330.0983 L 219.28225,328.97905 L 219.28225,274.52743 L 226.02583,272.96048 z M 539.49287,322.85118 L 539.49287,329.42674 L 511.54474,334.51934 L 511.54474,326.48866 L 539.49287,322.85118 z"
style="opacity:0.02999998;fill:url(#pattern9264-966-660-585);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
style="opacity:0.2"
transform="matrix(0.7790421,0,0,0.8954017,82.828161,-841.63277)"
id="g9441">
<path
id="path9403"
d="M 550.3125,1212.0625 L 550.3125,1230.7188 L 592.25,1226.7812 L 550.3125,1212.0625 z"
style="opacity:1;fill:url(#linearGradient9453-567-523-272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path9405"
d="M 198,1187.0625 L 198,1360.25 L 210.625,1358.4688 L 210.625,1338.25 L 279.71875,1331.0312 L 279.71875,1201.125 L 198,1187.0625 z"
style="opacity:1;fill:url(#linearGradient9455-336-611-915);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccccc" />
<path
id="path9407"
d="M 310.9375,1133.5938 L 279.71875,1148.4688 L 279.71875,1356.5 L 333.25,1370.7188 L 333.25,1413.5938 L 368.375,1427.4375 L 368.375,1228.5 L 333.25,1233.625 L 333.25,1282 L 310.9375,1282 L 310.9375,1133.5938 z M 198,1187.0625 L 100.375,1233.8125 L 100.375,1321.7812 L 198,1360.2812 L 198,1187.0625 z M 183.8125,1244.8125 L 183.8125,1308.625 L 175.15625,1307.375 L 175.15625,1246.5625 L 183.8125,1244.8125 z M 210.625,1338.25 L 210.625,1365.2188 L 262.625,1385.75 L 262.625,1352.0938 L 210.625,1338.25 z"
style="opacity:1;fill:url(#linearGradient9457-852-515-806);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="cccccccccccccccccccccccccc" />
<path
sodipodi:nodetypes="cccccccc"
id="path9409"
d="M 279.71875,1331.0312 L 210.625,1338.25 L 262.625,1352.0938 L 262.625,1385.75 L 333.21875,1370.7188 L 279.71875,1356.5 L 279.71875,1349.625 L 279.71875,1331.0312 z"
style="opacity:1;fill:url(#linearGradient9459-531-537-829);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path9411"
d="M 183.8125,1214.75 L 108.125,1242.4062 L 108.125,1310.3125 L 175.15625,1307.375 L 175.15625,1246.5625 L 183.8125,1244.8125 L 183.8125,1214.75 z M 175.15625,1307.375 L 108.125,1310.3438 L 183.8125,1330.0625 L 183.8125,1308.625 L 175.15625,1307.375 z"
style="opacity:1;fill:url(#linearGradient9461-884-586-981);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccccc"
id="path9413"
d="M 630.34375,1295.5625 L 586.1875,1300.5312 L 586.1875,1307.875 L 550.3125,1313.5312 L 550.3125,1333.1562 L 630.34375,1312.6562 L 630.34375,1295.5625 z"
style="opacity:1;fill:url(#linearGradient9463-252-598-193);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path9415"
d="M 516.53125,1174.0625 L 432.6875,1191.5625 L 432.6875,1237.5312 L 501.90625,1247.25 L 501.90625,1368.4375 L 516.53125,1370.9688 L 516.53125,1174.0625 z"
style="opacity:1;fill:url(#linearGradient9465-843-430-72);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path9417"
d="M 310.9375,1133.5625 L 310.9375,1133.5938 L 310.9375,1282 L 333.25,1282 L 333.25,1233.625 L 368.375,1228.5 L 448.125,1239.6875 L 448.125,1180 L 310.9375,1133.5625 z"
style="opacity:1;fill:url(#linearGradient9467-730-19-399);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 279.72936,1281.9908 L 368.35828,1281.973 L 501.87796,1281.999 L 416.21101,1282.0072 L 279.72936,1281.9908 z"
id="path9419"
inkscape:box3dsidetype="5" />
<path
id="path9421"
d="M 516.53125,1174.0625 L 516.53125,1370.9688 L 649.34375,1320.3438 L 649.625,1267.9688 L 550.3125,1253.9688 L 550.3125,1212.0625 L 592.3125,1226.8125 L 592.3125,1209.1562 L 516.53125,1174.0625 z M 368.375,1228.5 L 368.375,1427.4375 L 501.90625,1376.5312 L 501.90625,1247.25 L 368.375,1228.5 z M 630.34375,1295.5625 L 630.34375,1312.6562 L 550.3125,1333.1875 L 550.3125,1304.5938 L 630.34375,1295.5625 z"
style="opacity:1;fill:url(#linearGradient9469-20-629-775);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccccccccccc" />
</g>
</g>
<g
style="opacity:1;display:inline"
inkscape:label="wireframe"
id="layer6"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
id="path6178"
d="M 370.61117,146.80675 L 369.83212,147.22647 L 369.80778,147.22647 L 369.05308,146.83473 L 369.05308,147.67417 L 325.0859,171.85002 L 300.6678,185.28104 L 299.98613,185.05719 L 299.98613,185.67278 L 298.57412,186.45626 L 299.98613,186.90395 L 299.98613,232.84926 L 237.88187,220.53748 L 237.88187,219.86593 L 236.9811,220.34161 L 236.32379,220.22968 L 236.32379,220.73335 L 184.10363,249.47015 L 160.90278,262.22962 L 160.26981,262.17366 L 160.26981,262.59338 L 158.07875,263.79657 L 160.26981,263.99245 L 160.26981,341.89239 L 160.26981,342.50798 L 160.26981,342.84376 L 160.90278,342.7878 L 236.32379,376.98095 L 236.32379,377.40066 L 237.00545,377.28874 L 237.88187,377.68048 L 237.88187,377.14884 L 246.13485,375.80573 L 246.13485,380.05889 L 243.96814,380.45063 L 246.13485,381.42997 L 246.13485,381.87768 L 246.84086,381.73777 L 286.66938,399.78571 L 286.66938,400.28937 L 287.37539,400.12148 L 288.22747,400.51322 L 288.22747,399.89764 L 299.98613,397.01556 L 299.98613,404.51454 L 298.16025,405.01821 L 299.98613,405.82967 L 299.98613,406.36131 L 300.71649,406.16545 L 369.05308,437.14074 L 369.05308,437.8123 L 369.80778,437.47652 L 369.83212,437.47652 L 370.61117,437.84028 L 370.61117,437.14074 L 473.93162,391.86699 L 474.61328,392.03488 L 474.61328,391.55921 L 476.70695,390.6638 L 474.61328,390.2161 L 474.61328,384.75974 L 484.44869,386.69046 L 484.44869,387.25009 L 485.27641,386.88633 L 485.30076,386.88633 L 486.00677,387.02623 L 486.00677,386.55055 L 589.03508,341.41671 L 589.05942,341.41671 L 589.66805,341.47267 L 589.66805,341.1369 L 589.66805,340.5213 L 589.66805,264.83188 L 589.66805,263.85254 L 589.03508,263.9085 L 486.00677,209.06515 L 486.00677,208.56148 L 485.34945,208.72937 L 485.32511,208.70139 L 485.30076,208.70139 L 484.44869,208.25369 L 484.44869,208.92524 L 474.61328,211.27567 L 474.61328,204.30833 L 476.2444,203.88861 L 474.61328,202.99321 L 474.61328,202.46156 L 473.93162,202.62945 L 370.61117,147.67417 L 370.61117,146.80675 z M 369.05308,149.66085 L 369.05308,207.72204 L 302.93188,186.03653 L 369.05308,149.66085 z M 370.61117,149.66085 L 471.44842,203.301 L 407.12876,220.20171 L 370.61117,208.22571 L 370.61117,149.66085 z M 301.54422,187.4356 L 369.05308,209.56881 L 369.05308,353.98031 L 325.35369,346.59325 L 325.35369,346.3694 L 324.62334,346.45335 L 323.7956,346.31344 L 323.7956,346.56527 L 313.42461,347.79644 L 313.42461,236.235 L 313.42461,235.08776 L 312.62122,235.33959 L 301.54422,233.15705 L 301.54422,187.4356 z M 473.05519,204.70007 L 473.05519,211.66741 L 419.93426,224.3989 L 419.15522,224.14707 L 419.15522,225.32229 L 419.15522,373.03558 L 419.15522,373.79107 L 419.15522,374.18281 L 419.93426,373.95896 L 473.05519,384.45196 L 473.05519,389.88033 L 407.85911,375.77775 L 407.85911,221.82463 L 458.42381,208.5335 L 473.05519,204.70007 z M 370.61117,210.10046 L 406.30103,221.79664 L 406.30103,375.80573 L 370.61117,385.4313 L 370.61117,379.7511 L 371.09806,379.63917 L 371.8771,379.83504 L 371.8771,379.4433 L 371.8771,378.71579 L 371.8771,355.23947 L 371.8771,354.48398 L 371.8771,354.20416 L 371.09806,354.31609 L 370.61117,354.23214 L 370.61117,210.10046 z M 484.44869,210.74403 L 484.44869,245.58074 L 474.61328,242.3629 L 474.61328,213.12243 L 484.44869,210.74403 z M 486.00677,211.05182 L 523.98507,231.25432 L 585.82153,264.18832 L 550.13167,267.12636 L 486.00677,246.08441 L 486.00677,211.05182 z M 473.05519,213.48619 L 473.05519,241.83126 L 423.22085,225.49018 L 473.05519,213.48619 z M 237.88187,222.35627 L 267.68023,228.26033 L 299.98613,234.64006 L 299.98613,239.17303 L 237.88187,258.11638 L 237.88187,222.35627 z M 236.32379,222.72003 L 236.32379,258.59205 L 210.3963,266.48278 L 164.01895,262.50944 L 236.32379,222.72003 z M 420.7133,226.52549 L 473.05519,243.67802 L 473.05519,357.78577 L 420.7133,371.91633 L 420.7133,226.52549 z M 301.54422,234.94785 L 308.96946,236.43087 L 301.54422,238.69735 L 301.54422,234.94785 z M 311.86652,237.4102 L 311.86652,347.99232 L 301.54422,349.2235 L 301.54422,240.54411 L 311.86652,237.4102 z M 299.98613,241.01979 L 299.98613,349.41936 L 271.52675,352.8051 L 237.88187,344.38273 L 237.88187,259.96314 L 299.98613,241.01979 z M 474.61328,244.20967 L 484.44869,247.42751 L 484.44869,354.70783 L 474.61328,357.36606 L 474.61328,244.20967 z M 486.00677,247.93118 L 549.25524,268.66532 L 549.25524,337.19153 L 486.00677,354.28811 L 486.00677,247.93118 z M 236.32379,260.43882 L 236.32379,343.99098 L 211.24838,337.69519 L 211.24838,268.07772 L 236.32379,260.43882 z M 161.82789,264.13235 L 209.69029,268.21762 L 209.69029,337.58328 L 161.82789,340.94103 L 161.82789,264.13235 z M 588.10997,265.81123 L 588.10997,339.56994 L 550.81333,337.05162 L 550.81333,268.8612 L 588.10997,265.81123 z M 550.15601,338.78646 L 550.22905,338.78646 L 585.21291,341.16488 L 491.99566,382.04556 L 486.00677,384.6758 L 486.00677,356.10689 L 550.15601,338.78646 z M 210.44499,339.31812 L 236.32379,345.80977 L 236.32379,375.05023 L 164.57888,342.53596 L 210.44499,339.31812 z M 237.88187,346.20151 L 246.15919,348.27213 L 266.56036,353.42069 L 246.98692,355.74313 L 246.13485,355.49131 L 246.13485,355.85506 L 246.13485,356.66652 L 246.13485,373.98694 L 237.88187,375.33005 L 237.88187,346.20151 z M 323.7956,348.35608 L 323.7956,362.15085 L 320.60641,362.6825 L 313.42461,363.88569 L 313.42461,349.58725 L 323.7956,348.35608 z M 325.35369,348.38406 L 334.58047,349.95101 L 365.59608,355.23947 L 325.35369,361.89903 L 325.35369,348.38406 z M 311.86652,349.78312 L 311.86652,362.93434 L 301.54422,360.33207 L 301.54422,351.0143 L 311.86652,349.78312 z M 299.98613,351.21016 L 299.98613,359.94033 L 276.39577,354.03627 L 299.98613,351.21016 z M 271.45371,354.62389 L 271.47806,354.62389 L 299.98613,361.7871 L 299.98613,365.2288 L 285.62254,367.57922 L 251.24731,357.05826 L 271.45371,354.62389 z M 369.05308,356.47065 L 369.05308,377.28874 L 325.35369,366.32007 L 325.35369,363.71781 L 369.05308,356.47065 z M 484.44869,356.52662 L 484.44869,384.87167 L 474.61328,382.94096 L 474.61328,359.18484 L 484.44869,356.52662 z M 247.69293,357.84173 L 281.62996,368.2228 L 253.68182,372.75577 L 247.69293,373.73512 L 247.69293,357.84173 z M 473.05519,359.60455 L 473.05519,382.63317 L 453.40872,378.74377 L 423.82948,372.89567 L 473.05519,359.60455 z M 301.54422,362.17883 L 308.2878,363.88569 L 301.54422,364.97696 L 301.54422,362.17883 z M 323.7956,363.96964 L 323.7956,366.26411 L 301.54422,370.20947 L 301.54422,367.66317 L 323.7956,363.96964 z M 299.98613,367.915 L 299.98613,370.48928 L 288.22747,372.58788 L 288.22747,369.84571 L 299.98613,367.915 z M 324.59899,367.97097 L 367.37327,378.71579 L 325.5241,388.95695 L 301.54422,394.80503 L 301.54422,372.05623 L 324.59899,367.97097 z M 285.47648,369.39801 L 285.50082,369.39801 L 286.66938,369.76177 L 286.66938,372.8677 L 247.69293,379.77908 L 247.69293,375.5539 L 285.47648,369.39801 z M 299.98613,372.33605 L 299.98613,395.19678 L 288.22747,398.05087 L 288.22747,374.40667 L 299.98613,372.33605 z M 286.66938,374.68648 L 286.66938,397.88298 L 249.85965,381.20612 L 266.41429,378.26809 L 286.66938,374.68648 z M 407.05572,377.42864 L 470.98587,391.22343 L 437.31664,405.96958 L 370.61117,435.21004 L 370.61117,387.27807 L 407.05572,377.42864 z M 369.05308,380.14283 L 369.05308,385.85102 L 301.54422,404.09483 L 301.54422,396.6518 L 369.05308,380.14283 z M 369.05308,387.69778 L 369.05308,435.21004 L 303.39445,405.43793 L 369.05308,387.69778 z"
style="opacity:0.3;fill:url(#linearGradient40391);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="deco-q-sh"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:0.07000002;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
d="M 345.22157,207.02653 L 331.45273,217.30468 L 331.45273,248.24994 L 353.36651,258.55579 L 366.24883,254.53872 L 366.24883,227.33349 L 345.22157,207.02653 z"
id="path24551"
transform="matrix(0.6775502,0,0,0.4187457,152.56523,146.48081)" />
<path
transform="matrix(0.4306566,0,0,0.4305766,257.96813,177.22763)"
style="opacity:0.05;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
d="M 407.81529,371.23406 L 354.09743,376.58086 L 354.09743,425.69996 L 394.51742,440.32756 L 447.51498,420.54696 L 447.51498,374.69706 L 407.81529,371.23406 z"
id="path24541" />
<path
style="opacity:0.05;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
d="M 173.991,327.20513 L 159.19711,328.20253 L 159.19711,361.58573 L 170.00163,373.66453 L 187.03953,370.67253 L 187.03953,332.55203 L 173.991,327.20513 z"
id="path24539"
transform="matrix(0.7534316,0,0,0.3684475,63.408704,206.89617)" />
<path
id="path38836"
d="M 407.81529,371.23406 L 354.09743,376.58086 L 354.09743,425.69996 L 394.51742,440.32756 L 447.51498,420.54696 L 447.51498,374.69706 L 407.81529,371.23406 z"
style="opacity:0.07999998;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
transform="matrix(0.54729,-0.1361643,0.1620046,0.4363318,289.98698,263.77497)" />
<path
transform="matrix(-0.54729,-0.1361643,-0.1620046,0.4363318,545.49895,307.75847)"
style="opacity:0.07999998;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
d="M 407.81529,371.23406 L 354.09743,376.58086 L 354.09743,425.69996 L 394.51742,440.32756 L 447.51498,420.54696 L 447.51498,374.69706 L 407.81529,371.23406 z"
id="path38838" />
</g>
<g
style="opacity:1;display:inline"
inkscape:label="deco-q"
id="layer10"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,391.0349 L 582.56129,395.73529 L 605.84681,379.59413 L 580.43511,376.47842 L 552.80324,391.0349 z"
id="path6136"
inkscape:box3dsidetype="13" />
<path
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,375.70827 L 552.80324,391.0349 L 580.43511,376.47842 L 580.43511,363.93383 L 552.80324,375.70827 z"
id="path6138"
inkscape:box3dsidetype="6" />
<path
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 580.43511,363.93383 L 605.84681,366.45407 L 605.84681,379.59413 L 580.43511,376.47842 L 580.43511,363.93383 z"
id="path6140"
inkscape:box3dsidetype="11" />
<path
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,375.70827 L 582.56129,379.51032 L 605.84681,366.45407 L 580.43511,363.93383 L 552.80324,375.70827 z"
id="path6142"
inkscape:box3dsidetype="5" />
<path
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 582.56129,379.51032 L 582.56129,395.73529 L 605.84681,379.59413 L 605.84681,366.45407 L 582.56129,379.51032 z"
id="path6144"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,375.70827 L 582.56129,379.51032 L 582.56129,395.73529 L 552.80324,391.0349 L 552.80324,375.70827 z"
id="path6146"
inkscape:box3dsidetype="3" />
<path
id="path6179"
d="M 221.38807,416.19825 L 249.0473,432.72857 L 290.7916,421.57006 L 260.14089,407.75632 L 221.38807,416.19825 z"
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="13" />
<path
id="path6181"
d="M 221.38807,396.34587 L 221.38807,416.19825 L 260.14089,407.75632 L 260.14089,389.49466 L 221.38807,396.34587 z"
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="6" />
<path
id="path6183"
d="M 260.14089,389.49466 L 290.7916,400.70547 L 290.7916,421.57006 L 260.14089,407.75632 L 260.14089,389.49466 z"
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="11" />
<path
id="path6185"
d="M 221.38807,396.34587 L 249.0473,409.76139 L 290.7916,400.70547 L 260.14089,389.49466 L 221.38807,396.34587 z"
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="5" />
<path
id="path6187"
d="M 249.0473,409.76139 L 249.0473,432.72857 L 290.7916,421.57006 L 290.7916,400.70547 L 249.0473,409.76139 z"
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="14" />
<path
id="path6189"
d="M 221.38807,396.34587 L 249.0473,409.76139 L 249.0473,432.72857 L 221.38807,416.19825 L 221.38807,396.34587 z"
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="3" />
<path
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 156.94022,334.24233 L 168.18788,336.59576 L 191.8297,335.46157 L 178.96034,333.30218 L 156.94022,334.24233 z"
id="path6826"
inkscape:box3dsidetype="13" />
<path
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 156.94022,321.3612 L 156.94022,334.24233 L 178.96034,333.30218 L 178.96034,320.93855 L 156.94022,321.3612 z"
id="path6828"
inkscape:box3dsidetype="6" />
<path
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 178.96034,320.93855 L 191.8297,321.9093 L 191.8297,335.46157 L 178.96034,333.30218 L 178.96034,320.93855 z"
id="path6830"
inkscape:box3dsidetype="11" />
<path
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 156.94022,321.3612 L 168.18788,322.41917 L 191.8297,321.9093 L 178.96034,320.93855 L 156.94022,321.3612 z"
id="path6832"
inkscape:box3dsidetype="5" />
<path
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 168.18788,322.41917 L 168.18788,336.59576 L 191.8297,335.46157 L 191.8297,321.9093 L 168.18788,322.41917 z"
id="path6834"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 156.94022,321.3612 L 168.18788,322.41917 L 168.18788,336.59576 L 156.94022,334.24233 L 156.94022,321.3612 z"
id="path6836"
inkscape:box3dsidetype="3" />
<path
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 419.61517,356.45188 L 447.10707,359.8 L 470.00549,355.45346 L 443.36566,352.65647 L 419.61517,356.45188 z"
id="path6854"
inkscape:box3dsidetype="13" />
<path
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 419.61517,337.82387 L 419.61517,356.45188 L 443.36566,352.65647 L 443.36566,335.57856 L 419.61517,337.82387 z"
id="path6856"
inkscape:box3dsidetype="6" />
<path
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 443.36566,335.57856 L 470.00549,337.23322 L 470.00549,355.45346 L 443.36566,352.65647 L 443.36566,335.57856 z"
id="path6858"
inkscape:box3dsidetype="11" />
<path
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 419.61517,337.82387 L 447.10707,339.80457 L 470.00549,337.23322 L 443.36566,335.57856 L 419.61517,337.82387 z"
id="path6860"
inkscape:box3dsidetype="5" />
<path
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 447.10707,339.80457 L 447.10707,359.8 L 470.00549,355.45346 L 470.00549,337.23322 L 447.10707,339.80457 z"
id="path6862"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 419.61517,337.82387 L 447.10707,339.80457 L 447.10707,359.8 L 419.61517,356.45188 L 419.61517,337.82387 z"
id="path6864"
inkscape:box3dsidetype="3" />
<path
id="path6872"
d="M 398.73786,221.93378 L 410.89074,218.87844 L 410.89074,233.65042 L 398.73786,236.21498 L 398.73786,221.93378 z"
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="11" />
<path
id="path6870"
d="M 385.28429,218.02861 L 385.28429,232.93711 L 398.73786,236.21498 L 398.73786,221.93378 L 385.28429,218.02861 z"
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="6" />
<path
id="path6874"
d="M 385.28429,218.02861 L 397.50678,214.69394 L 410.89074,218.87844 L 398.73786,221.93378 L 385.28429,218.02861 z"
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="5" />
<path
id="path6868"
d="M 385.28429,232.93711 L 397.50678,230.13807 L 410.89074,233.65042 L 398.73786,236.21498 L 385.28429,232.93711 z"
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="13" />
<path
id="path6876"
d="M 397.50678,214.69394 L 397.50678,230.13807 L 410.89074,233.65042 L 410.89074,218.87844 L 397.50678,214.69394 z"
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="14" />
<path
id="path6878"
d="M 385.28429,218.02861 L 397.50678,214.69394 L 397.50678,230.13807 L 385.28429,232.93711 L 385.28429,218.02861 z"
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="3" />
<path
style="opacity:0.5;fill:url(#pattern23741);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter40387)"
d="M 400.59375,205.03125 L 386.71875,208.8125 L 386.71875,225.75 L 402,229.5 L 415.8125,226.5625 L 415.8125,209.78125 L 400.59375,205.03125 z M 152.21875,325.8125 L 127.1875,326.28125 L 127.1875,340.9375 L 139.96875,343.59375 L 166.84375,342.3125 L 166.84375,326.90625 L 152.21875,325.8125 z M 452.71875,342.4375 L 425.71875,345 L 425.71875,366.15625 L 456.96875,369.96875 L 483,365.03125 L 483,344.3125 L 452.71875,342.4375 z M 608.5,374.6875 L 577.09375,388.0625 L 577.09375,405.46875 L 610.9375,410.8125 L 637.40625,392.46875 L 637.40625,377.53125 L 608.5,374.6875 z M 244.46875,403.71875 L 200.4375,411.53125 L 200.4375,434.09375 L 231.875,452.875 L 279.3125,440.1875 L 279.3125,416.46875 L 244.46875,403.71875 z"
id="path38840"
transform="matrix(0.8798335,0,0,0.8796701,45.04556,34.34351)" />
<path
id="path40362"
d="M 397.50136,214.70337 L 385.29367,218.02962 L 385.29367,232.92903 L 398.73863,236.22779 L 410.89133,233.64376 L 410.89133,218.8818 L 397.50136,214.70337 z M 178.97272,320.95102 L 156.94938,321.36336 L 156.94938,334.25603 L 168.19476,336.59265 L 191.84028,335.46558 L 191.84028,321.91316 L 178.97272,320.95102 z M 443.36268,335.57553 L 419.60718,337.82969 L 419.60718,356.44021 L 447.10197,359.79395 L 470.00514,355.45058 L 470.00514,337.22492 L 443.36268,335.57553 z M 580.42424,363.9449 L 552.79197,375.71048 L 552.79197,391.02224 L 582.56884,395.72298 L 605.85693,379.58653 L 605.85693,366.44646 L 580.42424,363.9449 z M 260.13736,389.48282 L 221.39719,396.35524 L 221.39719,416.2028 L 249.05695,432.7241 L 290.79405,421.56329 L 290.79405,400.69861 L 260.13736,389.48282 z"
style="opacity:0.2;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g8873"
mask="url(#mask8908)"
transform="translate(0,-222)"
style="opacity:0.7;filter:url(#filter8996)">
<path
sodipodi:nodetypes="ccccc"
id="path8847"
d="M 221.38807,676.19825 L 249.0473,696.72857 L 290.7916,681.57006 L 260.14089,667.75632 L 221.38807,676.19825 z"
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="13" />
<path
id="path8849"
d="M 221.38807,656.34587 L 221.38807,676.19825 L 260.14089,667.75632 L 260.14089,649.49466 L 221.38807,656.34587 z"
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="6" />
<path
id="path8851"
d="M 260.14089,649.49466 L 290.7916,660.70547 L 290.7916,681.57006 L 260.14089,667.75632 L 260.14089,649.49466 z"
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="11" />
<path
sodipodi:nodetypes="ccccc"
id="path8853"
d="M 221.38807,656.34587 L 249.0473,673.76139 L 290.7916,660.70547 L 260.14089,649.49466 L 221.38807,656.34587 z"
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="5" />
<path
sodipodi:nodetypes="ccccc"
id="path8855"
d="M 249.0473,673.76139 L 249.0473,696.72857 L 290.7916,681.57006 L 290.7916,660.70547 L 249.0473,673.76139 z"
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="14" />
<path
sodipodi:nodetypes="ccccc"
id="path8857"
d="M 221.38807,656.34587 L 249.0473,673.76139 L 249.0473,696.72857 L 221.38807,676.19825 L 221.38807,656.34587 z"
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="3" />
</g>
<g
id="g8926"
mask="url(#mask8946)"
transform="translate(0,-262)"
style="opacity:0.7;filter:url(#filter8996)">
<path
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,689.0349 L 582.56129,693.73529 L 605.84681,677.59413 L 580.43511,674.47842 L 552.80324,689.0349 z"
id="path8914"
inkscape:box3dsidetype="13" />
<path
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,673.70827 L 552.80324,689.0349 L 580.43511,674.47842 L 580.43511,661.93383 L 552.80324,673.70827 z"
id="path8916"
inkscape:box3dsidetype="6" />
<path
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 580.43511,661.93383 L 605.84681,664.45407 L 605.84681,677.59413 L 580.43511,674.47842 L 580.43511,661.93383 z"
id="path8918"
inkscape:box3dsidetype="11" />
<path
style="opacity:0.5;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,673.70827 L 582.56129,677.51032 L 605.84681,664.45407 L 580.43511,661.93383 L 552.80324,673.70827 z"
id="path8920"
inkscape:box3dsidetype="5" />
<path
style="opacity:0.5;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 582.56129,677.51032 L 582.56129,693.73529 L 605.84681,677.59413 L 605.84681,664.45407 L 582.56129,677.51032 z"
id="path8922"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.5;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,673.70827 L 582.56129,677.51032 L 582.56129,693.73529 L 552.80324,689.0349 L 552.80324,673.70827 z"
id="path8924"
inkscape:box3dsidetype="3" />
</g>
</g>
<g
style="display:inline"
inkscape:label="url"
id="layer1"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
transform="matrix(1,0,0,1.1666667,0,-105.83333)"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter6216);enable-background:accumulate"
d="M -10,575 L 760,575 L 760,635 L -10,635 L -10,575 z"
id="path28465" />
<path
id="rect28462"
d="M -10,565 L 760,565 L 760,635 L -10,635 L -10,565 z"
style="fill:url(#linearGradient28723-447-575-131);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
transform="translate(-3.519045,-21.64062)"
id="g6265">
<path
id="path6241"
d="M 299.84375,612 L 299.84375,610.93652 L 301.52246,610.93652 L 301.52246,599.94141 L 299.84375,599.94141 L 299.84375,598.87793 L 306.59375,598.87793 L 306.59375,599.94141 L 304.90625,599.94141 L 304.90625,610.93652 L 306.59375,610.93652 L 306.59375,612 L 299.84375,612 M 308.22852,612 L 308.22852,610.93652 L 309.90723,610.93652 L 309.90723,599.94141 L 308.22852,599.94141 L 308.22852,598.87793 L 312.33301,598.87793 L 320.25195,608.16797 L 320.25195,599.94141 L 318.58203,599.94141 L 318.58203,598.87793 L 323.16992,598.87793 L 323.16992,599.94141 L 321.49121,599.94141 L 321.49121,612 L 319.18848,612 L 311.14648,602.5166 L 311.14648,610.93652 L 312.81641,610.93652 L 312.81641,612 L 308.22852,612 M 324.73438,612 L 324.73438,610.93652 L 326.41309,610.93652 L 326.41309,599.94141 L 324.73438,599.94141 L 324.73438,598.87793 L 331.48438,598.87793 L 331.48438,599.94141 L 329.79688,599.94141 L 329.79688,604.73145 L 335.36035,599.94141 L 333.9541,599.94141 L 333.9541,598.87793 L 338.84961,598.87793 L 338.84961,599.94141 L 337.10059,599.94141 L 332.38965,603.99316 L 338.79688,610.93652 L 340.08887,610.93652 L 340.08887,612 L 335.6416,612 L 329.79688,605.62793 L 329.79688,610.93652 L 331.48438,610.93652 L 331.48438,612 L 324.73438,612 M 340.92383,611.36719 L 340.92383,608.25586 L 342.04004,608.25586 C 342.20996,609.24024 342.61133,609.97559 343.24414,610.46191 C 343.87695,610.94824 344.75292,611.19141 345.87207,611.19141 C 346.78027,611.19141 347.47167,611.01856 347.94629,610.67285 C 348.42089,610.32715 348.65819,609.82031 348.6582,609.15234 C 348.65819,608.625 348.49706,608.21485 348.1748,607.92188 C 347.85253,607.62891 347.18749,607.35645 346.17969,607.10449 L 344.21094,606.62109 C 342.92773,606.29297 342.02539,605.83887 341.50391,605.25879 C 340.98242,604.67286 340.72168,603.84083 340.72168,602.7627 C 340.72168,601.46192 341.15234,600.45118 342.01367,599.73047 C 342.88086,599.00392 344.09375,598.64064 345.65234,598.64062 C 346.41991,598.64064 347.21679,598.70509 348.04297,598.83398 C 348.87499,598.9629 349.73632,599.15626 350.62695,599.41406 L 350.62695,602.31445 L 349.51074,602.31445 C 349.34081,601.41212 348.96874,600.75294 348.39453,600.33691 C 347.8203,599.91505 347.00292,599.70411 345.94238,599.7041 C 345.07519,599.70411 344.41894,599.85646 343.97363,600.16113 C 343.53418,600.45997 343.31445,600.90821 343.31445,601.50586 C 343.31445,602.05079 343.46679,602.46681 343.77148,602.75391 C 344.07617,603.03517 344.82324,603.32813 346.0127,603.63281 L 347.98145,604.11621 C 349.20019,604.42091 350.08202,604.89551 350.62695,605.54004 C 351.17772,606.18458 351.45311,607.07227 351.45312,608.20312 C 351.45311,609.52735 350.99608,610.53516 350.08203,611.22656 C 349.16796,611.91211 347.82323,612.25488 346.04785,612.25488 C 345.19238,612.25488 344.34277,612.18164 343.49902,612.03516 C 342.65527,611.88867 341.79687,611.66602 340.92383,611.36719 M 365.95508,608.25586 C 365.60936,609.60938 364.98827,610.61426 364.0918,611.27051 C 363.1953,611.92676 361.9912,612.25488 360.47949,612.25488 C 358.26464,612.25488 356.51269,611.64551 355.22363,610.42676 C 353.94043,609.20215 353.29883,607.54395 353.29883,605.45215 C 353.29883,603.3545 353.94043,601.6963 355.22363,600.47754 C 356.51269,599.25294 358.26464,598.64064 360.47949,598.64062 C 361.25878,598.64064 362.0703,598.73439 362.91406,598.92188 C 363.7578,599.10939 364.65136,599.39357 365.59473,599.77441 L 365.59473,603 L 364.47852,603 C 364.24999,601.89845 363.83397,601.07521 363.23047,600.53027 C 362.62694,599.9795 361.83007,599.70411 360.83984,599.7041 C 359.56249,599.70411 358.61328,600.17579 357.99219,601.11914 C 357.37109,602.05665 357.06054,603.50099 357.06055,605.45215 C 357.06054,607.40332 357.37109,608.84766 357.99219,609.78516 C 358.61328,610.72266 359.56835,611.19141 360.85742,611.19141 C 361.73046,611.19141 362.44237,610.94824 362.99316,610.46191 C 363.54979,609.97559 363.95409,609.24024 364.20605,608.25586 L 365.95508,608.25586 M 366.74609,612 L 366.74609,610.93652 L 367.81836,610.93652 L 372.75781,598.87793 L 374.8584,598.87793 L 379.80664,610.93652 L 381.05469,610.93652 L 381.05469,612 L 374.91113,612 L 374.91113,610.93652 L 376.19434,610.93652 L 375.11328,608.25586 L 370.18262,608.25586 L 369.08398,610.93652 L 370.64844,610.93652 L 370.64844,612 L 366.74609,612 M 370.61328,607.19238 L 374.68262,607.19238 L 372.66113,602.17383 L 370.61328,607.19238 M 381.6875,612 L 381.6875,610.93652 L 383.36621,610.93652 L 383.36621,599.94141 L 381.6875,599.94141 L 381.6875,598.87793 L 389.1582,598.87793 C 390.61718,598.87794 391.77733,599.22658 392.63867,599.92383 C 393.49999,600.61525 393.93065,601.54396 393.93066,602.70996 C 393.93065,603.88184 393.49706,604.81934 392.62988,605.52246 C 391.76854,606.21973 390.61132,606.56836 389.1582,606.56836 L 386.75,606.56836 L 386.75,610.93652 L 388.86816,610.93652 L 388.86816,612 L 381.6875,612 M 386.75,605.50488 L 387.73438,605.50488 C 388.49609,605.50489 389.10253,605.25294 389.55371,604.74902 C 390.01073,604.23927 390.23925,603.55958 390.23926,602.70996 C 390.23925,601.86622 390.01366,601.19532 389.5625,600.69727 C 389.11132,600.19337 388.50195,599.94142 387.73438,599.94141 L 386.75,599.94141 L 386.75,605.50488 M 395.22266,612 L 395.22266,610.93652 L 396.90137,610.93652 L 396.90137,599.94141 L 395.22266,599.94141 L 395.22266,598.87793 L 407.01758,598.87793 L 407.01758,601.97168 L 405.80469,601.97168 L 405.80469,600.08203 L 400.28516,600.08203 L 400.28516,604.29199 L 403.72168,604.29199 L 403.72168,602.62207 L 404.92578,602.62207 L 404.92578,607.15723 L 403.72168,607.15723 L 403.72168,605.4873 L 400.28516,605.4873 L 400.28516,610.7959 L 405.97168,610.7959 L 405.97168,608.90625 L 407.17578,608.90625 L 407.17578,612 L 395.22266,612 M 420.61426,611.22656 C 421.31738,611.22656 421.79784,610.90723 422.05566,610.26855 C 422.31933,609.62989 422.45116,608.02442 422.45117,605.45215 C 422.45116,602.89747 422.31933,601.29493 422.05566,600.64453 C 421.79784,599.99415 421.31738,599.66896 420.61426,599.66895 C 419.91113,599.66896 419.42773,599.98829 419.16406,600.62695 C 418.90625,601.26564 418.77734,602.87403 418.77734,605.45215 C 418.77734,608.02442 418.90625,609.62989 419.16406,610.26855 C 419.42773,610.90723 419.91113,611.22656 420.61426,611.22656 M 420.61426,612.25488 C 418.8623,612.25488 417.5205,611.67188 416.58887,610.50586 C 415.65723,609.33399 415.19141,607.64942 415.19141,605.45215 C 415.19141,603.25489 415.65723,601.57032 416.58887,600.39844 C 417.5205,599.22658 418.8623,598.64064 420.61426,598.64062 C 422.36034,598.64064 423.69921,599.22658 424.63086,600.39844 C 425.56249,601.57032 426.02831,603.25489 426.02832,605.45215 C 426.02831,607.64942 425.56249,609.33399 424.63086,610.50586 C 423.69921,611.67188 422.36034,612.25488 420.61426,612.25488 M 428.32227,610.57617 C 428.32226,610.11914 428.48633,609.72656 428.81445,609.39844 C 429.14258,609.07032 429.53515,608.90625 429.99219,608.90625 C 430.45507,608.90625 430.85058,609.07032 431.17871,609.39844 C 431.50683,609.72656 431.67089,610.11914 431.6709,610.57617 C 431.67089,611.03906 431.50683,611.43457 431.17871,611.7627 C 430.85058,612.09082 430.45507,612.25488 429.99219,612.25488 C 429.53515,612.25488 429.14258,612.09082 428.81445,611.7627 C 428.48633,611.43457 428.32226,611.03906 428.32227,610.57617 M 444.6084,612 L 437.38379,612 L 437.38379,610.93652 L 439.33496,610.93652 L 439.33496,608.5459 L 433.85938,608.5459 L 433.85938,607.53516 L 439.35254,598.64062 L 442.65723,598.64062 L 442.65723,607.41211 L 444.90723,607.41211 L 444.90723,608.5459 L 442.65723,608.5459 L 442.65723,610.93652 L 444.6084,610.93652 L 444.6084,612 M 439.33496,607.41211 L 439.33496,601.04004 L 435.42383,607.41211 L 439.33496,607.41211 M 450.06641,604.22168 C 450.44726,603.917 450.87207,603.68848 451.34082,603.53613 C 451.81542,603.3838 452.33105,603.30763 452.8877,603.30762 C 454.22948,603.30763 455.28124,603.7002 456.04297,604.48535 C 456.81054,605.27051 457.19432,606.34864 457.19434,607.71973 C 457.19432,609.167 456.76366,610.28613 455.90234,611.07715 C 455.04101,611.8623 453.8164,612.25488 452.22852,612.25488 C 450.43554,612.25488 449.07617,611.71582 448.15039,610.6377 C 447.23047,609.55371 446.77051,607.96289 446.77051,605.86523 C 446.77051,603.48048 447.2832,601.68165 448.30859,600.46875 C 449.33398,599.25001 450.85449,598.64064 452.87012,598.64062 C 453.39745,598.64064 453.96288,598.68458 454.56641,598.77246 C 455.16991,598.86036 455.81737,598.9922 456.50879,599.16797 L 456.50879,601.48828 L 455.44531,601.48828 C 455.29882,600.89064 455.0205,600.43946 454.61035,600.13477 C 454.20605,599.82423 453.68163,599.66896 453.03711,599.66895 C 451.99413,599.66896 451.23828,600.02638 450.76953,600.74121 C 450.30664,601.45607 450.07226,602.61622 450.06641,604.22168 M 452.02637,611.22656 C 452.62988,611.22656 453.06054,610.97168 453.31836,610.46191 C 453.57616,609.94629 453.70507,609.05567 453.70508,607.79004 C 453.70507,606.52442 453.57616,605.63673 453.31836,605.12695 C 453.06054,604.61134 452.62988,604.35352 452.02637,604.35352 C 451.42285,604.35352 450.99218,604.61134 450.73438,605.12695 C 450.48242,605.63673 450.35644,606.52442 450.35645,607.79004 C 450.35644,609.05567 450.48242,609.94629 450.73438,610.46191 C 450.99218,610.97168 451.42285,611.22656 452.02637,611.22656"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter6261);font-family:Bitstream Vera Serif" />
<path
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Serif"
d="M 299.84375,612 L 299.84375,610.93652 L 301.52246,610.93652 L 301.52246,599.94141 L 299.84375,599.94141 L 299.84375,598.87793 L 306.59375,598.87793 L 306.59375,599.94141 L 304.90625,599.94141 L 304.90625,610.93652 L 306.59375,610.93652 L 306.59375,612 L 299.84375,612 M 308.22852,612 L 308.22852,610.93652 L 309.90723,610.93652 L 309.90723,599.94141 L 308.22852,599.94141 L 308.22852,598.87793 L 312.33301,598.87793 L 320.25195,608.16797 L 320.25195,599.94141 L 318.58203,599.94141 L 318.58203,598.87793 L 323.16992,598.87793 L 323.16992,599.94141 L 321.49121,599.94141 L 321.49121,612 L 319.18848,612 L 311.14648,602.5166 L 311.14648,610.93652 L 312.81641,610.93652 L 312.81641,612 L 308.22852,612 M 324.73438,612 L 324.73438,610.93652 L 326.41309,610.93652 L 326.41309,599.94141 L 324.73438,599.94141 L 324.73438,598.87793 L 331.48438,598.87793 L 331.48438,599.94141 L 329.79688,599.94141 L 329.79688,604.73145 L 335.36035,599.94141 L 333.9541,599.94141 L 333.9541,598.87793 L 338.84961,598.87793 L 338.84961,599.94141 L 337.10059,599.94141 L 332.38965,603.99316 L 338.79688,610.93652 L 340.08887,610.93652 L 340.08887,612 L 335.6416,612 L 329.79688,605.62793 L 329.79688,610.93652 L 331.48438,610.93652 L 331.48438,612 L 324.73438,612 M 340.92383,611.36719 L 340.92383,608.25586 L 342.04004,608.25586 C 342.20996,609.24024 342.61133,609.97559 343.24414,610.46191 C 343.87695,610.94824 344.75292,611.19141 345.87207,611.19141 C 346.78027,611.19141 347.47167,611.01856 347.94629,610.67285 C 348.42089,610.32715 348.65819,609.82031 348.6582,609.15234 C 348.65819,608.625 348.49706,608.21485 348.1748,607.92188 C 347.85253,607.62891 347.18749,607.35645 346.17969,607.10449 L 344.21094,606.62109 C 342.92773,606.29297 342.02539,605.83887 341.50391,605.25879 C 340.98242,604.67286 340.72168,603.84083 340.72168,602.7627 C 340.72168,601.46192 341.15234,600.45118 342.01367,599.73047 C 342.88086,599.00392 344.09375,598.64064 345.65234,598.64062 C 346.41991,598.64064 347.21679,598.70509 348.04297,598.83398 C 348.87499,598.9629 349.73632,599.15626 350.62695,599.41406 L 350.62695,602.31445 L 349.51074,602.31445 C 349.34081,601.41212 348.96874,600.75294 348.39453,600.33691 C 347.8203,599.91505 347.00292,599.70411 345.94238,599.7041 C 345.07519,599.70411 344.41894,599.85646 343.97363,600.16113 C 343.53418,600.45997 343.31445,600.90821 343.31445,601.50586 C 343.31445,602.05079 343.46679,602.46681 343.77148,602.75391 C 344.07617,603.03517 344.82324,603.32813 346.0127,603.63281 L 347.98145,604.11621 C 349.20019,604.42091 350.08202,604.89551 350.62695,605.54004 C 351.17772,606.18458 351.45311,607.07227 351.45312,608.20312 C 351.45311,609.52735 350.99608,610.53516 350.08203,611.22656 C 349.16796,611.91211 347.82323,612.25488 346.04785,612.25488 C 345.19238,612.25488 344.34277,612.18164 343.49902,612.03516 C 342.65527,611.88867 341.79687,611.66602 340.92383,611.36719 M 365.95508,608.25586 C 365.60936,609.60938 364.98827,610.61426 364.0918,611.27051 C 363.1953,611.92676 361.9912,612.25488 360.47949,612.25488 C 358.26464,612.25488 356.51269,611.64551 355.22363,610.42676 C 353.94043,609.20215 353.29883,607.54395 353.29883,605.45215 C 353.29883,603.3545 353.94043,601.6963 355.22363,600.47754 C 356.51269,599.25294 358.26464,598.64064 360.47949,598.64062 C 361.25878,598.64064 362.0703,598.73439 362.91406,598.92188 C 363.7578,599.10939 364.65136,599.39357 365.59473,599.77441 L 365.59473,603 L 364.47852,603 C 364.24999,601.89845 363.83397,601.07521 363.23047,600.53027 C 362.62694,599.9795 361.83007,599.70411 360.83984,599.7041 C 359.56249,599.70411 358.61328,600.17579 357.99219,601.11914 C 357.37109,602.05665 357.06054,603.50099 357.06055,605.45215 C 357.06054,607.40332 357.37109,608.84766 357.99219,609.78516 C 358.61328,610.72266 359.56835,611.19141 360.85742,611.19141 C 361.73046,611.19141 362.44237,610.94824 362.99316,610.46191 C 363.54979,609.97559 363.95409,609.24024 364.20605,608.25586 L 365.95508,608.25586 M 366.74609,612 L 366.74609,610.93652 L 367.81836,610.93652 L 372.75781,598.87793 L 374.8584,598.87793 L 379.80664,610.93652 L 381.05469,610.93652 L 381.05469,612 L 374.91113,612 L 374.91113,610.93652 L 376.19434,610.93652 L 375.11328,608.25586 L 370.18262,608.25586 L 369.08398,610.93652 L 370.64844,610.93652 L 370.64844,612 L 366.74609,612 M 370.61328,607.19238 L 374.68262,607.19238 L 372.66113,602.17383 L 370.61328,607.19238 M 381.6875,612 L 381.6875,610.93652 L 383.36621,610.93652 L 383.36621,599.94141 L 381.6875,599.94141 L 381.6875,598.87793 L 389.1582,598.87793 C 390.61718,598.87794 391.77733,599.22658 392.63867,599.92383 C 393.49999,600.61525 393.93065,601.54396 393.93066,602.70996 C 393.93065,603.88184 393.49706,604.81934 392.62988,605.52246 C 391.76854,606.21973 390.61132,606.56836 389.1582,606.56836 L 386.75,606.56836 L 386.75,610.93652 L 388.86816,610.93652 L 388.86816,612 L 381.6875,612 M 386.75,605.50488 L 387.73438,605.50488 C 388.49609,605.50489 389.10253,605.25294 389.55371,604.74902 C 390.01073,604.23927 390.23925,603.55958 390.23926,602.70996 C 390.23925,601.86622 390.01366,601.19532 389.5625,600.69727 C 389.11132,600.19337 388.50195,599.94142 387.73438,599.94141 L 386.75,599.94141 L 386.75,605.50488 M 395.22266,612 L 395.22266,610.93652 L 396.90137,610.93652 L 396.90137,599.94141 L 395.22266,599.94141 L 395.22266,598.87793 L 407.01758,598.87793 L 407.01758,601.97168 L 405.80469,601.97168 L 405.80469,600.08203 L 400.28516,600.08203 L 400.28516,604.29199 L 403.72168,604.29199 L 403.72168,602.62207 L 404.92578,602.62207 L 404.92578,607.15723 L 403.72168,607.15723 L 403.72168,605.4873 L 400.28516,605.4873 L 400.28516,610.7959 L 405.97168,610.7959 L 405.97168,608.90625 L 407.17578,608.90625 L 407.17578,612 L 395.22266,612 M 420.61426,611.22656 C 421.31738,611.22656 421.79784,610.90723 422.05566,610.26855 C 422.31933,609.62989 422.45116,608.02442 422.45117,605.45215 C 422.45116,602.89747 422.31933,601.29493 422.05566,600.64453 C 421.79784,599.99415 421.31738,599.66896 420.61426,599.66895 C 419.91113,599.66896 419.42773,599.98829 419.16406,600.62695 C 418.90625,601.26564 418.77734,602.87403 418.77734,605.45215 C 418.77734,608.02442 418.90625,609.62989 419.16406,610.26855 C 419.42773,610.90723 419.91113,611.22656 420.61426,611.22656 M 420.61426,612.25488 C 418.8623,612.25488 417.5205,611.67188 416.58887,610.50586 C 415.65723,609.33399 415.19141,607.64942 415.19141,605.45215 C 415.19141,603.25489 415.65723,601.57032 416.58887,600.39844 C 417.5205,599.22658 418.8623,598.64064 420.61426,598.64062 C 422.36034,598.64064 423.69921,599.22658 424.63086,600.39844 C 425.56249,601.57032 426.02831,603.25489 426.02832,605.45215 C 426.02831,607.64942 425.56249,609.33399 424.63086,610.50586 C 423.69921,611.67188 422.36034,612.25488 420.61426,612.25488 M 428.32227,610.57617 C 428.32226,610.11914 428.48633,609.72656 428.81445,609.39844 C 429.14258,609.07032 429.53515,608.90625 429.99219,608.90625 C 430.45507,608.90625 430.85058,609.07032 431.17871,609.39844 C 431.50683,609.72656 431.67089,610.11914 431.6709,610.57617 C 431.67089,611.03906 431.50683,611.43457 431.17871,611.7627 C 430.85058,612.09082 430.45507,612.25488 429.99219,612.25488 C 429.53515,612.25488 429.14258,612.09082 428.81445,611.7627 C 428.48633,611.43457 428.32226,611.03906 428.32227,610.57617 M 444.6084,612 L 437.38379,612 L 437.38379,610.93652 L 439.33496,610.93652 L 439.33496,608.5459 L 433.85938,608.5459 L 433.85938,607.53516 L 439.35254,598.64062 L 442.65723,598.64062 L 442.65723,607.41211 L 444.90723,607.41211 L 444.90723,608.5459 L 442.65723,608.5459 L 442.65723,610.93652 L 444.6084,610.93652 L 444.6084,612 M 439.33496,607.41211 L 439.33496,601.04004 L 435.42383,607.41211 L 439.33496,607.41211 M 450.06641,604.22168 C 450.44726,603.917 450.87207,603.68848 451.34082,603.53613 C 451.81542,603.3838 452.33105,603.30763 452.8877,603.30762 C 454.22948,603.30763 455.28124,603.7002 456.04297,604.48535 C 456.81054,605.27051 457.19432,606.34864 457.19434,607.71973 C 457.19432,609.167 456.76366,610.28613 455.90234,611.07715 C 455.04101,611.8623 453.8164,612.25488 452.22852,612.25488 C 450.43554,612.25488 449.07617,611.71582 448.15039,610.6377 C 447.23047,609.55371 446.77051,607.96289 446.77051,605.86523 C 446.77051,603.48048 447.2832,601.68165 448.30859,600.46875 C 449.33398,599.25001 450.85449,598.64064 452.87012,598.64062 C 453.39745,598.64064 453.96288,598.68458 454.56641,598.77246 C 455.16991,598.86036 455.81737,598.9922 456.50879,599.16797 L 456.50879,601.48828 L 455.44531,601.48828 C 455.29882,600.89064 455.0205,600.43946 454.61035,600.13477 C 454.20605,599.82423 453.68163,599.66896 453.03711,599.66895 C 451.99413,599.66896 451.23828,600.02638 450.76953,600.74121 C 450.30664,601.45607 450.07226,602.61622 450.06641,604.22168 M 452.02637,611.22656 C 452.62988,611.22656 453.06054,610.97168 453.31836,610.46191 C 453.57616,609.94629 453.70507,609.05567 453.70508,607.79004 C 453.70507,606.52442 453.57616,605.63673 453.31836,605.12695 C 453.06054,604.61134 452.62988,604.35352 452.02637,604.35352 C 451.42285,604.35352 450.99218,604.61134 450.73438,605.12695 C 450.48242,605.63673 450.35644,606.52442 450.35645,607.79004 C 450.35644,609.05567 450.48242,609.94629 450.73438,610.46191 C 450.99218,610.97168 451.42285,611.22656 452.02637,611.22656"
id="text6220" />
</g>
<path
id="text6230"
d="M 312.55372,606.62305 L 314.208,611.46973 L 315.5752,607.4502 L 314.625,607.4502 L 314.625,606.62305 L 317.33886,606.62305 L 317.33886,607.4502 L 316.48438,607.4502 L 314.29003,613.88965 L 312.62207,613.88965 L 311.08398,609.33692 L 309.53223,613.88965 L 307.87793,613.88965 L 305.67675,607.4502 L 304.88378,607.4502 L 304.88378,606.62305 L 308.99902,606.62305 L 308.99902,607.4502 L 308.14454,607.4502 L 309.48438,611.38086 L 311.11132,606.62305 L 312.55372,606.62305 M 324.6123,606.62305 L 326.26661,611.46973 L 327.63378,607.4502 L 326.68359,607.4502 L 326.68359,606.62305 L 329.39746,606.62305 L 329.39746,607.4502 L 328.54296,607.4502 L 326.34863,613.88965 L 324.68066,613.88965 L 323.14257,609.33692 L 321.59082,613.88965 L 319.93652,613.88965 L 317.73536,607.4502 L 316.94238,607.4502 L 316.94238,606.62305 L 321.05761,606.62305 L 321.05761,607.4502 L 320.20312,607.4502 L 321.54296,611.38086 L 323.16993,606.62305 L 324.6123,606.62305 M 336.67089,606.62305 L 338.3252,611.46973 L 339.69238,607.4502 L 338.74218,607.4502 L 338.74218,606.62305 L 341.45605,606.62305 L 341.45605,607.4502 L 340.60157,607.4502 L 338.40723,613.88965 L 336.73925,613.88965 L 335.20118,609.33692 L 333.64941,613.88965 L 331.99511,613.88965 L 329.79395,607.4502 L 329.00098,607.4502 L 329.00098,606.62305 L 333.11622,606.62305 L 333.11622,607.4502 L 332.26171,607.4502 L 333.60157,611.38086 L 335.22852,606.62305 L 336.67089,606.62305 M 340.92286,612.78223 C 340.92285,612.42676 341.05045,612.12143 341.30566,611.86622 C 341.56087,611.61101 341.86621,611.48341 342.22168,611.4834 C 342.5817,611.48341 342.88932,611.61101 343.14454,611.86622 C 343.39973,612.12143 343.52733,612.42676 343.52734,612.78223 C 343.52733,613.14226 343.39973,613.44987 343.14454,613.70508 C 342.88932,613.96029 342.5817,614.0879 342.22168,614.0879 C 341.86621,614.0879 341.56087,613.96029 341.30566,613.70508 C 341.05045,613.44987 340.92285,613.14226 340.92286,612.78223 M 345.94043,604.56543 C 345.94043,604.1963 346.06804,603.88641 346.32325,603.63575 C 346.57844,603.38055 346.89062,603.25295 347.25977,603.25293 C 347.61978,603.25295 347.92512,603.38055 348.17579,603.63575 C 348.43098,603.88641 348.55858,604.1963 348.55859,604.56543 C 348.55858,604.92547 348.43098,605.23309 348.17579,605.48829 C 347.92512,605.73895 347.61978,605.86427 347.25977,605.86426 C 346.89062,605.86427 346.57844,605.73895 346.32325,605.48829 C 346.06804,605.23764 345.94043,604.93003 345.94043,604.56543 M 348.58593,613.0625 L 349.625,613.0625 L 349.625,613.88965 L 345.13378,613.88965 L 345.13378,613.0625 L 346.16602,613.0625 L 346.16602,607.4502 L 345.13378,607.4502 L 345.13378,606.62305 L 348.58593,606.62305 L 348.58593,613.0625 M 350.46582,613.88965 L 350.46582,613.0625 L 351.49805,613.0625 L 351.49805,607.4502 L 350.46582,607.4502 L 350.46582,606.62305 L 353.91796,606.62305 L 353.91796,607.64844 C 354.20964,607.21551 354.54232,606.90333 354.91602,606.71192 C 355.28971,606.52052 355.76139,606.42482 356.33105,606.42481 C 357.1468,606.42482 357.76203,606.66635 358.17675,607.14942 C 358.59601,607.62794 358.80566,608.33432 358.80566,609.26856 L 358.80566,613.0625 L 359.84473,613.0625 L 359.84473,613.88965 L 355.50391,613.88965 L 355.50391,613.0625 L 356.38575,613.0625 L 356.38575,609.2002 C 356.38573,608.58497 356.30598,608.15886 356.14648,607.92188 C 355.99153,607.68035 355.72037,607.55958 355.333,607.55958 C 354.84537,607.55958 354.48762,607.73959 354.25977,608.09961 C 354.03189,608.45509 353.91796,609.02247 353.91796,609.80176 L 353.91796,613.0625 L 354.80664,613.0625 L 354.80664,613.88965 L 350.46582,613.88965 M 365.00585,613.88965 L 360.6377,613.88965 L 360.6377,613.0625 L 361.66993,613.0625 L 361.66993,604.07325 L 360.6377,604.07325 L 360.6377,603.25293 L 364.08984,603.25293 L 364.08984,610.08204 L 367.02246,607.4502 L 366.1543,607.4502 L 366.1543,606.62305 L 369.46973,606.62305 L 369.46973,607.4502 L 368.12305,607.4502 L 366.25,609.13184 L 369.3125,613.0625 L 370.09863,613.0625 L 370.09863,613.88965 L 365.92872,613.88965 L 365.92872,613.0625 L 366.7832,613.0625 L 364.76661,610.47168 L 364.08984,611.07325 L 364.08984,613.0625 L 365.00585,613.0625 L 365.00585,613.88965 M 370.52246,613.67774 L 370.52246,611.64747 L 371.29493,611.64747 C 371.35873,612.18979 371.56152,612.6045 371.90332,612.89161 C 372.24511,613.17416 372.70996,613.31543 373.29786,613.31543 C 373.79003,613.31543 374.16602,613.23113 374.42579,613.0625 C 374.6901,612.88933 374.82226,612.64324 374.82227,612.32422 C 374.82226,612.03256 374.73794,611.80697 374.56934,611.64747 C 374.40526,611.48796 374.08398,611.34897 373.60546,611.23047 L 372.60743,610.97754 C 371.85546,610.7907 371.31088,610.5241 370.97363,610.17774 C 370.63639,609.82683 370.46777,609.35515 370.46777,608.7627 C 370.46777,607.97429 370.74121,607.38868 371.28809,607.00586 C 371.83496,606.6185 372.67805,606.42482 373.81738,606.42481 C 374.24577,606.42482 374.7015,606.46128 375.18457,606.53418 C 375.67219,606.60255 376.20996,606.71193 376.79786,606.86231 L 376.79786,608.69434 L 376.02539,608.69434 C 375.98437,608.1976 375.80664,607.8239 375.49218,607.57325 C 375.18228,607.3226 374.73568,607.19728 374.15234,607.19727 C 373.66016,607.19728 373.28646,607.27703 373.03125,607.43653 C 372.78059,607.59148 372.65526,607.81935 372.65527,608.12012 C 372.65526,608.36622 372.72818,608.55991 372.87402,608.70118 C 373.01986,608.84246 373.28189,608.96095 373.66016,609.05665 L 374.65136,609.30958 C 375.60384,609.55112 376.26237,609.84962 376.62695,610.20508 C 376.99153,610.56055 377.17381,611.05502 377.17382,611.68848 C 377.17381,612.5088 376.87987,613.11491 376.292,613.50684 C 375.70866,613.89421 374.79948,614.0879 373.56445,614.0879 C 373.11328,614.0879 372.63477,614.05372 372.12891,613.98536 C 371.62305,613.917 371.08757,613.81446 370.52246,613.67774 M 385.63671,611.62012 C 385.46353,612.44955 385.10807,613.06934 384.57032,613.4795 C 384.0371,613.8851 383.31021,614.0879 382.38964,614.0879 C 381.09537,614.0879 380.09277,613.75293 379.38184,613.08301 C 378.67089,612.41309 378.31543,611.46973 378.31543,610.25293 C 378.31543,609.04981 378.66634,608.11101 379.36816,607.43653 C 380.06998,606.76206 381.04525,606.42482 382.29395,606.42481 C 382.7998,606.42482 383.31021,606.47267 383.8252,606.56836 C 384.34016,606.66407 384.86424,606.80763 385.39746,606.99903 L 385.39746,609.01563 L 384.63184,609.01563 C 384.55891,608.4004 384.37889,607.94467 384.0918,607.64844 C 383.80468,607.34767 383.40136,607.19728 382.88184,607.19727 C 382.20736,607.19728 381.72655,607.42514 381.43945,607.88086 C 381.15689,608.3366 381.01562,609.12729 381.01562,610.25293 C 381.01562,611.35124 381.15462,612.13738 381.43261,612.61133 C 381.7106,613.08073 382.16405,613.31543 382.79296,613.31543 C 383.28059,613.31543 383.67025,613.1696 383.96191,612.87793 C 384.25814,612.58627 384.43814,612.167 384.50195,611.62012 L 385.63671,611.62012 M 393.98339,609.42579 L 393.98339,613.0625 L 395.02246,613.0625 L 395.02246,613.88965 L 391.56348,613.88965 L 391.56348,612.9668 C 391.24446,613.34961 390.889,613.63217 390.49707,613.81446 C 390.10514,613.99675 389.65852,614.0879 389.15723,614.0879 C 388.41439,614.0879 387.84244,613.88965 387.44141,613.49317 C 387.04493,613.09213 386.84668,612.52019 386.84668,611.77735 C 386.84668,610.9616 387.1315,610.35092 387.70118,609.94532 C 388.27539,609.53972 389.139,609.33692 390.292,609.33692 L 391.56348,609.33692 L 391.56348,608.90625 C 391.56348,608.31837 391.42448,607.88543 391.14648,607.60743 C 390.86848,607.32488 390.43782,607.18361 389.8545,607.1836 C 389.37141,607.18361 388.99771,607.28387 388.73339,607.48438 C 388.47362,607.68035 388.28905,608.00392 388.17968,608.45508 L 387.40723,608.45508 L 387.40723,606.88965 C 387.84016,606.73471 388.28905,606.6185 388.75391,606.54102 C 389.21875,606.46355 389.70866,606.42482 390.22363,606.42481 C 391.52246,606.42482 392.47264,606.66635 393.07421,607.14942 C 393.68034,607.6325 393.98338,608.39129 393.98339,609.42579 M 391.56348,611.60645 L 391.56348,610.1504 L 390.6543,610.1504 C 390.20312,610.1504 389.85676,610.27345 389.61523,610.51954 C 389.37369,610.76563 389.25293,611.11882 389.25293,611.57911 C 389.25293,612.03939 389.33952,612.38347 389.5127,612.61133 C 389.69043,612.8392 389.9593,612.95313 390.31934,612.95313 C 390.69303,612.95313 390.9938,612.83008 391.22168,612.58399 C 391.44953,612.3379 391.56348,612.01205 391.56348,611.60645 M 399.13085,609.89747 L 399.13085,610.61524 C 399.13085,611.4629 399.23795,612.07585 399.45214,612.45411 C 399.67089,612.83236 400.0218,613.02149 400.50488,613.02149 C 401.00162,613.02149 401.35025,612.82097 401.55079,612.41993 C 401.75585,612.01889 401.85839,611.29656 401.85839,610.25293 C 401.85839,609.20932 401.75585,608.48927 401.55079,608.09278 C 401.35025,607.69174 401.00162,607.49122 400.50488,607.49122 C 400.0218,607.49122 399.67089,607.68035 399.45214,608.0586 C 399.23795,608.43686 399.13085,609.04981 399.13085,609.89747 M 396.71093,607.4502 L 395.67188,607.4502 L 395.67188,606.62305 L 399.13085,606.62305 L 399.13085,607.5459 C 399.33593,607.16765 399.61164,606.88738 399.958,606.70508 C 400.30435,606.51824 400.73275,606.42482 401.24316,606.42481 C 402.27766,606.42482 403.09114,606.76661 403.68359,607.4502 C 404.28058,608.12924 404.5791,609.06349 404.57911,610.25293 C 404.5791,611.44239 404.28058,612.37891 403.68359,613.0625 C 403.09114,613.7461 402.27766,614.0879 401.24316,614.0879 C 400.73275,614.0879 400.30435,613.99675 399.958,613.81446 C 399.61164,613.62761 399.33593,613.34506 399.13085,612.9668 L 399.13085,615.97461 L 400.25195,615.97461 L 400.25195,616.80176 L 395.67188,616.80176 L 395.67188,615.97461 L 396.71093,615.97461 L 396.71093,607.4502 M 410.75195,609.78809 C 410.75194,608.83106 410.66308,608.16114 410.48536,607.77833 C 410.30761,607.39096 410.00455,607.19728 409.57618,607.19727 C 409.16146,607.19728 408.86295,607.3864 408.68066,607.76465 C 408.50293,608.14291 408.41405,608.77638 408.41407,609.66504 L 408.41407,609.78809 L 410.75195,609.78809 M 413.41113,610.60157 L 408.41407,610.60157 L 408.41407,610.65625 C 408.41405,611.59506 408.55534,612.27409 408.83789,612.69336 C 409.12044,613.10808 409.57616,613.31543 410.20507,613.31543 C 410.72916,613.31543 411.15298,613.17644 411.47657,612.89844 C 411.80012,612.62045 412.00747,612.21713 412.09863,611.68848 L 413.23339,611.68848 C 413.03742,612.51335 412.64778,613.11947 412.06445,613.50684 C 411.48112,613.89421 410.66535,614.0879 409.61718,614.0879 C 408.35938,614.0879 407.39323,613.75749 406.71875,613.09668 C 406.04882,612.43132 405.71386,611.48341 405.71386,610.25293 C 405.71386,609.04981 406.05795,608.11101 406.74609,607.43653 C 407.43425,606.76206 408.39127,606.42482 409.61718,606.42481 C 410.8203,606.42482 411.74316,606.78029 412.38575,607.49122 C 413.02832,608.1976 413.3701,609.23438 413.41113,610.60157 M 415.18848,612.78223 C 415.18848,612.42676 415.31607,612.12143 415.57128,611.86622 C 415.8265,611.61101 416.13184,611.48341 416.4873,611.4834 C 416.84732,611.48341 417.15494,611.61101 417.41016,611.86622 C 417.66536,612.12143 417.79296,612.42676 417.79296,612.78223 C 417.79296,613.14226 417.66536,613.44987 417.41016,613.70508 C 417.15494,613.96029 416.84732,614.0879 416.4873,614.0879 C 416.13184,614.0879 415.8265,613.96029 415.57128,613.70508 C 415.31607,613.44987 415.18848,613.14226 415.18848,612.78223 M 423.59668,613.31543 C 424.10709,613.31543 424.46483,613.09669 424.66993,612.65918 C 424.87955,612.22169 424.98437,611.4196 424.98438,610.25293 C 424.98437,609.08627 424.88183,608.28647 424.67675,607.85352 C 424.47168,607.41603 424.11164,607.19728 423.59668,607.19727 C 423.0817,607.19728 422.71939,607.41831 422.50977,607.86036 C 422.30012,608.29786 422.1953,609.09539 422.19532,610.25293 C 422.1953,611.41049 422.30012,612.21029 422.50977,612.65235 C 422.71939,613.09441 423.0817,613.31543 423.59668,613.31543 M 423.59668,614.0879 C 422.31607,614.0879 421.31119,613.74838 420.58204,613.06934 C 419.85743,612.38575 419.49511,611.44695 419.49511,610.25293 C 419.49511,609.05437 419.85743,608.11785 420.58204,607.44336 C 421.31119,606.76433 422.31607,606.42482 423.59668,606.42481 C 424.88183,606.42482 425.88671,606.76433 426.61132,607.44336 C 427.33592,608.11785 427.69823,609.05437 427.69825,610.25293 C 427.69823,611.44695 427.33365,612.38575 426.6045,613.06934 C 425.87987,613.74838 424.87727,614.0879 423.59668,614.0879 M 435.792,606.54102 L 435.792,608.70801 L 435.01954,608.70801 C 434.99217,608.32065 434.88737,608.03354 434.70507,607.84668 C 434.52278,607.65528 434.25846,607.55958 433.9121,607.55958 C 433.38346,607.55958 432.96646,607.792 432.66113,608.25684 C 432.35578,608.72169 432.20312,609.36655 432.20312,610.19141 L 432.20312,613.0625 L 433.52246,613.0625 L 433.52246,613.88965 L 428.75098,613.88965 L 428.75098,613.0625 L 429.7832,613.0625 L 429.7832,607.4502 L 428.67579,607.4502 L 428.67579,606.62305 L 432.20312,606.62305 L 432.20312,607.91504 C 432.4401,607.40919 432.75227,607.03549 433.13964,606.79395 C 433.53157,606.54786 434.01009,606.42482 434.5752,606.42481 C 434.71646,606.42482 434.88737,606.43621 435.08789,606.45899 C 435.29296,606.47723 435.52766,606.50457 435.792,606.54102 M 444.08398,607.4502 L 444.08398,613.79395 C 444.08398,614.81478 443.71939,615.60319 442.99023,616.15918 C 442.26562,616.71973 441.24023,617 439.91407,617 C 439.43098,617 438.94107,616.96126 438.44434,616.88379 C 437.94759,616.81087 437.43718,616.69922 436.91309,616.54883 L 436.91309,614.8125 L 437.68555,614.8125 C 437.75391,615.29102 437.9453,615.64649 438.25977,615.87891 C 438.57877,616.11133 439.03223,616.22754 439.62011,616.22754 C 440.36751,616.22754 440.89387,616.04753 441.19921,615.6875 C 441.5091,615.33203 441.66405,614.70085 441.66407,613.79395 L 441.66407,612.9668 C 441.45898,613.34506 441.18098,613.62761 440.83007,613.81446 C 440.48371,613.99675 440.05534,614.0879 439.54493,614.0879 C 438.51498,614.0879 437.70377,613.7461 437.11132,613.0625 C 436.52343,612.37891 436.2295,611.44239 436.2295,610.25293 C 436.2295,609.05893 436.52343,608.12241 437.11132,607.44336 C 437.70377,606.76433 438.51498,606.42482 439.54493,606.42481 C 440.05534,606.42482 440.48371,606.51824 440.83007,606.70508 C 441.18098,606.88738 441.45898,607.16765 441.66407,607.5459 L 441.66407,606.62305 L 445.11622,606.62305 L 445.11622,607.4502 L 444.08398,607.4502 M 441.66407,609.89747 C 441.66405,609.04981 441.55468,608.43686 441.33593,608.0586 C 441.11718,607.68035 440.76855,607.49122 440.29003,607.49122 C 439.78873,607.49122 439.43555,607.69174 439.23046,608.09278 C 439.02994,608.48927 438.92968,609.20932 438.92968,610.25293 C 438.92968,611.29656 439.03223,612.01889 439.2373,612.41993 C 439.44237,612.82097 439.79328,613.02149 440.29003,613.02149 C 440.76855,613.02149 441.11718,612.83236 441.33593,612.45411 C 441.55468,612.07585 441.66405,611.4629 441.66407,610.61524 L 441.66407,609.89747"
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Serif" />
<path
id="text6277"
d="M 10.01563,184.77637 L 14.63672,184.77637 L 14.63672,186.03418 L 10.05664,186.03418 C 9.33204,186.03419 8.78972,186.17546 8.42969,186.45801 C 8.06967,186.74056 7.88966,187.16439 7.88965,187.72949 C 7.88966,188.40853 8.10613,188.94401 8.53906,189.33594 C 8.97201,189.72787 9.56218,189.92383 10.30957,189.92383 L 14.63672,189.92383 L 14.63672,191.18848 L 6.98047,191.18848 L 6.98047,189.92383 L 8.16992,189.92383 C 7.70964,189.62305 7.36557,189.26986 7.1377,188.86426 C 6.90984,188.4541 6.79591,187.98243 6.7959,187.44922 C 6.79591,186.56967 7.06934,185.9043 7.61621,185.45312 C 8.15854,185.00196 8.95834,184.77637 10.01563,184.77637 M 10.49414,175.70508 L 11.10938,175.70508 L 11.10938,181.48828 C 11.97526,181.43359 12.63607,181.17383 13.0918,180.70898 C 13.54297,180.23959 13.76856,179.58789 13.76856,178.75391 C 13.76856,178.27084 13.70931,177.80372 13.59082,177.35254 C 13.47233,176.89682 13.2946,176.44564 13.05762,175.99902 L 14.24707,175.99902 C 14.43848,176.4502 14.58431,176.91277 14.68457,177.38672 C 14.78483,177.86068 14.83496,178.34148 14.83496,178.8291 C 14.83496,180.05046 14.47949,181.01888 13.76856,181.73437 C 13.05762,182.44531 12.09603,182.80078 10.88379,182.80078 C 9.63054,182.80078 8.63705,182.46354 7.90332,181.78906 C 7.16505,181.11003 6.79591,180.19629 6.7959,179.04785 C 6.79591,178.01791 7.12859,177.20443 7.79395,176.60742 C 8.45476,176.00587 9.35482,175.70509 10.49414,175.70508 M 10.125,176.96289 C 9.43686,176.97201 8.8877,177.1657 8.47754,177.54394 C 8.06739,177.91765 7.86231,178.41439 7.86231,179.03418 C 7.86231,179.73601 8.06055,180.29883 8.45703,180.72266 C 8.85352,181.14193 9.41179,181.38346 10.13184,181.44726 L 10.125,176.96289 M 10.49414,167.0918 L 11.10938,167.0918 L 11.10938,172.875 C 11.97526,172.82031 12.63607,172.56055 13.0918,172.0957 C 13.54297,171.6263 13.76856,170.97461 13.76856,170.14062 C 13.76856,169.65756 13.70931,169.19043 13.59082,168.73926 C 13.47233,168.28353 13.2946,167.83236 13.05762,167.38574 L 14.24707,167.38574 C 14.43848,167.83692 14.58431,168.29948 14.68457,168.77344 C 14.78483,169.2474 14.83496,169.72819 14.83496,170.21582 C 14.83496,171.43718 14.47949,172.4056 13.76856,173.12109 C 13.05762,173.83203 12.09603,174.1875 10.88379,174.1875 C 9.63054,174.1875 8.63705,173.85026 7.90332,173.17578 C 7.16505,172.49675 6.79591,171.58301 6.7959,170.43457 C 6.79591,169.40463 7.12859,168.59115 7.79395,167.99414 C 8.45476,167.39258 9.35482,167.0918 10.49414,167.0918 M 10.125,168.34961 C 9.43686,168.35873 8.8877,168.55241 8.47754,168.93066 C 8.06739,169.30437 7.86231,169.80111 7.86231,170.4209 C 7.86231,171.12272 8.06055,171.68555 8.45703,172.10937 C 8.85352,172.52865 9.41179,172.77018 10.13184,172.83398 L 10.125,168.34961 M 8.14258,159.98926 L 4,159.98926 L 4,158.73144 L 14.63672,158.73144 L 14.63672,159.98926 L 13.48828,159.98926 C 13.94401,160.25359 14.28353,160.58855 14.50684,160.99414 C 14.72559,161.39519 14.83496,161.87826 14.83496,162.44336 C 14.83496,163.36849 14.46582,164.12272 13.72754,164.70605 C 12.98926,165.28483 12.01856,165.57422 10.81543,165.57422 C 9.61231,165.57422 8.64161,165.28483 7.90332,164.70605 C 7.16505,164.12272 6.79591,163.36849 6.7959,162.44336 C 6.79591,161.87826 6.90756,161.39519 7.13086,160.99414 C 7.34962,160.58855 7.68686,160.25359 8.14258,159.98926 M 10.81543,164.27539 C 11.74056,164.27539 12.46745,164.08626 12.9961,163.70801 C 13.52018,163.3252 13.78223,162.80111 13.78223,162.13574 C 13.78223,161.47038 13.52018,160.94629 12.9961,160.56348 C 12.46745,160.18067 11.74056,159.98926 10.81543,159.98926 C 9.89031,159.98926 9.1657,160.18067 8.6416,160.56348 C 8.11296,160.94629 7.84864,161.47038 7.84863,162.13574 C 7.84864,162.80111 8.11296,163.3252 8.6416,163.70801 C 9.1657,164.08626 9.89031,164.27539 10.81543,164.27539 M 7.27442,150.63086 L 8.4502,150.63086 C 8.25424,150.98633 8.10841,151.34408 8.0127,151.7041 C 7.91244,152.05957 7.86231,152.4196 7.86231,152.78418 C 7.86231,153.59994 8.12208,154.2334 8.6416,154.68457 C 9.15658,155.13574 9.88119,155.36133 10.81543,155.36133 C 11.74968,155.36133 12.47657,155.13574 12.9961,154.68457 C 13.51107,154.2334 13.76856,153.59994 13.76856,152.78418 C 13.76856,152.4196 13.72071,152.05957 13.625,151.7041 C 13.52474,151.34408 13.37663,150.98633 13.18067,150.63086 L 14.34277,150.63086 C 14.50684,150.98178 14.62988,151.34636 14.71192,151.72461 C 14.79395,152.09831 14.83496,152.49707 14.83496,152.9209 C 14.83496,154.0739 14.47266,154.98991 13.74805,155.66894 C 13.02344,156.34798 12.0459,156.6875 10.81543,156.6875 C 9.56674,156.6875 8.58464,156.3457 7.86914,155.66211 C 7.15365,154.97396 6.79591,154.03288 6.7959,152.83887 C 6.79591,152.4515 6.83692,152.07325 6.91895,151.7041 C 6.99643,151.33497 7.11492,150.97722 7.27442,150.63086 M 7.86231,145.46289 C 7.86231,146.13737 8.12664,146.67058 8.65527,147.0625 C 9.17937,147.45443 9.89942,147.65039 10.81543,147.65039 C 11.73145,147.65039 12.45378,147.45671 12.98242,147.06934 C 13.50651,146.67741 13.76856,146.14193 13.76856,145.46289 C 13.76856,144.79297 13.50423,144.26205 12.97559,143.87012 C 12.44694,143.4782 11.72689,143.28223 10.81543,143.28223 C 9.90853,143.28223 9.19076,143.4782 8.66211,143.87012 C 8.12891,144.26205 7.86231,144.79297 7.86231,145.46289 M 6.7959,145.46289 C 6.79591,144.36915 7.15138,143.5101 7.86231,142.88574 C 8.57325,142.2614 9.55762,141.94923 10.81543,141.94922 C 12.06869,141.94923 13.05306,142.2614 13.76856,142.88574 C 14.47949,143.5101 14.83496,144.36915 14.83496,145.46289 C 14.83496,146.5612 14.47949,147.42253 13.76856,148.04687 C 13.05306,148.66667 12.06869,148.97656 10.81543,148.97656 C 9.55762,148.97656 8.57325,148.66667 7.86231,148.04687 C 7.15138,147.42253 6.79591,146.5612 6.7959,145.46289 M 4,135.99512 L 5.0459,135.99512 L 5.0459,137.19824 C 5.04591,137.64942 5.13706,137.96387 5.31934,138.1416 C 5.50164,138.31478 5.82976,138.40137 6.30371,138.40137 L 6.98047,138.40137 L 6.98047,136.33008 L 7.95801,136.33008 L 7.95801,138.40137 L 14.63672,138.40137 L 14.63672,139.66601 L 7.95801,139.66601 L 7.95801,140.86914 L 6.98047,140.86914 L 6.98047,139.66601 L 6.44727,139.66601 C 5.59506,139.66602 4.97527,139.46777 4.58789,139.07129 C 4.19598,138.67481 4.00001,138.0459 4,137.18457 L 4,135.99512 M 4,131.07324 L 5.0459,131.07324 L 5.0459,132.27637 C 5.04591,132.72754 5.13706,133.04199 5.31934,133.21973 C 5.50164,133.39291 5.82976,133.47949 6.30371,133.47949 L 6.98047,133.47949 L 6.98047,131.4082 L 7.95801,131.4082 L 7.95801,133.47949 L 14.63672,133.47949 L 14.63672,134.74414 L 7.95801,134.74414 L 7.95801,135.94726 L 6.98047,135.94726 L 6.98047,134.74414 L 6.44727,134.74414 C 5.59506,134.74414 4.97527,134.5459 4.58789,134.14941 C 4.19598,133.75293 4.00001,133.12403 4,132.26269 L 4,131.07324 M 10.49414,123.47851 L 11.10938,123.47851 L 11.10938,129.26172 C 11.97526,129.20703 12.63607,128.94727 13.0918,128.48242 C 13.54297,128.01302 13.76856,127.36133 13.76856,126.52734 C 13.76856,126.04428 13.70931,125.57715 13.59082,125.12598 C 13.47233,124.67025 13.2946,124.21908 13.05762,123.77246 L 14.24707,123.77246 C 14.43848,124.22364 14.58431,124.6862 14.68457,125.16016 C 14.78483,125.63412 14.83496,126.11491 14.83496,126.60254 C 14.83496,127.8239 14.47949,128.79232 13.76856,129.50781 C 13.05762,130.21875 12.09603,130.57422 10.88379,130.57422 C 9.63054,130.57422 8.63705,130.23698 7.90332,129.5625 C 7.16505,128.88347 6.79591,127.96973 6.7959,126.82129 C 6.79591,125.79135 7.12859,124.97787 7.79395,124.38086 C 8.45476,123.7793 9.35482,123.47852 10.49414,123.47851 M 10.125,124.73633 C 9.43686,124.74545 8.8877,124.93913 8.47754,125.31738 C 8.06739,125.69109 7.86231,126.18783 7.86231,126.80762 C 7.86231,127.50944 8.06055,128.07227 8.45703,128.49609 C 8.85352,128.91537 9.41179,129.1569 10.13184,129.2207 L 10.125,124.73633 M 10.49414,114.86523 L 11.10938,114.86523 L 11.10938,120.64844 C 11.97526,120.59375 12.63607,120.33399 13.0918,119.86914 C 13.54297,119.39974 13.76856,118.74805 13.76856,117.91406 C 13.76856,117.43099 13.70931,116.96387 13.59082,116.51269 C 13.47233,116.05697 13.2946,115.6058 13.05762,115.15918 L 14.24707,115.15918 C 14.43848,115.61036 14.58431,116.07292 14.68457,116.54687 C 14.78483,117.02084 14.83496,117.50163 14.83496,117.98926 C 14.83496,119.21061 14.47949,120.17904 13.76856,120.89453 C 13.05762,121.60547 12.09603,121.96094 10.88379,121.96094 C 9.63054,121.96094 8.63705,121.6237 7.90332,120.94922 C 7.16505,120.27018 6.79591,119.35645 6.7959,118.20801 C 6.79591,117.17806 7.12859,116.36459 7.79395,115.76758 C 8.45476,115.16602 9.35482,114.86524 10.49414,114.86523 M 10.125,116.12305 C 9.43686,116.13217 8.8877,116.32585 8.47754,116.7041 C 8.06739,117.0778 7.86231,117.57455 7.86231,118.19434 C 7.86231,118.89616 8.06055,119.45899 8.45703,119.88281 C 8.85352,120.30208 9.41179,120.54362 10.13184,120.60742 L 10.125,116.12305 M 12.90039,112.62305 L 12.90039,111.18066 L 14.63672,111.18066 L 14.63672,112.62305 L 12.90039,112.62305 M 8.14258,103.30566 L 4,103.30566 L 4,102.04785 L 14.63672,102.04785 L 14.63672,103.30566 L 13.48828,103.30566 C 13.94401,103.56999 14.28353,103.90495 14.50684,104.31055 C 14.72559,104.71159 14.83496,105.19466 14.83496,105.75976 C 14.83496,106.6849 14.46582,107.43913 13.72754,108.02246 C 12.98926,108.60124 12.01856,108.89062 10.81543,108.89062 C 9.61231,108.89062 8.64161,108.60124 7.90332,108.02246 C 7.16505,107.43913 6.79591,106.6849 6.7959,105.75976 C 6.79591,105.19466 6.90756,104.71159 7.13086,104.31055 C 7.34962,103.90495 7.68686,103.56999 8.14258,103.30566 M 10.81543,107.5918 C 11.74056,107.5918 12.46745,107.40267 12.9961,107.02441 C 13.52018,106.6416 13.78223,106.11752 13.78223,105.45215 C 13.78223,104.78679 13.52018,104.2627 12.9961,103.87988 C 12.46745,103.49708 11.74056,103.30567 10.81543,103.30566 C 9.89031,103.30567 9.1657,103.49708 8.6416,103.87988 C 8.11296,104.2627 7.84864,104.78679 7.84863,105.45215 C 7.84864,106.11752 8.11296,106.6416 8.6416,107.02441 C 9.1657,107.40267 9.89031,107.5918 10.81543,107.5918 M 10.49414,92.9082 L 11.10938,92.9082 L 11.10938,98.69141 C 11.97526,98.63672 12.63607,98.37695 13.0918,97.91211 C 13.54297,97.44271 13.76856,96.79102 13.76856,95.95703 C 13.76856,95.47396 13.70931,95.00684 13.59082,94.55566 C 13.47233,94.09994 13.2946,93.64877 13.05762,93.20215 L 14.24707,93.20215 C 14.43848,93.65333 14.58431,94.11589 14.68457,94.58984 C 14.78483,95.06381 14.83496,95.5446 14.83496,96.03223 C 14.83496,97.25358 14.47949,98.22201 13.76856,98.9375 C 13.05762,99.64844 12.09603,100.00391 10.88379,100.00391 C 9.63054,100.00391 8.63705,99.66667 7.90332,98.99219 C 7.16505,98.31315 6.79591,97.39942 6.7959,96.25098 C 6.79591,95.22103 7.12859,94.40756 7.79395,93.81055 C 8.45476,93.20899 9.35482,92.90821 10.49414,92.9082 M 10.125,94.16601 C 9.43686,94.17514 8.8877,94.36882 8.47754,94.74707 C 8.06739,95.12077 7.86231,95.61752 7.86231,96.2373 C 7.86231,96.93913 8.06055,97.50196 8.45703,97.92578 C 8.85352,98.34505 9.41179,98.58659 10.13184,98.65039 L 10.125,94.16601 M 6.98047,91.74609 L 6.98047,90.41308 L 13.40625,88.02051 L 6.98047,85.62793 L 6.98047,84.29492 L 14.63672,87.16601 L 14.63672,88.875 L 6.98047,91.74609 M 6.98047,82.55859 L 6.98047,81.30078 L 14.63672,81.30078 L 14.63672,82.55859 L 6.98047,82.55859 M 4,82.55859 L 4,81.30078 L 5.59277,81.30078 L 5.59277,82.55859 L 4,82.55859 M 10.78809,75.19629 C 10.78809,76.21257 10.9043,76.91667 11.13672,77.30859 C 11.36915,77.70052 11.76563,77.89649 12.32617,77.89648 C 12.77279,77.89649 13.12826,77.75065 13.39258,77.45898 C 13.65235,77.16276 13.78223,76.76172 13.78223,76.25586 C 13.78223,75.5586 13.53614,75.00033 13.04395,74.58105 C 12.5472,74.15723 11.88868,73.94532 11.06836,73.94531 L 10.78809,73.94531 L 10.78809,75.19629 M 10.26856,72.6875 L 14.63672,72.6875 L 14.63672,73.94531 L 13.47461,73.94531 C 13.93946,74.23243 14.28353,74.59017 14.50684,75.01855 C 14.72559,75.44694 14.83496,75.97103 14.83496,76.59082 C 14.83496,77.37468 14.61621,77.99902 14.17871,78.46387 C 13.73666,78.92415 13.14649,79.1543 12.4082,79.1543 C 11.54688,79.1543 10.89747,78.86719 10.45996,78.29297 C 10.02247,77.71419 9.80372,76.85287 9.80371,75.70898 L 9.80371,73.94531 L 9.68067,73.94531 C 9.10189,73.94532 8.65528,74.13672 8.34082,74.51953 C 8.02182,74.89779 7.86231,75.43099 7.86231,76.11914 C 7.86231,76.55664 7.91472,76.98275 8.01953,77.39746 C 8.12436,77.81218 8.28158,78.21094 8.49121,78.59375 L 7.3291,78.59375 C 7.15138,78.13346 7.01921,77.68685 6.93262,77.25391 C 6.84148,76.82097 6.79591,76.39942 6.7959,75.98926 C 6.79591,74.88184 7.08302,74.05469 7.65723,73.50781 C 8.23145,72.96094 9.10189,72.68751 10.26856,72.6875 M 10.01563,63.72558 L 14.63672,63.72558 L 14.63672,64.9834 L 10.05664,64.9834 C 9.33204,64.9834 8.78972,65.12468 8.42969,65.40723 C 8.06967,65.68978 7.88966,66.11361 7.88965,66.67871 C 7.88966,67.35775 8.10613,67.89323 8.53906,68.28516 C 8.97201,68.67709 9.56218,68.87305 10.30957,68.87305 L 14.63672,68.87305 L 14.63672,70.13769 L 6.98047,70.13769 L 6.98047,68.87305 L 8.16992,68.87305 C 7.70964,68.57227 7.36557,68.21908 7.1377,67.81348 C 6.90984,67.40332 6.79591,66.93164 6.7959,66.39844 C 6.79591,65.51889 7.06934,64.85352 7.61621,64.40234 C 8.15854,63.95118 8.95834,63.72559 10.01563,63.72558 M 4.80664,59.95898 L 6.98047,59.95898 L 6.98047,57.36816 L 7.95801,57.36816 L 7.95801,59.95898 L 12.11426,59.95898 C 12.73861,59.95899 13.13965,59.87468 13.31738,59.70605 C 13.49512,59.53288 13.58399,59.18425 13.58399,58.66016 L 13.58399,57.36816 L 14.63672,57.36816 L 14.63672,58.66016 C 14.63672,59.63086 14.45671,60.30078 14.09668,60.66992 C 13.7321,61.03906 13.07129,61.22363 12.11426,61.22363 L 7.95801,61.22363 L 7.95801,62.14648 L 6.98047,62.14648 L 6.98047,61.22363 L 4.80664,61.22363 L 4.80664,59.95898 M 10.78809,52.22754 C 10.78809,53.24382 10.9043,53.94792 11.13672,54.33984 C 11.36915,54.73177 11.76563,54.92774 12.32617,54.92773 C 12.77279,54.92774 13.12826,54.7819 13.39258,54.49023 C 13.65235,54.19401 13.78223,53.79297 13.78223,53.28711 C 13.78223,52.58985 13.53614,52.03158 13.04395,51.6123 C 12.5472,51.18848 11.88868,50.97657 11.06836,50.97656 L 10.78809,50.97656 L 10.78809,52.22754 M 10.26856,49.71875 L 14.63672,49.71875 L 14.63672,50.97656 L 13.47461,50.97656 C 13.93946,51.26368 14.28353,51.62142 14.50684,52.0498 C 14.72559,52.47819 14.83496,53.00228 14.83496,53.62207 C 14.83496,54.40593 14.61621,55.03027 14.17871,55.49512 C 13.73666,55.9554 13.14649,56.18555 12.4082,56.18555 C 11.54688,56.18555 10.89747,55.89844 10.45996,55.32422 C 10.02247,54.74544 9.80372,53.88412 9.80371,52.74023 L 9.80371,50.97656 L 9.68067,50.97656 C 9.10189,50.97657 8.65528,51.16797 8.34082,51.55078 C 8.02182,51.92904 7.86231,52.46224 7.86231,53.15039 C 7.86231,53.58789 7.91472,54.014 8.01953,54.42871 C 8.12436,54.84343 8.28158,55.24219 8.49121,55.625 L 7.3291,55.625 C 7.15138,55.16471 7.01921,54.7181 6.93262,54.28516 C 6.84148,53.85222 6.79591,53.43067 6.7959,53.02051 C 6.79591,51.91309 7.08302,51.08594 7.65723,50.53906 C 8.23145,49.99219 9.10189,49.71876 10.26856,49.71875 M 8.15625,42.68457 C 8.07423,42.82585 8.01498,42.9808 7.97852,43.14941 C 7.93751,43.31348 7.917,43.49577 7.91699,43.69629 C 7.917,44.40723 8.14942,44.9541 8.61426,45.33691 C 9.07455,45.71517 9.73764,45.9043 10.60352,45.9043 L 14.63672,45.9043 L 14.63672,47.16894 L 6.98047,47.16894 L 6.98047,45.9043 L 8.16992,45.9043 C 7.70509,45.63998 7.36101,45.2959 7.1377,44.87207 C 6.90984,44.44825 6.79591,43.93327 6.7959,43.32715 C 6.79591,43.24056 6.80274,43.14486 6.81641,43.04004 C 6.82553,42.93523 6.84148,42.81902 6.86426,42.69141 L 8.15625,42.68457 M 4.80664,40.10742 L 6.98047,40.10742 L 6.98047,37.5166 L 7.95801,37.5166 L 7.95801,40.10742 L 12.11426,40.10742 C 12.73861,40.10742 13.13965,40.02311 13.31738,39.85449 C 13.49512,39.68132 13.58399,39.33268 13.58399,38.80859 L 13.58399,37.5166 L 14.63672,37.5166 L 14.63672,38.80859 C 14.63672,39.7793 14.45671,40.44922 14.09668,40.81836 C 13.7321,41.1875 13.07129,41.37207 12.11426,41.37207 L 7.95801,41.37207 L 7.95801,42.29492 L 6.98047,42.29492 L 6.98047,41.37207 L 4.80664,41.37207 L 4.80664,40.10742 M 12.90039,35.67773 L 12.90039,34.23535 L 14.63672,34.23535 L 14.63672,35.67773 L 12.90039,35.67773 M 7.27442,25.88867 L 8.4502,25.88867 C 8.25424,26.24415 8.10841,26.60189 8.0127,26.96191 C 7.91244,27.31739 7.86231,27.67741 7.86231,28.04199 C 7.86231,28.85775 8.12208,29.49121 8.6416,29.94238 C 9.15658,30.39356 9.88119,30.61914 10.81543,30.61914 C 11.74968,30.61914 12.47657,30.39356 12.9961,29.94238 C 13.51107,29.49121 13.76856,28.85775 13.76856,28.04199 C 13.76856,27.67741 13.72071,27.31739 13.625,26.96191 C 13.52474,26.60189 13.37663,26.24415 13.18067,25.88867 L 14.34277,25.88867 C 14.50684,26.23959 14.62988,26.60417 14.71192,26.98242 C 14.79395,27.35612 14.83496,27.75489 14.83496,28.17871 C 14.83496,29.33171 14.47266,30.24772 13.74805,30.92676 C 13.02344,31.60579 12.0459,31.94531 10.81543,31.94531 C 9.56674,31.94531 8.58464,31.60352 7.86914,30.91992 C 7.15365,30.23177 6.79591,29.29069 6.7959,28.09668 C 6.79591,27.70931 6.83692,27.33106 6.91895,26.96191 C 6.99643,26.59278 7.11492,26.23503 7.27442,25.88867 M 7.86231,20.7207 C 7.86231,21.39518 8.12664,21.92839 8.65527,22.32031 C 9.17937,22.71224 9.89942,22.9082 10.81543,22.9082 C 11.73145,22.9082 12.45378,22.71452 12.98242,22.32715 C 13.50651,21.93522 13.76856,21.39974 13.76856,20.7207 C 13.76856,20.05079 13.50423,19.51986 12.97559,19.12793 C 12.44694,18.73601 11.72689,18.54004 10.81543,18.54004 C 9.90853,18.54004 9.19076,18.73601 8.66211,19.12793 C 8.12891,19.51986 7.86231,20.05079 7.86231,20.7207 M 6.7959,20.7207 C 6.79591,19.62696 7.15138,18.76791 7.86231,18.14355 C 8.57325,17.51921 9.55762,17.20704 10.81543,17.20703 C 12.06869,17.20704 13.05306,17.51921 13.76856,18.14355 C 14.47949,18.76791 14.83496,19.62696 14.83496,20.7207 C 14.83496,21.81901 14.47949,22.68034 13.76856,23.30469 C 13.05306,23.92448 12.06869,24.23437 10.81543,24.23437 C 9.55762,24.23437 8.57325,23.92448 7.86231,23.30469 C 7.15138,22.68034 6.79591,21.81901 6.7959,20.7207 M 8.4502,9.16797 C 7.8851,8.85352 7.46811,8.47755 7.19922,8.04004 C 6.93035,7.60255 6.79591,7.08757 6.7959,6.49512 C 6.79591,5.6976 7.07618,5.08237 7.63672,4.64941 C 8.19272,4.21648 8.98568,4.00001 10.01563,4 L 14.63672,4 L 14.63672,5.26465 L 10.05664,5.26465 C 9.32292,5.26466 8.77833,5.39454 8.42285,5.6543 C 8.06739,5.91407 7.88966,6.31056 7.88965,6.84375 C 7.88966,7.49545 8.10613,8.01042 8.53906,8.38867 C 8.97201,8.76693 9.56218,8.95606 10.30957,8.95605 L 14.63672,8.95605 L 14.63672,10.2207 L 10.05664,10.2207 C 9.31837,10.22071 8.77377,10.35059 8.42285,10.61035 C 8.06739,10.87012 7.88966,11.27116 7.88965,11.81348 C 7.88966,12.45606 8.10841,12.96647 8.5459,13.34473 C 8.97885,13.72298 9.56674,13.91211 10.30957,13.91211 L 14.63672,13.91211 L 14.63672,15.17676 L 6.98047,15.17676 L 6.98047,13.91211 L 8.16992,13.91211 C 7.70053,13.625 7.35418,13.28093 7.13086,12.87988 C 6.90756,12.47884 6.79591,12.00261 6.7959,11.45117 C 6.79591,10.89519 6.93718,10.42351 7.21973,10.03613 C 7.50229,9.64421 7.91244,9.35482 8.4502,9.16797"
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:0.5;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="logo"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke-width:1pt;filter:url(#ShadowBlur)"
d="M 368.46875,107.8125 C 366.97571,107.8125 365.96875,108.58416 365.96875,109.75 C 365.96875,110.76622 366.57465,111.27072 368.25,111.625 L 369.34375,111.84375 C 370.18723,112.02076 370.26053,112.03808 370.5,112.1875 C 370.84188,112.40182 371.03125,112.73006 371.03125,113.09375 C 371.03125,113.46669 370.87303,113.74803 370.53125,114 C 370.15496,114.27034 369.78313,114.375 369.15625,114.375 C 368.31272,114.375 367.69187,114.17236 367.15625,113.6875 C 366.67755,113.2491 366.45212,112.81161 366.28125,112.09375 L 365.78125,112.09375 L 365.8125,114.75 L 366.28125,114.75 L 366.78125,114.125 C 367.54493,114.63773 368.19634,114.8125 369.1875,114.8125 C 370.86297,114.8125 371.9375,113.99974 371.9375,112.75 C 371.9375,112.17181 371.69427,111.69809 371.25,111.34375 C 370.9421,111.10124 370.4744,110.93659 369.5625,110.75 L 368.34375,110.5 C 367.32946,110.28559 366.875,109.91258 366.875,109.34375 C 366.875,108.69115 367.50004,108.25 368.46875,108.25 C 369.26669,108.25 369.91911,108.53106 370.375,109.0625 C 370.70554,109.44476 370.91417,109.83687 371.0625,110.3125 L 371.5625,110.3125 L 371.40625,107.875 L 371,107.875 L 370.53125,108.4375 C 369.99551,108.01788 369.27795,107.8125 368.46875,107.8125 z M 379.9375,107.8125 C 378.83192,107.8125 377.89985,108.15108 377.125,108.90625 C 376.3956,109.61498 376.0625,110.41441 376.0625,111.375 C 376.06249,113.37991 377.66079,114.8125 379.90625,114.8125 C 381.72977,114.8125 382.89405,113.94167 383.15625,112.375 L 382.625,112.28125 C 382.51105,112.7754 382.36137,113.12638 382.15625,113.40625 C 381.6891,114.04974 380.98577,114.375 380.0625,114.375 C 378.37578,114.375 377.5625,113.4109 377.5625,111.40625 C 377.5625,110.3523 377.73743,109.6532 378.125,109.09375 C 378.47826,108.57151 379.17671,108.25 379.90625,108.25 C 380.70405,108.25 381.41068,108.59061 381.84375,109.1875 C 382.06034,109.4951 382.23775,109.84444 382.5,110.5625 L 383,110.5625 L 382.84375,107.875 L 382.40625,107.875 L 381.9375,108.4375 C 381.12809,107.95238 380.70118,107.8125 379.9375,107.8125 z M 390.78125,107.8125 L 388.15625,113.25 C 387.92846,113.73503 387.88968,113.78843 387.71875,113.9375 C 387.53625,114.11477 387.21407,114.25 386.90625,114.25 L 386.84375,114.25 L 386.84375,114.6875 L 389.875,114.6875 L 389.875,114.25 L 389.65625,114.25 C 389.04107,114.25 388.71875,114.07307 388.71875,113.71875 C 388.71876,113.60678 388.74421,113.46171 388.8125,113.3125 L 389.1875,112.5 L 392.21875,112.5 L 392.84375,113.75 C 392.91221,113.88987 392.9375,113.95306 392.9375,114 C 392.93751,114.14903 392.64026,114.25 392.21875,114.25 L 391.75,114.25 L 391.75,114.6875 L 395.28125,114.6875 L 395.28125,114.25 L 395.125,114.25 C 394.55482,114.25 394.41821,114.14711 394.15625,113.625 L 391.25,107.8125 L 390.78125,107.8125 z M 333.34375,107.9375 L 333.34375,108.375 L 333.5625,108.375 C 334.48569,108.375 334.59375,108.42095 334.59375,108.8125 L 334.59375,109.09375 L 334.59375,113.53125 L 334.59375,113.8125 C 334.59375,114.20401 334.48569,114.25 333.5625,114.25 L 333.34375,114.25 L 333.34375,114.6875 L 337.09375,114.6875 L 337.09375,114.25 L 336.875,114.25 C 335.96332,114.25 335.875,114.20401 335.875,113.8125 L 335.875,113.53125 L 335.875,109.09375 L 335.875,108.8125 C 335.875,108.42095 335.96333,108.375 336.875,108.375 L 337.09375,108.375 L 337.09375,107.9375 L 333.34375,107.9375 z M 340.9375,107.9375 L 340.9375,108.375 L 341.21875,108.375 C 341.80001,108.375 342.04487,108.45413 342.25,108.6875 L 342.25,112.65625 C 342.25,113.93378 342.03149,114.21257 340.9375,114.25 L 340.9375,114.6875 L 344.1875,114.6875 L 344.1875,114.25 C 343.10447,114.21257 342.875,113.93378 342.875,112.65625 L 342.875,109.1875 L 347.96875,114.8125 L 348.4375,114.8125 L 348.4375,109.96875 C 348.43749,108.69144 348.65578,108.4124 349.75,108.375 L 349.75,107.9375 L 346.5,107.9375 L 346.5,108.375 C 347.58275,108.4124 347.8125,108.69144 347.8125,109.96875 L 347.8125,112.90625 L 343.28125,107.9375 L 340.9375,107.9375 z M 353.5,107.9375 L 353.5,108.375 L 353.71875,108.375 C 354.64189,108.375 354.75,108.42095 354.75,108.8125 L 354.75,109.09375 L 354.75,113.53125 L 354.75,113.8125 C 354.75001,114.20401 354.6419,114.25 353.71875,114.25 L 353.5,114.25 L 353.5,114.6875 L 357.25,114.6875 L 357.25,114.25 L 357.03125,114.25 C 356.10792,114.25 356,114.20401 356,113.8125 L 356,113.53125 L 356,112.34375 L 357.34375,111.25 L 359.3125,113.625 C 359.495,113.84878 359.53125,113.93773 359.53125,114.03125 C 359.53124,114.18019 359.33988,114.25 358.78125,114.25 L 358.40625,114.25 L 358.40625,114.6875 L 362.3125,114.6875 L 362.3125,114.25 L 362.09375,114.25 C 361.4669,114.25 361.29917,114.18212 360.96875,113.78125 L 358.21875,110.5 L 359.90625,109.125 C 360.45317,108.64929 361.15987,108.375 361.84375,108.375 L 361.84375,107.9375 L 358.34375,107.9375 L 358.34375,108.375 L 358.625,108.375 C 359.14941,108.375 359.375,108.4605 359.375,108.65625 C 359.37501,108.78676 359.14295,109.07347 358.8125,109.34375 L 356,111.625 L 356,109.09375 L 356,108.8125 C 355.99999,108.42095 356.10793,108.375 357.03125,108.375 L 357.25,108.375 L 357.25,107.9375 L 353.5,107.9375 z M 398.65625,107.9375 L 398.65625,108.375 L 398.875,108.375 C 399.79815,108.375 399.90625,108.42095 399.90625,108.8125 L 399.90625,109.09375 L 399.90625,113.53125 L 399.90625,113.8125 C 399.90624,114.20401 399.79815,114.25 398.875,114.25 L 398.65625,114.25 L 398.65625,114.6875 L 402.5,114.6875 L 402.5,114.25 L 402.1875,114.25 C 401.26427,114.25 401.15625,114.20401 401.15625,113.8125 L 401.15625,113.53125 L 401.15625,111.6875 L 402.46875,111.6875 C 403.49467,111.6875 404.01269,111.61455 404.46875,111.4375 C 405.27771,111.12023 405.75,110.51781 405.75,109.78125 C 405.75001,109.07273 405.34579,108.5264 404.59375,108.21875 C 404.14914,108.0324 403.44264,107.9375 402.65625,107.9375 L 398.65625,107.9375 z M 409.4375,107.9375 L 409.4375,108.375 L 409.65625,108.375 C 410.57952,108.375 410.6875,108.42095 410.6875,108.8125 L 410.6875,109.09375 L 410.6875,113.53125 L 410.6875,113.8125 C 410.6875,114.20401 410.57953,114.25 409.65625,114.25 L 409.4375,114.25 L 409.4375,114.6875 L 416.4375,114.6875 L 416.65625,112.1875 L 416.15625,112.1875 C 416.00845,112.84019 415.74221,113.41699 415.46875,113.6875 C 415.11532,114.06047 414.48843,114.25 413.53125,114.25 L 412.78125,114.25 C 412.43919,114.25 412.13395,114.17774 412.03125,114.09375 C 411.95162,114.03808 411.9375,113.97696 411.9375,113.78125 L 411.9375,111.40625 L 412.1875,111.40625 C 412.88261,111.40625 413.14681,111.46059 413.375,111.65625 C 413.67104,111.89894 413.78961,112.19996 413.8125,112.75 L 414.34375,112.75 L 414.34375,109.6875 L 413.8125,109.6875 C 413.75547,110.60129 413.30159,110.96875 412.21875,110.96875 L 411.9375,110.96875 L 411.9375,108.84375 C 411.93751,108.44283 412.04089,108.375 412.65625,108.375 L 413.25,108.375 C 414.25302,108.375 414.76855,108.45762 415.15625,108.71875 C 415.53227,108.96115 415.79765,109.50454 415.96875,110.34375 L 416.4375,110.34375 L 416.28125,107.9375 L 409.4375,107.9375 z M 401.875,108.375 L 402.59375,108.375 C 403.77895,108.375 404.34375,108.82409 404.34375,109.8125 C 404.34375,110.77308 403.77053,111.25 402.5625,111.25 L 401.15625,111.25 L 401.15625,108.84375 C 401.15626,108.41492 401.24824,108.375 401.875,108.375 z M 390.6875,109.34375 L 391.96875,112 L 389.4375,112 L 390.6875,109.34375 z"
id="path7358"
sodipodi:nodetypes="csccssssscccccsssccssscccccccsssccssssssccccccccsccccccsccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccscccccccccccccccccccccccccssscccccccccccccccsccscccscccccccccsccccccscccccccc" />
<path
style="fill:#000000;fill-opacity:1;stroke-width:1pt"
d="M 416.29213,107.94096 L 409.44252,107.94096 L 409.44252,108.37927 L 409.6476,108.37927 C 410.57088,108.37927 410.67331,108.42608 410.67331,108.81763 L 410.67331,109.08802 L 410.67331,113.52657 L 410.67331,113.79704 C 410.67331,114.18855 410.57088,114.23535 409.6476,114.23535 L 409.44252,114.23535 L 409.44252,114.67363 L 416.44023,114.67363 L 416.6682,112.18372 L 416.1666,112.18372 C 416.0188,112.83641 415.75639,113.41464 415.48293,113.68515 C 415.12951,114.05812 414.47982,114.23535 413.52264,114.23535 L 412.77044,114.23535 C 412.42839,114.23535 412.14364,114.17943 412.04094,114.09544 C 411.96132,114.03977 411.94984,113.98351 411.94984,113.7878 L 411.94984,111.40999 L 412.17778,111.40999 C 412.87287,111.40999 413.15788,111.46591 413.38607,111.66157 C 413.68212,111.90426 413.79614,112.20263 413.81903,112.75267 L 414.35466,112.75267 L 414.35466,109.69418 L 413.81903,109.69418 C 413.762,110.60797 413.30602,110.97171 412.22318,110.97171 L 411.94984,110.97171 L 411.94984,108.84553 C 411.94984,108.44461 412.0525,108.37927 412.66786,108.37927 L 413.2604,108.37927 C 414.26343,108.37927 414.75344,108.46331 415.14114,108.72444 C 415.51716,108.96684 415.79066,109.48893 415.96176,110.32814 L 416.45182,110.32814 L 416.29213,107.94096 z M 401.16804,111.68028 L 402.45586,111.68028 C 403.48179,111.68028 404.01733,111.61502 404.47339,111.43797 C 405.28235,111.1207 405.73847,110.52402 405.73847,109.78746 C 405.73847,109.07894 405.33938,108.53785 404.58734,108.2302 C 404.14273,108.04385 403.43605,107.94096 402.64966,107.94096 L 398.66079,107.94096 L 398.66079,108.37927 L 398.86588,108.37927 C 399.78903,108.37927 399.8915,108.42608 399.8915,108.81763 L 399.8915,109.08802 L 399.8915,113.52657 L 399.8915,113.79704 C 399.8915,114.18855 399.78903,114.23535 398.86588,114.23535 L 398.66079,114.23535 L 398.66079,114.67363 L 402.49013,114.67363 L 402.49013,114.23535 L 402.1937,114.23535 C 401.27047,114.23535 401.16804,114.18855 401.16804,113.79704 L 401.16804,113.52657 L 401.16804,111.68028 z M 401.16804,111.24204 L 401.16804,108.85491 C 401.16804,108.42608 401.23653,108.37927 401.86329,108.37927 L 402.59278,108.37927 C 403.77797,108.37927 404.33643,108.83629 404.33643,109.8247 C 404.33643,110.78528 403.7552,111.24204 402.54717,111.24204 L 401.16804,111.24204 z M 391.2525,107.81054 L 390.77388,107.81054 L 388.15234,113.24675 C 387.92455,113.73178 387.87905,113.79704 387.70812,113.94611 C 387.52563,114.12338 387.20648,114.23535 386.89866,114.23535 L 386.85322,114.23535 L 386.85322,114.67363 L 389.87336,114.67363 L 389.87336,114.23535 L 389.64536,114.23535 C 389.03018,114.23535 388.72233,114.05812 388.72233,113.7038 C 388.72233,113.59183 388.75655,113.4615 388.82484,113.31229 L 389.20108,112.49157 L 392.22118,112.49157 L 392.83668,113.7412 C 392.90513,113.88107 392.9279,113.94611 392.9279,113.99305 C 392.9279,114.14208 392.64269,114.23535 392.22118,114.23535 L 391.74251,114.23535 L 391.74251,114.67363 L 395.27576,114.67363 L 395.27576,114.23535 L 395.11625,114.23535 C 394.54606,114.23535 394.42078,114.16078 394.15882,113.63867 L 391.2525,107.81054 z M 390.69399,109.33986 L 391.98186,111.98813 L 389.42888,111.98813 L 390.69399,109.33986 z M 382.82997,107.87574 L 382.39682,107.87574 L 381.94096,108.42608 C 381.13154,107.94096 380.6874,107.80117 379.92372,107.80117 C 378.81813,107.80117 377.9062,108.16491 377.13135,108.92008 C 376.40195,109.62881 376.0599,110.412 376.0599,111.37259 C 376.0599,113.3775 377.66685,114.81346 379.91231,114.81346 C 381.73584,114.81346 382.89838,113.93699 383.16058,112.37032 L 382.62488,112.29578 C 382.51093,112.78993 382.37401,113.12553 382.16889,113.4054 C 381.70173,114.04889 380.97224,114.37531 380.04897,114.37531 C 378.36226,114.37531 377.56445,113.41464 377.56445,111.40999 C 377.56445,110.35604 377.73525,109.64747 378.12282,109.08802 C 378.47609,108.56578 379.18277,108.23928 379.91231,108.23928 C 380.71012,108.23928 381.41676,108.58444 381.84983,109.18133 C 382.06641,109.48893 382.23735,109.85259 382.4996,110.57065 L 383.00065,110.57065 L 382.82997,107.87574 z M 371.42139,107.88504 L 370.99983,107.88504 L 370.54386,108.44461 C 370.00811,108.02499 369.27874,107.80117 368.46954,107.80117 C 366.9765,107.80117 365.97363,108.58444 365.97363,109.75028 C 365.97363,110.7665 366.58881,111.27011 368.26416,111.62439 L 369.34695,111.8483 C 370.19043,112.02531 370.27012,112.04397 370.50959,112.19339 C 370.85146,112.40771 371.03378,112.71536 371.03378,113.07905 C 371.03378,113.45199 370.86283,113.75968 370.52105,114.01165 C 370.14477,114.28199 369.76888,114.38461 369.142,114.38461 C 368.29847,114.38461 367.69444,114.17001 367.15882,113.68515 C 366.68011,113.24675 366.44076,112.80847 366.26989,112.09061 L 365.77985,112.09061 L 365.82529,114.74829 L 366.26989,114.74829 L 366.78259,114.11414 C 367.54627,114.62687 368.18482,114.81346 369.17598,114.81346 C 370.85146,114.81346 371.92282,114.01165 371.92282,112.76191 C 371.92282,112.18372 371.68346,111.68965 371.23919,111.33531 C 370.9313,111.0928 370.48682,110.93431 369.57492,110.74772 L 368.35547,110.49608 C 367.34118,110.28167 366.86243,109.91793 366.86243,109.3491 C 366.86243,108.6965 367.51208,108.24856 368.48079,108.24856 C 369.27874,108.24856 369.92823,108.5286 370.38412,109.06004 C 370.71466,109.4423 370.91975,109.83394 371.06808,110.30957 L 371.5581,110.30957 L 371.42139,107.88504 z M 356.01232,111.62439 L 356.01232,109.08802 L 356.01232,108.81763 C 356.01232,108.42608 356.11476,108.37927 357.03808,108.37927 L 357.25462,108.37927 L 357.25462,107.94096 L 353.50495,107.94096 L 353.50495,108.37927 L 353.71016,108.37927 C 354.63331,108.37927 354.73558,108.42608 354.73558,108.81763 L 354.73558,109.08802 L 354.73558,113.52657 L 354.73558,113.79704 C 354.73558,114.18855 354.63331,114.23535 353.71016,114.23535 L 353.50495,114.23535 L 353.50495,114.67363 L 357.25462,114.67363 L 357.25462,114.23535 L 357.03808,114.23535 C 356.11476,114.23535 356.01232,114.18855 356.01232,113.79704 L 356.01232,113.52657 L 356.01232,112.34238 L 357.33447,111.25146 L 359.31747,113.62918 C 359.49997,113.85296 359.5454,113.92755 359.5454,114.02107 C 359.5454,114.17001 359.3291,114.23535 358.77047,114.23535 L 358.41704,114.23535 L 358.41704,114.67363 L 362.31497,114.67363 L 362.31497,114.23535 L 362.09847,114.23535 C 361.47163,114.23535 361.31186,114.17001 360.98144,113.76914 L 358.22347,110.51474 L 359.92176,109.12541 C 360.46867,108.6497 361.16376,108.37927 361.84764,108.37927 L 361.84764,107.94096 L 358.3372,107.94096 L 358.3372,108.37927 L 358.62238,108.37927 C 359.14679,108.37927 359.36308,108.46331 359.36308,108.65906 C 359.36308,108.78957 359.13515,109.06004 358.8047,109.33032 L 356.01232,111.62439 z M 343.27022,107.94096 L 340.92237,107.94096 L 340.92237,108.37927 L 341.20734,108.37927 C 341.7886,108.37927 342.05076,108.45389 342.25589,108.68726 L 342.25589,112.65002 C 342.25589,113.92755 342.02779,114.19792 340.9338,114.23535 L 340.9338,114.67363 L 344.1822,114.67363 L 344.1822,114.23535 C 343.09916,114.19792 342.87136,113.92755 342.87136,112.65002 L 342.87136,109.19057 L 347.95468,114.80422 L 348.43331,114.80422 L 348.43331,109.96457 C 348.43331,108.68726 348.66106,108.41667 349.75528,108.37927 L 349.75528,107.94096 L 346.507,107.94096 L 346.507,108.37927 C 347.58974,108.41667 347.81772,108.68726 347.81772,109.96457 L 347.81772,112.89255 L 343.27022,107.94096 z M 335.86209,109.08802 L 335.86209,108.81763 C 335.86209,108.42608 335.96463,108.37927 336.8763,108.37927 L 337.10428,108.37927 L 337.10428,107.94096 L 333.3318,107.94096 L 333.3318,108.37927 L 333.55978,108.37927 C 334.48297,108.37927 334.58548,108.42608 334.58548,108.81763 L 334.58548,109.08802 L 334.58548,113.52657 L 334.58548,113.79704 C 334.58548,114.18855 334.48297,114.23535 333.55978,114.23535 L 333.3318,114.23535 L 333.3318,114.67363 L 337.10428,114.67363 L 337.10428,114.23535 L 336.8763,114.23535 C 335.96463,114.23535 335.86209,114.18855 335.86209,113.79704 L 335.86209,113.52657 L 335.86209,109.08802 z"
id="path2929" />
<g
id="g8138"
transform="matrix(0.6092602,0,0,0.6092602,130.59563,-462.1954)">
<path
id="path8065"
d="M 345.13195,864.9315 C 342.63195,874.3315 360.53195,876.0315 369.43195,879.6315 C 371.63195,880.6315 370.63195,876.4315 369.53195,875.4315 C 362.33195,871.8315 347.33195,871.0315 345.13195,864.9315 z M 456.73195,865.9315 C 454.03195,874.8315 431.73195,879.0315 423.73195,883.7315 C 421.63195,884.9315 420.53195,890.0315 424.13195,888.0315 C 433.73195,882.7315 459.93195,877.3315 456.73195,865.9315 z M 381.43195,877.7315 C 378.13195,877.7315 376.13195,879.3315 382.03195,881.4315 C 389.73195,882.0315 400.83195,885.0315 403.13195,886.0315 C 406.93195,879.5315 382.13195,877.7315 381.43195,877.7315 z M 360.33195,886.2315 C 358.93195,885.0315 357.43195,887.2315 359.43195,889.0315 C 362.93195,892.8315 382.03195,896.9315 385.73195,900.5315 C 387.53195,901.4315 386.93195,898.0315 385.83195,896.9315 C 382.43195,893.5315 365.33195,889.6315 360.33195,886.2315 z M 438.83195,895.9315 C 439.03195,899.4315 454.63195,903.5315 454.03195,896.0315 C 453.83195,893.4315 438.63195,893.3315 438.83195,895.9315 z M 432.73195,895.7315 C 429.33195,902.8315 421.43195,898.2315 412.93195,906.8315 C 410.63195,908.5315 411.63195,913.0315 413.93195,910.6315 C 422.63195,902.4315 430.33195,906.9315 433.33195,898.0315 C 433.53195,897.0315 433.33195,896.4315 432.73195,895.7315 z M 368.63195,908.0315 C 373.13195,913.0315 378.43195,909.8315 380.13195,902.3315 C 379.73195,900.6315 363.33195,902.4315 368.63195,908.0315 z M 435.83195,902.2315 C 430.43195,906.6315 439.13195,911.6315 441.83195,908.0315 C 445.43195,903.3315 438.43195,904.6315 435.83195,902.2315 z M 380.63195,907.0315 C 379.73195,908.2315 379.83195,910.0315 380.93195,911.2315 C 384.53195,914.8315 392.93195,911.3315 394.43195,919.8315 C 395.53195,925.9315 409.63195,923.3315 416.43195,918.4315 C 417.93195,916.8315 418.03195,913.0315 416.13195,914.0315 C 386.33195,927.4315 405.33195,910.2315 380.63195,907.0315 z"
class="bs"
style="opacity:1;fill:#000000;filter:url(#ShadowBlur)" />
<use
transform="translate(337.13195,802.0315)"
id="use8067"
xlink:href="#outline1"
class="outline-big"
style="opacity:0.1;fill:none"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8069"
xlink:href="#outline1"
class="outline-small"
style="opacity:0.2;fill:none"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8071"
xlink:href="#outline1"
class="black"
style="fill:#000000"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8073"
class="stroke-highlight"
xlink:href="#outline1"
clip-path="url(#clipoutline1)"
style="opacity:0.2;fill:none"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8075"
xlink:href="#outline1"
class="specularity"
style="opacity:0.5;fill:url(#linearGradient8150)"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8077"
xlink:href="#outline1"
class="low-specularity"
style="opacity:0.25;fill:url(#linearGradient8152)"
x="0"
y="0"
width="750"
height="625" />
<path
id="path8079"
d="M 353.93195,858.9315 C 342.83195,869.9315 362.33195,866.8315 377.33195,872.7315 L 408.33195,818.2315 C 403.63195,813.4315 397.63195,813.8315 393.33195,818.2315 L 353.93195,858.9315 z"
style="opacity:0.5;fill:url(#linearGradient8154)"
class="specularity" />
<path
id="path8081"
d="M 346.03195,863.7315 C 343.43195,873.1315 359.43195,872.9315 368.33195,876.4315 C 369.83195,875.5315 370.63195,874.4315 369.53195,873.4315 C 362.33195,869.8315 348.13195,869.8315 346.03195,863.7315 z M 457.13195,864.7315 C 454.43195,873.6315 431.63195,877.0315 423.73195,881.7315 C 422.63195,882.8315 423.33195,883.8315 424.63195,884.8315 C 434.43195,879.9315 460.33195,876.1315 457.13195,864.7315 z M 381.43195,875.7315 C 378.23195,875.7315 376.23195,877.3315 382.03195,879.4315 C 389.73195,880.0315 400.83195,883.1315 403.23195,884.1315 C 406.93195,877.5315 382.23195,875.7315 381.43195,875.7315 z M 360.33195,884.2315 C 359.03195,885.1315 358.33195,886.1315 359.43195,887.1315 C 362.93195,890.8315 380.93195,894.2315 384.63195,897.8315 C 385.53195,896.6315 385.83195,895.4315 384.73195,894.2315 C 381.33195,890.8315 365.33195,887.6315 360.33195,884.2315 z M 440.13195,893.3315 C 439.43195,894.1315 438.83195,895.0315 438.63195,896.0315 C 438.63195,898.1315 454.03195,899.4315 454.03195,895.4315 C 453.73195,894.7315 453.43195,894.0315 452.83195,893.3315 C 450.03195,894.9315 443.13195,894.5315 440.13195,893.3315 z M 432.73195,893.7315 C 429.33195,900.8315 421.43195,896.2315 412.93195,904.8315 C 411.53195,906.3315 412.33195,907.1315 413.63195,907.8315 C 422.33195,899.6315 430.33195,904.9315 433.33195,896.0315 C 433.53195,895.1315 433.33195,894.4315 432.73195,893.7315 z M 378.73195,900.7315 C 376.33195,903.9315 372.13195,906.0315 369.13195,903.4315 C 368.83195,903.2315 368.63195,902.9315 368.43195,902.6315 C 367.33195,904.0315 367.33195,905.5315 369.13195,907.1315 C 372.73195,910.2315 378.43195,906.3315 380.13195,901.9315 C 379.83195,901.4315 379.23195,901.0315 378.73195,900.7315 z M 435.43195,901.7315 C 433.13195,905.4315 437.73195,908.4315 441.83195,906.1315 C 442.43195,905.4315 442.33195,904.0315 441.23195,902.6315 C 438.83195,903.8315 436.53195,903.1315 435.43195,901.7315 z M 381.03195,905.6315 C 380.13195,906.7315 379.83195,908.0315 380.93195,909.2315 C 384.53195,912.8315 392.93195,909.3315 394.43195,917.8315 C 395.53195,923.9315 409.13195,920.7315 415.93195,915.8315 C 417.43195,914.1915 416.73195,913.1315 415.43195,912.3315 C 408.33195,917.1315 395.43195,920.0315 394.43195,914.2315 C 392.93195,905.7315 384.63195,909.1315 381.03195,905.6315 z"
class="shade"
style="fill:url(#linearGradient8156)" />
<path
id="path8083"
d="M 407.63195,817.5315 L 423.93195,834.1315 C 425.43195,835.6315 425.43195,838.7315 424.53195,839.6315 L 416.43195,833.0315 L 414.83195,842.7315 L 408.13195,839.1315 L 397.23195,846.0315 L 393.63195,831.5315 L 387.83195,844.1315 L 373.33195,844.0315 C 370.53195,844.0315 370.93195,841.1315 373.83195,838.2315 C 379.53195,831.9315 390.63195,821.2315 394.13195,817.5315 C 397.73195,813.8315 404.03195,813.9315 407.63195,817.5315 z"
style="opacity:1;fill:url(#linearGradient8158)"
class="full-specularity" />
</g>
<g
id="g4034"
transform="translate(333.96147,25.125628)">
<use
style="filter:url(#filter4030)"
id="use3258"
xlink:href="#g3254"
y="0"
x="0"
width="750"
height="625" />
<g
id="g3254">
<path
style="font-size:40px;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;display:inline;enable-background:new;font-family:Bitstream Vera Sans"
d="M -49.884409,464.7316 C -50.039359,464.7017 -50.190799,464.68176 -50.338719,464.67177 C -50.501869,464.68666 -50.657409,464.68912 -50.805309,464.67914 C -50.795969,464.56965 -50.786609,464.46018 -50.777269,464.35071 C -50.767899,464.24123 -50.765599,464.11186 -50.770349,463.96257 C -50.785599,463.98745 -50.712299,463.82078 -50.550439,463.46251 C -50.606839,463.30327 -50.622739,463.15646 -50.598119,463.02212 C -50.438709,462.38519 -50.307979,461.90504 -50.205969,461.58159 C -50.126399,460.85512 -49.980579,459.94201 -49.768489,458.84232 C -49.782739,458.39448 -49.774669,457.94165 -49.744319,457.48384 C -49.713949,457.02605 -49.672449,456.56577 -49.619779,456.10299 C -49.725549,455.8044 -49.831289,455.50581 -49.937039,455.20721 C -50.042799,454.90862 -50.148559,454.61002 -50.254299,454.31141 C -50.990299,454.1723 -51.438149,453.98112 -51.635119,453.26613 C -51.604619,453.21637 -51.566499,453.15418 -51.520739,453.07953 C -51.459729,452.98005 -51.391109,452.86809 -51.314839,452.7437 C -50.941629,452.57461 -50.522629,452.33088 -50.057909,452.01247 C -49.790289,451.95284 -49.489209,451.88573 -49.154689,451.81115 C -48.820179,451.73659 -48.485639,451.66203 -48.151119,451.58745 C -48.106509,451.57752 -47.996169,451.61735 -47.820049,451.70695 C -47.784789,451.80649 -47.657979,451.96078 -47.439549,452.16981 C -47.361999,452.38879 -47.284449,452.60776 -47.206889,452.82673 C -47.136399,453.02579 -47.065889,453.22486 -46.995399,453.42392 C -46.940009,454.05592 -46.884629,454.68789 -46.829219,455.31986 C -46.758579,455.92698 -46.721369,456.54154 -46.717639,457.16355 C -46.788009,457.37254 -46.861299,457.53923 -46.937559,457.66361 C -46.963179,458.27071 -46.976559,458.6066 -46.977699,458.67127 C -46.970669,458.69119 -46.864999,458.78576 -46.660669,458.95498 C -46.204139,458.6814 -45.802759,458.38789 -45.456589,458.07447 C -44.957899,457.51228 -44.440439,456.93517 -43.904189,456.34312 C -43.352699,455.72622 -42.804729,455.09933 -42.260269,454.4625 C -41.794739,454.10168 -41.285499,454.58397 -41.015879,454.96426 C -40.974099,455.5043 -40.971689,455.28136 -41.532519,456.00776 C -41.644039,456.03262 -41.803649,456.37195 -41.916299,456.4615 C -42.150979,456.75007 -42.501209,456.97542 -43.062049,457.70181 C -43.982039,458.63712 -44.947759,459.64707 -45.959259,460.73165 C -46.035509,460.85601 -46.085949,460.9854 -46.110539,461.11973 C -46.313569,461.29387 -46.506009,461.49783 -46.687869,461.73167 C -46.876779,461.94562 -47.076849,462.16201 -47.288069,462.38093 C -47.379589,462.5302 -47.441169,462.66205 -47.472809,462.7765 C -47.584329,462.80134 -47.662949,462.85111 -47.708699,462.92573 C -47.800229,463.07498 -47.861799,463.20685 -47.893429,463.32129 C -48.207979,463.52028 -48.455009,463.67198 -48.634559,463.77644 C -49.010119,464.07493 -49.292329,464.33114 -49.481249,464.54508 C -49.659669,464.58483 -49.794059,464.64702 -49.884409,464.7316"
id="path2979"
sodipodi:nodetypes="csssscsccscsccsccssscscsccsccscccsccssssscscc" />
<path
transform="matrix(1.9029641,0,0,1.9029641,216.6713,-313.10342)"
style="font-size:40px;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"
d="M -142.80859,435.8587 C -143.12112,435.81962 -143.44013,435.78056 -143.76562,435.74151 C -144.09117,435.71545 -144.4167,435.67639 -144.74219,435.62432 C -145.30211,435.45504 -145.76435,435.33134 -146.12891,435.25323 C -146.64977,435.03186 -147.09247,434.83004 -147.45703,434.64776 C -147.45706,434.64775 -147.46357,434.63472 -147.47656,434.6087 C -147.47659,434.58264 -147.48961,434.5566 -147.51562,434.53057 C -147.6068,434.4915 -147.70445,434.45894 -147.80859,434.43292 C -147.89976,434.40686 -147.9844,434.38082 -148.0625,434.35479 C -148.24482,434.22457 -148.43362,434.08785 -148.62891,433.94464 C -148.81122,433.80139 -149.00653,433.65816 -149.21484,433.51495 C -149.55341,433.17639 -149.89195,432.83785 -150.23047,432.49932 C -150.55601,432.17379 -150.88153,431.84827 -151.20703,431.52276 C -151.68882,430.72848 -152.24872,429.86259 -152.88672,428.92511 C -153.27736,428.10478 -153.66799,427.28447 -154.05859,426.46417 C -154.44924,425.65687 -154.83986,424.84307 -155.23047,424.02276 C -155.36069,423.71026 -155.48439,423.33265 -155.60156,422.88995 C -155.75783,422.49932 -155.90106,422.19333 -156.03125,421.97198 C -156.21356,421.36 -156.35028,420.91729 -156.44141,420.64386 C -156.57163,420.13604 -156.76694,419.35479 -157.02734,418.30011 C -157.27476,417.2324 -157.47658,416.42511 -157.63281,415.87823 C -157.63283,415.82615 -157.63283,415.76756 -157.63281,415.70245 C -157.63283,415.63735 -157.63283,415.57224 -157.63281,415.50714 C -157.63283,415.46808 -157.67189,415.40948 -157.75,415.33136 C -157.75001,415.08396 -157.76955,414.88214 -157.80859,414.72589 C -157.80861,414.72589 -157.82163,414.72589 -157.84766,414.72589 C -157.87371,414.72589 -157.89975,414.70636 -157.92578,414.66729 C -157.9909,414.09438 -158.06903,413.52797 -158.16016,412.96807 C -158.25132,412.39516 -158.33595,411.81574 -158.41406,411.22979 C -158.45314,411.06053 -158.5508,410.81964 -158.70703,410.50714 C -158.87632,410.50714 -159.00001,410.48761 -159.07812,410.44854 C -159.35158,410.51365 -159.62501,410.57876 -159.89844,410.64386 C -160.17189,410.69595 -160.45835,410.74803 -160.75781,410.80011 C -160.80991,410.80011 -160.87501,410.83918 -160.95312,410.91729 C -161.18751,410.9173 -161.38933,410.93683 -161.55859,410.97589 C -161.71485,410.89777 -161.85157,410.81964 -161.96875,410.74151 C -161.96876,410.74152 -161.97527,410.73501 -161.98828,410.72198 C -161.98829,410.69595 -162.00131,410.66339 -162.02734,410.62432 C -161.97527,410.57225 -161.91017,410.50063 -161.83203,410.40948 C -161.7409,410.31834 -161.64975,410.2272 -161.55859,410.13604 C -161.32423,410.07095 -161.14194,409.99282 -161.01172,409.90167 C -160.43881,409.81053 -160.0547,409.75194 -159.85938,409.72589 C -159.88543,409.7259 -159.8073,409.68032 -159.625,409.58917 C -159.35158,409.53709 -159.00652,409.4785 -158.58984,409.41339 C -158.09507,409.25715 -157.73699,409.11392 -157.51562,408.9837 C -157.15106,408.98371 -156.8646,408.96418 -156.65625,408.92511 C -156.44793,408.89907 -155.94663,408.80142 -155.15234,408.63214 C -155.15236,408.63215 -155.14585,408.62564 -155.13281,408.61261 C -155.10679,408.58657 -155.07424,408.55402 -155.03516,408.51495 C -154.25392,408.30663 -153.47268,408.08527 -152.69141,407.85089 C -151.89716,407.6035 -151.1094,407.36262 -150.32812,407.12823 C -150.30211,407.1022 -150.26304,407.06965 -150.21094,407.03057 C -150.15888,406.99152 -150.10028,406.93944 -150.03516,406.87432 C -149.76174,406.77017 -149.41669,406.65298 -149,406.52276 C -148.79169,406.40559 -148.57034,406.27538 -148.33594,406.13214 C -148.10159,405.98892 -147.8607,405.83918 -147.61328,405.68292 C -147.53518,405.59178 -147.45055,405.48762 -147.35938,405.37042 C -147.25523,405.25324 -147.13805,405.13606 -147.00781,405.01886 C -146.94273,404.78449 -146.86461,404.6022 -146.77344,404.47198 C -146.77346,404.02929 -146.79299,403.68423 -146.83203,403.43682 C -147.09247,402.77278 -147.2943,402.29101 -147.4375,401.99151 C -147.43753,401.99153 -147.69794,401.83528 -148.21875,401.52276 C -148.34898,401.39257 -148.51174,401.22981 -148.70703,401.03448 C -148.75914,401.02148 -149.00002,400.85872 -149.42969,400.5462 C -149.52086,400.52018 -149.612,400.49413 -149.70312,400.46807 C -149.79429,400.44205 -149.87893,400.4095 -149.95703,400.37042 C -150.23049,400.13606 -150.39325,399.99283 -150.44531,399.94073 C -150.61461,399.94075 -150.7383,399.92122 -150.81641,399.88214 C -150.97268,399.80403 -151.14195,399.71939 -151.32422,399.62823 C -151.49351,399.5371 -151.66278,399.43945 -151.83203,399.33526 C -152.07945,399.33528 -152.26174,399.31575 -152.37891,399.27667 C -152.53518,399.19856 -152.67841,399.12044 -152.80859,399.04229 C -152.96486,399.04231 -153.08205,399.02278 -153.16016,398.9837 C -153.34247,398.90559 -153.46617,398.82096 -153.53125,398.72979 C -153.987,398.61263 -154.45575,398.49544 -154.9375,398.37823 C -155.41929,398.24804 -155.89455,398.10481 -156.36328,397.94854 C -156.72788,397.89648 -157.09246,397.83789 -157.45703,397.77276 C -157.82163,397.70768 -158.19923,397.62955 -158.58984,397.53839 C -158.82423,397.53841 -159.306,397.49283 -160.03516,397.40167 C -160.2435,397.40169 -160.40626,397.42122 -160.52344,397.46026 C -160.9271,397.46028 -161.57163,397.42122 -162.45703,397.34307 C -162.96485,397.38216 -163.47918,397.42122 -164,397.46026 C -164.52084,397.48632 -165.0547,397.5319 -165.60156,397.59698 C -165.60157,397.597 -165.61459,397.61002 -165.64062,397.63604 C -165.66667,397.66211 -165.69272,397.68815 -165.71875,397.71417 C -165.90105,397.75325 -166.27865,397.85091 -166.85156,398.00714 C -167.13803,398.24153 -167.48308,398.52799 -167.88672,398.86651 C -167.92579,398.90559 -167.96485,398.95117 -168.00391,399.00323 C -168.02995,399.05533 -168.06902,399.10742 -168.12109,399.15948 C -168.1211,399.49804 -168.08204,400.01887 -168.00391,400.72198 C -167.8086,400.95637 -167.69141,401.0996 -167.65234,401.15167 C -167.58724,401.26887 -167.51563,401.40559 -167.4375,401.56182 C -167.34636,401.70507 -167.25521,401.8483 -167.16406,401.99151 C -167.08594,401.99153 -167.02735,402.01106 -166.98828,402.05011 C -166.94922,402.08918 -166.91667,402.14127 -166.89062,402.20636 C -166.85157,402.25845 -166.79949,402.31054 -166.73438,402.36261 C -166.53907,402.51887 -166.33725,402.67512 -166.12891,402.83136 C -165.90756,402.9746 -165.6862,403.11783 -165.46484,403.26104 C -165.17839,403.37825 -164.8724,403.50194 -164.54688,403.63214 C -164.22136,403.76236 -163.88933,403.89908 -163.55078,404.04229 C -163.55079,404.04231 -163.55079,404.05533 -163.55078,404.08136 C -163.53777,404.10741 -163.51173,404.13345 -163.47266,404.15948 C -163.29037,404.15949 -163.04949,404.20507 -162.75,404.2962 C -162.75001,404.29621 -162.75001,404.30923 -162.75,404.33526 C -162.75001,404.36132 -162.73048,404.38736 -162.69141,404.41339 C -162.69142,404.4134 -162.69793,404.42642 -162.71094,404.45245 C -162.71095,404.4785 -162.72397,404.50455 -162.75,404.53057 C -162.97136,404.50455 -163.19923,404.4785 -163.43359,404.45245 C -163.66798,404.42642 -163.90235,404.39387 -164.13672,404.35479 C -164.13673,404.35481 -164.20183,404.2897 -164.33203,404.15948 C -164.48829,404.15949 -164.62501,404.13996 -164.74219,404.10089 C -165.31511,403.7884 -165.73829,403.52798 -166.01172,403.31964 C -166.08985,403.31965 -166.17449,403.30012 -166.26562,403.26104 C -166.26563,403.26106 -166.27214,403.25455 -166.28516,403.24151 C -166.28516,403.21549 -166.29818,403.18293 -166.32422,403.14386 C -166.5586,403.06575 -166.73438,402.98762 -166.85156,402.90948 C -167.02084,402.77929 -167.26172,402.55793 -167.57422,402.24542 C -167.62631,402.24543 -167.69141,402.2845 -167.76953,402.36261 C -167.92579,402.36262 -168.0625,402.34309 -168.17969,402.30401 C -168.28386,402.21288 -168.39454,402.12174 -168.51172,402.03057 C -168.61589,401.92642 -168.72657,401.81575 -168.84375,401.69854 C -168.9349,401.60741 -169.0586,401.44465 -169.21484,401.21026 C -169.29297,401.21028 -169.35157,401.19075 -169.39062,401.15167 C -169.44271,401.04752 -169.60547,400.76757 -169.87891,400.31182 C -169.87891,399.94726 -169.85938,399.6608 -169.82031,399.45245 C -169.70313,399.21809 -169.5599,398.97721 -169.39062,398.72979 C -169.19532,398.5345 -169.03256,398.37825 -168.90234,398.26104 C -168.82422,398.23502 -168.73959,398.20898 -168.64844,398.18292 C -168.5573,398.14388 -168.46615,398.10481 -168.375,398.06573 C -168.15365,397.93554 -167.97136,397.79882 -167.82812,397.65557 C -167.75,397.62955 -167.65235,397.60351 -167.53516,397.57745 C -167.40495,397.53841 -167.28126,397.49935 -167.16406,397.46026 C -166.98178,397.36914 -166.85808,397.29101 -166.79297,397.22589 C -166.51954,397.14778 -166.0573,397.0306 -165.40625,396.87432 C -164.96355,396.82226 -164.29949,396.7181 -163.41406,396.56182 C -162.90626,396.56185 -162.39845,396.56185 -161.89062,396.56182 C -161.3698,396.56185 -160.83595,396.54231 -160.28906,396.50323 C -159.89845,396.54231 -159.4948,396.57487 -159.07812,396.60089 C -158.66147,396.62695 -158.2383,396.65299 -157.80859,396.67901 C -157.48309,396.7181 -157.15757,396.77018 -156.83203,396.83526 C -156.49351,396.88737 -156.15496,396.93945 -155.81641,396.99151 C -155.45184,397.12174 -155.23049,397.19987 -155.15234,397.22589 C -154.68361,397.33007 -154.12372,397.45377 -153.47266,397.59698 C -153.44663,397.63606 -153.40757,397.67513 -153.35547,397.71417 C -153.29038,397.74023 -153.22528,397.77929 -153.16016,397.83136 C -152.9258,397.83138 -152.72398,397.85091 -152.55469,397.88995 C -151.96877,398.05924 -151.52606,398.20247 -151.22656,398.31964 C -150.49742,398.60611 -149.87893,398.86653 -149.37109,399.10089 C -149.16278,399.25716 -149.05862,399.33528 -149.05859,399.33526 C -148.82424,399.45247 -148.5443,399.57617 -148.21875,399.70636 C -147.56773,400.13606 -147.02737,400.52018 -146.59766,400.8587 C -146.59768,400.85872 -146.58466,400.85872 -146.55859,400.8587 C -146.53258,400.85872 -146.50003,400.85872 -146.46094,400.8587 C -146.46096,400.85872 -146.4219,400.93684 -146.34375,401.09307 C -146.26565,401.17122 -146.1094,401.2884 -145.875,401.44464 C -145.65367,401.77017 -145.51044,401.972 -145.44531,402.05011 C -145.30211,402.51887 -145.15888,402.88345 -145.01562,403.14386 C -145.01565,403.41731 -145.05472,403.84048 -145.13281,404.41339 C -145.28909,404.60871 -145.41279,404.81054 -145.50391,405.01886 C -145.75133,405.25324 -145.99872,405.49413 -146.24609,405.74151 C -146.4805,405.98892 -146.71487,406.22981 -146.94922,406.46417 C -147.30081,406.64647 -147.54169,406.78319 -147.67188,406.87432 C -147.9844,407.00454 -148.2969,407.14126 -148.60938,407.28448 C -148.90888,407.42772 -149.22138,407.57746 -149.54688,407.7337 C -149.5469,407.8509 -149.56643,407.94855 -149.60547,408.02667 C -149.68362,407.94855 -149.74221,407.87043 -149.78125,407.79229 C -150.4844,408.01366 -151.27216,408.29361 -152.14453,408.63214 C -153.70705,409.03579 -155.1133,409.41991 -156.36328,409.78448 C -156.33726,410.38345 -156.31121,410.98891 -156.28516,411.60089 C -156.24611,412.21287 -156.19403,412.83136 -156.12891,413.45636 C -156.02476,413.66469 -155.95965,413.78839 -155.93359,413.82745 C -155.81642,414.49152 -155.62111,415.42901 -155.34766,416.63995 C -155.07424,417.83787 -154.85939,418.77537 -154.70312,419.45245 C -154.46877,420.2337 -154.21486,421.01495 -153.94141,421.7962 C -153.66799,422.57745 -153.39455,423.3652 -153.12109,424.15948 C -152.8607,424.71937 -152.59377,425.28578 -152.32031,425.8587 C -152.0469,426.44463 -151.77346,427.04359 -151.5,427.65557 C -151.29169,428.00713 -151.08336,428.37822 -150.875,428.76886 C -150.66669,429.15947 -150.45185,429.55009 -150.23047,429.94073 C -150.23049,430.05791 -150.21096,430.16207 -150.17188,430.25323 C -149.63804,430.83916 -149.11721,431.41858 -148.60938,431.99151 C -148.34898,432.16077 -147.9844,432.44723 -147.51562,432.85089 C -147.48961,432.87691 -147.46357,432.91598 -147.4375,432.96807 C -147.39846,433.02014 -147.34638,433.07874 -147.28125,433.14386 C -147.0469,433.28707 -146.80602,433.4303 -146.55859,433.57354 C -146.2982,433.72978 -146.03128,433.88603 -145.75781,434.04229 C -145.60159,434.09436 -145.24352,434.21806 -144.68359,434.41339 C -144.47529,434.51754 -144.33206,434.59566 -144.25391,434.64776 C -144.14977,434.64775 -143.92841,434.68681 -143.58984,434.76495 C -143.58987,434.76493 -143.58336,434.77795 -143.57031,434.80401 C -143.5443,434.83004 -143.51175,434.86259 -143.47266,434.90167 C -143.06904,434.94071 -142.42451,434.99931 -141.53906,435.07745 C -141.16149,435.07743 -140.58206,435.03837 -139.80078,434.96026 C -139.14977,434.67379 -138.50524,434.38733 -137.86719,434.10089 C -137.84118,434.06181 -137.81514,434.01624 -137.78906,433.96417 C -137.75003,433.91207 -137.69144,433.85999 -137.61328,433.80792 C -137.45707,433.8079 -137.33988,433.78837 -137.26172,433.74932 C -137.02738,433.554 -136.78649,433.36519 -136.53906,433.18292 C -136.2917,433.00061 -136.05082,432.8053 -135.81641,432.59698 C -135.81644,432.59697 -135.75134,432.49931 -135.62109,432.30401 C -135.54301,432.304 -135.48441,432.28447 -135.44531,432.24542 C -135.32816,432.02405 -135.19795,431.79619 -135.05469,431.56182 C -134.9115,431.32744 -134.76176,431.09306 -134.60547,430.8587 C -134.39717,429.94723 -134.19535,429.179 -134,428.55401 C -134.07816,427.82484 -134.13676,427.28447 -134.17578,426.93292 C -134.20186,426.81572 -134.30603,426.50973 -134.48828,426.01495 C -134.67061,425.7415 -134.86592,425.45505 -135.07422,425.15557 C -135.28259,424.86911 -135.49092,424.57614 -135.69922,424.27667 C -135.85551,424.12041 -136.01176,423.95114 -136.16797,423.76886 C -136.31123,423.59958 -136.47399,423.4238 -136.65625,423.24151 C -136.73441,423.24151 -136.793,423.22198 -136.83203,423.18292 C -136.83207,423.18291 -136.83858,423.16989 -136.85156,423.14386 C -136.8516,423.11781 -136.86462,423.09177 -136.89062,423.06573 C -137.05993,423.02666 -137.30082,422.96807 -137.61328,422.88995 C -137.92582,422.70765 -138.14717,422.56442 -138.27734,422.46026 C -138.44665,422.4212 -138.68753,422.32354 -139,422.16729 C -139.00003,422.16729 -139.00654,422.15427 -139.01953,422.12823 C -139.01956,422.10219 -139.0391,422.07614 -139.07812,422.05011 C -139.23441,422.0501 -139.3516,422.02406 -139.42969,421.97198 C -139.58597,421.90687 -139.75524,421.84177 -139.9375,421.77667 C -140.1068,421.71156 -140.27607,421.63995 -140.44531,421.56182 C -141.09639,421.40557 -141.62373,421.26234 -142.02734,421.13214 C -142.39196,421.09307 -142.75654,421.0475 -143.12109,420.99542 C -143.48571,420.94333 -143.86331,420.89125 -144.25391,420.83917 C -144.85289,420.83917 -145.31513,420.8587 -145.64062,420.89776 C -145.91409,421.08005 -146.09638,421.21677 -146.1875,421.30792 C -146.3568,421.52927 -146.55862,421.77666 -146.79297,422.05011 C -146.79299,422.80531 -146.81253,423.38474 -146.85156,423.78839 C -146.81253,424.00974 -146.71487,424.30921 -146.55859,424.68682 C -146.40237,424.92119 -146.31773,425.04489 -146.30469,425.05792 C -146.22659,425.29229 -146.168,425.49411 -146.12891,425.66339 C -145.81643,425.96286 -145.45185,426.34046 -145.03516,426.7962 C -144.99612,426.84827 -144.89847,426.91338 -144.74219,426.99151 C -144.69013,427.10869 -144.58597,427.26494 -144.42969,427.46026 C -144.52086,427.51234 -144.64456,427.57744 -144.80078,427.65557 C -144.97008,427.57744 -145.26956,427.41468 -145.69922,427.16729 C -145.82945,427.07614 -146.08987,426.87432 -146.48047,426.56182 C -146.63674,426.37952 -146.79299,426.18421 -146.94922,425.97589 C -147.10549,425.76755 -147.27477,425.55921 -147.45703,425.35089 C -147.45706,425.23369 -147.47659,425.13604 -147.51562,425.05792 C -147.59378,425.05791 -147.65237,425.03838 -147.69141,424.99932 C -147.63935,425.10348 -147.74351,424.96026 -148.00391,424.56964 C -148.13414,424.19203 -148.21226,423.97067 -148.23828,423.90557 C -148.23831,423.90557 -148.25133,423.89906 -148.27734,423.88604 C -148.30341,423.88604 -148.32945,423.87302 -148.35547,423.84698 C -148.35549,423.6777 -148.39456,423.35869 -148.47266,422.88995 C -148.38153,422.56442 -148.32294,422.3626 -148.29688,422.28448 C -148.10159,421.89385 -147.96487,421.63344 -147.88672,421.50323 C -147.47008,421.15167 -147.16409,420.89125 -146.96875,420.72198 C -146.77346,420.61781 -146.57164,420.52016 -146.36328,420.42901 C -146.14195,420.33786 -145.9206,420.2337 -145.69922,420.11651 C -145.55602,420.07745 -145.40628,420.03839 -145.25,419.99932 C -145.09378,419.97328 -144.92451,419.94724 -144.74219,419.9212 C -144.1042,419.9212 -143.31644,419.96677 -142.37891,420.05792 C -141.84508,420.20115 -141.30472,420.34437 -140.75781,420.48761 C -140.21097,420.64385 -139.65107,420.8001 -139.07812,420.95636 C -139.07816,420.95635 -139.07816,420.96286 -139.07812,420.97589 C -139.06514,421.00193 -139.0391,421.03448 -139,421.07354 C -138.73962,421.19073 -138.46618,421.30792 -138.17969,421.42511 C -137.88024,421.55531 -137.57425,421.69854 -137.26172,421.85479 C -136.74092,422.20635 -136.37634,422.46677 -136.16797,422.63604 C -136.02478,422.79229 -135.86853,422.95505 -135.69922,423.12432 C -135.51696,423.29359 -135.33467,423.47588 -135.15234,423.6712 C -135.03519,423.84046 -134.91801,424.02927 -134.80078,424.23761 C -134.67061,424.44593 -134.52738,424.66078 -134.37109,424.88214 C -134.25394,425.14255 -134.13025,425.40947 -134,425.68292 C -133.86983,425.95635 -133.7266,426.24932 -133.57031,426.56182 C -133.54431,426.78317 -133.44665,427.14775 -133.27734,427.65557 C -133.31645,427.929 -133.349,428.19593 -133.375,428.45636 C -133.40108,428.72978 -133.42712,429.02275 -133.45312,429.33526 C -133.58337,429.77796 -133.7266,430.22067 -133.88281,430.66339 C -134.00004,430.87171 -134.12374,431.09306 -134.25391,431.32745 C -134.38415,431.57483 -134.52087,431.81572 -134.66406,432.05011 C -134.93754,432.32353 -135.224,432.60348 -135.52344,432.88995 C -135.82295,433.18941 -136.12243,433.4954 -136.42188,433.80792 C -136.63024,433.92509 -136.84509,434.0553 -137.06641,434.19854 C -137.27478,434.34176 -137.48311,434.4915 -137.69141,434.64776 C -137.76957,434.64775 -137.84769,434.66728 -137.92578,434.70636 C -137.96488,434.73238 -138.01045,434.77144 -138.0625,434.82354 C -138.11462,434.88863 -138.1667,434.95373 -138.21875,435.01886 C -138.59639,435.14905 -138.90238,435.28577 -139.13672,435.42901 C -139.73571,435.4941 -140.34118,435.5592 -140.95312,435.62432 C -141.56514,435.68941 -142.18362,435.76754 -142.80859,435.8587 M -173.00391,418.80792 C -173.39453,418.61261 -173.7526,418.39776 -174.07812,418.16339 C -174.15625,418.00714 -174.24088,417.88995 -174.33203,417.81182 C -174.33203,417.68162 -174.37109,417.46026 -174.44922,417.14776 C -174.41015,417.01755 -174.34505,416.81573 -174.25391,416.54229 C -174.08463,416.30792 -173.86328,416.02797 -173.58984,415.70245 C -173.35547,415.58526 -173.12109,415.46157 -172.88672,415.33136 C -172.65234,415.20115 -172.41146,415.05792 -172.16406,414.90167 C -171.96875,414.90167 -171.8125,414.88214 -171.69531,414.84307 C -171.65625,414.90818 -171.6237,414.9798 -171.59766,415.05792 C -171.55859,415.12303 -171.50651,415.19464 -171.44141,415.27276 C -171.55859,415.38995 -171.66276,415.48761 -171.75391,415.56573 C -171.83203,415.56573 -171.96875,415.61131 -172.16406,415.70245 C -172.22917,415.7936 -172.30078,415.89776 -172.37891,416.01495 C -172.44401,416.13214 -172.51563,416.24933 -172.59375,416.36651 C -172.59375,416.50974 -172.63281,416.75063 -172.71094,417.08917 C -172.6849,417.15427 -172.65885,417.21938 -172.63281,417.28448 C -172.60677,417.33656 -172.57422,417.38865 -172.53516,417.44073 C -172.45703,417.51886 -172.3724,417.57745 -172.28125,417.61651 C -172.11198,417.59047 -171.9362,417.56443 -171.75391,417.53839 C -171.57162,417.51235 -171.38932,417.47979 -171.20703,417.44073 C -170.79037,417.24542 -170.52995,417.12823 -170.42578,417.08917 C -170.26953,416.99802 -170.11979,416.90688 -169.97656,416.81573 C -169.82032,416.71157 -169.64453,416.60089 -169.44922,416.4837 C -169.3711,416.40558 -169.3125,416.32094 -169.27344,416.22979 C -169.19532,416.17771 -169.11068,416.12563 -169.01953,416.07354 C -168.91537,416.00844 -168.81771,415.94334 -168.72656,415.87823 C -168.51823,415.64386 -168.3099,415.40297 -168.10156,415.15557 C -167.89323,414.90818 -167.67839,414.6673 -167.45703,414.43292 C -167.33985,414.22459 -167.22266,414.00323 -167.10547,413.76886 C -166.97527,413.52146 -166.83204,413.28058 -166.67578,413.0462 C -166.41537,412.61652 -166.15495,412.25193 -165.89453,411.95245 C -165.32162,410.78058 -164.74871,409.60871 -164.17578,408.43682 C -163.60287,407.25194 -163.01043,406.06704 -162.39844,404.88214 C -162.39845,404.64778 -162.37892,404.45246 -162.33984,404.2962 C -162.31381,404.25715 -162.20965,404.19205 -162.02734,404.10089 C -161.70183,403.54101 -161.3698,402.9746 -161.03125,402.40167 C -160.69272,401.81575 -160.34116,401.21679 -159.97656,400.60479 C -159.92449,400.55273 -159.85939,400.49413 -159.78125,400.42901 C -159.69012,400.36393 -159.59246,400.2858 -159.48828,400.19464 C -159.37111,400.12955 -159.2409,400.06445 -159.09766,399.99932 C -158.95444,399.93424 -158.8047,399.85611 -158.64844,399.76495 C -158.41408,399.76497 -158.23179,399.74544 -158.10156,399.70636 C -158.06251,399.70637 -158.00392,399.74544 -157.92578,399.82354 C -157.9258,399.86262 -157.88673,399.96028 -157.80859,400.11651 C -157.80861,400.19465 -157.80861,400.26627 -157.80859,400.33136 C -157.80861,400.38346 -157.80861,400.43554 -157.80859,400.48761 C -158.08205,400.66991 -158.26434,400.81314 -158.35547,400.91729 C -158.56382,401.30794 -158.77866,401.70507 -159,402.1087 C -159.20835,402.49934 -159.41668,402.90299 -159.625,403.31964 C -159.70314,403.39778 -159.78126,403.48241 -159.85938,403.57354 C -160.01564,403.96418 -160.13934,404.28319 -160.23047,404.53057 C -160.38673,404.76496 -160.52345,404.96679 -160.64062,405.13604 C -160.71876,405.37043 -160.77736,405.57225 -160.81641,405.74151 C -160.8685,405.78059 -160.95314,405.85871 -161.07031,405.97589 C -161.31772,406.52277 -161.57163,407.06965 -161.83203,407.61651 C -162.09246,408.1634 -162.35939,408.72329 -162.63281,409.2962 C -162.67189,409.33527 -162.71095,409.38084 -162.75,409.43292 C -162.77605,409.48501 -162.82162,409.53709 -162.88672,409.58917 C -162.95183,409.74543 -163.01694,409.90168 -163.08203,410.05792 C -163.13412,410.20116 -163.18621,410.35089 -163.23828,410.50714 C -163.51173,410.98891 -163.78517,411.4772 -164.05859,411.97198 C -164.33204,412.45376 -164.60548,412.92902 -164.87891,413.39776 C -165.16537,413.84047 -165.42579,414.20506 -165.66016,414.49151 C -165.81641,414.64777 -165.97266,414.80402 -166.12891,414.96026 C -166.27214,415.10349 -166.41537,415.24672 -166.55859,415.38995 C -166.59766,415.45506 -166.64324,415.52016 -166.69531,415.58526 C -166.7474,415.65037 -166.79949,415.72849 -166.85156,415.81964 C -167.09896,416.02797 -167.35938,416.24282 -167.63281,416.46417 C -167.89323,416.68552 -168.16016,416.91339 -168.43359,417.14776 C -168.7461,417.30401 -169.00651,417.4212 -169.21484,417.49932 C -169.3711,417.60349 -169.52735,417.71417 -169.68359,417.83136 C -169.83985,417.93552 -170.00261,418.0462 -170.17188,418.16339 C -170.17188,418.16339 -170.17188,418.17641 -170.17188,418.20245 C -170.17188,418.22849 -170.17188,418.25453 -170.17188,418.28057 C -170.41927,418.3587 -170.67969,418.4238 -170.95312,418.47589 C -170.95313,418.47589 -170.97266,418.48891 -171.01172,418.51495 C -171.03776,418.54099 -171.0638,418.56703 -171.08984,418.59307 C -171.32422,418.59307 -171.52604,418.60609 -171.69531,418.63214 C -171.69531,418.63214 -171.70833,418.63865 -171.73438,418.65167 C -171.76042,418.67771 -171.78646,418.71026 -171.8125,418.74932 C -172.33333,418.74932 -172.73047,418.76886 -173.00391,418.80792 M -151.79297,418.57354 C -152.0013,418.57354 -152.15755,418.5475 -152.26172,418.49542 C -152.30078,418.41729 -152.33984,418.32615 -152.37891,418.22198 C -152.41797,418.10479 -152.47656,417.98761 -152.55469,417.87042 C -152.47656,417.63604 -152.39844,417.40167 -152.32031,417.16729 C -152.24219,416.93292 -152.14453,416.69203 -152.02734,416.44464 C -151.94922,416.32745 -151.87109,416.19724 -151.79297,416.05401 C -151.70182,415.89776 -151.59766,415.74151 -151.48047,415.58526 C -151.40234,415.38995 -151.32422,415.19464 -151.24609,414.99932 C -151.16797,414.80402 -151.08985,414.6087 -151.01172,414.41339 C -150.51693,413.72329 -149.88542,412.79881 -149.11719,411.63995 C -149.27344,411.56183 -149.42969,411.48371 -149.58594,411.40557 C -149.74219,411.32746 -149.89844,411.24933 -150.05469,411.1712 C -149.89844,410.70246 -149.79427,410.416 -149.74219,410.31182 C -149.63802,410.31183 -149.5599,410.28579 -149.50781,410.2337 C -149.50782,410.23371 -149.50782,410.22069 -149.50781,410.19464 C -149.49479,410.15558 -149.46875,410.11652 -149.42969,410.07745 C -149.27344,410.0384 -149.11719,409.99933 -148.96094,409.96026 C -148.80469,409.92121 -148.64844,409.88215 -148.49219,409.84307 C -148.0625,409.84308 -147.71745,409.81704 -147.45703,409.76495 C -147.45704,409.76496 -147.44402,409.78449 -147.41797,409.82354 C -147.37891,409.84959 -147.33985,409.88215 -147.30078,409.9212 C -147.26172,409.92121 -147.22266,409.92121 -147.18359,409.9212 C -147.14454,409.92121 -147.10547,409.92121 -147.06641,409.9212 C -147.02735,409.96027 -146.98829,409.99933 -146.94922,410.03839 C -146.91016,410.07746 -146.8711,410.11652 -146.83203,410.15557 C -146.98829,410.46808 -147.15105,410.78709 -147.32031,411.11261 C -147.47657,411.43813 -147.65235,411.77667 -147.84766,412.12823 C -148.01693,412.36261 -148.19922,412.6035 -148.39453,412.85089 C -148.57683,413.08527 -148.76563,413.33917 -148.96094,413.61261 C -149.15625,414.01626 -149.35157,414.41339 -149.54688,414.80401 C -149.74219,415.19464 -149.9375,415.58526 -150.13281,415.97589 C -150.13281,416.39256 -150.15886,416.71157 -150.21094,416.93292 C -150.10677,416.93292 -149.84636,416.88084 -149.42969,416.77667 C -149.42969,416.77667 -149.2474,416.63995 -148.88281,416.36651 C -148.80469,416.36651 -148.71355,416.36651 -148.60938,416.36651 C -148.49219,416.36651 -148.375,416.36651 -148.25781,416.36651 C -148.25782,416.40558 -148.19922,416.51625 -148.08203,416.69854 C -148.35547,417.06313 -148.54427,417.2975 -148.64844,417.40167 C -148.70052,417.40167 -148.83073,417.45375 -149.03906,417.55792 C -149.03907,417.61 -149.09115,417.68813 -149.19531,417.79229 C -149.82032,418.00063 -150.29557,418.15688 -150.62109,418.26104 C -150.66016,418.30011 -150.71875,418.34568 -150.79688,418.39776 C -150.86198,418.43682 -150.9336,418.49542 -151.01172,418.57354 C -151.12891,418.57354 -151.25261,418.57354 -151.38281,418.57354 C -151.5,418.57354 -151.63672,418.57354 -151.79297,418.57354 M -144.50781,406.34698 C -144.5599,406.29491 -144.63803,406.1647 -144.74219,405.95636 C -144.7422,405.64387 -144.76824,405.38345 -144.82031,405.17511 C -144.82032,404.9147 -144.79428,404.70637 -144.74219,404.55011 C -144.58595,404.35481 -144.42319,404.13996 -144.25391,403.90557 C -144.08464,403.67121 -143.90235,403.43684 -143.70703,403.20245 C -143.49871,403.0983 -143.31642,403.02017 -143.16016,402.96807 C -143.056,403.02017 -142.84767,403.0983 -142.53516,403.20245 C -142.53517,403.35871 -142.50912,403.48892 -142.45703,403.59307 C -142.75652,404.49153 -143.01694,405.2272 -143.23828,405.80011 C -143.27735,405.83918 -143.32293,405.89777 -143.375,405.97589 C -143.41407,406.041 -143.47267,406.11262 -143.55078,406.19073 C -143.7461,406.19074 -144.06511,406.24283 -144.50781,406.34698 M -146.89062,420.40948 C -147.125,420.33135 -147.3138,420.25974 -147.45703,420.19464 C -147.69141,419.96026 -147.77604,419.88214 -147.71094,419.96026 C -147.75,419.89516 -147.80859,419.78448 -147.88672,419.62823 C -147.91276,419.58917 -147.94531,419.55661 -147.98438,419.53057 C -148.03646,419.50453 -148.09505,419.46547 -148.16016,419.41339 C -148.23828,419.25714 -148.3099,419.14646 -148.375,419.08136 C -148.41406,418.96417 -148.47266,418.80141 -148.55078,418.59307 C -148.55078,418.25453 -148.57031,417.99412 -148.60938,417.81182 C -148.51823,417.72068 -148.45963,417.64906 -148.43359,417.59698 C -148.39453,417.47979 -148.34245,417.29099 -148.27734,417.03057 C -148.23828,417.00453 -148.19271,416.97849 -148.14062,416.95245 C -148.08854,416.92641 -148.03646,416.88084 -147.98438,416.81573 C -147.80208,416.81573 -147.65885,416.83526 -147.55469,416.87432 C -147.55469,417.01755 -147.54167,417.12823 -147.51562,417.20636 C -147.51562,417.38865 -147.52865,417.53839 -147.55469,417.65557 C -147.55469,417.90297 -147.52214,418.17641 -147.45703,418.47589 C -147.26172,418.7363 -147.13151,418.89906 -147.06641,418.96417 C -146.94922,419.02927 -146.70833,419.13995 -146.34375,419.2962 C -145.97917,419.21807 -145.69922,419.15948 -145.50391,419.12042 C -145.29558,418.99021 -145.13281,418.86651 -145.01562,418.74932 C -144.91146,418.64516 -144.80078,418.50193 -144.68359,418.31964 C -144.64453,418.20245 -144.58594,418.00063 -144.50781,417.71417 C -144.50782,417.2975 -144.48828,416.97849 -144.44922,416.75714 C -144.48828,416.62693 -144.53386,416.4837 -144.58594,416.32745 C -144.63802,416.15818 -144.6836,415.98891 -144.72266,415.81964 C -144.80078,415.74151 -144.87891,415.68292 -144.95703,415.64386 C -144.9961,415.44855 -145.04167,415.24672 -145.09375,415.03839 C -145.14584,414.81704 -145.19141,414.59568 -145.23047,414.37432 C -145.23047,414.03579 -145.25,413.77537 -145.28906,413.59307 C -145.1849,413.37173 -145.08073,413.15037 -144.97656,412.92901 C -144.85938,412.70766 -144.74219,412.48631 -144.625,412.26495 C -144.54688,412.26496 -144.48828,412.24542 -144.44922,412.20636 C -144.44922,412.12824 -144.42969,412.05011 -144.39062,411.97198 C -144.3125,411.89386 -144.23438,411.81574 -144.15625,411.73761 C -144.06511,411.64647 -143.98047,411.56183 -143.90234,411.4837 C -143.70704,411.3535 -143.51172,411.21678 -143.31641,411.07354 C -143.1211,410.93032 -142.90625,410.78709 -142.67188,410.64386 C -142.25521,410.46157 -141.98178,410.33136 -141.85156,410.25323 C -141.50001,410.18813 -141.22006,410.11652 -141.01172,410.03839 C -140.88152,410.07746 -140.73178,410.11001 -140.5625,410.13604 C -140.39324,410.16209 -140.22397,410.20116 -140.05469,410.25323 C -139.98959,410.2923 -139.87891,410.35089 -139.72266,410.42901 C -139.69662,410.53319 -139.60548,410.67642 -139.44922,410.8587 C -139.48829,410.89777 -139.52735,410.93683 -139.56641,410.97589 C -139.59246,411.00194 -139.63152,411.041 -139.68359,411.09307 C -140.28256,411.28839 -140.77735,411.47069 -141.16797,411.63995 C -141.32422,411.71808 -141.4349,411.79621 -141.5,411.87432 C -141.52605,411.87433 -141.76693,411.90688 -142.22266,411.97198 C -142.28777,411.97199 -142.38542,411.93943 -142.51562,411.87432 C -142.51563,411.79621 -142.4961,411.71808 -142.45703,411.63995 C -142.52214,411.63996 -142.57422,411.62042 -142.61328,411.58136 C -142.73047,411.69855 -142.84766,411.81574 -142.96484,411.93292 C -143.06901,412.03709 -143.17969,412.14777 -143.29688,412.26495 C -143.3099,412.31704 -143.40105,412.55792 -143.57031,412.98761 C -143.57032,413.46938 -143.55079,413.84047 -143.51172,414.10089 C -143.40756,414.30922 -143.23829,414.68032 -143.00391,415.21417 C -143.00391,415.69594 -142.97136,416.24933 -142.90625,416.87432 C -142.90625,416.90037 -142.93881,417.14125 -143.00391,417.59698 C -143.14714,417.87042 -143.25782,418.1113 -143.33594,418.31964 C -143.45313,418.47589 -143.58334,418.63865 -143.72656,418.80792 C -143.85677,418.97719 -143.98698,419.15948 -144.11719,419.35479 C -144.13021,419.35479 -144.33203,419.46547 -144.72266,419.68682 C -144.80078,419.76495 -144.87891,419.83656 -144.95703,419.90167 C -144.98308,419.90167 -145.11328,419.94073 -145.34766,420.01886 C -145.47787,420.07094 -145.58854,420.14255 -145.67969,420.2337 C -145.79688,420.25974 -145.91406,420.28578 -146.03125,420.31182 C -146.13542,420.33786 -146.23958,420.37042 -146.34375,420.40948 C -146.4349,420.40948 -146.52604,420.40948 -146.61719,420.40948 C -146.69531,420.40948 -146.78646,420.40948 -146.89062,420.40948 M -140.93359,418.57354 C -141.14193,418.57354 -141.29818,418.5475 -141.40234,418.49542 C -141.44141,418.41729 -141.48047,418.32615 -141.51953,418.22198 C -141.55859,418.10479 -141.61719,417.98761 -141.69531,417.87042 C -141.61719,417.63604 -141.53906,417.40167 -141.46094,417.16729 C -141.38281,416.93292 -141.28516,416.69203 -141.16797,416.44464 C -141.08984,416.32745 -141.01172,416.19724 -140.93359,416.05401 C -140.84245,415.89776 -140.73828,415.74151 -140.62109,415.58526 C -140.54297,415.38995 -140.46484,415.19464 -140.38672,414.99932 C -140.30859,414.80402 -140.23047,414.6087 -140.15234,414.41339 C -139.65755,413.72329 -139.02604,412.79881 -138.25781,411.63995 C -138.41407,411.56183 -138.57032,411.48371 -138.72656,411.40557 C -138.88282,411.32746 -139.03906,411.24933 -139.19531,411.1712 C -139.03906,410.70246 -138.9349,410.416 -138.88281,410.31182 C -138.77865,410.31183 -138.70052,410.28579 -138.64844,410.2337 C -138.64844,410.23371 -138.64844,410.22069 -138.64844,410.19464 C -138.63542,410.15558 -138.60938,410.11652 -138.57031,410.07745 C -138.41407,410.0384 -138.25782,409.99933 -138.10156,409.96026 C -137.94532,409.92121 -137.78907,409.88215 -137.63281,409.84307 C -137.20313,409.84308 -136.85808,409.81704 -136.59766,409.76495 C -136.59766,409.76496 -136.58464,409.78449 -136.55859,409.82354 C -136.51954,409.84959 -136.48047,409.88215 -136.44141,409.9212 C -136.40235,409.92121 -136.36329,409.92121 -136.32422,409.9212 C -136.28516,409.92121 -136.2461,409.92121 -136.20703,409.9212 C -136.16797,409.96027 -136.12891,409.99933 -136.08984,410.03839 C -136.05079,410.07746 -136.01172,410.11652 -135.97266,410.15557 C -136.12891,410.46808 -136.29167,410.78709 -136.46094,411.11261 C -136.61719,411.43813 -136.79297,411.77667 -136.98828,412.12823 C -137.15756,412.36261 -137.33985,412.6035 -137.53516,412.85089 C -137.71745,413.08527 -137.90625,413.33917 -138.10156,413.61261 C -138.29688,414.01626 -138.49219,414.41339 -138.6875,414.80401 C -138.88282,415.19464 -139.07813,415.58526 -139.27344,415.97589 C -139.27344,416.39256 -139.29948,416.71157 -139.35156,416.93292 C -139.2474,416.93292 -138.98698,416.88084 -138.57031,416.77667 C -138.57032,416.77667 -138.38802,416.63995 -138.02344,416.36651 C -137.94532,416.36651 -137.85417,416.36651 -137.75,416.36651 C -137.63282,416.36651 -137.51563,416.36651 -137.39844,416.36651 C -137.39844,416.40558 -137.33985,416.51625 -137.22266,416.69854 C -137.4961,417.06313 -137.6849,417.2975 -137.78906,417.40167 C -137.84115,417.40167 -137.97136,417.45375 -138.17969,417.55792 C -138.17969,417.61 -138.23177,417.68813 -138.33594,417.79229 C -138.96094,418.00063 -139.4362,418.15688 -139.76172,418.26104 C -139.80078,418.30011 -139.85938,418.34568 -139.9375,418.39776 C -140.00261,418.43682 -140.07422,418.49542 -140.15234,418.57354 C -140.26953,418.57354 -140.39323,418.57354 -140.52344,418.57354 C -140.64063,418.57354 -140.77734,418.57354 -140.93359,418.57354 M -133.64844,406.34698 C -133.70053,406.29491 -133.77865,406.1647 -133.88281,405.95636 C -133.88282,405.64387 -133.90886,405.38345 -133.96094,405.17511 C -133.96095,404.9147 -133.9349,404.70637 -133.88281,404.55011 C -133.72657,404.35481 -133.56381,404.13996 -133.39453,403.90557 C -133.22527,403.67121 -133.04298,403.43684 -132.84766,403.20245 C -132.63933,403.0983 -132.45704,403.02017 -132.30078,402.96807 C -132.19662,403.02017 -131.98829,403.0983 -131.67578,403.20245 C -131.67579,403.35871 -131.64975,403.48892 -131.59766,403.59307 C -131.89715,404.49153 -132.15756,405.2272 -132.37891,405.80011 C -132.41798,405.83918 -132.46355,405.89777 -132.51562,405.97589 C -132.5547,406.041 -132.61329,406.11262 -132.69141,406.19073 C -132.88673,406.19074 -133.20574,406.24283 -133.64844,406.34698 M -134.3125,418.69073 C -134.33854,418.69073 -134.39714,418.65818 -134.48828,418.59307 C -134.85287,418.59307 -135.13281,418.57354 -135.32812,418.53448 C -135.48438,418.45636 -135.75781,418.30011 -136.14844,418.06573 C -136.14844,418.09177 -136.22656,417.88995 -136.38281,417.46026 C -136.29167,417.00453 -136.21354,416.69203 -136.14844,416.52276 C -135.82292,416.00193 -135.52995,415.50714 -135.26953,415.03839 C -135.19141,414.96027 -135.11328,414.90167 -135.03516,414.86261 C -134.91797,414.71938 -134.80078,414.56313 -134.68359,414.39386 C -134.55339,414.22459 -134.41016,414.0423 -134.25391,413.84698 C -134.09766,413.53449 -133.96094,413.30011 -133.84375,413.14386 C -133.81771,413.11782 -133.79167,413.09178 -133.76562,413.06573 C -133.72657,413.02667 -133.67448,412.97459 -133.60938,412.90948 C -133.60938,412.83136 -133.58985,412.75324 -133.55078,412.67511 C -133.35547,412.4798 -133.25782,412.38214 -133.25781,412.38214 C -133.25782,412.291 -133.27735,412.22589 -133.31641,412.18682 C -133.55078,412.18683 -133.7461,412.20636 -133.90234,412.24542 C -133.95443,412.24542 -134.01302,412.291 -134.07812,412.38214 C -134.58594,412.38214 -135.09375,412.38214 -135.60156,412.38214 C -136.10938,412.36912 -136.6237,412.34308 -137.14453,412.30401 C -137.22266,412.14777 -137.30078,412.03058 -137.37891,411.95245 C -137.37891,411.87433 -137.35937,411.81574 -137.32031,411.77667 C -137.32031,411.77667 -137.24219,411.73761 -137.08594,411.65948 C -137.08594,411.58136 -137.06641,411.52277 -137.02734,411.4837 C -136.94922,411.48371 -136.89062,411.46417 -136.85156,411.42511 C -136.85156,411.42511 -136.84505,411.4186 -136.83203,411.40557 C -136.83203,411.37954 -136.81901,411.34699 -136.79297,411.30792 C -136.76693,411.30793 -136.67578,411.26886 -136.51953,411.19073 C -136.24609,411.19074 -135.97917,411.19074 -135.71875,411.19073 C -135.45833,411.19074 -135.19141,411.19074 -134.91797,411.19073 C -134.52735,411.1647 -134.14323,411.13865 -133.76562,411.11261 C -133.375,411.08657 -132.96485,411.05402 -132.53516,411.01495 C -132.45704,410.98891 -132.3724,410.96287 -132.28125,410.93682 C -132.17709,410.89777 -132.06641,410.85871 -131.94922,410.81964 C -131.63672,410.35089 -131.37631,409.9798 -131.16797,409.70636 C -130.9336,409.55011 -130.73829,409.4134 -130.58203,409.2962 C -130.38673,408.97069 -130.26954,408.76887 -130.23047,408.69073 C -129.86589,408.4173 -129.58594,408.20246 -129.39062,408.0462 C -128.32292,406.88736 -127.37892,405.83918 -126.55859,404.90167 C -125.88152,404.08137 -125.19142,403.25455 -124.48828,402.4212 C -123.77215,401.57486 -123.056,400.722 -122.33984,399.86261 C -122.3008,399.7845 -122.2422,399.62825 -122.16406,399.39386 C -122.11199,399.34179 -122.04689,399.2832 -121.96875,399.21807 C -121.87762,399.13997 -121.78647,399.05533 -121.69531,398.96417 C -121.53908,398.65169 -121.41538,398.41731 -121.32422,398.26104 C -121.0508,398.26106 -120.64064,398.222 -120.09375,398.14386 C -120.09377,398.18294 -120.0547,398.24153 -119.97656,398.31964 C -119.95054,398.31966 -119.91148,398.31966 -119.85938,398.31964 C -119.80731,398.31966 -119.74871,398.31966 -119.68359,398.31964 C -119.68361,398.39778 -119.66408,398.45638 -119.625,398.49542 C -119.62502,398.57356 -119.64455,398.65169 -119.68359,398.72979 C -119.74871,398.79492 -119.82684,398.86002 -119.91797,398.92511 C -119.99611,398.99023 -120.07424,399.06184 -120.15234,399.13995 C -120.15236,399.23111 -120.17189,399.29622 -120.21094,399.33526 C -120.40627,399.49153 -120.69923,399.76497 -121.08984,400.15557 C -121.51955,400.6634 -121.94272,401.18424 -122.35938,401.71807 C -122.76303,402.23892 -123.17319,402.76627 -123.58984,403.30011 C -123.91538,403.62564 -124.24741,403.95767 -124.58594,404.2962 C -124.91147,404.62173 -125.23048,404.96028 -125.54297,405.31182 C -126.07683,405.98892 -126.63022,406.63996 -127.20312,407.26495 C -127.47657,407.5384 -127.75001,407.81183 -128.02344,408.08526 C -128.28386,408.34569 -128.54428,408.6061 -128.80469,408.86651 C -128.8047,408.94465 -128.82423,409.00975 -128.86328,409.06182 C -128.94141,409.06183 -129.00001,409.07485 -129.03906,409.10089 C -129.1172,409.2311 -129.23438,409.4134 -129.39062,409.64776 C -129.45574,409.71287 -129.52735,409.77798 -129.60547,409.84307 C -129.67058,409.90819 -129.74219,409.9798 -129.82031,410.05792 C -129.85938,410.12303 -129.89193,410.18813 -129.91797,410.25323 C -129.94402,410.30532 -129.97006,410.35741 -129.99609,410.40948 C -129.83985,410.40949 -129.72266,410.42902 -129.64453,410.46807 C -129.22787,410.416 -128.8047,410.35089 -128.375,410.27276 C -127.9323,410.18162 -127.48308,410.09048 -127.02734,409.99932 C -126.94923,409.99933 -126.83204,410.0384 -126.67578,410.11651 C -126.67579,410.19464 -126.65626,410.25324 -126.61719,410.29229 C -126.65626,410.37043 -126.71485,410.52668 -126.79297,410.76104 C -126.88412,410.83918 -126.98829,410.91079 -127.10547,410.97589 C -127.20964,411.041 -127.32032,411.11261 -127.4375,411.19073 C -127.89324,411.32095 -128.32944,411.43813 -128.74609,411.54229 C -128.90235,411.62042 -129.03907,411.69855 -129.15625,411.77667 C -129.31251,411.77667 -129.45574,411.79621 -129.58594,411.83526 C -129.65105,411.83527 -129.72917,411.81574 -129.82031,411.77667 C -130.28907,411.77667 -130.64063,411.79621 -130.875,411.83526 C -131.10938,411.91339 -131.29167,411.99152 -131.42188,412.06964 C -132.00782,412.86391 -132.71745,413.81443 -133.55078,414.9212 C -133.70703,415.32485 -133.92188,415.83917 -134.19531,416.46417 C -134.15625,416.58136 -134.09766,416.7962 -134.01953,417.1087 C -134.01953,417.1087 -133.94141,417.14776 -133.78516,417.22589 C -133.66797,417.22589 -133.54427,417.22589 -133.41406,417.22589 C -133.27084,417.22589 -133.1211,417.22589 -132.96484,417.22589 C -132.79558,417.18683 -132.51563,417.12823 -132.125,417.05011 C -132.09896,417.02407 -132.0599,416.99802 -132.00781,416.97198 C -131.95573,416.93292 -131.89714,416.88084 -131.83203,416.81573 C -131.63672,416.55532 -131.41537,416.28188 -131.16797,415.99542 C -131.12891,415.99542 -130.99219,415.95636 -130.75781,415.87823 C -130.75782,415.87823 -130.67969,415.9173 -130.52344,415.99542 C -130.44532,416.15167 -130.38673,416.28839 -130.34766,416.40557 C -130.50391,416.58787 -130.65365,416.77016 -130.79688,416.95245 C -130.94011,417.12172 -131.08334,417.29099 -131.22656,417.46026 C -131.48698,417.64255 -131.66928,417.78578 -131.77344,417.88995 C -132.32032,418.12432 -132.75,418.31964 -133.0625,418.47589 C -133.60938,418.55401 -134.02604,418.62563 -134.3125,418.69073 M -127.78906,419.64776 C -128.33594,419.49151 -128.75912,419.34828 -129.05859,419.21807 C -129.41016,419.07484 -129.70312,418.93813 -129.9375,418.80792 C -130.01562,418.72979 -130.07422,418.65818 -130.11328,418.59307 C -130.1263,418.43682 -130.22396,417.99412 -130.40625,417.26495 C -130.36719,417.09568 -130.33463,416.9199 -130.30859,416.73761 C -130.28255,416.55532 -130.25651,416.37302 -130.23047,416.19073 C -129.94401,415.68292 -129.6901,415.25974 -129.46875,414.9212 C -129.41667,414.86912 -129.35807,414.81053 -129.29297,414.74542 C -129.22786,414.68032 -129.14974,414.60219 -129.05859,414.51104 C -128.95443,414.3548 -128.83073,414.13344 -128.6875,413.84698 C -128.33594,413.45636 -127.97136,413.06574 -127.59375,412.67511 C -127.20313,412.28449 -126.8125,411.87433 -126.42188,411.44464 C -126.1224,411.28839 -125.69922,411.00845 -125.15234,410.60479 C -125.00912,410.55272 -124.86589,410.48761 -124.72266,410.40948 C -124.56641,410.31834 -124.39063,410.2272 -124.19531,410.13604 C -123.96094,410.05793 -123.75912,409.99933 -123.58984,409.96026 C -123.27735,409.96027 -123.04298,409.94074 -122.88672,409.90167 C -122.67839,409.99282 -122.45704,410.08397 -122.22266,410.17511 C -121.97527,410.26626 -121.73438,410.37043 -121.5,410.48761 C -121.47397,410.5397 -121.41537,410.70246 -121.32422,410.97589 C -121.32423,411.23631 -121.27865,411.53579 -121.1875,411.87432 C -121.29167,412.08266 -121.38933,412.30402 -121.48047,412.53839 C -121.57162,412.77277 -121.67579,413.00714 -121.79297,413.24151 C -122.32683,413.68422 -122.97136,414.166 -123.72656,414.68682 C -123.88282,414.75193 -124.04558,414.81704 -124.21484,414.88214 C -124.38412,414.94724 -124.5599,415.02537 -124.74219,415.11651 C -125.01563,415.15558 -125.28907,415.20115 -125.5625,415.25323 C -125.83594,415.30532 -126.1224,415.3574 -126.42188,415.40948 C -126.73438,415.40948 -126.96875,415.38995 -127.125,415.35089 C -127.15104,415.32485 -127.25521,415.26625 -127.4375,415.17511 C -127.51563,415.09698 -127.57422,415.01235 -127.61328,414.9212 C -127.67839,414.89516 -127.74349,414.86912 -127.80859,414.84307 C -127.86068,414.81704 -127.91276,414.78448 -127.96484,414.74542 C -128.04297,414.83657 -128.11458,414.93422 -128.17969,415.03839 C -128.24479,415.12954 -128.31641,415.2337 -128.39453,415.35089 C -128.39453,415.42901 -128.41406,415.50714 -128.45312,415.58526 C -128.45313,415.89776 -128.41406,416.45766 -128.33594,417.26495 C -128.25781,417.33005 -128.16667,417.40818 -128.0625,417.49932 C -127.95834,417.59047 -127.84766,417.67511 -127.73047,417.75323 C -127.22266,417.9225 -126.86459,418.05922 -126.65625,418.16339 C -125.84896,418.16339 -125.25,418.18292 -124.85938,418.22198 C -124.41667,418.14386 -123.97396,418.05922 -123.53125,417.96807 C -123.07553,417.87693 -122.6198,417.78578 -122.16406,417.69464 C -122.09897,417.69464 -122.04037,417.69464 -121.98828,417.69464 C -121.92318,417.69464 -121.85808,417.69464 -121.79297,417.69464 C -121.79298,417.7337 -121.79298,417.77276 -121.79297,417.81182 C -121.79298,417.83787 -121.79298,417.87693 -121.79297,417.92901 C -122.1836,418.15037 -122.48308,418.35219 -122.69141,418.53448 C -123.17318,418.63865 -123.45313,418.71026 -123.53125,418.74932 C -123.81771,418.74932 -124.03907,418.76886 -124.19531,418.80792 C -124.53386,418.9251 -124.87891,419.05531 -125.23047,419.19854 C -125.58204,419.34177 -125.9336,419.49151 -126.28516,419.64776 C -126.61068,419.64776 -126.85157,419.62823 -127.00781,419.58917 C -127.33334,419.58917 -127.59375,419.6087 -127.78906,419.64776 M -125.44531,414.02276 C -125.36719,414.02277 -125.28256,414.02277 -125.19141,414.02276 C -125.10026,414.02277 -125.00912,414.02277 -124.91797,414.02276 C -124.65756,413.97068 -124.39714,413.91209 -124.13672,413.84698 C -123.61589,413.50844 -123.27735,413.26756 -123.12109,413.12432 C -123.02995,412.90298 -122.88673,412.50584 -122.69141,411.93292 C -122.76954,411.5423 -122.8086,411.26235 -122.80859,411.09307 C -123.22527,411.01496 -123.50521,410.97589 -123.64844,410.97589 C -123.81771,411.01496 -124.03907,411.03449 -124.3125,411.03448 C -124.39063,411.11261 -124.42969,411.17121 -124.42969,411.21026 C -124.5599,411.27537 -124.6836,411.33397 -124.80078,411.38604 C -124.91797,411.43813 -125.01563,411.48371 -125.09375,411.52276 C -125.15886,411.58787 -125.21094,411.64647 -125.25,411.69854 C -125.27605,411.75063 -125.30209,411.7897 -125.32812,411.81573 C -125.39323,411.8548 -125.45834,411.88735 -125.52344,411.91339 C -125.58855,411.93943 -125.64714,411.96548 -125.69922,411.99151 C -125.77735,412.14777 -125.81641,412.24542 -125.81641,412.28448 C -125.73829,412.44074 -125.69922,412.5449 -125.69922,412.59698 C -125.85547,412.67511 -125.9336,412.71417 -125.93359,412.71417 C -125.97266,412.75324 -125.99219,412.81183 -125.99219,412.88995 C -125.94011,413.07225 -125.88802,413.25454 -125.83594,413.43682 C -125.77084,413.61912 -125.70573,413.7949 -125.64062,413.96417 C -125.60157,414.00323 -125.53646,414.02277 -125.44531,414.02276 M -126.16797,412.53839 C -126.14193,412.57746 -126.11589,412.59699 -126.08984,412.59698 C -126.06381,412.59699 -126.05078,412.59699 -126.05078,412.59698 C -126.02474,412.57094 -126.01172,412.5449 -126.01172,412.51886 C -125.9987,412.4798 -125.99219,412.46027 -125.99219,412.46026 C -126.03125,412.51235 -126.08985,412.53839 -126.16797,412.53839 M -105.17188,420.40948 C -105.40625,420.33135 -105.59505,420.25974 -105.73828,420.19464 C -105.97266,419.96026 -106.05729,419.88214 -105.99219,419.96026 C -106.03125,419.89516 -106.08984,419.78448 -106.16797,419.62823 C -106.19401,419.58917 -106.22656,419.55661 -106.26562,419.53057 C -106.31771,419.50453 -106.3763,419.46547 -106.44141,419.41339 C -106.51953,419.25714 -106.59115,419.14646 -106.65625,419.08136 C -106.69531,418.96417 -106.75391,418.80141 -106.83203,418.59307 C -106.83203,418.25453 -106.85156,417.99412 -106.89062,417.81182 C -106.79948,417.72068 -106.74088,417.64906 -106.71484,417.59698 C -106.67578,417.47979 -106.6237,417.29099 -106.55859,417.03057 C -106.51953,417.00453 -106.47396,416.97849 -106.42188,416.95245 C -106.36979,416.92641 -106.31771,416.88084 -106.26562,416.81573 C -106.08333,416.81573 -105.9401,416.83526 -105.83594,416.87432 C -105.83594,417.01755 -105.82292,417.12823 -105.79688,417.20636 C -105.79688,417.38865 -105.8099,417.53839 -105.83594,417.65557 C -105.83594,417.90297 -105.80339,418.17641 -105.73828,418.47589 C -105.54297,418.7363 -105.41276,418.89906 -105.34766,418.96417 C -105.23047,419.02927 -104.98958,419.13995 -104.625,419.2962 C -104.26042,419.21807 -103.98047,419.15948 -103.78516,419.12042 C -103.57683,418.99021 -103.41406,418.86651 -103.29688,418.74932 C -103.19271,418.64516 -103.08203,418.50193 -102.96484,418.31964 C -102.92578,418.20245 -102.86719,418.00063 -102.78906,417.71417 C -102.78907,417.2975 -102.76953,416.97849 -102.73047,416.75714 C -102.76953,416.62693 -102.81511,416.4837 -102.86719,416.32745 C -102.91927,416.15818 -102.96485,415.98891 -103.00391,415.81964 C -103.08203,415.74151 -103.16016,415.68292 -103.23828,415.64386 C -103.27735,415.44855 -103.32292,415.24672 -103.375,415.03839 C -103.42709,414.81704 -103.47266,414.59568 -103.51172,414.37432 C -103.51172,414.03579 -103.53125,413.77537 -103.57031,413.59307 C -103.46615,413.37173 -103.36198,413.15037 -103.25781,412.92901 C -103.14063,412.70766 -103.02344,412.48631 -102.90625,412.26495 C -102.82813,412.26496 -102.76953,412.24542 -102.73047,412.20636 C -102.73047,412.12824 -102.71094,412.05011 -102.67188,411.97198 C -102.59375,411.89386 -102.51563,411.81574 -102.4375,411.73761 C -102.34636,411.64647 -102.26172,411.56183 -102.18359,411.4837 C -101.98829,411.3535 -101.79297,411.21678 -101.59766,411.07354 C -101.40235,410.93032 -101.1875,410.78709 -100.95312,410.64386 C -100.53646,410.46157 -100.26303,410.33136 -100.13281,410.25323 C -99.781256,410.18813 -99.501308,410.11652 -99.292969,410.03839 C -99.162767,410.07746 -99.013028,410.11001 -98.84375,410.13604 C -98.674486,410.16209 -98.505216,410.20116 -98.335938,410.25323 C -98.270841,410.2923 -98.160164,410.35089 -98.003906,410.42901 C -97.977872,410.53319 -97.886727,410.67642 -97.730469,410.8587 C -97.769539,410.89777 -97.808602,410.93683 -97.847656,410.97589 C -97.873706,411.00194 -97.912768,411.041 -97.964844,411.09307 C -98.563809,411.28839 -99.0586,411.47069 -99.449219,411.63995 C -99.605475,411.71808 -99.716152,411.79621 -99.78125,411.87432 C -99.807298,411.87433 -100.04818,411.90688 -100.50391,411.97198 C -100.56902,411.97199 -100.66667,411.93943 -100.79688,411.87432 C -100.79688,411.79621 -100.77735,411.71808 -100.73828,411.63995 C -100.80339,411.63996 -100.85547,411.62042 -100.89453,411.58136 C -101.01172,411.69855 -101.12891,411.81574 -101.24609,411.93292 C -101.35026,412.03709 -101.46094,412.14777 -101.57812,412.26495 C -101.59115,412.31704 -101.6823,412.55792 -101.85156,412.98761 C -101.85157,413.46938 -101.83204,413.84047 -101.79297,414.10089 C -101.68881,414.30922 -101.51954,414.68032 -101.28516,415.21417 C -101.28516,415.69594 -101.25261,416.24933 -101.1875,416.87432 C -101.1875,416.90037 -101.22006,417.14125 -101.28516,417.59698 C -101.42839,417.87042 -101.53907,418.1113 -101.61719,418.31964 C -101.73438,418.47589 -101.86459,418.63865 -102.00781,418.80792 C -102.13802,418.97719 -102.26823,419.15948 -102.39844,419.35479 C -102.41146,419.35479 -102.61328,419.46547 -103.00391,419.68682 C -103.08203,419.76495 -103.16016,419.83656 -103.23828,419.90167 C -103.26433,419.90167 -103.39453,419.94073 -103.62891,420.01886 C -103.75912,420.07094 -103.86979,420.14255 -103.96094,420.2337 C -104.07813,420.25974 -104.19531,420.28578 -104.3125,420.31182 C -104.41667,420.33786 -104.52083,420.37042 -104.625,420.40948 C -104.71615,420.40948 -104.80729,420.40948 -104.89844,420.40948 C -104.97656,420.40948 -105.06771,420.40948 -105.17188,420.40948 M -99.78125,418.9837 C -99.859375,418.94464 -99.9375,418.91208 -100.01562,418.88604 C -100.10677,418.87302 -100.19141,418.85349 -100.26953,418.82745 C -100.24349,418.76234 -100.21745,418.69724 -100.19141,418.63214 C -100.16536,418.56703 -100.13932,418.48891 -100.11328,418.39776 C -100.1263,418.41078 -100.05469,418.31964 -99.898438,418.12432 C -99.898437,418.02016 -99.878906,417.92901 -99.839844,417.85089 C -99.631511,417.4863 -99.46875,417.21287 -99.351562,417.03057 C -99.169271,416.60089 -98.915365,416.06703 -98.589844,415.42901 C -98.51172,415.15558 -98.420574,414.88214 -98.316406,414.6087 C -98.212241,414.33527 -98.101564,414.06183 -97.984375,413.78839 C -97.984377,413.59308 -97.984377,413.39777 -97.984375,413.20245 C -97.984377,413.00714 -97.984377,412.81183 -97.984375,412.61651 C -98.205731,412.61652 -98.368491,412.63605 -98.472656,412.67511 C -98.472658,412.67511 -98.485678,412.68813 -98.511719,412.71417 C -98.537762,412.74022 -98.563803,412.76626 -98.589844,412.79229 C -98.707032,412.7923 -99.039063,412.82485 -99.585938,412.88995 C -99.585938,412.88995 -99.592448,412.88344 -99.605469,412.87042 C -99.605469,412.8574 -99.611979,412.83136 -99.625,412.79229 C -99.572917,412.70115 -99.449219,412.51886 -99.253906,412.24542 C -99.188803,412.21938 -98.947918,412.06964 -98.53125,411.7962 C -98.50521,411.77016 -98.472658,411.73761 -98.433594,411.69854 C -98.381512,411.64647 -98.322918,411.58787 -98.257812,411.52276 C -98.023439,411.47069 -97.750002,411.37954 -97.4375,411.24932 C -97.281252,411.24933 -97.105471,411.24933 -96.910156,411.24932 C -96.714847,411.24933 -96.519535,411.24933 -96.324219,411.24932 C -96.298181,411.24933 -96.246097,411.28839 -96.167969,411.36651 C -96.167972,411.43162 -96.12891,411.5423 -96.050781,411.69854 C -96.050785,411.84178 -96.050785,411.98501 -96.050781,412.12823 C -96.050785,412.25844 -96.050785,412.38865 -96.050781,412.51886 C -96.141931,412.90949 -96.233076,413.30011 -96.324219,413.69073 C -96.402347,414.06834 -96.500003,414.44594 -96.617188,414.82354 C -96.695316,414.94073 -96.76693,415.03188 -96.832031,415.09698 C -96.962242,415.46157 -97.033857,415.66339 -97.046875,415.70245 C -97.046878,415.71547 -97.007815,415.78709 -96.929688,415.91729 C -96.630211,415.81313 -96.356774,415.68943 -96.109375,415.5462 C -95.731775,415.27276 -95.34115,414.99282 -94.9375,414.70636 C -94.520839,414.40688 -94.104172,414.10089 -93.6875,413.78839 C -93.479173,413.6712 -93.251309,413.56053 -93.003906,413.45636 C -92.756517,413.33917 -92.509122,413.20896 -92.261719,413.06573 C -92.261726,413.06574 -92.261726,413.05923 -92.261719,413.0462 C -92.261726,413.02016 -92.242195,412.98761 -92.203125,412.94854 C -91.994799,412.84438 -91.766935,412.74022 -91.519531,412.63604 C -91.272144,412.51886 -91.024748,412.38865 -90.777344,412.24542 C -90.699228,412.19334 -90.516936,412.06313 -90.230469,411.85479 C -89.983083,411.77667 -89.735687,411.68553 -89.488281,411.58136 C -89.240896,411.4772 -88.9935,411.36652 -88.746094,411.24932 C -88.394543,411.08006 -87.912772,410.81964 -87.300781,410.46807 C -86.975273,410.36392 -86.649753,410.24673 -86.324219,410.11651 C -85.998712,409.98631 -85.666681,409.84959 -85.328125,409.70636 C -85.223973,409.74543 -85.119806,409.77798 -85.015625,409.80401 C -84.898452,409.83006 -84.781265,409.8561 -84.664062,409.88214 C -84.664078,409.90819 -84.625015,409.96027 -84.546875,410.03839 C -84.585953,410.09048 -84.631526,410.14907 -84.683594,410.21417 C -84.735692,410.27928 -84.781265,410.35089 -84.820312,410.42901 C -85.01564,410.42902 -85.165379,410.44204 -85.269531,410.46807 C -85.269546,410.46808 -85.276056,410.4811 -85.289062,410.50714 C -85.289077,410.53319 -85.302098,410.55923 -85.328125,410.58526 C -85.770847,410.66339 -86.115899,410.72199 -86.363281,410.76104 C -86.532565,410.82615 -86.682305,410.89777 -86.8125,410.97589 C -86.955742,410.97589 -87.066419,410.99543 -87.144531,411.03448 C -87.951835,411.4772 -88.576834,411.82225 -89.019531,412.06964 C -89.162771,412.06964 -89.266938,412.08917 -89.332031,412.12823 C -89.696625,412.33657 -90.119801,412.59048 -90.601562,412.88995 C -90.953134,413.07225 -91.194019,413.18292 -91.324219,413.22198 C -91.36329,413.26105 -91.565112,413.43032 -91.929688,413.72979 C -92.046883,413.78188 -92.16407,413.84047 -92.28125,413.90557 C -92.398445,413.95766 -92.522143,414.00975 -92.652344,414.06182 C -92.834642,414.20506 -93.147142,414.45896 -93.589844,414.82354 C -93.654954,414.82355 -93.726569,414.84308 -93.804688,414.88214 C -93.986985,415.02537 -94.299485,415.27928 -94.742188,415.64386 C -95.419275,416.08657 -96.13542,416.56834 -96.890625,417.08917 C -96.955732,417.15427 -97.007815,417.22589 -97.046875,417.30401 C -97.190107,417.38214 -97.333336,417.47979 -97.476562,417.59698 C -97.619794,417.70115 -97.769533,417.80531 -97.925781,417.90948 C -98.003908,417.98761 -98.062502,418.05922 -98.101562,418.12432 C -98.166668,418.12432 -98.218752,418.14386 -98.257812,418.18292 C -98.335939,418.26104 -98.394533,418.33266 -98.433594,418.39776 C -98.641928,418.47589 -98.804688,418.53448 -98.921875,418.57354 C -99.182292,418.70375 -99.384115,418.82094 -99.527344,418.92511 C -99.631511,418.9251 -99.716146,418.94464 -99.78125,418.9837 M -88.765625,418.59307 C -88.960938,418.59307 -89.130209,418.57354 -89.273438,418.53448 C -89.3125,418.49542 -89.364584,418.45636 -89.429688,418.41729 C -89.494792,418.37823 -89.559896,418.31964 -89.625,418.24151 C -89.807292,417.95505 -89.94401,417.74672 -90.035156,417.61651 C -90.035156,417.40818 -90.015625,417.18031 -89.976562,416.93292 C -89.950521,416.68552 -89.924479,416.43813 -89.898438,416.19073 C -89.585938,415.37042 -89.279948,414.63474 -88.980469,413.9837 C -88.928386,413.93162 -88.811199,413.86652 -88.628906,413.78839 C -88.459637,413.61912 -88.283856,413.43032 -88.101562,413.22198 C -87.919273,413.01365 -87.71745,412.79881 -87.496094,412.57745 C -87.326825,412.43423 -87.151044,412.291 -86.96875,412.14776 C -86.786461,412.00454 -86.584639,411.84178 -86.363281,411.65948 C -86.050785,411.50324 -85.744796,411.33397 -85.445312,411.15167 C -84.976567,410.96938 -84.598964,410.83267 -84.3125,410.74151 C -83.361986,410.74152 -82.652351,410.71548 -82.183594,410.66339 C -82.170581,410.66339 -82.053393,410.70897 -81.832031,410.80011 C -81.766935,410.80011 -81.68881,410.80011 -81.597656,410.80011 C -81.493498,410.80011 -81.382821,410.80011 -81.265625,410.80011 C -80.953134,410.94334 -80.601572,411.13214 -80.210938,411.36651 C -80.145843,411.4186 -79.930999,411.6074 -79.566406,411.93292 C -79.527354,412.08917 -79.494802,412.23891 -79.46875,412.38214 C -79.429698,412.51235 -79.390635,412.64907 -79.351562,412.79229 C -79.351573,412.97459 -79.377615,413.13735 -79.429688,413.28057 C -79.429698,413.28058 -79.429698,413.30011 -79.429688,413.33917 C -79.416677,413.36521 -79.390635,413.39777 -79.351562,413.43682 C -79.494802,413.72329 -79.657562,414.00323 -79.839844,414.27667 C -79.917979,414.3548 -79.996104,414.44594 -80.074219,414.55011 C -80.152353,414.64126 -80.243499,414.73891 -80.347656,414.84307 C -80.386728,414.9212 -80.425791,414.99933 -80.464844,415.07745 C -80.490895,415.14256 -80.523447,415.20766 -80.5625,415.27276 C -80.679697,415.35089 -80.803394,415.42901 -80.933594,415.50714 C -81.063811,415.57224 -81.200529,415.65688 -81.34375,415.76104 C -81.486987,415.94334 -81.558602,416.04099 -81.558594,416.05401 C -81.910164,416.26235 -82.281257,416.49021 -82.671875,416.73761 C -83.049486,416.985 -83.4336,417.22589 -83.824219,417.46026 C -84.22787,417.59047 -84.722661,417.77927 -85.308594,418.02667 C -85.49089,418.06573 -85.673181,418.10479 -85.855469,418.14386 C -86.024743,418.1699 -86.194014,418.20245 -86.363281,418.24151 C -86.649743,418.41078 -86.812503,418.50844 -86.851562,418.53448 C -87.71094,418.53448 -88.34896,418.55401 -88.765625,418.59307 M -87.007812,417.32354 C -86.864586,417.27146 -86.675784,417.24542 -86.441406,417.24542 C -86.089847,417.11521 -85.738285,416.97849 -85.386719,416.83526 C -85.02214,416.69203 -84.664068,416.54881 -84.3125,416.40557 C -84.169276,416.30141 -84.045579,416.20375 -83.941406,416.11261 C -83.837246,416.00844 -83.726569,415.9173 -83.609375,415.83917 C -83.505215,415.80011 -83.401048,415.76756 -83.296875,415.74151 C -83.192715,415.70245 -83.082038,415.66339 -82.964844,415.62432 C -82.912767,415.57224 -82.886726,415.50063 -82.886719,415.40948 C -82.691413,415.27928 -82.528653,415.18813 -82.398438,415.13604 C -82.32032,414.90167 -82.248705,414.7324 -82.183594,414.62823 C -82.00131,414.48501 -81.766935,414.32224 -81.480469,414.13995 C -81.441415,413.99672 -81.408863,413.86001 -81.382812,413.72979 C -81.343758,413.58657 -81.304696,413.43683 -81.265625,413.28057 C -81.434904,413.00714 -81.597664,412.70115 -81.753906,412.36261 C -81.936206,412.27147 -82.059904,412.22589 -82.125,412.22589 C -82.437507,412.18683 -82.743497,412.15428 -83.042969,412.12823 C -83.329434,412.08917 -83.609381,412.05011 -83.882812,412.01104 C -83.986985,412.11522 -84.130214,412.20636 -84.3125,412.28448 C -84.429693,412.57094 -84.572922,412.88344 -84.742188,413.22198 C -84.976567,413.26105 -85.308598,413.28058 -85.738281,413.28057 C -85.959639,413.18943 -86.096358,413.14386 -86.148438,413.14386 C -86.343753,413.22199 -86.513024,413.2936 -86.65625,413.3587 C -86.877607,413.76235 -87.08594,414.09438 -87.28125,414.35479 C -87.385419,414.51105 -87.55469,414.86261 -87.789062,415.40948 C -87.88021,416.08657 -87.925783,416.46417 -87.925781,416.54229 C -87.860679,416.65948 -87.808596,416.77016 -87.769531,416.87432 C -87.71745,416.96547 -87.671877,417.0436 -87.632812,417.1087 C -87.541669,417.14776 -87.444013,417.18683 -87.339844,417.22589 C -87.23568,417.25193 -87.125003,417.28448 -87.007812,417.32354 M -80.777344,415.62432 C -80.777353,415.62433 -80.764332,415.62433 -80.738281,415.62432 C -80.699228,415.62433 -80.660165,415.62433 -80.621094,415.62432 C -80.621103,415.62433 -80.640634,415.62433 -80.679688,415.62432 C -80.705738,415.62433 -80.73829,415.62433 -80.777344,415.62432 M -78.589844,420.09698 C -78.694012,420.05792 -78.798178,420.01885 -78.902344,419.97979 C -78.99349,419.95375 -79.091147,419.9212 -79.195312,419.88214 C -79.234376,419.84307 -79.286459,419.79099 -79.351562,419.72589 C -79.403646,419.6738 -79.46224,419.61521 -79.527344,419.55011 C -79.527344,418.97719 -79.507813,418.53448 -79.46875,418.22198 C -79.46875,418.27406 -79.423178,418.18943 -79.332031,417.96807 C -79.214844,417.96807 -78.941407,417.9225 -78.511719,417.83136 C -78.446616,417.97459 -78.388022,418.12432 -78.335938,418.28057 C -78.270835,418.43682 -78.19922,418.59307 -78.121094,418.74932 C -77.951825,418.74932 -77.750002,418.7949 -77.515625,418.88604 C -76.968753,418.88604 -76.539066,418.86 -76.226562,418.80792 C -75.875004,418.70375 -75.4974,418.60609 -75.09375,418.51495 C -74.690109,418.4238 -74.286464,418.30662 -73.882812,418.16339 C -73.856777,418.13735 -73.824225,418.10479 -73.785156,418.06573 C -73.7461,418.02667 -73.687506,417.96807 -73.609375,417.88995 C -73.414069,417.49933 -73.283861,417.21287 -73.21875,417.03057 C -73.218757,416.84828 -73.238288,416.68552 -73.277344,416.54229 C -73.27735,416.32094 -73.257819,416.14516 -73.21875,416.01495 C -73.27084,415.68943 -73.381517,415.17511 -73.550781,414.47198 C -73.628912,414.34178 -73.713548,414.20506 -73.804688,414.06182 C -73.895839,413.9186 -73.986985,413.76235 -74.078125,413.59307 C -74.195318,413.50193 -74.305995,413.40428 -74.410156,413.30011 C -74.514328,413.19594 -74.631516,413.09178 -74.761719,412.98761 C -74.930995,412.98761 -75.087244,412.96808 -75.230469,412.92901 C -75.373702,413.05923 -75.529952,413.19594 -75.699219,413.33917 C -75.855473,413.4824 -76.011723,413.63214 -76.167969,413.78839 C -76.167972,413.87954 -76.187504,413.95115 -76.226562,414.00323 C -76.773441,414.52407 -77.313805,415.08396 -77.847656,415.68292 C -78.121095,416.06052 -78.407554,416.45115 -78.707031,416.85479 C -78.99349,417.24542 -79.286459,417.63604 -79.585938,418.02667 C -79.729167,418.11781 -79.924479,418.30011 -80.171875,418.57354 C -80.341145,418.58656 -80.523437,418.60609 -80.71875,418.63214 C -80.914061,418.6712 -81.115884,418.71026 -81.324219,418.74932 C -81.428384,418.69724 -81.584634,418.61261 -81.792969,418.49542 C -81.597655,418.11781 -81.376301,417.69464 -81.128906,417.22589 C -81.076822,417.1738 -80.959634,417.1087 -80.777344,417.03057 C -79.748698,415.67641 -78.772137,414.4199 -77.847656,413.26104 C -77.71745,413.03969 -77.470054,412.65558 -77.105469,412.1087 C -77.053388,412.10871 -76.988284,412.06313 -76.910156,411.97198 C -76.779951,411.77667 -76.643232,411.56834 -76.5,411.34698 C -76.356774,411.11261 -76.200524,410.87824 -76.03125,410.64386 C -75.96615,410.57876 -75.901046,410.50063 -75.835938,410.40948 C -75.757817,410.30532 -75.666671,410.20116 -75.5625,410.09698 C -74.989588,409.23761 -74.416672,408.35871 -73.84375,407.46026 C -73.27084,406.54882 -72.678393,405.63736 -72.066406,404.72589 C -72.066414,404.7259 -71.975268,404.63475 -71.792969,404.45245 C -71.480477,403.80142 -71.194019,403.26106 -70.933594,402.83136 C -70.660165,402.37564 -70.341155,401.90689 -69.976562,401.42511 C -69.898447,401.16471 -69.833343,400.96288 -69.78125,400.81964 C -69.62501,400.55924 -69.46225,400.2858 -69.292969,399.99932 C -69.123709,399.69986 -68.947928,399.39387 -68.765625,399.08136 C -68.687511,398.89908 -68.557303,398.58658 -68.375,398.14386 C -68.244803,397.94856 -68.101574,397.74674 -67.945312,397.53839 C -67.776054,397.31705 -67.606783,397.08919 -67.4375,396.85479 C -67.437512,396.80273 -67.437512,396.74414 -67.4375,396.67901 C -67.437512,396.61393 -67.437512,396.54231 -67.4375,396.46417 C -67.098971,396.06054 -66.623711,395.52018 -66.011719,394.84307 C -65.907566,394.81706 -65.705743,394.70638 -65.40625,394.51104 C -65.184911,394.51107 -65.009129,394.49154 -64.878906,394.45245 C -64.813817,394.5306 -64.748713,394.60872 -64.683594,394.68682 C -64.605484,394.75195 -64.514338,394.83008 -64.410156,394.9212 C -64.449234,394.96029 -64.501317,394.99935 -64.566406,395.03839 C -64.618505,395.07747 -64.677099,395.12956 -64.742188,395.19464 C -64.885432,395.4681 -65.041681,395.74153 -65.210938,396.01495 C -65.367202,396.27539 -65.523452,396.55534 -65.679688,396.85479 C -65.718764,396.972 -65.757827,397.08268 -65.796875,397.18682 C -65.822931,397.27799 -65.855483,397.36914 -65.894531,397.46026 C -65.959649,397.53841 -66.031264,397.62304 -66.109375,397.71417 C -66.174493,397.80533 -66.259128,397.90299 -66.363281,398.00714 C -66.44142,398.18945 -66.617201,398.52799 -66.890625,399.02276 C -66.942721,399.02278 -67.007825,399.06184 -67.085938,399.13995 C -67.294283,399.58268 -67.515637,400.02538 -67.75,400.46807 C -67.971366,400.9108 -68.19923,401.347 -68.433594,401.77667 C -68.654959,401.94596 -68.765636,402.03059 -68.765625,402.03057 C -69.039073,402.5384 -69.325531,403.05272 -69.625,403.57354 C -69.924489,404.08137 -70.223968,404.6022 -70.523438,405.13604 C -71.135425,406.00845 -71.747404,406.90038 -72.359375,407.81182 C -72.95834,408.71027 -73.557298,409.60871 -74.15625,410.50714 C -74.156256,410.50714 -74.266933,410.7285 -74.488281,411.1712 C -74.292974,411.24933 -74.078131,411.32746 -73.84375,411.40557 C -73.609381,411.47069 -73.375006,411.54881 -73.140625,411.63995 C -73.049486,411.71808 -72.938809,411.79621 -72.808594,411.87432 C -72.678393,411.93943 -72.541674,412.01756 -72.398438,412.1087 C -72.294278,412.23891 -72.092456,412.48631 -71.792969,412.85089 C -71.727873,412.99412 -71.669279,413.15037 -71.617188,413.31964 C -71.552092,413.47589 -71.480477,413.63214 -71.402344,413.78839 C -71.36329,414.13995 -71.330738,414.49803 -71.304688,414.86261 C -71.265634,415.22719 -71.20704,415.58526 -71.128906,415.93682 C -71.180998,416.32745 -71.291675,416.86782 -71.460938,417.55792 C -71.643237,417.80531 -71.871102,418.09828 -72.144531,418.43682 C -72.977871,418.7363 -74.026048,419.17901 -75.289062,419.76495 C -75.914066,419.84307 -76.382816,419.92771 -76.695312,420.01886 C -77.502607,420.01885 -78.134116,420.0449 -78.589844,420.09698 M -69.3125,418.59307 C -69.507813,418.59307 -69.677084,418.57354 -69.820312,418.53448 C -69.859375,418.49542 -69.911459,418.45636 -69.976562,418.41729 C -70.041667,418.37823 -70.106771,418.31964 -70.171875,418.24151 C -70.354167,417.95505 -70.490885,417.74672 -70.582031,417.61651 C -70.582031,417.40818 -70.5625,417.18031 -70.523438,416.93292 C -70.497396,416.68552 -70.471354,416.43813 -70.445312,416.19073 C -70.132813,415.37042 -69.826823,414.63474 -69.527344,413.9837 C -69.475261,413.93162 -69.358074,413.86652 -69.175781,413.78839 C -69.006512,413.61912 -68.830731,413.43032 -68.648438,413.22198 C -68.466148,413.01365 -68.264325,412.79881 -68.042969,412.57745 C -67.8737,412.43423 -67.697919,412.291 -67.515625,412.14776 C -67.333336,412.00454 -67.131514,411.84178 -66.910156,411.65948 C -66.59766,411.50324 -66.291671,411.33397 -65.992188,411.15167 C -65.523442,410.96938 -65.145839,410.83267 -64.859375,410.74151 C -63.908861,410.74152 -63.199226,410.71548 -62.730469,410.66339 C -62.717456,410.66339 -62.600268,410.70897 -62.378906,410.80011 C -62.31381,410.80011 -62.235685,410.80011 -62.144531,410.80011 C -62.040373,410.80011 -61.929696,410.80011 -61.8125,410.80011 C -61.500009,410.94334 -61.148447,411.13214 -60.757812,411.36651 C -60.692718,411.4186 -60.477874,411.6074 -60.113281,411.93292 C -60.074229,412.08917 -60.041677,412.23891 -60.015625,412.38214 C -59.976573,412.51235 -59.93751,412.64907 -59.898438,412.79229 C -59.898448,412.97459 -59.92449,413.13735 -59.976562,413.28057 C -59.976573,413.28058 -59.976573,413.30011 -59.976562,413.33917 C -59.963552,413.36521 -59.93751,413.39777 -59.898438,413.43682 C -60.041677,413.72329 -60.204437,414.00323 -60.386719,414.27667 C -60.464854,414.3548 -60.542979,414.44594 -60.621094,414.55011 C -60.699228,414.64126 -60.790374,414.73891 -60.894531,414.84307 C -60.933603,414.9212 -60.972666,414.99933 -61.011719,415.07745 C -61.03777,415.14256 -61.070322,415.20766 -61.109375,415.27276 C -61.226572,415.35089 -61.350269,415.42901 -61.480469,415.50714 C -61.610686,415.57224 -61.747404,415.65688 -61.890625,415.76104 C -62.033862,415.94334 -62.105477,416.04099 -62.105469,416.05401 C -62.457039,416.26235 -62.828133,416.49021 -63.21875,416.73761 C -63.596361,416.985 -63.980475,417.22589 -64.371094,417.46026 C -64.774745,417.59047 -65.269536,417.77927 -65.855469,418.02667 C -66.037765,418.06573 -66.220056,418.10479 -66.402344,418.14386 C -66.571618,418.1699 -66.740889,418.20245 -66.910156,418.24151 C -67.196618,418.41078 -67.359378,418.50844 -67.398438,418.53448 C -68.257815,418.53448 -68.895835,418.55401 -69.3125,418.59307 M -67.554688,417.32354 C -67.411461,417.27146 -67.222659,417.24542 -66.988281,417.24542 C -66.636722,417.11521 -66.28516,416.97849 -65.933594,416.83526 C -65.569015,416.69203 -65.210943,416.54881 -64.859375,416.40557 C -64.716151,416.30141 -64.592454,416.20375 -64.488281,416.11261 C -64.384121,416.00844 -64.273444,415.9173 -64.15625,415.83917 C -64.05209,415.80011 -63.947923,415.76756 -63.84375,415.74151 C -63.73959,415.70245 -63.628913,415.66339 -63.511719,415.62432 C -63.459642,415.57224 -63.433601,415.50063 -63.433594,415.40948 C -63.238288,415.27928 -63.075528,415.18813 -62.945312,415.13604 C -62.867195,414.90167 -62.79558,414.7324 -62.730469,414.62823 C -62.548185,414.48501 -62.31381,414.32224 -62.027344,414.13995 C -61.98829,413.99672 -61.955738,413.86001 -61.929688,413.72979 C -61.890633,413.58657 -61.851571,413.43683 -61.8125,413.28057 C -61.981779,413.00714 -62.144539,412.70115 -62.300781,412.36261 C -62.483081,412.27147 -62.606779,412.22589 -62.671875,412.22589 C -62.984382,412.18683 -63.290372,412.15428 -63.589844,412.12823 C -63.876309,412.08917 -64.156256,412.05011 -64.429688,412.01104 C -64.53386,412.11522 -64.677089,412.20636 -64.859375,412.28448 C -64.976568,412.57094 -65.119797,412.88344 -65.289062,413.22198 C -65.523442,413.26105 -65.855473,413.28058 -66.285156,413.28057 C -66.506514,413.18943 -66.643233,413.14386 -66.695312,413.14386 C -66.890628,413.22199 -67.059899,413.2936 -67.203125,413.3587 C -67.424482,413.76235 -67.632815,414.09438 -67.828125,414.35479 C -67.932294,414.51105 -68.101565,414.86261 -68.335938,415.40948 C -68.427085,416.08657 -68.472658,416.46417 -68.472656,416.54229 C -68.407554,416.65948 -68.355471,416.77016 -68.316406,416.87432 C -68.264325,416.96547 -68.218752,417.0436 -68.179688,417.1087 C -68.088544,417.14776 -67.990888,417.18683 -67.886719,417.22589 C -67.782555,417.25193 -67.671878,417.28448 -67.554688,417.32354 M -61.324219,415.62432 C -61.324228,415.62433 -61.311207,415.62433 -61.285156,415.62432 C -61.246103,415.62433 -61.20704,415.62433 -61.167969,415.62432 C -61.167978,415.62433 -61.187509,415.62433 -61.226562,415.62432 C -61.252613,415.62433 -61.285165,415.62433 -61.324219,415.62432 M -52.75,419.70636 C -52.919278,419.66729 -53.095059,419.62823 -53.277344,419.58917 C -53.459642,419.5501 -53.648444,419.50453 -53.84375,419.45245 C -54.104173,419.27016 -54.319017,419.13995 -54.488281,419.06182 C -54.592454,418.95766 -54.709641,418.85349 -54.839844,418.74932 C -54.957037,418.65818 -55.074224,418.55401 -55.191406,418.43682 C -55.295578,418.28057 -55.33464,418.12432 -55.308594,417.96807 C -55.269536,417.7988 -55.295578,417.62953 -55.386719,417.46026 C -55.386724,416.97849 -55.360682,416.58787 -55.308594,416.28839 C -55.217453,416.06703 -55.100266,415.87172 -54.957031,415.70245 C -54.813808,415.53318 -54.677089,415.31834 -54.546875,415.05792 C -54.546881,414.96678 -54.345058,414.81704 -53.941406,414.6087 C -54.227871,414.80402 -54.520839,415.00584 -54.820312,415.21417 C -55.106776,415.40948 -55.393234,415.61782 -55.679688,415.83917 C -55.783859,415.90427 -55.972661,416.07355 -56.246094,416.34698 C -56.350264,416.42511 -56.467452,416.49672 -56.597656,416.56182 C -56.714847,416.62693 -56.832035,416.70506 -56.949219,416.7962 C -57.07943,416.7962 -57.255211,416.84177 -57.476562,416.93292 C -57.841148,417.15427 -58.055992,417.27797 -58.121094,417.30401 C -58.121096,417.39516 -58.140627,417.46026 -58.179688,417.49932 C -58.34896,417.57745 -58.524741,417.64906 -58.707031,417.71417 C -58.889324,417.76625 -59.078126,417.82485 -59.273438,417.88995 C -59.273439,417.88995 -59.286459,417.90297 -59.3125,417.92901 C -59.338543,417.95505 -59.371095,417.98761 -59.410156,418.02667 C -59.527345,418.02667 -59.716147,418.06573 -59.976562,418.14386 C -60.393229,418.14386 -60.731771,418.12432 -60.992188,418.08526 C -61.070312,417.95505 -61.20052,417.75974 -61.382812,417.49932 C -61.382812,417.46026 -61.337239,417.18031 -61.246094,416.65948 C -61.115885,416.38604 -60.972656,416.09308 -60.816406,415.78057 C -60.660156,415.45506 -60.510417,415.12954 -60.367188,414.80401 C -60.341146,414.77797 -60.302083,414.75193 -60.25,414.72589 C -60.184896,414.68683 -60.113282,414.62823 -60.035156,414.55011 C -59.787761,414.23761 -59.520834,413.90558 -59.234375,413.55401 C -58.947918,413.20245 -58.66146,412.84438 -58.375,412.47979 C -58.283856,412.4798 -58.218752,412.46027 -58.179688,412.4212 C -58.17969,412.42121 -58.134117,412.33657 -58.042969,412.16729 C -57.600263,411.8548 -57.157555,411.53579 -56.714844,411.21026 C -56.259119,410.87173 -55.80339,410.52668 -55.347656,410.17511 C -54.996099,410.08397 -54.644537,409.98631 -54.292969,409.88214 C -53.928392,409.77798 -53.550788,409.66079 -53.160156,409.53057 C -52.730476,409.53058 -52.385425,409.55011 -52.125,409.58917 C -51.708342,409.84959 -51.369801,410.06444 -51.109375,410.2337 C -51.018239,410.23371 -50.842457,410.19464 -50.582031,410.11651 C -50.464854,409.94725 -50.230479,409.68683 -49.878906,409.33526 C -49.60548,408.89256 -49.325532,408.44985 -49.039062,408.00714 C -48.739595,407.55142 -48.440116,407.09569 -48.140625,406.63995 C -47.8672,406.15819 -47.587252,405.67642 -47.300781,405.19464 C -47.001315,404.69986 -46.708347,404.19856 -46.421875,403.69073 C -46.356785,403.62564 -46.291681,403.54752 -46.226562,403.45636 C -46.148452,403.36522 -46.057306,403.26757 -45.953125,403.16339 C -45.835952,402.91601 -45.712254,402.6621 -45.582031,402.40167 C -45.438817,402.12825 -45.289078,401.8483 -45.132812,401.56182 C -45.01564,401.36653 -44.885432,401.16471 -44.742188,400.95636 C -44.598974,400.73502 -44.449235,400.50715 -44.292969,400.27276 C -44.175797,400.02538 -44.0521,399.75846 -43.921875,399.47198 C -43.778662,399.18554 -43.622413,398.89257 -43.453125,398.59307 C -43.244809,398.38476 -42.990903,398.08528 -42.691406,397.69464 C -42.483091,397.30403 -42.333351,397.05013 -42.242188,396.93292 C -42.085956,396.77669 -41.929706,396.62044 -41.773438,396.46417 C -41.604185,396.29492 -41.434915,396.12565 -41.265625,395.95636 C -41.187519,395.95638 -41.122415,395.93685 -41.070312,395.89776 C -41.070332,395.89778 -40.966165,395.74804 -40.757812,395.44854 C -40.627624,395.44857 -40.523457,395.42903 -40.445312,395.38995 C -40.354187,395.32487 -40.256531,395.25325 -40.152344,395.17511 C -40.048197,395.08398 -39.93101,394.98633 -39.800781,394.88214 C -39.29299,394.98633 -38.928407,395.07096 -38.707031,395.13604 C -38.707053,395.21419 -38.681011,395.27278 -38.628906,395.31182 C -38.628928,395.62435 -38.65497,395.86523 -38.707031,396.03448 C -38.82424,396.22982 -38.97398,396.41862 -39.15625,396.60089 C -39.156271,396.7832 -39.175802,396.91341 -39.214844,396.99151 C -39.345073,397.18685 -39.488302,397.39518 -39.644531,397.61651 C -39.800802,397.83789 -39.957052,398.05924 -40.113281,398.28057 C -40.113302,398.4108 -40.132833,398.51497 -40.171875,398.59307 C -40.263041,398.68424 -40.354187,398.74934 -40.445312,398.78839 C -40.523457,398.9707 -40.582051,399.12044 -40.621094,399.23761 C -40.72528,399.34179 -40.842467,399.45898 -40.972656,399.58917 C -41.089863,399.70637 -41.213561,399.83007 -41.34375,399.96026 C -41.343769,400.03841 -41.3633,400.12304 -41.402344,400.21417 C -41.584654,400.4746 -41.734394,400.6634 -41.851562,400.78057 C -41.929706,400.96288 -41.99481,401.11262 -42.046875,401.22979 C -42.658872,402.01106 -43.238298,402.76627 -43.785156,403.49542 C -43.850277,403.56054 -43.928402,403.63866 -44.019531,403.72979 C -44.110693,403.82095 -44.201839,403.9121 -44.292969,404.00323 C -44.37111,404.13345 -44.501318,404.32877 -44.683594,404.58917 C -44.761734,404.66731 -44.84637,404.7259 -44.9375,404.76495 C -44.937515,404.85611 -44.957047,404.94725 -44.996094,405.03839 C -45.295588,405.38996 -45.608088,405.75455 -45.933594,406.13214 C -46.246108,406.50975 -46.558608,406.89387 -46.871094,407.28448 C -46.871107,407.4147 -46.890639,407.51887 -46.929688,407.59698 C -47.059909,407.68814 -47.255221,407.86392 -47.515625,408.12432 C -47.854179,408.72329 -48.127616,409.19204 -48.335938,409.53057 C -48.531262,409.791 -48.733085,410.05793 -48.941406,410.33136 C -49.13673,410.59178 -49.345063,410.85871 -49.566406,411.13214 C -49.579438,411.13214 -49.644542,411.17772 -49.761719,411.26886 C -49.761729,411.36001 -49.781261,411.42511 -49.820312,411.46417 C -49.911469,411.46417 -49.976573,411.48371 -50.015625,411.52276 C -50.080739,411.62694 -50.145844,411.7311 -50.210938,411.83526 C -50.276052,411.93943 -50.341156,412.05011 -50.40625,412.16729 C -50.614593,412.37563 -50.71876,412.4798 -50.71875,412.47979 C -50.848968,412.76626 -50.914072,412.92251 -50.914062,412.94854 C -50.992197,413.01365 -51.063811,413.09178 -51.128906,413.18292 C -51.19402,413.27407 -51.272145,413.36521 -51.363281,413.45636 C -51.584644,413.80792 -51.779957,414.14646 -51.949219,414.47198 C -51.949227,414.61521 -51.968758,414.72589 -52.007812,414.80401 C -52.046883,414.88214 -52.138029,415.03839 -52.28125,415.27276 C -52.411466,415.49412 -52.502612,415.65037 -52.554688,415.74151 C -52.776049,416.15818 -52.906258,416.43813 -52.945312,416.58136 C -53.010424,416.84177 -53.055997,417.00453 -53.082031,417.06964 C -53.134122,417.06964 -53.114591,417.11521 -53.023438,417.20636 C -52.841153,417.46677 -52.684904,417.66209 -52.554688,417.79229 C -52.47657,417.87042 -52.385425,417.94203 -52.28125,418.00714 C -52.177092,418.07224 -52.059904,418.15037 -51.929688,418.24151 C -51.760425,418.31964 -51.395842,418.44333 -50.835938,418.61261 C -50.315114,418.61261 -49.92449,418.63214 -49.664062,418.6712 C -49.664073,418.6712 -49.657563,418.65818 -49.644531,418.63214 C -49.6185,418.60609 -49.585948,418.58656 -49.546875,418.57354 C -49.416678,418.57354 -49.306001,418.5475 -49.214844,418.49542 C -49.214855,418.49542 -49.175792,418.57354 -49.097656,418.72979 C -49.175792,418.91208 -49.260428,419.04229 -49.351562,419.12042 C -49.507823,419.18552 -49.638032,419.27016 -49.742188,419.37432 C -50.276052,419.42641 -51.005218,419.53708 -51.929688,419.70636 C -52.059904,419.70635 -52.190112,419.70635 -52.320312,419.70636 C -52.450529,419.70635 -52.593758,419.70635 -52.75,419.70636 M -59.273438,416.54229 C -59.14323,416.58136 -58.947918,416.60089 -58.6875,416.60089 C -58.531252,416.50974 -58.375002,416.4186 -58.21875,416.32745 C -58.062502,416.22328 -57.919273,416.12563 -57.789062,416.03448 C -57.71094,415.9824 -57.606774,415.95636 -57.476562,415.95636 C -57.268232,415.74802 -57.07292,415.57875 -56.890625,415.44854 C -56.59115,415.3574 -56.421879,415.31183 -56.382812,415.31182 C -55.848963,414.94724 -55.250005,414.49803 -54.585938,413.96417 C -54.442714,413.82094 -54.292975,413.63214 -54.136719,413.39776 C -53.941413,413.24152 -53.759121,413.09829 -53.589844,412.96807 C -53.42058,412.82485 -53.25782,412.68813 -53.101562,412.55792 C -52.94532,412.40167 -52.795581,412.20636 -52.652344,411.97198 C -52.652352,411.8548 -52.652352,411.7311 -52.652344,411.60089 C -52.652352,411.47069 -52.652352,411.34048 -52.652344,411.21026 C -52.730476,411.11912 -52.795581,411.07355 -52.847656,411.07354 C -53.186205,410.9824 -53.654955,410.89777 -54.253906,410.81964 C -54.345058,410.85871 -54.475266,410.87824 -54.644531,410.87823 C -54.970058,411.11261 -55.295578,411.32746 -55.621094,411.52276 C -55.933598,411.71808 -56.226567,411.91339 -56.5,412.1087 C -56.825524,412.46027 -57.151045,412.80532 -57.476562,413.14386 C -57.802086,413.46938 -58.121096,413.78839 -58.433594,414.10089 C -58.602866,414.34829 -58.713543,414.5436 -58.765625,414.68682 C -58.843752,415.02537 -58.882814,415.2337 -58.882812,415.31182 C -58.895835,415.33787 -58.960939,415.42901 -59.078125,415.58526 C -59.169272,415.75454 -59.253907,416.00844 -59.332031,416.34698 C -59.29297,416.38604 -59.273439,416.45115 -59.273438,416.54229 M -41.792969,398.53448 C -41.753925,398.57356 -41.721373,398.59309 -41.695312,398.59307 C -41.66929,398.59309 -41.656269,398.59309 -41.65625,398.59307 C -41.486998,398.42382 -41.402363,398.33919 -41.402344,398.33917 C -41.441425,398.31315 -41.460956,398.2871 -41.460938,398.26104 C -41.460956,398.23502 -41.460956,398.222 -41.460938,398.22198 C -41.552102,398.26106 -41.636738,398.28059 -41.714844,398.28057 C -41.766946,398.37174 -41.792987,398.45638 -41.792969,398.53448 M -41.265625,419.82354 C -41.486987,419.77146 -41.786466,419.68031 -42.164062,419.55011 C -42.255215,419.45896 -42.346361,419.36781 -42.4375,419.27667 C -42.528652,419.18552 -42.626309,419.08787 -42.730469,418.9837 C -42.730475,418.87953 -42.769538,418.69724 -42.847656,418.43682 C -42.717454,417.82485 -42.606777,417.31052 -42.515625,416.89386 C -42.138028,415.99542 -41.760424,415.11 -41.382812,414.23761 C -41.252612,414.0423 -41.115893,413.87303 -40.972656,413.72979 C -40.946623,413.62563 -40.855477,413.37824 -40.699219,412.98761 C -40.699227,412.98761 -40.712248,412.98761 -40.738281,412.98761 C -40.764331,412.98761 -40.790373,412.96808 -40.816406,412.92901 C -40.933602,412.99412 -41.050789,413.05923 -41.167969,413.12432 C -41.285164,413.17641 -41.408862,413.24152 -41.539062,413.31964 C -41.617195,413.39777 -41.675789,413.47589 -41.714844,413.55401 C -42.457038,414.10089 -43.199225,414.64126 -43.941406,415.17511 C -44.683598,415.70896 -45.432295,416.24933 -46.1875,416.7962 C -46.500003,417.05662 -46.825523,417.33005 -47.164062,417.61651 C -47.502606,417.88995 -47.841147,418.16339 -48.179688,418.43682 C -48.466146,418.48891 -48.798177,418.57354 -49.175781,418.69073 C -49.227864,418.69073 -49.292969,418.69073 -49.371094,418.69073 C -49.462239,418.69073 -49.546875,418.69073 -49.625,418.69073 C -49.703124,418.56052 -49.761718,418.45636 -49.800781,418.37823 C -49.761718,418.33917 -49.703124,418.24151 -49.625,418.08526 C -49.63802,418.1113 -49.546875,418.03969 -49.351562,417.87042 C -49.234375,417.87042 -49.143229,417.85089 -49.078125,417.81182 C -48.986979,417.57745 -48.856771,417.34959 -48.6875,417.12823 C -48.635417,417.07615 -48.570313,417.01104 -48.492188,416.93292 C -48.414063,416.85479 -48.329428,416.77016 -48.238281,416.67901 C -47.925782,416.19724 -47.678387,415.85219 -47.496094,415.64386 C -47.222658,415.46157 -47.151044,415.40948 -47.28125,415.48761 C -47.125002,415.25323 -46.988283,415.06443 -46.871094,414.9212 C -46.753909,414.68683 -46.643232,414.43943 -46.539062,414.17901 C -46.408857,413.9837 -46.272138,413.81443 -46.128906,413.6712 C -46.076826,413.51495 -45.927086,413.2285 -45.679688,412.81182 C -45.679691,412.65558 -45.640628,412.43423 -45.5625,412.14776 C -45.640628,412.14777 -45.718753,412.12824 -45.796875,412.08917 C -46.044274,412.18032 -46.233076,412.2324 -46.363281,412.24542 C -46.402346,412.28449 -46.447919,412.32355 -46.5,412.36261 C -46.552086,412.38865 -46.604169,412.42772 -46.65625,412.47979 C -46.708336,412.49282 -46.968752,412.58397 -47.4375,412.75323 C -47.554689,412.75324 -47.671876,412.75324 -47.789062,412.75323 C -47.89323,412.75324 -48.003907,412.75324 -48.121094,412.75323 C -48.121095,412.67511 -48.121095,412.59699 -48.121094,412.51886 C -48.121095,412.42772 -48.121095,412.32355 -48.121094,412.20636 C -47.561199,411.9199 -47.001304,411.63345 -46.441406,411.34698 C -45.868493,411.06053 -45.295577,410.77407 -44.722656,410.48761 C -44.345057,410.48761 -44.039068,410.50714 -43.804688,410.5462 C -43.791672,410.62433 -43.700526,410.81313 -43.53125,411.11261 C -43.570318,411.26886 -43.60287,411.4186 -43.628906,411.56182 C -43.654953,411.69204 -43.680995,411.82876 -43.707031,411.97198 C -43.798182,412.15428 -43.869797,412.26496 -43.921875,412.30401 C -44.000005,412.53839 -44.117192,412.87693 -44.273438,413.31964 C -44.156255,413.20245 -44.227869,413.30011 -44.488281,413.61261 C -44.488286,413.7298 -44.507817,413.82745 -44.546875,413.90557 C -44.690109,414.02277 -44.807296,414.15297 -44.898438,414.2962 C -44.898442,414.37433 -44.87891,414.43292 -44.839844,414.47198 C -44.670577,414.32876 -44.488286,414.19204 -44.292969,414.06182 C -44.097661,413.9186 -43.902349,413.76886 -43.707031,413.61261 C -43.394537,413.45636 -43.166673,413.34568 -43.023438,413.28057 C -42.750006,413.00714 -42.561204,412.83136 -42.457031,412.75323 C -42.33985,412.75324 -42.242194,412.74022 -42.164062,412.71417 C -42.111986,412.66209 -42.059903,412.58397 -42.007812,412.47979 C -41.265633,412.15428 -40.75131,411.90688 -40.464844,411.73761 C -40.126311,411.4772 -39.846363,411.24933 -39.625,411.05401 C -39.46876,411.05402 -39.351572,411.03449 -39.273438,410.99542 C -39.273447,410.99543 -39.201833,410.92381 -39.058594,410.78057 C -39.019541,410.76756 -38.830739,410.6699 -38.492188,410.48761 C -38.414073,410.48761 -38.335948,410.50714 -38.257812,410.5462 C -38.257823,410.62433 -38.277355,410.68293 -38.316406,410.72198 C -38.316417,410.72199 -38.316417,410.73501 -38.316406,410.76104 C -38.316417,410.78709 -38.296886,410.81313 -38.257812,410.83917 C -38.153657,410.83918 -37.984386,410.87824 -37.75,410.95636 C -37.828136,411.08657 -37.938813,411.32746 -38.082031,411.67901 C -38.342459,412.06964 -38.609385,412.44725 -38.882812,412.81182 C -39.039073,413.15037 -39.305999,413.68422 -39.683594,414.41339 C -40.022144,415.20766 -40.360686,416.03448 -40.699219,416.89386 C -40.699227,417.34959 -40.718758,417.70766 -40.757812,417.96807 C -40.718758,418.0462 -40.660165,418.20245 -40.582031,418.43682 C -40.542977,418.47589 -40.445321,418.56052 -40.289062,418.69073 C -40.028655,418.84698 -39.898447,418.9251 -39.898438,418.92511 C -39.820322,418.9251 -39.735686,418.9251 -39.644531,418.92511 C -39.553395,418.9251 -39.449228,418.9251 -39.332031,418.92511 C -39.266937,418.9251 -39.15626,418.88604 -39,418.80792 C -38.921885,418.80792 -38.83725,418.80792 -38.746094,418.80792 C -38.654958,418.80792 -38.570323,418.80792 -38.492188,418.80792 C -37.984386,418.72979 -37.56772,418.65818 -37.242188,418.59307 C -37.242199,418.65818 -37.222668,418.72979 -37.183594,418.80792 C -37.183606,418.88604 -37.203137,418.94464 -37.242188,418.9837 C -37.307303,419.00974 -37.57423,419.12042 -38.042969,419.31573 C -38.589854,419.485 -39.188812,419.65427 -39.839844,419.82354 C -40.074228,419.82354 -40.308603,419.82354 -40.542969,419.82354 C -40.777352,419.82354 -41.018237,419.82354 -41.265625,419.82354 M -36.578125,418.59307 C -36.773438,418.59307 -36.942709,418.57354 -37.085938,418.53448 C -37.125,418.49542 -37.177084,418.45636 -37.242188,418.41729 C -37.307292,418.37823 -37.372396,418.31964 -37.4375,418.24151 C -37.619792,417.95505 -37.75651,417.74672 -37.847656,417.61651 C -37.847656,417.40818 -37.828125,417.18031 -37.789062,416.93292 C -37.763021,416.68552 -37.736979,416.43813 -37.710938,416.19073 C -37.398438,415.37042 -37.092448,414.63474 -36.792969,413.9837 C -36.740886,413.93162 -36.623699,413.86652 -36.441406,413.78839 C -36.272137,413.61912 -36.096356,413.43032 -35.914062,413.22198 C -35.731773,413.01365 -35.52995,412.79881 -35.308594,412.57745 C -35.139325,412.43423 -34.963544,412.291 -34.78125,412.14776 C -34.598961,412.00454 -34.397139,411.84178 -34.175781,411.65948 C -33.863285,411.50324 -33.557296,411.33397 -33.257812,411.15167 C -32.789067,410.96938 -32.411464,410.83267 -32.125,410.74151 C -31.174486,410.74152 -30.464851,410.71548 -29.996094,410.66339 C -29.983081,410.66339 -29.865893,410.70897 -29.644531,410.80011 C -29.579435,410.80011 -29.50131,410.80011 -29.410156,410.80011 C -29.305998,410.80011 -29.195321,410.80011 -29.078125,410.80011 C -28.765634,410.94334 -28.414072,411.13214 -28.023438,411.36651 C -27.958343,411.4186 -27.743499,411.6074 -27.378906,411.93292 C -27.339854,412.08917 -27.307302,412.23891 -27.28125,412.38214 C -27.242198,412.51235 -27.203135,412.64907 -27.164062,412.79229 C -27.164073,412.97459 -27.190115,413.13735 -27.242188,413.28057 C -27.242198,413.28058 -27.242198,413.30011 -27.242188,413.33917 C -27.229177,413.36521 -27.203135,413.39777 -27.164062,413.43682 C -27.307302,413.72329 -27.470062,414.00323 -27.652344,414.27667 C -27.730479,414.3548 -27.808604,414.44594 -27.886719,414.55011 C -27.964853,414.64126 -28.055999,414.73891 -28.160156,414.84307 C -28.199228,414.9212 -28.238291,414.99933 -28.277344,415.07745 C -28.303395,415.14256 -28.335947,415.20766 -28.375,415.27276 C -28.492197,415.35089 -28.615894,415.42901 -28.746094,415.50714 C -28.876311,415.57224 -29.013029,415.65688 -29.15625,415.76104 C -29.299487,415.94334 -29.371102,416.04099 -29.371094,416.05401 C -29.722664,416.26235 -30.093757,416.49021 -30.484375,416.73761 C -30.861986,416.985 -31.2461,417.22589 -31.636719,417.46026 C -32.04037,417.59047 -32.535161,417.77927 -33.121094,418.02667 C -33.30339,418.06573 -33.485681,418.10479 -33.667969,418.14386 C -33.837243,418.1699 -34.006514,418.20245 -34.175781,418.24151 C -34.462243,418.41078 -34.625003,418.50844 -34.664062,418.53448 C -35.52344,418.53448 -36.16146,418.55401 -36.578125,418.59307 M -34.820312,417.32354 C -34.677086,417.27146 -34.488284,417.24542 -34.253906,417.24542 C -33.902347,417.11521 -33.550785,416.97849 -33.199219,416.83526 C -32.83464,416.69203 -32.476568,416.54881 -32.125,416.40557 C -31.981776,416.30141 -31.858079,416.20375 -31.753906,416.11261 C -31.649746,416.00844 -31.539069,415.9173 -31.421875,415.83917 C -31.317715,415.80011 -31.213548,415.76756 -31.109375,415.74151 C -31.005215,415.70245 -30.894538,415.66339 -30.777344,415.62432 C -30.725267,415.57224 -30.699226,415.50063 -30.699219,415.40948 C -30.503913,415.27928 -30.341153,415.18813 -30.210938,415.13604 C -30.13282,414.90167 -30.061205,414.7324 -29.996094,414.62823 C -29.81381,414.48501 -29.579435,414.32224 -29.292969,414.13995 C -29.253915,413.99672 -29.221363,413.86001 -29.195312,413.72979 C -29.156258,413.58657 -29.117196,413.43683 -29.078125,413.28057 C -29.247404,413.00714 -29.410164,412.70115 -29.566406,412.36261 C -29.748706,412.27147 -29.872404,412.22589 -29.9375,412.22589 C -30.250007,412.18683 -30.555997,412.15428 -30.855469,412.12823 C -31.141934,412.08917 -31.421881,412.05011 -31.695312,412.01104 C -31.799485,412.11522 -31.942714,412.20636 -32.125,412.28448 C -32.242193,412.57094 -32.385422,412.88344 -32.554688,413.22198 C -32.789067,413.26105 -33.121098,413.28058 -33.550781,413.28057 C -33.772139,413.18943 -33.908858,413.14386 -33.960938,413.14386 C -34.156253,413.22199 -34.325524,413.2936 -34.46875,413.3587 C -34.690107,413.76235 -34.89844,414.09438 -35.09375,414.35479 C -35.197919,414.51105 -35.36719,414.86261 -35.601562,415.40948 C -35.69271,416.08657 -35.738283,416.46417 -35.738281,416.54229 C -35.673179,416.65948 -35.621096,416.77016 -35.582031,416.87432 C -35.52995,416.96547 -35.484377,417.0436 -35.445312,417.1087 C -35.354169,417.14776 -35.256513,417.18683 -35.152344,417.22589 C -35.04818,417.25193 -34.937503,417.28448 -34.820312,417.32354 M -28.589844,415.62432 C -28.589853,415.62433 -28.576832,415.62433 -28.550781,415.62432 C -28.511728,415.62433 -28.472665,415.62433 -28.433594,415.62432 C -28.433603,415.62433 -28.453134,415.62433 -28.492188,415.62432 C -28.518238,415.62433 -28.55079,415.62433 -28.589844,415.62432 M -25.347656,418.12432 C -25.386721,418.09828 -25.432294,418.07224 -25.484375,418.0462 C -25.53646,418.00714 -25.588544,417.95505 -25.640625,417.88995 C -25.731773,417.69464 -25.822919,417.4863 -25.914062,417.26495 C -26.00521,417.03058 -26.102866,416.7962 -26.207031,416.56182 C -26.207033,416.52276 -26.115887,416.32745 -25.933594,415.97589 C -25.777346,415.87172 -25.542971,415.70245 -25.230469,415.46807 C -25.152346,415.46808 -24.957034,415.42901 -24.644531,415.35089 C -24.540368,415.35089 -24.449222,415.37042 -24.371094,415.40948 C -24.292972,415.59177 -24.078129,416.03448 -23.726562,416.73761 C -23.726566,416.97198 -23.746098,417.16729 -23.785156,417.32354 C -23.967452,417.44073 -24.156254,417.55792 -24.351562,417.67511 C -24.546878,417.79229 -24.74219,417.9225 -24.9375,418.06573 C -25.093753,418.06573 -25.230471,418.08526 -25.347656,418.12432"
id="flowRoot3242" />
</g>
</g>
</g>
</svg>
|