summaryrefslogtreecommitdiff
path: root/pixmaps/cpr.svg
blob: 8ed81b968316c8898605de7b3bb4622cf149c1b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   id="svg619"
   sodipodi:version="0.32"
   width="600pt"
   height="400pt"
   xml:space="preserve"
   sodipodi:docbase="/home/deva/docs/c/miav/pixmaps"
   sodipodi:docname="cpr.svg"
   inkscape:version="0.43"
   version="1.0"><metadata
     id="metadata4811"><rdf:RDF><cc:Work
         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
     id="defs621"><linearGradient
       id="linearGradient855"><stop
         style="stop-color:#e30000;stop-opacity:0;"
         offset="0"
         id="stop856" /><stop
         style="stop-color:#350000;stop-opacity:0.749;"
         offset="1"
         id="stop857" /></linearGradient><linearGradient
       id="linearGradient844"><stop
         style="stop-color:#e30000;stop-opacity:0.2392;"
         offset="0"
         id="stop845" /><stop
         style="stop-color:#350000;stop-opacity:0.749;"
         offset="1"
         id="stop846" /></linearGradient><linearGradient
       id="linearGradient830"><stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0"
         id="stop831" /><stop
         style="stop-color:#350000;stop-opacity:0.749;"
         offset="1"
         id="stop832" /></linearGradient><linearGradient
       id="linearGradient823"><stop
         style="stop-color:#ff0000;stop-opacity:0;"
         offset="0"
         id="stop824" /><stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="1"
         id="stop825" /></linearGradient><linearGradient
       id="linearGradient815"><stop
         style="stop-color:#000000;stop-opacity:0.7412;"
         offset="0"
         id="stop816" /><stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop817" /></linearGradient><linearGradient
       id="linearGradient1592"><stop
         style="stop-color:#ed433d;stop-opacity:1;"
         offset="0"
         id="stop1593" /><stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop1594" /></linearGradient><linearGradient
       id="linearGradient1584"><stop
         style="stop-color:#ff0000;stop-opacity:0.302;"
         offset="0"
         id="stop1585" /><stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="1"
         id="stop1586" /></linearGradient><linearGradient
       id="linearGradient1575"><stop
         style="stop-color:#ffffff;stop-opacity:0.698;"
         offset="0"
         id="stop1576" /><stop
         style="stop-color:#ff0000;stop-opacity:0.302;"
         offset="1"
         id="stop1577" /></linearGradient><linearGradient
       id="linearGradient1562"><stop
         style="stop-color:#ed523d;stop-opacity:0.9059;"
         offset="0"
         id="stop1563" /><stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop1564" /></linearGradient><linearGradient
       id="linearGradient1557"><stop
         style="stop-color:#ffffff;stop-opacity:0.1529;"
         offset="0"
         id="stop1558" /><stop
         style="stop-color:#350000;stop-opacity:0.749;"
         offset="1"
         id="stop1559" /></linearGradient><linearGradient
       id="linearGradient1539"><stop
         style="stop-color:#ed523d;stop-opacity:0.8431;"
         offset="0"
         id="stop1540" /><stop
         style="stop-color:#000000;stop-opacity:0.6549;"
         offset="1"
         id="stop1541" /></linearGradient><linearGradient
       id="linearGradient910"><stop
         style="stop-color:#c3433d;stop-opacity:0.4902;"
         offset="0"
         id="stop911" /><stop
         style="stop-color:#000000;stop-opacity:0.6549;"
         offset="1"
         id="stop912" /></linearGradient><linearGradient
       id="linearGradient796"><stop
         style="stop-color:#c3433d;stop-opacity:1;"
         offset="0"
         id="stop797" /><stop
         style="stop-color:#000000;stop-opacity:0.6549;"
         offset="1"
         id="stop798" /></linearGradient><linearGradient
       id="linearGradient755"><stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop756" /><stop
         style="stop-color:#ff0000;stop-opacity:0.302;"
         offset="1"
         id="stop757" /></linearGradient><linearGradient
       id="linearGradient751"><stop
         style="stop-color:#000;stop-opacity:1;"
         offset="0"
         id="stop752" /><stop
         style="stop-color:#fff;stop-opacity:1;"
         offset="1"
         id="stop753" /></linearGradient><linearGradient
       xlink:href="#linearGradient755"
       id="linearGradient754"
       x1="191.2776"
       y1="599.15344"
       x2="-82.12011"
       y2="447.02103"
       gradientTransform="scale(1.384967,0.722039)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient755"
       id="linearGradient758"
       x1="188.41644"
       y1="640.96112"
       x2="-7.1009622"
       y2="646.19281"
       gradientTransform="scale(1.394914,0.71689)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient795"
       x1="58.967323"
       y1="707.66187"
       x2="-52.694412"
       y2="707.66516"
       gradientTransform="scale(1.562636,0.639944)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient755"
       id="linearGradient886"
       x1="102.95039"
       y1="685.95111"
       x2="45.265751"
       y2="685.95074"
       gradientTransform="scale(1.51471,0.660192)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient897"
       x1="109.9081"
       y1="724.50275"
       x2="238.1181"
       y2="692.6994"
       gradientTransform="scale(1.373205,0.728224)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient901"
       x1="121.04947"
       y1="540.67743"
       x2="143.5972"
       y2="546.71704"
       gradientTransform="scale(1.368003,0.730993)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient755"
       id="linearGradient907"
       x1="96.83432"
       y1="1078.3988"
       x2="59.050652"
       y2="1073.2618"
       gradientTransform="scale(2.536113,0.394304)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient910"
       id="linearGradient909"
       x1="92.191711"
       y1="1082.2039"
       x2="62.133816"
       y2="1068.8888"
       gradientTransform="scale(2.536113,0.394304)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient755"
       id="linearGradient915"
       x1="99.277992"
       y1="1143.8929"
       x2="48.37785"
       y2="1183.3478"
       gradientTransform="scale(2.47493,0.404052)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient910"
       id="linearGradient917"
       x1="98.39045"
       y1="1167.7299"
       x2="38.741871"
       y2="1171.222"
       gradientTransform="scale(2.47493,0.404052)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient910"
       id="linearGradient919"
       x1="76.898788"
       y1="664.97198"
       x2="143.88811"
       y2="660.77521"
       gradientTransform="scale(1.51471,0.660192)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient755"
       id="linearGradient921"
       x1="376.08783"
       y1="597.47699"
       x2="113.23275"
       y2="597.47791"
       gradientTransform="scale(1.30327,0.767301)"
       gradientUnits="userSpaceOnUse" /><radialGradient
       xlink:href="#linearGradient910"
       id="radialGradient922"
       cx="105.93902"
       cy="716.89172"
       r="276.77786"
       fx="105.93902"
       fy="716.89172"
       gradientTransform="scale(1.535443,0.651278)"
       gradientUnits="userSpaceOnUse" /><radialGradient
       xlink:href="#linearGradient910"
       id="radialGradient1196"
       cx="274.2326"
       cy="619.27161"
       r="207.90405"
       fx="274.2326"
       fy="619.27161"
       gradientTransform="scale(1.319699,0.757749)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient1539"
       id="linearGradient1538"
       x1="380.64407"
       y1="575.33716"
       x2="119.70488"
       y2="644.07916"
       gradientTransform="scale(1.320262,0.757425)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient1539"
       id="linearGradient1544"
       x1="1337.4736"
       y1="92.712654"
       x2="924.24084"
       y2="154.69836"
       gradientTransform="scale(0.239017,4.183799)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient1539"
       id="linearGradient1554"
       x1="152.49065"
       y1="1292.6582"
       x2="101.92166"
       y2="1299.4034"
       gradientTransform="scale(2.276166,0.439335)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient1562"
       id="linearGradient1556"
       x1="861.16602"
       y1="236.78255"
       x2="844.86584"
       y2="164.04547"
       gradientTransform="scale(0.421637,2.371706)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient1575"
       id="linearGradient1561"
       x1="913.32343"
       y1="242.2832"
       x2="782.92706"
       y2="170.15775"
       gradientTransform="scale(0.421637,2.371706)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient1539"
       id="linearGradient1569"
       x1="205.27129"
       y1="890.82001"
       x2="182.95085"
       y2="878.58301"
       gradientTransform="scale(1.816058,0.550643)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient755"
       id="linearGradient1583"
       x1="154.44179"
       y1="84.366676"
       x2="115.93815"
       y2="105.92699"
       gradientTransform="scale(1.017281,0.983012)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient755"
       id="linearGradient1590"
       x1="216.13875"
       y1="98.47123"
       x2="151.26624"
       y2="68.336571"
       gradientTransform="scale(0.788581,1.268101)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient1595"
       x1="217.35246"
       y1="932.52936"
       x2="120.1261"
       y2="944.21643"
       gradientTransform="scale(2.755075,0.362967)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient806"
       x1="1749.2766"
       y1="133.91637"
       x2="1499.129"
       y2="134.98276"
       gradientTransform="scale(0.286309,3.492726)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient808"
       x1="275.14685"
       y1="1141.595"
       x2="188.81161"
       y2="1121.4855"
       gradientTransform="scale(1.998268,0.500433)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient810"
       x1="1321.2803"
       y1="241.26443"
       x2="1257.3582"
       y2="120.70497"
       gradientTransform="scale(0.42564,2.349401)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient812"
       x1="230.74738"
       y1="135.38869"
       x2="134.65822"
       y2="79.33654"
       gradientTransform="scale(0.804599,1.242856)"
       gradientUnits="userSpaceOnUse" /><radialGradient
       xlink:href="#linearGradient815"
       id="radialGradient814"
       cx="222.73997"
       cy="136.26447"
       r="5.4976311"
       fx="222.73997"
       fy="136.26447"
       gradientTransform="scale(0.804599,1.242856)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient796"
       id="linearGradient820"
       x1="310.00009"
       y1="1304.4451"
       x2="210.93819"
       y2="1289.5544"
       gradientTransform="scale(2.27599,0.439369)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient823"
       id="linearGradient822"
       x1="274.57224"
       y1="1298.8608"
       x2="317.6828"
       y2="1286.7209"
       gradientTransform="scale(2.27599,0.439369)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient823"
       id="linearGradient827"
       x1="1070.6755"
       y1="219.96712"
       x2="1042.3016"
       y2="221.16402"
       gradientTransform="scale(0.525078,1.904481)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient830"
       id="linearGradient829"
       x1="1043.7212"
       y1="219.16911"
       x2="1067.8372"
       y2="219.16907"
       gradientTransform="scale(0.525078,1.904481)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient910"
       id="linearGradient834"
       x1="187.35526"
       y1="170.66017"
       x2="199.31676"
       y2="170.28641"
       gradientTransform="scale(1.128383,0.886224)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient823"
       id="linearGradient836"
       x1="194.35725"
       y1="170.28638"
       x2="181.228"
       y2="171.03403"
       gradientTransform="scale(1.128383,0.886224)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient823"
       id="linearGradient838"
       x1="333.87531"
       y1="655.28003"
       x2="360.52231"
       y2="652.07013"
       gradientTransform="scale(1.643427,0.608484)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient844"
       id="linearGradient843"
       x1="350.16907"
       y1="654.3515"
       x2="337.27356"
       y2="655.70093"
       gradientTransform="scale(1.643427,0.608484)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient1584"
       id="linearGradient848"
       x1="317.28046"
       y1="760.60089"
       x2="342.06415"
       y2="758.42102"
       gradientTransform="scale(1.743336,0.573613)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient844"
       id="linearGradient850"
       x1="331.74771"
       y1="758.28119"
       x2="317.56097"
       y2="757.80084"
       gradientTransform="scale(1.743336,0.573613)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient855"
       id="linearGradient852"
       x1="588.61737"
       y1="506.5802"
       x2="605.16876"
       y2="346.91208"
       gradientTransform="scale(0.990532,1.009559)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient855"
       id="linearGradient854"
       x1="588.61743"
       y1="372.98029"
       x2="588.61749"
       y2="609.22437"
       gradientTransform="scale(0.990532,1.009559)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient823"
       id="linearGradient1172"
       x1="91.785568"
       y1="677.5592"
       x2="61.082542"
       y2="677.5589"
       gradientTransform="scale(1.51471,0.660192)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient823"
       id="linearGradient1252"
       x1="1340.0811"
       y1="225.75291"
       x2="1272.3986"
       y2="225.75221"
       gradientTransform="scale(0.42564,2.349401)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient855"
       id="linearGradient1254"
       x1="1328.8073"
       y1="241.26703"
       x2="1328.7997"
       y2="187.6814"
       gradientTransform="scale(0.42564,2.349401)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient823"
       id="linearGradient1437"
       x1="867.685"
       y1="227.00249"
       x2="815.52661"
       y2="227.00249"
       gradientTransform="scale(0.421637,2.371706)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       xlink:href="#linearGradient830"
       id="linearGradient1440"
       x1="841.60577"
       y1="239.22716"
       x2="831.82617"
       y2="197.05206"
       gradientTransform="scale(0.421637,2.371706)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient823"
       id="linearGradient4813"
       gradientTransform="scale(0.525078,1.904481)"
       x1="1070.6755"
       y1="219.96712"
       x2="1042.3016"
       y2="221.16402"
       gradientUnits="userSpaceOnUse" /><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient830"
       id="linearGradient4815"
       gradientTransform="scale(0.525078,1.904481)"
       x1="1043.7212"
       y1="219.16911"
       x2="1067.8372"
       y2="219.16907"
       gradientUnits="userSpaceOnUse" /><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient910"
       id="linearGradient4817"
       x1="187.35526"
       y1="170.66017"
       x2="199.31676"
       y2="170.28641"
       gradientTransform="scale(1.128383,0.886224)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient823"
       id="linearGradient4819"
       x1="194.35725"
       y1="170.28638"
       x2="181.228"
       y2="171.03403"
       gradientTransform="scale(1.128383,0.886224)"
       gradientUnits="userSpaceOnUse" /><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient823"
       id="linearGradient4821"
       gradientTransform="scale(1.643427,0.608484)"
       x1="333.87531"
       y1="655.28003"
       x2="360.52231"
       y2="652.07013"
       gradientUnits="userSpaceOnUse" /><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient844"
       id="linearGradient4823"
       gradientTransform="scale(1.643427,0.608484)"
       x1="350.16907"
       y1="654.3515"
       x2="337.27356"
       y2="655.70093"
       gradientUnits="userSpaceOnUse" /><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1584"
       id="linearGradient4825"
       gradientTransform="scale(1.743336,0.573613)"
       x1="317.28046"
       y1="760.60089"
       x2="342.06415"
       y2="758.42102"
       gradientUnits="userSpaceOnUse" /><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient844"
       id="linearGradient4827"
       gradientTransform="scale(1.743336,0.573613)"
       x1="331.74771"
       y1="758.28119"
       x2="317.56097"
       y2="757.80084"
       gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
     id="base"
     inkscape:zoom="0.35539095"
     inkscape:cx="372.04724"
     inkscape:cy="526.18109"
     inkscape:window-width="1272"
     inkscape:window-height="972"
     inkscape:window-x="0"
     inkscape:window-y="30"
     inkscape:current-layer="svg619" /><g
     id="g1441"
     transform="translate(8.441408,-208.2214)"><path
       style="font-size:12px;fill:#808080;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 336.6829,481.2589 L 353.5892,496.5158 C 360.874,496.7906 369.8082,497.4779 377.5054,496.5158 L 389.4635,481.6712 L 336.6829,481.2589 z "
       id="path1566"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:3.25;font-family:Arial Black"
       d="M 583.3993,441.6239 L 583.3993,441.6239 z M 509.6127,588.2124 L 509.6127,588.2124 z M 364.019,564.3593 L 364.019,564.3593 z M 366.4056,355.9148 L 355.5237,343.9448 C 429.1468,345.033 434.8929,352.6773 449.1709,364.7014 C 462.4687,377.8137 466.9411,393.2089 466.9411,417.4166 C 466.9411,442.2962 459.6978,461.7404 445.2109,475.7494 C 430.8319,489.7583 412.0955,496.9687 382.4728,496.9687 L 375.3251,496.9114 L 386.8709,482.616 L 449.6521,417.3667 L 366.4056,355.9148 z M 169.3552,492.0157 C 169.3552,492.0157 167.4483,507.8293 169.3552,492.0157 z "
       id="path712"
       sodipodi:nodetypes="cccccccccccccccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 336.6829,481.2589 L 354.492,495.4567 C 361.6987,497.4156 365.6024,496.8095 374.4585,497.2624 L 389.4635,481.6712 L 336.6829,481.2589 z "
       id="path1567"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:3.25;font-family:Arial Black"
       d="M 169.3552,492.0157 C 169.3552,492.0157 167.4483,507.8293 169.3552,492.0157 z M 366.4056,355.9148 L 355.5237,343.9448 C 429.1468,345.033 434.8929,352.6773 449.1709,364.7014 C 462.4687,377.8137 466.9411,393.2089 466.9411,417.4166 C 466.9411,442.2962 459.6978,461.7404 445.2109,475.7494 C 430.8319,489.7583 412.714,497.3468 383.0913,497.3468 L 374.3857,497.3065 L 386.8709,482.616 L 449.6521,417.3667 L 366.4056,355.9148 z M 364.019,564.3593 L 364.019,564.3593 z M 509.6127,588.2124 L 509.6127,588.2124 z M 583.3993,441.6239 L 583.3993,441.6239 z "
       id="path1399"
       sodipodi:nodetypes="cccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient921);stroke-width:3.25;font-family:Arial Black"
       d="M 583.3993,441.6239 L 583.3993,441.6239 z M 509.6127,588.2124 L 509.6127,588.2124 z M 364.019,564.3593 L 364.019,564.3593 z M 366.4056,355.9148 L 355.5237,343.9448 C 429.1468,345.033 434.8929,352.6773 449.1709,364.7014 C 462.4687,377.8137 466.9411,393.2089 466.9411,417.4166 C 466.9411,442.2962 459.6978,461.7404 445.2109,475.7494 C 430.8319,489.7583 412.0955,497.3066 382.4728,497.3066 L 374.3113,497.3066 L 386.8709,482.616 L 449.6521,417.3667 L 366.4056,355.9148 z M 169.3552,492.0157 C 169.3552,492.0157 167.4483,507.8293 169.3552,492.0157 z "
       id="path1400"
       sodipodi:nodetypes="cccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:3.25;font-family:Arial Black"
       d="M 177.4113,488.0199 C 177.4113,488.0199 175.5044,503.2749 177.4113,488.0199 z M 265.0375,343.2594 L 276.5247,343.08 C 311.7981,342.3546 336.9594,342.7677 352.7241,343.861 L 367.3597,361.5029 L 276.5321,361.0034 L 265.0375,343.2594 z M 350.3113,444.4351 L 350.3113,444.4351 z M 517.6688,580.8185 L 517.6688,580.8185 z M 591.4554,439.4081 L 591.4554,439.4081 z "
       id="path1405"
       sodipodi:nodetypes="cccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:3.25;font-family:Arial Black"
       d="M 177.4113,488.0199 C 177.4113,488.0199 175.5044,503.2749 177.4113,488.0199 z M 264.3196,343.2594 L 276.5247,343.08 C 311.7981,342.3546 335.7391,343.18 355.6273,343.861 L 370.9122,360.5556 L 276.5321,361.0034 L 264.3196,343.2594 z M 350.3113,444.4351 L 350.3113,444.4351 z M 517.6688,580.8185 L 517.6688,580.8185 z M 591.4554,439.4081 L 591.4554,439.4081 z "
       id="path1406"
       sodipodi:nodetypes="cccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient1538);stroke-width:3.25;font-family:Arial Black"
       d="M 177.4113,488.0199 C 177.4113,488.0199 175.5044,503.2749 177.4113,488.0199 z M 264.3196,343.2594 L 276.5247,343.08 C 311.7981,342.3546 335.7391,343.18 355.6273,343.861 L 370.9122,360.5556 L 276.5321,361.0034 L 264.3196,343.2594 z M 350.3113,444.4351 L 350.3113,444.4351 z M 517.6688,580.8185 L 517.6688,580.8185 z M 591.4554,439.4081 L 591.4554,439.4081 z "
       id="path1537"
       sodipodi:nodetypes="cccccccccccccc" /><path
       style="font-size:12px;fill:url(#linearGradient1569);fill-rule:evenodd;stroke-width:3.25"
       d="M 336.6829,481.2589 L 354.492,495.4567 C 361.6987,497.4156 365.6024,496.8095 374.4585,497.2624 L 389.4635,481.6712 L 336.6829,481.2589 z "
       id="path1568"
       sodipodi:nodetypes="ccccc" /><g
       id="g1007"
       transform="matrix(0.810042,0,0,1.027834,-391.4072,123.9912)"
       style="font-size:12px"><path
         transform="matrix(2.758731,0,0,2.765921,355.2524,-130.7329)"
         style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:1.17649996;font-family:Arial Black"
         d="M 205.5291,141.1674 L 198.8791,142.0183 L 199.0606,159.5891 L 208.1351,159.6702 L 211.0491,155.5192 C 214.7062,155.4381 216.0821,155.0288 216.7384,154.1616 C 217.4181,153.2945 217.7579,152.2984 217.7579,151.1734 C 217.7579,149.5093 217.2306,148.232 216.1759,147.3413 C 215.1212,146.4507 214.0516,145.8756 210.1044,146.0054 M 197.9104,140.7905 L 211.798,139.9796 C 216.4815,140.3041 215.7164,140.8362 221.4741,142.614 C 223.0678,144.8874 224.9057,145.5882 224.9057,148.8694 C 224.9057,151.7288 224.8168,152.3846 223.5981,154.4705 L 217.7467,159.7376 L 210.6119,161.1815 L 198.3374,161.1814 L 197.9104,140.7905 z "
         id="path911"
         sodipodi:nodetypes="cccccccccccccccccc" /><path
         style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
         d="M 547.1058,391.6655 L 561.0276,404.1653 L 579.1779,403.9026 L 568.0839,392.54 L 547.1058,391.6655 z "
         id="path912"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
         d="M 561.6249,430.1213 L 550.6976,441.0487 L 575.0264,440.8426 L 582.2426,430.1213 L 561.6249,430.1213 z "
         id="path915"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
         d="M 548.3265,392.5971 L 547.9141,443.729 L 560.6972,430.9461 L 560.0787,403.5245 L 548.3265,392.5971 z "
         id="path917"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
         d="M 547.7015,393.8472 L 547.2891,442.479 L 560.6972,430.5338 L 560.0787,403.9368 L 547.7015,393.8472 z "
         id="path934"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
         d="M 547.7308,391.6655 L 561.0276,403.5403 L 579.8029,403.2776 L 569.3339,391.9149 L 547.7308,391.6655 z "
         id="path935"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         transform="matrix(2.758731,0,0,2.765921,355.2524,-130.7329)"
         style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:1.17649996;font-family:Arial Black"
         d="M 205.5291,141.1674 L 198.8791,142.0183 L 199.0606,159.5891 L 208.1351,159.6702 L 211.0491,155.6683 C 214.7062,155.5872 216.0821,155.0288 216.7384,154.1616 C 217.4181,153.2945 217.7579,152.2984 217.7579,151.1734 C 217.7579,149.5093 217.2306,148.232 216.1759,147.3413 C 215.1212,146.4507 213.8544,145.6789 209.9072,145.8087 M 197.9104,140.7905 L 211.798,139.9796 C 216.4815,140.3041 215.7164,140.8362 221.4741,142.614 C 223.0678,144.8874 224.9057,145.5882 224.9057,148.8694 C 224.9057,151.7288 224.8168,152.3846 223.5981,154.4705 L 217.7467,159.7376 L 210.6119,161.1815 L 198.3374,161.1814 L 197.9104,140.7905 z "
         id="path936"
         sodipodi:nodetypes="cccccccccccccccccc" /><path
         style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
         d="M 562.0372,430.9461 L 550.6976,441.0487 L 575.0264,440.8426 L 582.655,430.5337 L 562.0372,430.9461 z "
         id="path937"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:url(#linearGradient827);fill-rule:evenodd;stroke-width:3.25"
         d="M 547.7015,393.8472 L 547.2891,442.479 L 560.6972,430.5338 L 560.0787,403.9368 L 547.7015,393.8472 z "
         id="path948"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:url(#linearGradient829);fill-rule:evenodd;stroke-width:3.25"
         d="M 547.7015,393.8472 L 547.2891,442.479 L 560.6972,430.5338 L 560.0787,403.9368 L 547.7015,393.8472 z "
         id="path949"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         transform="matrix(2.758731,0,0,2.765921,355.2524,-130.7329)"
         style="font-size:72px;font-weight:normal;fill:url(#linearGradient834);stroke-width:1.17649996;font-family:Arial Black"
         d="M 205.5291,141.1674 L 198.8791,142.0183 L 199.0606,159.5891 L 208.1351,159.6702 L 211.0491,155.6683 C 214.7062,155.5872 216.0821,155.0288 216.7384,154.1616 C 217.4181,153.2945 217.7579,152.2984 217.7579,151.1734 C 217.7579,149.5093 217.2306,148.232 216.1759,147.3413 C 215.1212,146.4507 213.8544,145.6789 209.9072,145.8087 M 197.9104,140.7905 L 211.798,139.9796 C 216.4815,140.3041 215.7164,140.8362 221.4741,142.614 C 223.0678,144.8874 224.9057,145.5882 224.9057,148.8694 C 224.9057,151.7288 224.8168,152.3846 223.5981,154.4705 L 217.7467,159.7376 L 210.6119,161.1815 L 198.3374,161.1814 L 197.9104,140.7905 z "
         id="path950"
         sodipodi:nodetypes="cccccccccccccccccc" /><path
         transform="matrix(2.758731,0,0,2.765921,355.2524,-130.7329)"
         style="font-size:72px;font-weight:normal;fill:url(#linearGradient836);stroke-width:1.17649996;font-family:Arial Black"
         d="M 205.5291,141.1674 L 198.8791,142.0183 L 199.0606,159.5891 L 208.1351,159.6702 L 211.0491,155.6683 C 214.7062,155.5872 216.0821,155.0288 216.7384,154.1616 C 217.4181,153.2945 217.7579,152.2984 217.7579,151.1734 C 217.7579,149.5093 217.2306,148.232 216.1759,147.3413 C 215.1212,146.4507 213.8544,145.6789 209.9072,145.8087 M 197.9104,140.7905 L 211.798,139.9796 C 216.4815,140.3041 215.7164,140.8362 221.4741,142.614 C 223.0678,144.8874 224.9057,145.5882 224.9057,148.8694 C 224.9057,151.7288 224.8168,152.3846 223.5981,154.4705 L 217.7467,159.7376 L 210.6119,161.1815 L 198.3374,161.1814 L 197.9104,140.7905 z "
         id="path951"
         sodipodi:nodetypes="cccccccccccccccccc" /><path
         style="font-size:12px;fill:url(#linearGradient838);fill-rule:evenodd;stroke-width:3.25"
         d="M 547.7308,391.6655 L 561.0276,403.5403 L 579.8029,403.2776 L 569.3339,391.9149 L 547.7308,391.6655 z "
         id="path952"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:url(#linearGradient843);fill-rule:evenodd;stroke-width:3.25"
         d="M 547.7308,391.6655 L 561.0276,403.5403 L 579.8029,403.2776 L 569.3339,391.9149 L 547.7308,391.6655 z "
         id="path953"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:url(#linearGradient848);fill-rule:evenodd;stroke-width:3.25"
         d="M 562.0372,430.9461 L 550.6976,441.0487 L 575.0264,440.8426 L 582.655,430.5337 L 562.0372,430.9461 z "
         id="path954"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /><path
         style="font-size:12px;fill:url(#linearGradient850);fill-rule:evenodd;stroke-width:3.25"
         d="M 562.0372,430.9461 L 550.6976,441.0487 L 575.0264,440.8426 L 582.655,430.5337 L 562.0372,430.9461 z "
         id="path955"
         sodipodi:nodetypes="ccccc"
         transform="translate(355.2524,-130.7329)" /></g><path
       style="font-size:12px;fill:#808080;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 340.8064,483.3205 L 340.8064,561.6669 L 357.3004,576.0991 L 356.0633,496.928 L 340.8064,483.3205 z "
       id="path1550"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:#808080;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 279.2759,560.464 L 266.9055,577.4969 L 355.1518,577.9092 L 340.3073,560.8763 L 279.2759,560.464 z "
       id="path1546"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 341.1074,484.7457 L 342.3445,561.8551 L 357.6014,577.5243 L 356.3983,498.2071 L 341.1074,484.7457 z "
       id="path1552"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:url(#linearGradient1437);fill-rule:evenodd;stroke-width:3.25"
       d="M 341.1075,484.7456 L 342.3446,561.855 L 357.6015,577.5242 L 356.3984,498.207 L 341.1075,484.7456 z "
       id="path1436" /><path
       style="font-size:12px;fill:url(#linearGradient1561);fill-rule:evenodd;stroke-width:3.25"
       d="M 341.1073,484.7456 L 342.3444,561.855 L 357.6013,577.5242 L 356.3982,498.207 L 341.1073,484.7456 z "
       id="path1574" /><path
       style="font-size:12px;fill:url(#linearGradient1556);fill-rule:evenodd;stroke-width:3.25"
       d="M 341.1075,484.7456 L 342.3446,561.855 L 357.6015,577.5242 L 356.3984,498.207 L 341.1075,484.7456 z "
       id="path1573" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 280.1006,561.701 L 266.9055,577.4969 L 355.1518,577.9092 L 339.4826,560.8763 L 280.1006,561.701 z "
       id="path1551"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:url(#linearGradient1554);fill-rule:evenodd;stroke-width:3.25"
       d="M 280.1006,561.701 L 266.9055,577.4969 L 355.1518,577.9092 L 339.4826,560.8763 L 280.1006,561.701 z "
       id="path1553"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;font-family:Arial Black"
       d="M 190.388,480.6666 C 190.388,480.6666 188.7147,494.0532 190.388,480.6666 z M 277.3627,353.4779 L 277.3627,353.4779 C 407.8581,353.4779 425.3144,359.0279 436.8888,370.1278 C 448.5579,381.2278 454.3925,397.0238 454.3925,417.5162 C 454.3925,438.5775 448.0362,455.0377 435.3235,466.8966 C 422.7056,478.7556 403.3992,484.6849 377.4045,484.6849 L 377.4045,484.6849 L 342.1124,484.6849 L 342.1124,562.0999 L 277.3627,562.0999 L 277.3627,353.4779 z M 342.1124,442.4197 L 342.1124,442.4197 C 370.3365,442.4197 379.0647,440.2853 384.0929,436.0161 C 389.1211,431.6517 391.6352,426.1017 391.6352,419.3661 C 391.6352,412.8199 389.4531,407.2699 385.0891,402.7161 C 380.725,398.1623 372.5186,395.8853 360.4699,395.8853 L 360.4699,395.8853 L 342.1124,395.8853 L 342.1124,442.4197 z M 488.9732,562.0999 L 488.9732,562.0999 z M 553.7229,438.0084 L 553.7229,438.0084 z "
       id="path643"
       sodipodi:nodetypes="cccccccccccccccccccccccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 263.7097,344.6724 L 265.2468,575.1901 L 276.879,562.6135 L 275.9721,354.323 L 263.7097,344.6724 z "
       id="path1407"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 263.7097,344.6724 L 265.2468,575.1901 L 276.879,562.6135 L 275.9721,354.323 L 263.7097,344.6724 z "
       id="path1542"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:url(#linearGradient1544);fill-rule:evenodd;stroke-width:3.25"
       d="M 263.7097,344.6724 L 265.2468,575.1901 L 276.879,562.6135 L 275.9721,354.323 L 263.7097,344.6724 z "
       id="path1543"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#radialGradient1196);stroke:#000000;font-family:Arial Black"
       d="M 190.388,480.6665 C 190.388,480.6665 188.7147,494.0531 190.388,480.6665 z M 277.3627,353.4778 L 277.3627,353.4778 C 407.8581,353.4778 425.3144,359.0278 436.8888,370.1277 C 448.5579,381.2277 454.3925,397.0237 454.3925,417.5161 C 454.3925,438.5774 448.0362,455.0376 435.3235,466.8965 C 422.7056,478.7555 403.3992,484.6848 377.4045,484.6848 L 377.4045,484.6848 L 342.1124,484.6848 L 342.1124,562.0998 L 277.3627,562.0998 L 277.3627,353.4778 z M 342.1124,442.4196 L 342.1124,442.4196 C 370.3365,442.4196 379.0647,440.2852 384.0929,436.016 C 389.1211,431.6516 391.6352,426.1016 391.6352,419.366 C 391.6352,412.8198 389.4531,407.2698 385.0891,402.716 C 380.725,398.1622 372.5186,395.8852 360.4699,395.8852 L 360.4699,395.8852 L 342.1124,395.8852 L 342.1124,442.4196 z M 488.9732,562.0998 L 488.9732,562.0998 z M 553.7229,438.0083 L 553.7229,438.0083 z "
       id="path1195"
       sodipodi:nodetypes="cccccccccccccccccccccccccc" /><path
       style="font-size:12px;fill:url(#linearGradient1440);fill-rule:evenodd;stroke-width:3.25"
       d="M 341.1075,484.7456 L 342.3446,561.855 L 357.6015,577.5242 L 356.3984,498.207 L 341.1075,484.7456 z "
       id="path1439" /></g><g
     id="g1173"
     transform="translate(8.441408,-208.2214)"><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:3.25;font-family:Arial Black"
       d="M 407.9519,440.3334 L 407.9519,440.3334 z M 363.9253,524.3661 L 363.9253,524.3661 z M 264.0671,443.3208 L 264.0671,443.3208 z M 220.0404,383.0903 L 220.0404,383.0903 z M 164.5721,400.321 C 169.7003,403.9188 176.6399,402.5063 180.6065,410.1938 L 177.4065,417.407 L 162.7163,430.7213 L 160.3063,425.4607 C 159.2761,421.409 150.4274,413.6396 144.0375,412.3145 L 164.5721,400.321 z "
       id="path887"
       sodipodi:nodetypes="cccsccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:3.25;font-family:Arial Black"
       d="M 413.8553,443.5674 L 413.8553,443.5674 z M 369.8287,527.6 L 369.8287,527.6 z M 269.9705,446.5547 L 269.9705,446.5547 z M 225.9438,386.3242 L 225.9438,386.3242 z M 164.5296,466.2793 L 188.6771,483.7052 L 166.683,522.6456 L 146.8343,504.8406 C 152.9478,502.704 154.6861,501.1925 160.7995,490.9308 C 163.7096,482.5052 164.7446,475.9547 164.5296,466.2793 z "
       id="path883"
       sodipodi:nodetypes="cccccccccscccc" /><path
       style="font-size:72px;font-weight:normal;fill:#ffffff;stroke-width:3.25;font-family:Arial Black"
       d="M 138.6261,577.8549 C 112.4342,577.8549 97.50942,575.2997 80.85194,567.7687 C 64.30383,560.1287 49.18629,550.0126 37.13139,530.9126 C 25.07639,511.8126 19.0489,487.3636 19.0489,457.5676 C 19.0489,417.8396 29.62439,387.3336 50.77529,366.0506 C 72.03569,344.6576 102.0631,336.8036 140.8579,336.8036 L 171.6303,361.3686 C 126.3082,354.764 104.6692,360.4748 75.45158,384.1847 C 58.16021,401.5349 48.44746,421.7272 47.26066,443.8141 C 45.94727,475.6741 45.58121,490.4822 62.26704,513.8163 C 90.0847,556.6207 119.7971,554.9007 158.9827,562.6541 L 138.6261,577.8549 z M 289.2973,338.0546 L 289.2973,338.0546 z M 364.0924,440.3776 L 364.0924,440.3776 z M 533.7374,578.0626 L 533.7374,578.0626 z M 608.5323,435.3026 L 608.5323,435.3026 z "
       id="path793"
       sodipodi:nodetypes="cccccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:3.25;font-family:Arial Black"
       d="M 138.6261,577.8549 C 112.4342,577.8549 97.50942,575.2997 80.85194,567.7687 C 64.30383,560.1287 49.18629,550.0126 37.13139,530.9126 C 25.07639,511.8126 19.0489,487.3636 19.0489,457.5676 C 19.0489,417.8396 29.62439,387.3336 50.77529,366.0506 C 72.03569,344.6576 102.0631,336.8036 140.8579,336.8036 L 171.6303,361.3686 C 126.3082,354.764 104.6692,360.4748 75.45158,384.1847 C 58.16021,401.5349 48.44746,421.7272 47.26066,443.8141 C 45.94727,475.6741 45.58121,490.4822 62.26704,513.8163 C 90.0847,556.6207 119.7971,554.9007 158.9827,562.6541 L 138.6261,577.8549 z M 289.2973,338.0546 L 289.2973,338.0546 z M 364.0924,440.3776 L 364.0924,440.3776 z M 533.7374,578.0626 L 533.7374,578.0626 z M 608.5323,435.3026 L 608.5323,435.3026 z "
       id="path739"
       sodipodi:nodetypes="cccccccccccccccccccc" /><g
       id="g776"
       style="font-size:12px"><path
         style="font-size:72px;font-weight:normal;fill:#c3433d;fill-opacity:1;stroke:#000000;stroke-width:3.25;stroke-dasharray:none;stroke-opacity:1;font-family:Arial Black"
         d="M 140.7329,337.0058 C 169.457,338.0939 195.4692,343.662 212.7845,355.8861 C 221.4968,361.9981 232.0792,372.8766 238.8178,385.9363 C 242.1871,392.4661 245.0035,399.4052 246.961,406.2945 C 248.9184,413.1837 251.105,421.1112 251.5823,427.4415 L 235.4385,417.1047 C 235.4385,417.1047 228.3597,397.8961 218.581,385.4889 C 208.8024,373.0817 197.4121,368.0199 192.0539,363.6677 C 186.6105,361.4912 179.4808,357.5465 172.1737,355.3445 C 164.8667,353.1425 157.3823,352.6833 155.5823,350.9489 C 151.9824,347.4799 149.3565,345.9833 140.7329,337.0058 z M 289.7164,341.0985 L 289.7164,341.0985 z M 364.5115,443.4215 L 364.5115,443.4215 z M 534.1565,581.1069 L 534.1565,581.1069 z M 608.9514,438.3463 L 608.9514,438.3463 z "
         id="path737"
         sodipodi:nodetypes="ccssccscssccccccccc" /><path
         style="font-size:72px;font-weight:normal;fill:#c3433d;fill-opacity:1;stroke:#000000;stroke-width:3.25;stroke-dasharray:none;stroke-opacity:1;font-family:Arial Black"
         d="M 203.8707,539.8067 C 211.9302,531.6428 219.9897,522.9347 223.1524,510.9621 C 227.384,500.8591 228.8965,491.8448 232.5826,478.4768 C 232.5913,478.4396 228.9377,480.5857 248.3199,468.3198 C 249.8395,467.3304 260.4832,583.9877 141.4039,577.9351 L 155.7703,565.4 C 175.0683,561.2216 190.5577,553.7788 203.8707,539.8067 z M 289.1724,341.3702 L 289.1724,341.3702 z M 363.9675,443.6928 L 363.9675,443.6928 z M 533.6125,581.3778 L 533.6125,581.3778 z M 608.4074,438.6182 L 608.4074,438.6182 z "
         id="path740"
         sodipodi:nodetypes="ccssccccccccccc" /><path
         style="font-size:72px;font-weight:normal;fill:#c3433d;fill-opacity:1;stroke:none;stroke-width:3.25;stroke-dasharray:none;stroke-opacity:1;font-family:Arial Black"
         d="M 203.8707,539.8067 C 211.9302,531.6428 219.9897,522.9347 223.1524,510.9621 C 227.384,500.8591 228.8965,491.8448 232.5826,478.4768 C 232.5913,478.4396 228.9377,480.5857 248.3199,468.3198 C 249.8395,467.3304 260.4832,583.9877 141.4039,577.9351 L 155.7703,565.4 C 175.0683,561.2216 190.5577,553.7788 203.8707,539.8067 z M 289.1724,341.3702 L 289.1724,341.3702 z M 363.9675,443.6928 L 363.9675,443.6928 z M 533.6125,581.3778 L 533.6125,581.3778 z M 608.4074,438.6182 L 608.4074,438.6182 z "
         id="path748"
         sodipodi:nodetypes="ccssccccccccccc" /><path
         style="font-size:72px;font-weight:normal;fill:#c3433d;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-opacity:1;font-family:Arial Black"
         d="M 140.7329,337.0058 C 169.457,338.0939 195.4692,343.662 212.7845,355.8861 C 221.4968,361.9981 232.0792,372.8766 238.8178,385.9363 C 242.1871,392.4661 245.0035,399.4052 246.961,406.2945 C 248.9184,413.1837 251.105,421.1112 251.5823,427.4415 L 235.4385,417.1047 C 235.4385,417.1047 228.3597,397.8961 218.581,385.4889 C 208.8024,373.0817 197.4121,368.0199 192.0539,363.6677 C 186.6105,361.4912 179.4808,357.5465 172.1737,355.3445 C 164.8667,353.1425 157.3823,352.6833 155.5823,350.9489 C 151.9824,347.4799 149.3565,345.9833 140.7329,337.0058 z M 289.7164,341.0985 L 289.7164,341.0985 z M 364.5115,443.4215 L 364.5115,443.4215 z M 534.1565,581.1069 L 534.1565,581.1069 z M 608.9514,438.3463 L 608.9514,438.3463 z "
         id="path747"
         sodipodi:nodetypes="ccssccscssccccccccc" /><path
         style="font-size:72px;font-weight:normal;fill:url(#linearGradient758);fill-opacity:1;stroke:none;stroke-width:3.25;stroke-dasharray:none;stroke-opacity:1;font-family:Arial Black"
         d="M 203.8707,539.8067 C 211.9302,531.6428 219.9897,522.9347 223.1524,510.9621 C 227.384,500.8591 228.8965,491.8448 232.5826,478.4768 C 232.5913,478.4396 228.9377,480.5857 248.3199,468.3198 C 249.8395,467.3304 260.4832,583.9877 141.4039,577.9351 L 155.7703,565.4 C 175.0683,561.2216 190.5577,553.7788 203.8707,539.8067 z M 289.1724,341.3702 L 289.1724,341.3702 z M 363.9675,443.6928 L 363.9675,443.6928 z M 533.6125,581.3778 L 533.6125,581.3778 z M 608.4074,438.6182 L 608.4074,438.6182 z "
         id="path750"
         sodipodi:nodetypes="ccssccccccccccc" /><path
         style="font-size:72px;font-weight:normal;fill:url(#linearGradient754);fill-opacity:1;stroke-width:1pt;font-family:Arial Black"
         d="M 140.7329,337.0058 C 169.457,338.0939 195.4692,343.662 212.7845,355.8861 C 221.4968,361.9981 232.0792,372.8766 238.8178,385.9363 C 242.1871,392.4661 245.0035,399.4052 246.961,406.2945 C 248.9184,413.1837 251.105,421.1112 251.5823,427.4415 L 235.4385,417.1047 C 235.4385,417.1047 228.3597,397.8961 218.581,385.4889 C 208.8024,373.0817 197.4121,368.0199 192.0539,363.6677 C 186.6105,361.4912 179.4808,357.5465 172.1737,355.3445 C 164.8667,353.1425 157.3823,352.6833 155.5823,350.9489 C 151.9824,347.4799 149.3565,345.9833 140.7329,337.0058 z M 289.7164,341.0985 L 289.7164,341.0985 z M 364.5115,443.4215 L 364.5115,443.4215 z M 534.1565,581.1069 L 534.1565,581.1069 z M 608.9514,438.3463 L 608.9514,438.3463 z "
         id="path746"
         sodipodi:nodetypes="ccssccscssccccccccc" /></g><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:3.25;font-family:Arial Black"
       d="M 608.5323,435.3026 L 608.5323,435.3026 z M 533.7374,578.0626 L 533.7374,578.0626 z M 364.0924,440.3776 L 364.0924,440.3776 z M 289.2973,338.0546 L 289.2973,338.0546 z M 141.1389,578.2139 C 114.947,578.2139 97.50942,575.2997 80.85194,567.7687 C 64.30383,560.1287 49.18629,550.0126 37.13139,530.9126 C 25.07639,511.8126 19.0489,487.3636 19.0489,457.5676 C 19.0489,417.8396 29.62439,387.3336 50.77529,366.0506 C 72.03569,344.6576 102.781,336.8036 141.5759,336.8036 L 171.6303,361.3686 C 126.3082,354.764 104.6692,360.4748 75.45158,384.1847 C 58.16021,401.5349 48.44746,421.7272 47.26066,443.8141 C 45.94727,475.6741 45.58121,490.4822 62.26704,513.8163 C 90.0847,556.6207 119.7971,554.9007 158.9827,562.6541 L 141.1389,578.2139 z "
       id="path794"
       sodipodi:nodetypes="cccccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient795);stroke-width:3.25;font-family:Arial Black"
       d="M 608.5323,435.3026 L 608.5323,435.3026 z M 533.7374,578.0626 L 533.7374,578.0626 z M 364.0924,440.3776 L 364.0924,440.3776 z M 289.2973,338.0546 L 289.2973,338.0546 z M 141.1389,578.2139 C 114.947,578.2139 97.50942,575.2997 80.85194,567.7687 C 64.30383,560.1287 49.18629,550.0126 37.13139,530.9126 C 25.07639,511.8126 19.0489,487.3636 19.0489,457.5676 C 19.0489,417.8396 29.62439,387.3336 50.77529,366.0506 C 72.03569,344.6576 102.781,336.8036 141.5759,336.8036 L 171.6303,361.3686 C 126.3082,354.764 104.6692,360.4748 75.45158,384.1847 C 58.16021,401.5349 48.44746,421.7272 47.26066,443.8141 C 45.94727,475.6741 45.58121,490.4822 62.26704,513.8163 C 90.0847,556.6207 119.7971,554.9007 158.9827,562.6541 L 141.1389,578.2139 z "
       id="path881"
       sodipodi:nodetypes="cccccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:3.25;font-family:Arial Black"
       d="M 171.4085,517.8638 C 160.5265,523.3048 152.3019,524.4204 139.5939,524.4204 C 124.1766,524.4204 120.8149,521.116 111.0098,514.5067 C 102.3573,506.7449 104.277,505.9477 97.18114,494.705 C 92.80565,481.2858 93.61057,474.5118 92.52236,456.4288 C 94.69877,433.0437 94.39455,430.866 103.0359,412.8971 C 115.5505,400.3046 116.9025,393.4644 139.7383,393.4644 L 165.2426,399.7961 L 143.7308,412.2209 C 139.1497,411.3742 139.862,411.5656 136.6739,412.2136 C 126.1147,416.5886 124.8888,419.2346 119.5992,427.2012 C 115.5997,433.1116 113.6,442.3949 113.6,455.0516 C 113.6,470.7274 115.5131,489.0675 120.2867,494.9138 C 125.0602,500.6959 130.3481,504.9463 138.9921,504.9463 C 144.1656,505.0075 145.7089,505.0314 148.4842,504.1306 L 171.4085,517.8638 z M 228.7465,384.9916 L 228.7465,384.9916 z M 272.7732,445.2221 L 272.7732,445.2221 z M 372.6314,526.2674 L 372.6314,526.2674 z M 416.658,442.2348 L 416.658,442.2348 z "
       id="path738"
       sodipodi:nodetypes="cccccccccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#ffffff;stroke-width:3.25;font-family:Arial Black"
       d="M 171.4085,517.8638 C 160.5265,523.3048 152.3019,524.4204 139.5939,524.4204 C 124.1766,524.4204 120.8149,521.116 111.0098,514.5067 C 102.3573,506.7449 104.277,505.9477 97.18114,494.705 C 92.80565,481.2858 93.61057,474.5118 92.52236,456.4288 C 94.69877,433.0437 94.39455,430.866 103.0359,412.8971 C 115.5505,400.3046 116.9025,393.4644 139.7383,393.4644 L 165.2426,399.7961 L 143.7308,412.2209 C 139.1497,411.3742 139.862,411.5656 136.6739,412.2136 C 126.1147,416.5886 124.8888,419.2346 119.5992,427.2012 C 115.5997,433.1116 113.6,442.3949 113.6,455.0516 C 113.6,470.7274 115.5131,489.0675 120.2867,494.9138 C 125.0602,500.6959 130.3481,504.9463 138.9921,504.9463 C 144.1656,505.0075 145.7089,505.0314 148.4842,504.1306 L 171.4085,517.8638 z M 228.7465,384.9916 L 228.7465,384.9916 z M 272.7732,445.2221 L 272.7732,445.2221 z M 372.6314,526.2674 L 372.6314,526.2674 z M 416.658,442.2348 L 416.658,442.2348 z "
       id="path884"
       sodipodi:nodetypes="cccccccccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:3.25;font-family:Arial Black"
       d="M 413.8553,443.5674 L 413.8553,443.5674 z M 369.8287,527.6 L 369.8287,527.6 z M 269.9705,446.5547 L 269.9705,446.5547 z M 225.9438,386.3242 L 225.9438,386.3242 z M 164.5296,466.2793 L 181.7066,477.9047 L 189.8208,477.9673 L 166.683,522.6456 L 147.4528,504.4218 C 153.5663,502.2852 154.6861,501.1925 160.7995,490.9308 C 163.7096,482.5052 164.7446,475.9547 164.5296,466.2793 z "
       id="path894"
       sodipodi:nodetypes="ccccccccccscccc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient886);stroke-width:3.25;font-family:Arial Black"
       d="M 171.4085,517.8638 C 160.5265,523.3048 152.3019,524.4204 139.5939,524.4204 C 124.1766,524.4204 120.8149,521.116 111.0098,514.5067 C 102.3573,506.7449 104.277,505.9477 97.18114,494.705 C 92.80565,481.2858 93.61057,474.5118 92.52236,456.4288 C 94.69877,433.0437 94.39455,430.866 103.0359,412.8971 C 115.5505,400.3046 116.9025,393.4644 139.7383,393.4644 L 165.2426,399.7961 L 143.7308,412.2209 C 139.1497,411.3742 139.862,411.5656 136.6739,412.2136 C 126.1147,416.5886 124.8888,419.2346 119.5992,427.2012 C 115.5997,433.1116 113.6,442.3949 113.6,455.0516 C 113.6,470.7274 115.5131,489.0675 120.2867,494.9138 C 125.0602,500.6959 130.3481,504.9463 138.9921,504.9463 C 144.1656,505.0075 145.7089,505.0314 148.4842,504.1306 L 171.4085,517.8638 z M 228.7465,384.9916 L 228.7465,384.9916 z M 272.7732,445.2221 L 272.7732,445.2221 z M 372.6314,526.2674 L 372.6314,526.2674 z M 416.658,442.2348 L 416.658,442.2348 z "
       id="path885"
       sodipodi:nodetypes="cccccccccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient897);stroke-width:3.25;font-family:Arial Black"
       d="M 413.8553,443.5674 L 413.8553,443.5674 z M 369.8287,527.6 L 369.8287,527.6 z M 269.9705,446.5547 L 269.9705,446.5547 z M 225.9438,386.3242 L 225.9438,386.3242 z M 164.5296,466.2793 L 181.7066,477.9047 L 189.8208,477.9673 L 166.683,522.6456 L 147.4528,504.4218 C 153.5663,502.2852 154.6861,501.1925 160.7995,490.9308 C 163.7096,482.5052 164.7446,475.9547 164.5296,466.2793 z "
       id="path898"
       sodipodi:nodetypes="ccccccccccscccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:3.25;font-family:Arial Black"
       d="M 164.5721,400.0841 C 169.7003,403.682 176.6399,402.5063 180.6065,410.1938 L 177.4065,417.407 L 162.7163,430.7213 L 160.3063,425.4607 C 159.2761,421.409 149.9537,413.6396 143.5638,412.3145 L 164.5721,400.0841 z M 220.0404,383.0903 L 220.0404,383.0903 z M 264.0671,443.3208 L 264.0671,443.3208 z M 363.9253,524.3661 L 363.9253,524.3661 z M 407.9519,440.3334 L 407.9519,440.3334 z "
       id="path899"
       sodipodi:nodetypes="ccccccccccccscc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient901);stroke-width:3.25;font-family:Arial Black"
       d="M 164.5721,400.0841 C 169.7003,403.682 176.6399,402.5063 180.6065,410.1938 L 177.4065,417.407 L 162.7163,430.7213 L 160.3063,425.4607 C 159.2761,421.409 149.9537,413.6396 143.5638,412.3145 L 164.5721,400.0841 z M 220.0404,383.0903 L 220.0404,383.0903 z M 264.0671,443.3208 L 264.0671,443.3208 z M 363.9253,524.3661 L 363.9253,524.3661 z M 407.9519,440.3334 L 407.9519,440.3334 z "
       id="path900"
       sodipodi:nodetypes="ccccccccccccscc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient919);stroke-width:3.25;font-family:Arial Black"
       d="M 171.4085,517.8638 C 160.5265,523.3048 152.3019,524.4204 139.5939,524.4204 C 124.1766,524.4204 120.8149,521.116 111.0098,514.5067 C 102.3573,506.7449 104.277,505.9477 97.18114,494.705 C 92.80565,481.2858 93.61057,474.5118 92.52236,456.4288 C 94.69877,433.0437 94.39455,430.866 103.0359,412.8971 C 115.5505,400.3046 116.9025,393.4644 139.7383,393.4644 L 165.2426,399.7961 L 143.7308,412.2209 C 139.1497,411.3742 139.862,411.5656 136.6739,412.2136 C 126.1147,416.5886 124.8888,419.2346 119.5992,427.2012 C 115.5997,433.1116 113.6,442.3949 113.6,455.0516 C 113.6,470.7274 115.5131,489.0675 120.2867,494.9138 C 125.0602,500.6959 130.3481,504.9463 138.9921,504.9463 C 144.1656,505.0075 145.7089,505.0314 148.4842,504.1306 L 171.4085,517.8638 z M 228.7465,384.9916 L 228.7465,384.9916 z M 272.7732,445.2221 L 272.7732,445.2221 z M 372.6314,526.2674 L 372.6314,526.2674 z M 416.658,442.2348 L 416.658,442.2348 z "
       id="path918"
       sodipodi:nodetypes="cccccccccccccccccccccccc" /><path
       style="font-size:12px;fill:#808080;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 177.8644,420.2019 L 166.1813,431.6507 L 248.9156,429.126 L 234.9422,418.4684 L 177.8644,420.2019 z "
       id="path903"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:#808080;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 232.2325,477.1047 L 243.9937,468.1559 L 167.9001,464.8994 L 182.0297,475.8694 L 232.2325,477.1047 z "
       id="path904"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 177.8644,419.8894 L 163.9938,431.9632 L 250.7906,429.126 L 234.9422,418.4684 L 177.8644,419.8894 z "
       id="path905"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:url(#linearGradient907);fill-rule:evenodd;stroke-width:3.25"
       d="M 177.8644,419.8894 L 163.9938,431.9632 L 250.7906,429.126 L 234.9422,418.4684 L 177.8644,419.8894 z "
       id="path906"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:url(#linearGradient909);fill-rule:evenodd;stroke-width:3.25"
       d="M 177.8644,419.8894 L 163.9938,431.9632 L 250.7906,429.126 L 234.9422,418.4684 L 177.8644,419.8894 z "
       id="path908"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 231.9957,477.8152 L 246.362,467.919 L 164.3476,464.4257 L 181.556,476.5799 L 231.9957,477.8152 z "
       id="path913"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:url(#linearGradient915);fill-rule:evenodd;stroke-width:3.25"
       d="M 231.9957,477.8152 L 246.362,467.919 L 164.3476,464.4257 L 181.556,476.5799 L 231.9957,477.8152 z "
       id="path914"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:12px;fill:url(#linearGradient917);fill-rule:evenodd;stroke-width:3.25"
       d="M 231.9957,477.8152 L 246.362,467.919 L 164.3476,464.4257 L 181.556,476.5799 L 231.9957,477.8152 z "
       id="path916"
       sodipodi:nodetypes="ccccc" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient1172);stroke-width:3.25;font-family:Arial Black"
       d="M 171.4085,517.8638 C 160.5265,523.3048 152.3019,524.4204 139.5939,524.4204 C 124.1766,524.4204 120.8149,521.116 111.0098,514.5067 C 102.3573,506.7449 104.277,505.9477 97.18114,494.705 C 92.80565,481.2858 93.61057,474.5118 92.52236,456.4288 C 94.69877,433.0437 94.39455,430.866 103.0359,412.8971 C 115.5505,400.3046 116.9025,393.4644 139.7383,393.4644 L 165.2426,399.7961 L 143.7308,412.2209 C 139.1497,411.3742 139.862,411.5656 136.6739,412.2136 C 126.1147,416.5886 124.8888,419.2346 119.5992,427.2012 C 115.5997,433.1116 113.6,442.3949 113.6,455.0516 C 113.6,470.7274 115.5131,489.0675 120.2867,494.9138 C 125.0602,500.6959 130.3481,504.9463 138.9921,504.9463 C 144.1656,505.0075 145.7089,505.0314 148.4842,504.1306 L 171.4085,517.8638 z M 228.7465,384.9916 L 228.7465,384.9916 z M 272.7732,445.2221 L 272.7732,445.2221 z M 372.6314,526.2674 L 372.6314,526.2674 z M 416.658,442.2348 L 416.658,442.2348 z "
       id="path1171"
       sodipodi:nodetypes="cccccccccccccccccccccccc" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;font-family:Arial Black"
       d="M 544.6252,438.859 L 544.6252,438.859 z M 479.8756,562.9505 L 479.8756,562.9505 z M 333.0148,443.2704 L 333.0148,443.2704 z M 268.2651,354.3285 L 268.2651,354.3285 z M 181.2904,481.5172 L 181.8345,477.1646 C 218.2579,478.3012 196.0425,477.3512 232.4135,478.5109 C 233.0418,478.5214 233.9351,479.7208 233.1202,487.2097 C 231.3731,512.8354 226.0014,530.6313 188.8578,558.5392 C 176.8092,563.9467 161.44,566.6506 142.7504,566.6506 C 120.0762,566.6506 101.5288,563.3776 87.10847,556.8314 C 72.78291,550.1905 60.40222,538.5687 49.96636,521.9661 C 39.53054,505.3635 34.31259,484.1123 34.31259,458.2126 C 34.31259,423.6796 43.46768,397.163 61.77784,378.663 C 80.18285,360.0682 106.1775,350.7709 139.7619,350.7709 C 166.0413,350.7709 186.6758,356.0837 201.6655,366.7093 C 216.75,377.3348 228.4185,395.0736 235.7236,417.0837 L 206.8302,418.0313 C 185.3344,419.1299 190.7044,417.7965 177.628,418.6449 C 174.023,413.7114 164.9963,405.1802 159.7784,402.5239 C 154.5605,399.8675 147.7786,398.0656 141.3273,398.5392 C 126.7172,398.5392 115.5223,404.8948 107.7429,416.6591 C 101.8609,425.387 98.91993,439.0958 98.91993,457.7855 C 98.91993,480.9343 102.4301,496.8254 109.4506,505.4586 C 116.4711,513.9971 126.3377,518.266 139.0504,518.266 C 151.3837,518.266 160.6811,514.8034 166.9426,507.8776 C 173.299,500.9521 179.6171,494.9039 181.2904,481.5172 z "
       id="path646"
       sodipodi:nodetypes="ccccccccccscccccccccccccccccccs" /><path
       style="font-size:72px;font-weight:normal;fill:url(#radialGradient922);stroke:#000000;font-family:Arial Black"
       d="M 544.6252,438.859 L 544.6252,438.859 z M 479.8756,562.9505 L 479.8756,562.9505 z M 333.0148,443.2704 L 333.0148,443.2704 z M 268.2651,354.3285 L 268.2651,354.3285 z M 181.2904,481.5172 L 181.8345,477.1646 C 218.2579,478.3012 196.0425,477.3512 232.4135,478.5109 C 233.0418,478.5214 233.9351,479.7208 233.1202,487.2097 C 231.3731,512.8354 226.0014,530.6313 188.8578,558.5392 C 176.8092,563.9467 161.44,566.6506 142.7504,566.6506 C 120.0762,566.6506 101.5288,563.3776 87.10847,556.8314 C 72.78291,550.1905 60.40222,538.5687 49.96636,521.9661 C 39.53054,505.3635 34.31259,484.1123 34.31259,458.2126 C 34.31259,423.6796 43.46768,397.163 61.77784,378.663 C 80.18285,360.0682 106.1775,350.7709 139.7619,350.7709 C 166.0413,350.7709 186.6758,356.0837 201.6655,366.7093 C 216.75,377.3348 228.4185,395.0736 235.7236,417.0837 L 206.8302,418.0313 C 185.3344,419.1299 190.7044,417.7965 177.628,418.6449 C 174.023,413.7114 164.9963,405.1802 159.7784,402.5239 C 154.5605,399.8675 147.7786,398.0656 141.3273,398.5392 C 126.7172,398.5392 115.5223,404.8948 107.7429,416.6591 C 101.8609,425.387 98.91993,439.0958 98.91993,457.7855 C 98.91993,480.9343 102.4301,496.8254 109.4506,505.4586 C 116.4711,513.9971 126.3377,518.266 139.0504,518.266 C 151.3837,518.266 160.6811,514.8034 166.9426,507.8776 C 173.299,500.9521 179.6171,494.9039 181.2904,481.5172 z "
       id="path920"
       sodipodi:nodetypes="ccccccccccscccccccccccccccccccs" /></g><g
     id="g1350"
     transform="translate(8.441408,-208.2214)"><path
       transform="matrix(4.440541,0,0,4.452115,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:0.73089999;font-family:Arial Black"
       d="M 133.1117,85.96286 C 133.1117,85.96286 136.0179,85.96286 133.1117,85.96286 z M 140.2858,105.6702 L 147.4779,106.0867 C 148.0639,106.5086 149.764,107.5722 150.8656,108.955 C 151.9906,110.3378 153.2978,112.3305 153.6728,113.0805 L 160.8998,126.8255 L 160.9046,130.2894 L 154.0533,125.3186 L 148.4934,117.3219 C 148.4934,117.3219 142.653,105.1311 140.2858,105.6702 z "
       id="path757"
       sodipodi:nodetypes="ccccccccccc" /><path
       transform="matrix(4.440541,0,0,4.452115,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:0.73089999;font-family:Arial Black"
       d="M 149.7708,91.15968 L 145.1278,83.35817 L 139.2776,82.78094 L 132.948,76.48288 C 138.4271,76.48289 144.4174,77.2752 147.019,78.48943 C 149.6205,79.33317 151.9039,82.0149 153.4977,84.31178 C 155.0914,87.14095 155.5169,88.43638 155.5169,92.45859 C 155.5169,95.31796 154.9075,97.79063 153.6887,99.87656 C 152.47,101.9391 150.237,104.541 148.1042,105.8301 L 139.9144,105.8316 L 147.6436,99.86585 L 149.7708,91.15968 z M 125.0013,99.03281 L 125.0013,99.03281 z "
       id="path753"
       sodipodi:nodetypes="cccccccccccccc" /><path
       transform="matrix(2.758731,0,0,2.765921,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:1.17649996;font-family:Arial Black"
       d="M 205.5291,141.1674 L 198.8791,142.0183 L 199.0606,159.5891 L 208.1351,159.6702 L 211.0491,155.5192 C 214.7062,155.4381 216.0821,155.0288 216.7384,154.1616 C 217.4181,153.2945 217.7579,152.2984 217.7579,151.1734 C 217.7579,149.5093 217.2306,148.232 216.1759,147.3413 C 215.1212,146.4507 214.0516,145.8756 210.1044,146.0054 M 197.9104,140.7905 L 211.798,139.9796 C 216.4815,140.3041 215.7164,140.8362 221.4741,142.614 C 223.0678,144.8874 224.9057,145.5882 224.9057,148.8694 C 224.9057,151.7288 224.8168,152.3846 223.5981,154.4705 L 217.7467,159.7376 L 210.6119,161.1815 L 198.3374,161.1814 L 197.9104,140.7905 z "
       id="path762"
       sodipodi:nodetypes="cccccccccccccccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 547.1058,391.6655 L 561.0276,404.1653 L 579.1779,403.9026 L 568.0839,392.54 L 547.1058,391.6655 z "
       id="path764"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 561.6249,430.1213 L 550.6976,441.0487 L 575.0264,440.8426 L 582.2426,430.1213 L 561.6249,430.1213 z "
       id="path766"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 548.3265,392.5971 L 547.9141,443.729 L 560.6972,430.9461 L 560.0787,403.5245 L 548.3265,392.5971 z "
       id="path768"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       transform="matrix(3.367258,0,0,3.376034,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:0.96390003;font-family:Arial Black"
       d="M 166.5047,155.3689 L 166.5047,155.3689 z M 166.2273,136.7017 L 169.4677,138.311 L 176.1747,144.25 L 179.1323,150.3597 L 186.196,164.5467 L 179.2082,171.534 L 179.2104,166.8431 L 171.32,151.334 L 169.2812,147.7822 L 168.333,146.4466 L 163.8319,141.6763 L 166.2273,136.7017 z "
       id="path772"
       sodipodi:nodetypes="cccccccccccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 621.22,560.9282 L 605.1152,581.296 L 711.691,581.5328 L 688.4813,560.4545 L 621.22,560.9282 z "
       id="path775"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 473.1671,340.0713 L 490.1791,357.3584 L 607.9579,358.0763 L 590.7271,340.4858 L 473.1671,340.0713 z "
       id="path777"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 547.6355,473.441 L 546.7789,558.7532 L 565.5908,578.8232 L 565.5908,493.5727 L 547.6355,473.441 z "
       id="path779"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 470.9093,341.7756 L 472.3058,578.1765 L 492.3165,557.8201 L 489.5386,356.3031 L 470.9093,341.7756 z "
       id="path784"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke:#000000;stroke-width:3.25"
       d="M 491.0706,558.35 L 473.9296,580.7396 L 564.0167,581.3804 L 550.075,562.4904 L 491.0706,558.35 z "
       id="path782"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 471.5343,341.1506 L 472.3058,579.4265 L 491.0665,558.4451 L 489.5386,357.5531 L 471.5343,341.1506 z "
       id="path785"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 472.5421,340.0713 L 492.0541,357.9834 L 609.2079,358.0763 L 591.6646,340.4857 L 472.5421,340.0713 z "
       id="path786"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       transform="matrix(4.440541,0,0,4.452115,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:0.73089999;font-family:Arial Black"
       d="M 125.0013,99.03281 L 125.0013,99.03281 z M 149.7708,91.15968 L 145.1278,83.35817 L 139.2776,82.78094 L 132.948,76.48288 C 138.4271,76.48289 144.4174,77.2752 147.019,78.48943 C 149.6205,79.33317 151.9039,82.0149 153.4977,84.31178 C 155.0914,87.14095 155.5169,88.43638 155.5169,92.45859 C 155.5169,95.31796 154.9075,97.79063 153.6887,99.87656 C 152.47,101.9391 149.9555,104.6814 147.8227,105.9705 L 139.9144,105.6912 L 147.6436,99.86585 L 149.7708,91.15968 z "
       id="path787"
       sodipodi:nodetypes="cccccccccccccc" /><path
       transform="matrix(4.440541,0,0,4.452115,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:0.73089999;font-family:Arial Black"
       d="M 140.2858,106.0914 L 147.7594,106.3675 C 148.3454,106.7894 149.6232,107.5722 150.7249,108.955 C 151.8499,110.3378 153.157,112.3305 153.532,113.0805 L 160.759,126.6851 L 160.7639,130.4298 L 154.757,125.3186 L 148.4934,117.3219 C 148.4934,117.3219 142.653,105.5523 140.2858,106.0914 z M 133.1117,85.96286 C 133.1117,85.96286 136.0179,85.96286 133.1117,85.96286 z "
       id="path788"
       sodipodi:nodetypes="ccccccccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 623.72,560.9282 L 605.1152,580.671 L 711.066,580.9078 L 687.2313,560.4545 L 623.72,560.9282 z "
       id="path789"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       transform="matrix(3.367258,0,0,3.376034,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:0.96390003;font-family:Arial Black"
       d="M 166.5047,155.3689 L 166.5047,155.3689 z M 166.2273,136.7017 L 169.4677,138.311 L 176.1747,144.25 L 179.1323,150.3597 L 186.196,164.3616 L 179.2082,171.534 L 179.2104,166.8431 L 171.32,151.334 L 169.2812,147.7822 L 168.333,146.4466 L 163.6463,141.306 L 166.2273,136.7017 z "
       id="path790"
       sodipodi:nodetypes="cccccccccccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 546.3855,474.066 L 546.7789,556.8782 L 565.5908,580.0732 L 565.5908,494.8227 L 546.3855,474.066 z "
       id="path791"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 492.3206,558.35 L 473.3046,580.7396 L 565.2667,581.3804 L 550.075,562.4904 L 492.3206,558.35 z "
       id="path792"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 547.7015,393.8472 L 547.2891,442.479 L 560.6972,430.5338 L 560.0787,403.9368 L 547.7015,393.8472 z "
       id="path795"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 547.7308,391.6655 L 561.0276,403.5403 L 579.8029,403.2776 L 569.3339,391.9149 L 547.7308,391.6655 z "
       id="path796"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       transform="matrix(2.758731,0,0,2.765921,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke-width:1.17649996;font-family:Arial Black"
       d="M 205.5291,141.1674 L 198.8791,142.0183 L 199.0606,159.5891 L 208.1351,159.6702 L 211.0491,155.6683 C 214.7062,155.5872 216.0821,155.0288 216.7384,154.1616 C 217.4181,153.2945 217.7579,152.2984 217.7579,151.1734 C 217.7579,149.5093 217.2306,148.232 216.1759,147.3413 C 215.1212,146.4507 213.8544,145.6789 209.9072,145.8087 M 197.9104,140.7905 L 211.798,139.9796 C 216.4815,140.3041 215.7164,140.8362 221.4741,142.614 C 223.0678,144.8874 224.9057,145.5882 224.9057,148.8694 C 224.9057,151.7288 224.8168,152.3846 223.5981,154.4705 L 217.7467,159.7376 L 210.6119,161.1815 L 198.3374,161.1814 L 197.9104,140.7905 z "
       id="path797"
       sodipodi:nodetypes="cccccccccccccccccc" /><path
       style="font-size:12px;fill:#c3433d;fill-rule:evenodd;stroke-width:3.25"
       d="M 562.0372,430.9461 L 550.6976,441.0487 L 575.0264,440.8426 L 582.655,430.5337 L 562.0372,430.9461 z "
       id="path798"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       transform="matrix(4.440541,0,0,4.452115,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient1583);stroke-width:0.73089999;font-family:Arial Black"
       d="M 125.0013,99.03281 L 125.0013,99.03281 z M 149.7708,91.15968 L 145.1278,83.35817 L 139.2776,82.78094 L 132.948,76.48288 C 138.4271,76.48289 144.4174,77.2752 147.019,78.48943 C 149.6205,79.33317 151.9039,82.0149 153.4977,84.31178 C 155.0914,87.14095 155.5169,88.43638 155.5169,92.45859 C 155.5169,95.31796 154.9075,97.79063 153.6887,99.87656 C 152.47,101.9391 149.9555,104.6814 147.8227,105.9705 L 139.9144,105.6912 L 147.6436,99.86585 L 149.7708,91.15968 z "
       id="path799"
       sodipodi:nodetypes="cccccccccccccc" /><path
       transform="matrix(4.440541,0,0,4.452115,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient1590);stroke-width:0.73089999;font-family:Arial Black"
       d="M 140.2858,106.0914 L 147.7594,106.3675 C 148.3454,106.7894 149.6232,107.5722 150.7249,108.955 C 151.8499,110.3378 153.157,112.3305 153.532,113.0805 L 160.759,126.6851 L 160.7639,130.4298 L 154.757,125.3186 L 148.4934,117.3219 C 148.4934,117.3219 142.653,105.5523 140.2858,106.0914 z M 133.1117,85.96286 C 133.1117,85.96286 136.0179,85.96286 133.1117,85.96286 z "
       id="path800"
       sodipodi:nodetypes="ccccccccccc" /><path
       style="font-size:12px;fill:url(#linearGradient1595);fill-rule:evenodd;stroke-width:3.25"
       d="M 472.5421,340.0713 L 492.0541,357.9834 L 609.2079,358.0763 L 591.6646,340.4857 L 472.5421,340.0713 z "
       id="path804"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient806);fill-rule:evenodd;stroke-width:3.25"
       d="M 471.5343,341.1506 L 472.3058,579.4265 L 491.0665,558.4451 L 489.5386,357.5531 L 471.5343,341.1506 z "
       id="path805"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient808);fill-rule:evenodd;stroke-width:3.25"
       d="M 492.3206,558.35 L 473.3046,580.7396 L 565.2667,581.3804 L 550.075,562.4904 L 492.3206,558.35 z "
       id="path807"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient810);fill-rule:evenodd;stroke-width:3.25"
       d="M 546.3855,474.066 L 546.7789,556.8782 L 565.5908,580.0732 L 565.5908,494.8227 L 546.3855,474.066 z "
       id="path809"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       transform="matrix(3.367258,0,0,3.376034,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient812);stroke-width:0.96390003;font-family:Arial Black"
       d="M 166.5047,155.3689 L 166.5047,155.3689 z M 166.2273,136.7017 L 169.4677,138.311 L 176.1747,144.25 L 179.1323,150.3597 L 186.196,164.3616 L 179.2082,171.534 L 179.2104,166.8431 L 171.32,151.334 L 169.2812,147.7822 L 168.333,146.4466 L 163.6463,141.306 L 166.2273,136.7017 z "
       id="path811"
       sodipodi:nodetypes="cccccccccccccc" /><path
       transform="matrix(3.367258,0,0,3.376034,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:url(#radialGradient814);stroke-width:0.96390003;font-family:Arial Black"
       d="M 166.5047,155.3689 L 166.5047,155.3689 z M 166.2273,136.7017 L 169.4677,138.311 L 176.1747,144.25 L 179.1323,150.3597 L 186.196,164.3616 L 179.2082,171.534 L 179.2104,166.8431 L 171.32,151.334 L 169.2812,147.7822 L 168.333,146.4466 L 163.6463,141.306 L 166.2273,136.7017 z "
       id="path813"
       sodipodi:nodetypes="cccccccccccccc" /><path
       style="font-size:12px;fill:url(#linearGradient820);fill-rule:evenodd;stroke-width:3.25"
       d="M 623.72,560.9282 L 605.1152,580.671 L 711.066,580.9078 L 687.2313,560.4545 L 623.72,560.9282 z "
       id="path819"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient822);fill-rule:evenodd;stroke-width:3.25"
       d="M 623.72,560.9282 L 605.1152,580.671 L 711.066,580.9078 L 687.2313,560.4545 L 623.72,560.9282 z "
       id="path821"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient4813);fill-rule:evenodd;stroke-width:3.25"
       d="M 547.7015,393.8472 L 547.2891,442.479 L 560.6972,430.5338 L 560.0787,403.9368 L 547.7015,393.8472 z "
       id="path826"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient4815);fill-rule:evenodd;stroke-width:3.25"
       d="M 547.7015,393.8472 L 547.2891,442.479 L 560.6972,430.5338 L 560.0787,403.9368 L 547.7015,393.8472 z "
       id="path828"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       transform="matrix(2.758731,0,0,2.765921,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient4817);stroke-width:1.17649996;font-family:Arial Black"
       d="M 205.5291,141.1674 L 198.8791,142.0183 L 199.0606,159.5891 L 208.1351,159.6702 L 211.0491,155.6683 C 214.7062,155.5872 216.0821,155.0288 216.7384,154.1616 C 217.4181,153.2945 217.7579,152.2984 217.7579,151.1734 C 217.7579,149.5093 217.2306,148.232 216.1759,147.3413 C 215.1212,146.4507 213.8544,145.6789 209.9072,145.8087 M 197.9104,140.7905 L 211.798,139.9796 C 216.4815,140.3041 215.7164,140.8362 221.4741,142.614 C 223.0678,144.8874 224.9057,145.5882 224.9057,148.8694 C 224.9057,151.7288 224.8168,152.3846 223.5981,154.4705 L 217.7467,159.7376 L 210.6119,161.1815 L 198.3374,161.1814 L 197.9104,140.7905 z "
       id="path833"
       sodipodi:nodetypes="cccccccccccccccccc" /><path
       transform="matrix(2.758731,0,0,2.765921,14.21009,-3.051758e-5)"
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient4819);stroke-width:1.17649996;font-family:Arial Black"
       d="M 205.5291,141.1674 L 198.8791,142.0183 L 199.0606,159.5891 L 208.1351,159.6702 L 211.0491,155.6683 C 214.7062,155.5872 216.0821,155.0288 216.7384,154.1616 C 217.4181,153.2945 217.7579,152.2984 217.7579,151.1734 C 217.7579,149.5093 217.2306,148.232 216.1759,147.3413 C 215.1212,146.4507 213.8544,145.6789 209.9072,145.8087 M 197.9104,140.7905 L 211.798,139.9796 C 216.4815,140.3041 215.7164,140.8362 221.4741,142.614 C 223.0678,144.8874 224.9057,145.5882 224.9057,148.8694 C 224.9057,151.7288 224.8168,152.3846 223.5981,154.4705 L 217.7467,159.7376 L 210.6119,161.1815 L 198.3374,161.1814 L 197.9104,140.7905 z "
       id="path835"
       sodipodi:nodetypes="cccccccccccccccccc" /><path
       style="font-size:12px;fill:url(#linearGradient4821);fill-rule:evenodd;stroke-width:3.25"
       d="M 547.7308,391.6655 L 561.0276,403.5403 L 579.8029,403.2776 L 569.3339,391.9149 L 547.7308,391.6655 z "
       id="path837"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient4823);fill-rule:evenodd;stroke-width:3.25"
       d="M 547.7308,391.6655 L 561.0276,403.5403 L 579.8029,403.2776 L 569.3339,391.9149 L 547.7308,391.6655 z "
       id="path841"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient4825);fill-rule:evenodd;stroke-width:3.25"
       d="M 562.0372,430.9461 L 550.6976,441.0487 L 575.0264,440.8426 L 582.655,430.5337 L 562.0372,430.9461 z "
       id="path847"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient4827);fill-rule:evenodd;stroke-width:3.25"
       d="M 562.0372,430.9461 L 550.6976,441.0487 L 575.0264,440.8426 L 582.655,430.5337 L 562.0372,430.9461 z "
       id="path849"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient1252);fill-rule:evenodd;stroke-width:3.25"
       d="M 546.3855,474.066 L 546.7789,556.8782 L 565.5908,580.0732 L 565.5908,494.8227 L 546.3855,474.066 z "
       id="path1251"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:12px;fill:url(#linearGradient1254);fill-rule:evenodd;stroke-width:3.25"
       d="M 546.3855,474.066 L 546.7789,556.8782 L 565.5908,580.0732 L 565.5908,494.8227 L 546.3855,474.066 z "
       id="path1253"
       sodipodi:nodetypes="ccccc"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:72px;font-weight:normal;fill:#c3433d;stroke:#000000;stroke-width:0.875;font-family:Arial Black"
       d="M 486.7536,563.6203 L 486.7536,353.9554 L 594.4519,353.9554 C 614.4226,353.9554 629.6857,355.6716 640.2417,359.104 C 650.7973,362.5365 659.3087,368.9246 665.7752,378.2685 C 672.242,387.517 675.4754,398.8155 675.4754,412.1637 C 675.4754,423.796 673.0028,433.8551 668.0575,442.3407 C 663.1126,450.7311 656.3131,457.5484 647.6592,462.7926 C 642.1434,466.1296 634.5831,468.8947 624.9782,471.0874 C 632.6813,473.6617 638.2921,476.2359 641.8107,478.8106 C 644.188,480.5265 647.6117,484.1976 652.0811,489.8229 C 656.6458,495.4483 659.6889,499.7865 661.2105,502.8375 L 692.4504,563.6203 L 619.4153,563.6203 L 584.8945,499.5481 C 580.5201,491.2529 576.6212,485.8659 573.1975,483.3872 C 568.5379,480.1454 563.2599,478.5242 557.3639,478.5242 L 551.6579,478.5242 L 551.6579,563.6203 L 486.7536,563.6203 z M 551.6579,438.9085 L 578.9036,438.9085 C 581.8514,438.9085 587.5574,437.9549 596.021,436.0478 C 600.3004,435.1898 603.7716,432.9967 606.4342,429.4693 C 609.192,425.9415 610.5712,421.8892 610.5712,417.3127 C 610.5712,410.543 608.4313,405.3468 604.1518,401.7234 C 599.8724,398.1004 591.8369,396.2888 580.0446,396.2888 L 551.6579,396.2888 L 551.6579,438.9085 z "
       id="path742"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient854);stroke:#000000;stroke-width:0.875;font-family:Arial Black"
       d="M 486.7536,563.6203 L 486.7536,353.9554 L 594.4519,353.9554 C 614.4226,353.9554 629.6857,355.6716 640.2417,359.104 C 650.7973,362.5365 659.3087,368.9246 665.7752,378.2685 C 672.242,387.517 675.4754,398.8155 675.4754,412.1637 C 675.4754,423.796 673.0028,433.8551 668.0575,442.3407 C 663.1126,450.7311 656.3131,457.5484 647.6592,462.7926 C 642.1434,466.1296 634.5831,468.8947 624.9782,471.0874 C 632.6813,473.6617 638.2921,476.2359 641.8107,478.8106 C 644.188,480.5265 647.6117,484.1976 652.0811,489.8229 C 656.6458,495.4483 659.6889,499.7865 661.2105,502.8375 L 692.4504,563.6203 L 619.4153,563.6203 L 584.8945,499.5481 C 580.5201,491.2529 576.6212,485.8659 573.1975,483.3872 C 568.5379,480.1454 563.2599,478.5242 557.3639,478.5242 L 551.6579,478.5242 L 551.6579,563.6203 L 486.7536,563.6203 z M 551.6579,438.9085 L 578.9036,438.9085 C 581.8514,438.9085 587.5574,437.9549 596.021,436.0478 C 600.3004,435.1898 603.7716,432.9967 606.4342,429.4693 C 609.192,425.9415 610.5712,421.8892 610.5712,417.3127 C 610.5712,410.543 608.4313,405.3468 604.1518,401.7234 C 599.8724,398.1004 591.8369,396.2888 580.0446,396.2888 L 551.6579,396.2888 L 551.6579,438.9085 z "
       id="path853"
       transform="translate(14.21009,-3.051758e-5)" /><path
       style="font-size:72px;font-weight:normal;fill:url(#linearGradient852);stroke:#000000;stroke-width:0.875;font-family:Arial Black"
       d="M 486.7536,563.6203 L 486.7536,353.9554 L 594.4519,353.9554 C 614.4226,353.9554 629.6857,355.6716 640.2417,359.104 C 650.7973,362.5365 659.3087,368.9246 665.7752,378.2685 C 672.242,387.517 675.4754,398.8155 675.4754,412.1637 C 675.4754,423.796 673.0028,433.8551 668.0575,442.3407 C 663.1126,450.7311 656.3131,457.5484 647.6592,462.7926 C 642.1434,466.1296 634.5831,468.8947 624.9782,471.0874 C 632.6813,473.6617 638.2921,476.2359 641.8107,478.8106 C 644.188,480.5265 647.6117,484.1976 652.0811,489.8229 C 656.6458,495.4483 659.6889,499.7865 661.2105,502.8375 L 692.4504,563.6203 L 619.4153,563.6203 L 584.8945,499.5481 C 580.5201,491.2529 576.6212,485.8659 573.1975,483.3872 C 568.5379,480.1454 563.2599,478.5242 557.3639,478.5242 L 551.6579,478.5242 L 551.6579,563.6203 L 486.7536,563.6203 z M 551.6579,438.9085 L 578.9036,438.9085 C 581.8514,438.9085 587.5574,437.9549 596.021,436.0478 C 600.3004,435.1898 603.7716,432.9967 606.4342,429.4693 C 609.192,425.9415 610.5712,421.8892 610.5712,417.3127 C 610.5712,410.543 608.4313,405.3468 604.1518,401.7234 C 599.8724,398.1004 591.8369,396.2888 580.0446,396.2888 L 551.6579,396.2888 L 551.6579,438.9085 z "
       id="path851"
       transform="translate(14.21009,-3.051758e-5)" /></g></svg>