summaryrefslogtreecommitdiff
path: root/stickers/guix-multiple-3.svg
blob: 9ecb8729fa15b2e69b2bdd7f0fc9089d85afd04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
<?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-multiple-3.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-profile1153"
       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>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3">
      <g
         id="use3780-6-6"
         inkscape:label="Clip">
        <path
           id="path605"
           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="path607"
           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(#linearGradient619);fill-opacity:1;stroke:none" />
        <path
           id="path609"
           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(#linearGradient621);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="path611"
           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(#linearGradient623);fill-opacity:1;stroke:none"
           id="path613"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path615"
           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(#linearGradient625);fill-opacity:1;stroke:none" />
      </g>
    </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">
      <g
         id="use3780-6-6-4"
         inkscape:label="Clip">
        <path
           id="path517"
           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="path519"
           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(#linearGradient531);fill-opacity:1;stroke:none" />
        <path
           id="path521"
           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(#linearGradient533);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="path523"
           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(#linearGradient535);fill-opacity:1;stroke:none"
           id="path525"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path527"
           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(#linearGradient537);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-9-0">
      <g
         id="use3780-6-6-4-6"
         inkscape:label="Clip">
        <path
           id="path299"
           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="path301"
           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(#linearGradient313);fill-opacity:1;stroke:none" />
        <path
           id="path303"
           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(#linearGradient315);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="path305"
           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(#linearGradient317);fill-opacity:1;stroke:none"
           id="path307"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path309"
           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(#linearGradient319);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7">
      <g
         id="use3780-6-6-44"
         inkscape:label="Clip">
        <path
           id="path649"
           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="path651"
           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(#linearGradient663);fill-opacity:1;stroke:none" />
        <path
           id="path653"
           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(#linearGradient665);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="path655"
           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(#linearGradient667);fill-opacity:1;stroke:none"
           id="path657"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path659"
           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(#linearGradient669);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2">
      <g
         id="use3780-6-6-44-0"
         inkscape:label="Clip">
        <path
           id="path671"
           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="path673"
           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(#linearGradient685);fill-opacity:1;stroke:none" />
        <path
           id="path675"
           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(#linearGradient687);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="path677"
           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(#linearGradient689);fill-opacity:1;stroke:none"
           id="path679"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path681"
           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(#linearGradient691);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <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>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1">
      <g
         id="use3780-6-6-44-0-2-7"
         inkscape:label="Clip">
        <path
           id="path539"
           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="path541"
           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(#linearGradient553);fill-opacity:1;stroke:none" />
        <path
           id="path543"
           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(#linearGradient555);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="path545"
           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(#linearGradient557);fill-opacity:1;stroke:none"
           id="path547"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path549"
           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(#linearGradient559);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1-6">
      <g
         id="use3780-6-6-44-0-2-7-3"
         inkscape:label="Clip">
        <path
           id="path561"
           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="path563"
           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(#linearGradient575);fill-opacity:1;stroke:none" />
        <path
           id="path565"
           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(#linearGradient577);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="path567"
           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(#linearGradient579);fill-opacity:1;stroke:none"
           id="path569"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path571"
           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(#linearGradient581);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1-6-0">
      <g
         id="use3780-6-6-44-0-2-7-3-9"
         inkscape:label="Clip">
        <path
           id="path627"
           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="path629"
           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(#linearGradient641);fill-opacity:1;stroke:none" />
        <path
           id="path631"
           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(#linearGradient643);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="path633"
           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(#linearGradient645);fill-opacity:1;stroke:none"
           id="path635"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path637"
           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(#linearGradient647);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1-6-0-4">
      <g
         id="use3780-6-6-44-0-2-7-3-9-4"
         inkscape:label="Clip">
        <path
           id="path693"
           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="path695"
           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(#linearGradient707);fill-opacity:1;stroke:none" />
        <path
           id="path697"
           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(#linearGradient709);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="path699"
           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(#linearGradient711);fill-opacity:1;stroke:none"
           id="path701"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path703"
           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(#linearGradient713);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-1-6-0-4-4">
      <g
         id="use3780-6-6-44-0-2-7-3-9-4-1"
         inkscape:label="Clip">
        <path
           id="path583"
           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="path585"
           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(#linearGradient597);fill-opacity:1;stroke:none" />
        <path
           id="path587"
           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(#linearGradient599);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="path589"
           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(#linearGradient601);fill-opacity:1;stroke:none"
           id="path591"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path593"
           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(#linearGradient603);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient313"
       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="linearGradient315"
       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="linearGradient317"
       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="linearGradient319"
       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-36">
      <g
         id="use3780-6-7"
         inkscape:label="Clip">
        <path
           id="path5183"
           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="path5185"
           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(#linearGradient5197);fill-opacity:1;stroke:none" />
        <path
           id="path5187"
           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(#linearGradient5199);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="path5189"
           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(#linearGradient5201);fill-opacity:1;stroke:none"
           id="path5191"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path5193"
           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(#linearGradient5203);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient531"
       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="linearGradient533"
       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="linearGradient535"
       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="linearGradient537"
       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="linearGradient553"
       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="linearGradient555"
       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="linearGradient557"
       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="linearGradient559"
       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="linearGradient575"
       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="linearGradient577"
       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="linearGradient579"
       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="linearGradient581"
       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="linearGradient597"
       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="linearGradient599"
       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="linearGradient601"
       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="linearGradient603"
       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="linearGradient619"
       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="linearGradient621"
       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="linearGradient623"
       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="linearGradient625"
       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="linearGradient641"
       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="linearGradient643"
       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="linearGradient645"
       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="linearGradient647"
       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="linearGradient663"
       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="linearGradient665"
       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="linearGradient667"
       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="linearGradient669"
       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="linearGradient685"
       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="linearGradient687"
       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="linearGradient689"
       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="linearGradient691"
       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="linearGradient707"
       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="linearGradient709"
       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="linearGradient711"
       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="linearGradient713"
       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-36-8">
      <g
         id="use3780-6-7-7"
         inkscape:label="Clip">
        <path
           id="path5161"
           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="path5163"
           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(#linearGradient5175);fill-opacity:1;stroke:none" />
        <path
           id="path5165"
           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(#linearGradient5177);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="path5167"
           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(#linearGradient5179);fill-opacity:1;stroke:none"
           id="path5169"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path5171"
           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(#linearGradient5181);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-2">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-8"
         id="use3780-6-6-44-0-2-9"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-2-0">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-8-5"
         id="use3780-6-6-44-0-2-9-6"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-2-9">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-8-4"
         id="use3780-6-6-44-0-2-9-3"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-2-9-6">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-8-4-8"
         id="use3780-6-6-44-0-2-9-3-8"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-2-5">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-8-2"
         id="use3780-6-6-44-0-2-9-0"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient1803"
       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="linearGradient1805"
       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="linearGradient1807"
       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="linearGradient1809"
       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-2-5-5">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-8-2-7"
         id="use3780-6-6-44-0-2-9-0-9"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-3-7-2-7-7">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-3"
         id="use3780-6-6-44-0-2-6"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient2027"
       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="linearGradient2029"
       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="linearGradient2031"
       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="linearGradient2033"
       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-3">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-6"
         id="use3780-6-6-44-0-2-90"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient2087"
       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="linearGradient2089"
       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="linearGradient2091"
       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="linearGradient2093"
       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="linearGradient5767"
       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="linearGradient5769"
       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="linearGradient5771"
       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="linearGradient5773"
       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="linearGradient5153"
       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="linearGradient5155"
       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="linearGradient5157"
       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="linearGradient5159"
       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="linearGradient5175"
       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="linearGradient5177"
       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="linearGradient5179"
       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="linearGradient5181"
       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="linearGradient5197"
       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="linearGradient5199"
       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="linearGradient5201"
       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="linearGradient5203"
       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-75">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-3"
         id="use3780-6-3"
         width="100%"
         height="100%" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3778-3-75-8">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-3-2"
         id="use3780-6-3-7"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5541"
       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="linearGradient5543"
       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="linearGradient5545"
       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="linearGradient5547"
       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="linearGradient5549"
       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="linearGradient5551"
       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="linearGradient5553"
       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="linearGradient5555"
       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="linearGradient5557"
       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="linearGradient5559"
       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="linearGradient5561"
       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="linearGradient5563"
       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="linearGradient5565"
       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="linearGradient5567"
       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="linearGradient5569"
       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="linearGradient5571"
       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="linearGradient5573"
       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="linearGradient5575"
       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="linearGradient5577"
       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="linearGradient5579"
       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="linearGradient5581"
       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="linearGradient5583"
       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="linearGradient5585"
       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="linearGradient5587"
       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="linearGradient5589"
       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="linearGradient5591"
       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="linearGradient5593"
       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="linearGradient5595"
       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-7-2">
      <g
         transform="matrix(2.0397016,0,0,2.0397016,-9.44628,-793.16876)"
         id="use3780-6-6-44-0-2-6-9"
         inkscape:label="Clip">
        <path
           id="path5713"
           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="path5715"
           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(#linearGradient5727);fill-opacity:1;stroke:none" />
        <path
           id="path5717"
           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(#linearGradient5729);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="path5719"
           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(#linearGradient5731);fill-opacity:1;stroke:none"
           id="path5721"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path5723"
           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(#linearGradient5733);fill-opacity:1;stroke:none" />
      </g>
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5727"
       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="linearGradient5729"
       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="linearGradient5731"
       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="linearGradient5733"
       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-7-0">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-3-5"
         id="use3780-6-6-44-0-2-6-6"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient5939"
       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="linearGradient5941"
       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="linearGradient5943"
       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="linearGradient5945"
       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-3-9">
      <use
         x="0"
         y="0"
         xlink:href="#g3774-2-8-8-0-1-6-4"
         id="use3780-6-6-44-0-2-90-3"
         width="100%"
         height="100%" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4702-3"
       id="linearGradient6103"
       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="linearGradient6105"
       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="linearGradient6107"
       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="linearGradient6109"
       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.18"
     inkscape:cx="139.10851"
     inkscape:cy="86.127527"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="false"
     inkscape:window-width="3440"
     inkscape:window-height="1376"
     inkscape:window-x="0"
     inkscape:window-y="27"
     inkscape:window-maximized="1"
     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.38750671,0,0,0.38750671,85.352992,470.16026)"
       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(#linearGradient5153);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(#linearGradient5155);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(#linearGradient5157);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(#linearGradient5159);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.12161768,0,0,0.12161768,122.80806,738.19622)"
       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(#linearGradient5767);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(#linearGradient5769);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(#linearGradient5771);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(#linearGradient5773);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,0.16029536,-0.16029536,0,164.38445,810.25098)"
       id="g3776-6-1-6-5-6-7"
       clip-path="url(#clipPath3778-3-3-7-2-7-2)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-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-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(#linearGradient5589);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-5"
           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-0" />
        <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(#linearGradient5591);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(#linearGradient5593);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(#linearGradient5595);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-1"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0,-0.16029536,0.16029536,0,114.40128,856.75433)"
       id="g3776-6-1-6-5-6-7-1"
       clip-path="url(#clipPath3778-3-3-7-2-7-2-0)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-8-5">
        <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-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(#linearGradient5581);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-5-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-7-4-0-7" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-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(#linearGradient5583);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-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(#linearGradient5585);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(#linearGradient5587);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-1-6"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.08014768,0.13881986,-0.13881986,0.08014768,180.98241,774.59289)"
       id="g3776-6-1-6-5-6-7-5"
       clip-path="url(#clipPath3778-3-3-7-2-7-2-9)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-8-4">
        <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-4-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(#linearGradient5549);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-5-44"
           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-0-3" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-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(#linearGradient5551);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-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(#linearGradient5553);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(#linearGradient5555);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-1-8"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.08014768,-0.13881986,0.13881986,0.08014768,74.223621,814.01347)"
       id="g3776-6-1-6-5-6-7-5-6"
       clip-path="url(#clipPath3778-3-3-7-2-7-2-9-6)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-8-4-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-4-7-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(#linearGradient5565);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-5-44-2"
           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-0-3-6" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-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(#linearGradient5567);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-7-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(#linearGradient5569);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(#linearGradient5571);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-1-8-9"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(-0.16029536,0,0,-0.16029536,91.60759,1042.7699)"
       id="g3776-6-1-6-5-6-7-7"
       clip-path="url(#clipPath3778-3-3-7-2-7-2-5)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-8-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-7-8-4-5-4-72" />
        <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(#linearGradient1803);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-5-2"
           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-0-6" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-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(#linearGradient1805);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-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(#linearGradient1807);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(#linearGradient1809);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-1-61"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(-0.16029536,0,0,-0.16029536,231.29198,1042.967)"
       id="g3776-6-1-6-5-6-7-7-1"
       clip-path="url(#clipPath3778-3-3-7-2-7-2-5-5)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-8-2-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-4-72-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(#linearGradient5573);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-5-2-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-0-6-1" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-3-1-5"
           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(#linearGradient5575);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-6-0-9"
           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(#linearGradient5577);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(#linearGradient5579);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-1-61-7"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.12161768,0,0,0.12161768,14.369774,806.66752)"
       id="g3776-6-1-6-5-6-6"
       clip-path="url(#clipPath3778-3-3-7-2-7-7)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-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-8-4-5-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(#linearGradient2027);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-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-7-4-8" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-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(#linearGradient2029);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-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(#linearGradient2031);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(#linearGradient2033);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-9"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.12161768,0,0,0.12161768,229.3944,807.65274)"
       id="g3776-6-1-6-5-6-9"
       clip-path="url(#clipPath3778-3-3-7-2-7-3)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-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-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(#linearGradient2087);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-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-5" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-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(#linearGradient2089);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-1"
           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(#linearGradient2091);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(#linearGradient2093);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-15"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.19375336,0.33559066,-0.33559066,0.19375336,310.64808,663.22077)"
       id="g3776-6-9"
       clip-path="url(#clipPath3778-3-75)">
      <g
         inkscape:label="Clip"
         id="g3774-2-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-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(#linearGradient5541);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-0"
           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-6" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-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(#linearGradient5543);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-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(#linearGradient5545);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(#linearGradient5547);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-1"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.19375336,-0.33559066,0.33559066,0.19375336,-87.375135,757.56934)"
       id="g3776-6-9-2"
       clip-path="url(#clipPath3778-3-75-8)">
      <g
         inkscape:label="Clip"
         id="g3774-2-3-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-6-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(#linearGradient5557);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-0-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-6-7" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-2-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(#linearGradient5559);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-6-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(#linearGradient5561);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(#linearGradient5563);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-1-1"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0.12161768,0,0,0.12161768,10.333427,809.19656)"
       id="g3776-6-1-6-5-6-6-7"
       clip-path="url(#clipPath3778-3-3-7-2-7-7-2)" />
    <g
       transform="matrix(0,-0.12161769,0.12161769,0,-78.6943,876.52375)"
       id="g3776-6-1-6-5-6-6-1"
       clip-path="url(#clipPath3778-3-3-7-2-7-7-0)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-3-5">
        <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-9-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(#linearGradient5939);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-4-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-7-4-8-7" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-1-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(#linearGradient5941);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-2-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(#linearGradient5943);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(#linearGradient5945);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-9-6"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       transform="matrix(0,0.12161769,-0.12161769,0,357.08289,844.54624)"
       id="g3776-6-1-6-5-6-9-5"
       clip-path="url(#clipPath3778-3-3-7-2-7-3-9)">
      <g
         inkscape:label="Clip"
         id="g3774-2-8-8-0-1-6-4">
        <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-3-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(#linearGradient6103);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-8-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-7-4-5-4" />
        <path
           sodipodi:nodetypes="ccccccccsscccccccccccc"
           id="path3149-7-0-1-1-9-6-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(#linearGradient6105);fill-opacity:1;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           inkscape:connector-curvature="0"
           id="path3151-0-2-4-7-0-1-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(#linearGradient6107);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(#linearGradient6109);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-15-7"
           inkscape:connector-curvature="0" />
      </g>
    </g>
  </g>
</svg>