summaryrefslogtreecommitdiff
path: root/stickers/guix-multiple.svg
blob: af3cc97e33a039ce1ecbb95c8a19cad7f25db89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="281.0943"
   height="177.5768"
   id="svg2"
   version="1.1"
   inkscape:version="0.92.1 r15371"
   sodipodi:docname="guix.svg">
  <title
     id="title3310">GNU Guix Logotype</title>
  <defs
     id="defs4">
    <linearGradient
       id="linearGradient4696-5">
      <stop
         style="stop-color:#ffb638;stop-opacity:1;"
         offset="0"
         id="stop4698-6" />
      <stop
         style="stop-color:#f0ae26;stop-opacity:1;"
         offset="1"
         id="stop4700-2" />
    </linearGradient>
    <linearGradient
       id="linearGradient4702-3">
      <stop
         style="stop-color:#e34646;stop-opacity:1;"
         offset="0"
         id="stop4704-1" />
      <stop
         style="stop-color:#ffbf2d;stop-opacity:1;"
         offset="1"
         id="stop4706-8" />
    </linearGradient>
    <color-profile
       id="color-profile3750"
       xlink:href="/usr/share/color/icc/ghostscript/ps_cmyk.icc"
       name="Artifex-PS-CMYK-Profile" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient3926"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient3929"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient3932"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient3936"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778">
      <use
         x="0"
         y="0"
         xlink:href="#g3774"
         id="use3780"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2"
         id="use3780-6"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient3906"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient3908"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient3910"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient3912"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8"
         id="use3780-6-6"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-7">
      <g
         id="use3780-6-5"
         inkscape:label="Clip">
        <path
           id="path4210"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path4212"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4224);fill-opacity:1;stroke:none" />
        <path
           id="path4214"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4226);fill-opacity:1;stroke:none"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           id="path4216"
           sodipodi:nodetypes="ccccccccsscccccccccccc" />
        <path
           sodipodi:nodetypes="ccc"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4228);fill-opacity:1;stroke:none"
           id="path4218"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path4220"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4230);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient4224"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient4226"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient4228"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient4230"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-9">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-3"
         id="use3780-6-6-4"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-9-0">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-3-3"
         id="use3780-6-6-4-6"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8"
         id="use3780-6-6-44"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0"
         id="use3780-6-6-44-0"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5016"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5018"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient5020"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5022"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1"
         id="use3780-6-6-44-0-2"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5156"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5158"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient5160"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5162"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-7"
         id="use3780-6-6-44-0-2-7"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1-6">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-7-9"
         id="use3780-6-6-44-0-2-7-3"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1-6-0">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-7-9-8"
         id="use3780-6-6-44-0-2-7-3-9"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1-6-0-4">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-7-9-8-6"
         id="use3780-6-6-44-0-2-7-3-9-4"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1-6-0-4-4">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-7-9-8-6-1"
         id="use3780-6-6-44-0-2-7-3-9-4-1"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5856"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5858"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient5860"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5862"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6000"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6002"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient6004"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6006"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6032"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6034"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient6036"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6038"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6040"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6042"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient6044"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6046"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6056"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6058"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient6060"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6062"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6064"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6066"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient6068"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6070"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6072"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6074"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient6076"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6078"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6080"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6082"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient6084"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6086"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6096"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.411667,692.22929)"
       x1="142.96875"
       y1="63.65625"
       x2="176.60477"
       y2="70.667412" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6098"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4874381,0,0,1.4874381,-11.459767,-575.60821)"
       x1="113.5146"
       y1="1004.8033"
       x2="78.000107"
       y2="922.07178" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4696-5"
       id="linearGradient6100"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.83291399,0,0,0.83291399,223.24314,48.654082)"
       x1="108.08774"
       y1="1025.709"
       x2="80.655251"
       y2="1043.709" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6102"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.4874381,0,0,1.4874381,290.6776,692.22881)"
       x1="142.96875"
       y1="63.65625"
       x2="177.04297"
       y2="69.791016" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="4.244122"
     inkscape:cx="137.4234"
     inkscape:cy="101.07745"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="false"
     inkscape:window-width="1720"
     inkscape:window-height="1376"
     inkscape:window-x="1720"
     inkscape:window-y="27"
     inkscape:window-maximized="0"
     inkscape:showpageshadow="false"
     showborder="true"
     borderlayer="true"
     inkscape:object-nodes="true"
     fit-margin-left="10"
     fit-margin-top="10"
     fit-margin-bottom="10"
     fit-margin-right="10">
    <inkscape:grid
       type="axonomgrid"
       id="grid3004"
       units="mm"
       empspacing="5"
       visible="true"
       enabled="true"
       snapvisiblegridlinesonly="true"
       spacingy="3.7mm"
       originx="-14.203679"
       originy="-154.03017" />
  </sodipodi:namedview>
  <metadata
     id="metadata7">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title>GNU Guix Logotype</dc:title>
        <dc:date>2016-12-16</dc:date>
        <dc:creator>
          <cc:Agent>
            <dc:title>Luis Felipe López Acevedo</dc:title>
          </cc:Agent>
        </dc:creator>
        <dc:rights>
          <cc:Agent>
            <dc:title>Luis Felipe López Acevedo</dc:title>
          </cc:Agent>
        </dc:rights>
        <cc:license
           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
        <dc:description>Variant of the original logo with colors adjusted for printing.</dc:description>
      </cc:Work>
      <cc:License
         rdf:about="http://creativecommons.org/licenses/by-sa/4.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:requires
           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
      </cc:License>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="layer"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(0.9144317,-752.88119)">
    <g
       id="g3776"
       clip-path="url(#clipPath3778)">
      <g
         inkscape:label="Clip"
         id="g3774">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3936);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3932);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3929);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3926);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.32264231,0,0,0.32264231,93.82642,517.40996)"
       id="g3776-6"
       clip-path="url(#clipPath3778-3)">
      <g
         inkscape:label="Clip"
         id="g3774-2">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3906);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3908);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3910);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3912);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.27941644,0.16132115,-0.16132115,0.27941644,130.82537,575.71812)"
       id="g3776-6-1"
       clip-path="url(#clipPath3778-3-3)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6056);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6058);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6060);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6062);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.31164854,0.08350597,-0.08350597,0.31164854,250.05293,612.38314)"
       id="g3776-6-1-0"
       clip-path="url(#clipPath3778-3-3-9)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-3">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-6" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6000);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-1"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-0" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-6"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6002);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-3"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6004);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6006);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-2"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.27941644,-0.16132115,0.16132115,0.27941644,69.36355,619.59481)"
       id="g3776-6-1-0-9"
       clip-path="url(#clipPath3778-3-3-9-0)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-3-3">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-6-7" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5856);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-1-4"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-0-5" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-6-2"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5858);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-3-5"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5860);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5862);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-2-4"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.31164854,-0.08350597,0.08350597,0.31164854,-56.984269,637.09059)"
       id="g3776-6-1-6"
       clip-path="url(#clipPath3778-3-3-7)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-8" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6064);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-4"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-3" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6066);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6068);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6070);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-9"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.0753238,0.07532381,-0.07532381,0.0753238,143.27048,824.59046)"
       id="g3776-6-1-6-5"
       clip-path="url(#clipPath3778-3-3-7-2)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-8-4" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5016);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-4-8"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-3-7" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5018);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5020);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5022);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-9-2"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.10652395,0,0,0.10652395,125.40825,743.7996)"
       id="g3776-6-1-6-5-6"
       clip-path="url(#clipPath3778-3-3-7-2-7)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-8-4-5" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5156);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-4-8-9"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-3-7-4" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5158);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5160);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient5162);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-9-2-9"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.0753238,-0.07532381,0.07532381,0.0753238,116.92004,846.41742)"
       id="g3776-6-1-6-5-6-9"
       clip-path="url(#clipPath3778-3-3-7-2-7-1)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-7">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-8-4-5-7" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6032);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-4-8-9-6"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-3-7-4-7" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6034);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6036);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6038);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-9-2-9-5"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.10289423,0.02757043,-0.02757043,0.10289423,237.45583,773.2668)"
       id="g3776-6-1-6-5-6-9-2"
       clip-path="url(#clipPath3778-3-3-7-2-7-1-6)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-7-9">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-8-4-5-7-3" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6096);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-4-8-9-6-9"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-3-7-4-7-0" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-8"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6098);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-8"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6100);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6102);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-9-2-9-5-5"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.10289423,-0.02757043,0.02757043,0.10289423,14.612029,778.78318)"
       id="g3776-6-1-6-5-6-9-2-9"
       clip-path="url(#clipPath3778-3-3-7-2-7-1-6-0)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-7-9-8">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-8-4-5-7-3-4" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6080);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-4-8-9-6-9-8"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-3-7-4-7-0-1" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-8-0"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6082);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-8-3"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6084);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6086);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-9-2-9-5-5-0"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.09225244,0.05326198,-0.05326198,0.09225244,56.412784,819.84382)"
       id="g3776-6-1-6-5-6-9-2-9-9"
       clip-path="url(#clipPath3778-3-3-7-2-7-1-6-0-4)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-7-9-8-6">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-8-4-5-7-3-4-2" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6072);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-4-8-9-6-9-8-1"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-3-7-4-7-0-1-7" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-8-0-8"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6074);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-8-3-5"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6076);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6078);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-9-2-9-5-5-0-7"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.10289423,-0.02757043,0.02757043,0.10289423,216.87327,821.79916)"
       id="g3776-6-1-6-5-6-9-2-9-9-3"
       clip-path="url(#clipPath3778-3-3-7-2-7-1-6-0-4-4)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-7-9-8-6-1">
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 261.71933,762.88239 c -2.68257,4.90263 -5.40593,8.89401 -8.18093,12.03897 -2.68252,3.05258 -5.64064,5.49427 -8.87812,7.34422 -3.14506,1.75757 -6.71345,3.02514 -10.69097,3.76506 -3.88504,0.64751 -8.34589,0.97629 -13.43343,0.9761 -3.75286,0 -7.12556,-0.1922 -10.0867,-0.55773 -0.0117,0 -0.0345,0 -0.0466,0 -0.37541,-0.0273 -1.15076,-0.15334 -1.95225,-0.27891 -0.84421,-0.13218 -1.70715,-0.25955 -3.06786,-0.5113 -24.94204,-4.61489 -33.21409,12.7003 -35.00128,17.47744 -0.27974,0.74767 -0.41833,1.20845 -0.41833,1.20845 l -30.30657,84.50509 -18.59296,31.60821 h 37.13946 c 15.25354,-33.96261 29.91831,-104.87552 45.59929,-111.13955 3.39881,0.47537 7.61176,0.69713 12.6897,0.69713 6.66007,0 12.62319,-0.79843 17.89575,-2.46349 5.27251,-1.66502 10.01506,-4.24757 14.27012,-7.76263 4.25502,-3.60748 8.10509,-8.20868 11.52764,-13.75881 3.515,-5.54998 6.84862,-12.21732 9.9937,-19.98743 l -8.45971,-3.16082 z"
           id="path3143-9-7-8-4-5-7-3-4-2-8" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6040);fill-opacity:1;stroke:none"
           d="m 261.71837,762.88586 c -2.68256,4.90263 -5.40573,8.8885 -8.18074,12.03346 -2.68249,3.05259 -5.64179,5.49543 -8.87926,7.34538 -0.77887,0.43527 -1.58186,0.83524 -2.41246,1.20983 -0.008,0.003 -0.0136,0.0109 -0.0217,0.0144 -1.04548,0.73525 -2.39023,1.36643 -4.2128,1.80033 -21.02083,5.00504 -35.33881,23.73821 -36.68368,25.5504 0.60979,-0.50134 1.2236,-0.91065 1.83635,-1.22422 0.0921,-0.0488 0.18143,-0.093 0.27365,-0.13683 0.0147,-0.007 0.0285,-0.0148 0.0432,-0.0216 0.10679,-0.0498 0.21717,-0.0941 0.32406,-0.13682 3.39881,0.47537 7.61085,0.69853 12.68879,0.69853 6.66007,0 12.6228,-0.805 17.89536,-2.47007 5.27252,-1.66501 10.01082,-4.2408 14.26589,-7.75586 4.25502,-3.60747 8.10681,-8.21164 11.52937,-13.76177 3.515,-5.55 6.8504,-12.22084 9.99546,-19.99096 l -8.4616,-3.1542 z"
           id="path3145-1-9-4-8-9-6-9-8-1-9"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ffbf2d;fill-opacity:1;stroke:none"
           d="m 17.546788,762.88241 c 2.682566,4.90263 5.40591,8.89399 8.180911,12.03895 2.682534,3.05258 5.640652,5.49427 8.878151,7.34422 3.145023,1.75757 6.71344,3.02514 10.690951,3.76506 3.885043,0.6477 8.345884,0.97629 13.433428,0.9761 3.752874,0 7.125565,-0.1922 10.086682,-0.55773 0.0118,0 0.03453,0 0.04658,0 0.375389,-0.0269 1.150749,-0.15333 1.952259,-0.27891 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942056,-4.61489 33.214113,12.7003 35.001293,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.50509 18.59298,31.60821 H 121.06328 C 105.80974,886.49538 91.144983,815.58247 75.463998,809.31844 c -3.39881,0.47537 -7.611781,0.69713 -12.689715,0.69713 -6.660053,0 -12.623193,-0.79843 -17.895745,-2.46349 -5.272512,-1.66502 -10.015069,-4.24757 -14.270103,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527642,-13.75881 -3.515005,-5.54993 -6.848656,-12.21728 -9.9937267,-19.98743 l 8.4598047,-3.1608 z"
           id="path3147-2-2-3-7-4-7-0-1-7-6" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-8-0-8-4"
           d="m 17.545281,762.88119 c 2.682566,4.90262 5.40591,8.89399 8.180911,12.03894 2.682534,3.05259 5.640652,5.49427 8.878143,7.34422 3.145031,1.75757 6.713448,3.02514 10.690959,3.76507 3.885043,0.64768 8.345883,0.97628 13.433436,0.97609 3.752866,0 7.125557,-0.19221 10.086682,-0.55772 0.01172,0 0.03453,0 0.04658,0 0.37539,-0.027 1.150749,-0.15335 1.95226,-0.27892 0.844204,-0.13218 1.707142,-0.25955 3.067837,-0.5113 24.942055,-4.61489 33.214111,12.70029 35.001291,17.47744 0.27972,0.74767 0.41833,1.20845 0.41833,1.20845 l 30.30655,84.5051 15.61811,31.60819 H 121.06178 C 105.80825,886.49415 91.143484,815.58124 75.4625,809.31721 c -3.398811,0.47537 -7.611781,0.69713 -12.689716,0.69713 -6.660052,0 -12.623184,-0.79843 -17.895736,-2.46349 -5.27252,-1.66502 -10.01507,-4.24758 -14.270111,-7.76263 -4.255001,-3.60748 -8.105096,-8.20867 -11.527634,-13.7588 -3.515013,-5.54995 -6.848656,-12.21728 -9.9937347,-19.98743 l 8.4598047,-3.1608 z"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6042);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-8-3-5-3"
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6044);fill-opacity:1;stroke:none"
           d="m 139.60188,888.83656 -18.52001,31.62143 h 37.12091"
           sodipodi:nodetypes="ccc" />
        <path
           style="font-style:normal;font-weight:bold;font-size:144px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient6046);fill-opacity:1;stroke:none"
           d="m 17.549301,762.88586 -8.4615917,3.1542 c 0.9828327,2.42817 1.9835237,4.75137 3.0029637,6.96371 0.203893,0.44246 0.406773,0.87683 0.612118,1.31064 7.97e-4,0.002 -7.98e-4,0.006 0,0.007 0.204419,0.4318 0.413464,0.85862 0.619319,1.28184 0.06859,0.14106 0.140073,0.27758 0.208837,0.41768 0.345267,0.70349 0.687717,1.40177 1.036995,2.08119 0.0016,0.003 0.0056,0.004 0.0072,0.007 0.2082,0.40484 0.416902,0.80634 0.626521,1.20263 0.845456,1.59852 1.702476,3.12828 2.570885,4.58726 0.216845,0.36432 0.429846,0.7174 0.648119,1.073 0.0846,0.13784 0.167237,0.27395 0.252049,0.41048 0.135072,0.21746 0.274858,0.43399 0.410473,0.64812 0.21391,0.34687 0.423681,0.69034 0.640925,1.0298 0.346127,0.54084 0.704035,1.06956 1.058592,1.59149 0.08954,0.13178 0.176378,0.26551 0.266453,0.39607 0.224988,0.32622 0.448604,0.64634 0.676926,0.96499 0.454362,0.6341 0.915161,1.25393 1.382659,1.85795 0.233753,0.302 0.468719,0.59851 0.705734,0.89296 0.474046,0.58892 0.953228,1.16257 1.440274,1.72113 0.369264,0.42348 0.746711,0.83988 1.123409,1.24584 0.11901,0.12822 0.240325,0.2552 0.360068,0.38166 0.501139,0.52939 1.005452,1.04257 1.519487,1.54109 0.256396,0.24866 0.510957,0.49359 0.770542,0.73454 0.260846,0.24217 0.520894,0.47857 0.784946,0.71294 0.262768,0.23322 0.526214,0.45866 0.792148,0.68413 0.797826,0.65907 1.616085,1.28595 2.448461,1.87955 2.219678,1.58292 4.563007,2.93443 7.035721,4.05436 0.30909,0.14 0.615842,0.27768 0.928975,0.41048 0.628244,0.26652 1.263706,0.51855 1.908363,0.75614 0.321292,0.11842 0.639577,0.22723 0.964984,0.33846 0.325399,0.11123 0.657051,0.22 0.986582,0.32406 0.32953,0.10407 0.658853,0.20515 0.993783,0.30246 0.669868,0.19463 1.353717,0.37949 2.04519,0.5473 0.345729,0.0839 0.693053,0.16039 1.044189,0.23765 0.351144,0.0773 0.702056,0.15261 1.0586,0.22324 0.358824,0.0711 0.715902,0.13718 1.080206,0.20164 0.723917,0.12808 1.458027,0.24373 2.203614,0.34566 1.118385,0.15292 2.260639,0.27964 3.427842,0.37447 0.778142,0.0633 1.569381,0.1135 2.369249,0.15123 0.799868,0.0377 1.612433,0.0595 2.434058,0.072 0.410808,0.006 0.822374,0.007 1.23863,0.007 0.634744,0 1.257341,-2.1e-4 1.865152,-0.007 1.215621,-0.014 2.376363,-0.0437 3.485456,-0.0864 0.552094,-0.0213 1.094314,-0.0435 1.620305,-0.072 0.528207,-0.0287 1.046214,-0.0646 1.548286,-0.10083 1.506215,-0.10864 2.895032,-0.24661 4.169584,-0.42487 0.106887,0.0427 0.217268,0.087 0.324059,0.13682 0.01476,0.006 0.02847,0.0148 0.04323,0.0216 0.09222,0.0439 0.181498,0.088 0.273655,0.13682 0.613098,0.31376 1.226196,0.72249 1.836344,1.22423 -1.342041,-1.80851 -15.660419,-20.54497 -36.683697,-25.5504 -1.822546,-0.43396 -3.167314,-1.06505 -4.212787,-1.80034 -0.008,-0.003 -0.0138,-0.0108 -0.02161,-0.0144 -0.828724,-0.37374 -1.635219,-0.77569 -2.412461,-1.20983 -0.0016,-8e-4 -0.0056,7.9e-4 -0.0072,0 -0.200551,-0.11459 -0.399307,-0.23372 -0.597713,-0.35287 -0.0016,-8e-4 -0.0056,8e-4 -0.0072,0 -0.200161,-0.12025 -0.392529,-0.24238 -0.590512,-0.36726 -0.397593,-0.25081 -0.792204,-0.50819 -1.181016,-0.77775 -0.193628,-0.13419 -0.384657,-0.27162 -0.576108,-0.41048 -0.38559,-0.27966 -0.761035,-0.56553 -1.137812,-0.86416 -0.187113,-0.14821 -0.369568,-0.29358 -0.554511,-0.44649 -0.186307,-0.15403 -0.370389,-0.30928 -0.554503,-0.46808 -0.182773,-0.15761 -0.359486,-0.32017 -0.540098,-0.4825 -0.903047,-0.81159 -1.779432,-1.67679 -2.6285,-2.60688 -0.169806,-0.18602 -0.343631,-0.37813 -0.511292,-0.56891 -0.617038,-0.6993 -1.231492,-1.4415 -1.843546,-2.22522 -0.07617,-0.0976 -0.147147,-0.19638 -0.223241,-0.29525 -0.171864,-0.22327 -0.347013,-0.44692 -0.518501,-0.67693 -0.857419,-1.15011 -1.708131,-2.38737 -2.556466,-3.70871 -0.339332,-0.52854 -0.677436,-1.07112 -1.015389,-1.62751 -0.168976,-0.27819 -0.335456,-0.55736 -0.504098,-0.84255 -0.50432,-0.85289 -1.010883,-1.74117 -1.512284,-2.6573 z"
           id="path3154-9-3-9-2-9-5-5-0-7-3"
           inkscape:connector-curvature="0" />
      </g>
    </g>
  </g>
</svg>