Files @ 4c852afa2640
Branch filter:

Location: website/www/conservancy/static/img/supporter-card-1.svg - annotation

Bradley M. Kuhn
Remove items that are time-focused; adapt for Conservancy's site
   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
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
<?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"
   id="svg4281"
   version="1.1"
   inkscape:version="0.48.3.1 r9886"
   width="315"
   height="180"
   xml:space="preserve"
   sodipodi:docname="Conservancy-Supporter-Card.svg"
   inkscape:export-filename="/home/tony/Conservancy/Logo/Conservancy-Supporter-Card-low-res.png"
   inkscape:export-xdpi="89.999992"
   inkscape:export-ydpi="89.999992"><metadata
     id="metadata4287"><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></dc:title></cc:Work></rdf:RDF></metadata><defs
     id="defs4285"><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   id="perspective4289" /><inkscape:perspective
   id="perspective6547"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_x="0 : 0.5 : 1"
   sodipodi:type="inkscape:persp3d" /><inkscape:perspective
   id="perspective6778"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_x="0 : 0.5 : 1"
   sodipodi:type="inkscape:persp3d" /><inkscape:perspective
   id="perspective7030"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_x="0 : 0.5 : 1"
   sodipodi:type="inkscape:persp3d" /><linearGradient
   y2="1134.8"
   x2="879.90155"
   y1="1134.8"
   x1="629.57501"
   gradientTransform="translate(-1493.1852,-765.11948)"
   gradientUnits="userSpaceOnUse"
   id="linearGradient5187"
   xlink:href="#linearGradient4751"
   inkscape:collect="always" /><linearGradient
   gradientTransform="translate(-1379.5602,0)"
   gradientUnits="userSpaceOnUse"
   y2="1134.8"
   x2="879.90155"
   y1="1134.8"
   x1="629.57501"
   id="linearGradient4759"
   xlink:href="#linearGradient4751"
   inkscape:collect="always" /><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   id="perspective3123" /><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   id="perspective3962" /><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   id="perspective9298" /><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 372.04724 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1052.3622 : 372.04724 : 1"
   inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
   id="perspective8211" /><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 372.04724 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1052.3622 : 372.04724 : 1"
   inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
   id="perspective4759" /><inkscape:perspective
   id="perspective10"
   inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
   inkscape:vp_z="744.09448 : 526.18109 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_x="0 : 526.18109 : 1"
   sodipodi:type="inkscape:persp3d" /><linearGradient
   id="linearGradient4751"
   inkscape:collect="always"><stop
     id="stop4753"
     offset="0"
     style="stop-color:#ffffff;stop-opacity:1;" /><stop
     id="stop4755"
     offset="1"
     style="stop-color:#ffffff;stop-opacity:0;" /></linearGradient><linearGradient
   inkscape:collect="always"
   xlink:href="#linearGradient4751"
   id="linearGradient4218"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(0.59207878,0,0,0.79584484,-973.86508,-701.00125)"
   x1="629.57501"
   y1="1134.8"
   x2="879.90155"
   y2="1134.8" /><linearGradient
   inkscape:collect="always"
   xlink:href="#linearGradient4751"
   id="linearGradient4441"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(0.59207878,0,0,0.35143336,-778.79768,-304.014)"
   x1="629.57501"
   y1="1134.8"
   x2="879.90155"
   y2="1134.8" /><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   id="perspective3080" /><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   id="perspective3470" /><inkscape:perspective
   sodipodi:type="inkscape:persp3d"
   inkscape:vp_x="0 : 0.5 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_z="1 : 0.5 : 1"
   inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
   id="perspective3452" /><inkscape:perspective
   id="perspective331"
   inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
   inkscape:vp_z="1052.3622 : 372.04724 : 1"
   inkscape:vp_y="0 : 1000 : 0"
   inkscape:vp_x="0 : 372.04724 : 1"
   sodipodi:type="inkscape:persp3d" />



</defs><sodipodi:namedview
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1"
     objecttolerance="10"
     gridtolerance="10"
     guidetolerance="10"
     inkscape:pageopacity="0"
     inkscape:pageshadow="2"
     inkscape:window-width="1400"
     inkscape:window-height="963"
     id="namedview4283"
     showgrid="false"
     inkscape:zoom="4.0857143"
     inkscape:cx="149.17832"
     inkscape:cy="90.000008"
     inkscape:window-x="0"
     inkscape:window-y="27"
     inkscape:window-maximized="1"
     inkscape:current-layer="g3200"
     showguides="true"
     inkscape:guide-bbox="true" /><g
     id="g4291"
     inkscape:groupmode="layer"
     inkscape:label="Conservancy business card-Kuhn"
     transform="matrix(1.25,0,0,-1.25,0,180)"><g
   id="g3029"
   transform="matrix(0.41861813,0,0,0.41861813,177.07247,-24.678549)"><path
     id="path4367"
     d="m 49.838471,125.79277 c -3.027705,-0.0342 -5.538278,-2.08325 -5.747915,-4.78691 -0.02291,-0.29536 -0.01387,-0.58419 0.0181,-0.87035 -0.991678,0.31763 -2.061728,0.52891 -3.19127,0.6165 -4.918615,0.38139 -9.197163,-1.76885 -10.172178,-4.93197 -3.252921,-1.05346 -5.835106,-3.10245 -7.10783,-5.72978 -2.888734,0.15037 -5.39563,-2.04366 -5.620991,-4.95009 -0.228935,-2.95258 1.967129,-5.537557 4.913834,-5.766048 0.932495,-0.07226 1.83378,0.109278 2.629171,0.471433 2.301377,-2.422869 5.848469,-4.12681 9.918325,-4.442391 3.666284,-0.284274 7.070072,0.615249 9.646344,2.284663 1.017801,-1.68267 2.908031,-2.927492 5.167684,-3.263797 l 0,-0.05432 c 0.06747,0.0064 0.132594,0.02799 0.199455,0.03626 0.06819,-0.0089 0.130625,-0.02951 0.199452,-0.03626 l 0,0.05432 c 2.263164,0.334575 4.148701,1.579168 5.167684,3.263797 2.576273,-1.669414 5.998198,-2.56895 9.664475,-2.284663 4.069857,0.315569 7.598818,2.019522 9.900195,4.442391 0.795399,-0.362104 1.696682,-0.543741 2.629173,-0.471433 2.946704,0.228478 5.160899,2.813478 4.931964,5.766048 -0.225361,2.90643 -2.732255,5.10046 -5.620988,4.95009 -1.272727,2.62733 -3.873044,4.67632 -7.125966,5.72978 -0.975015,3.16312 -5.23543,5.31336 -10.154045,4.93197 -1.129542,-0.0875 -2.199592,-0.29887 -3.191271,-0.6165 0.03197,0.28616 0.04108,0.57499 0.0181,0.87035 -0.209638,2.70366 -2.738342,4.75266 -5.766047,4.78691 -0.201851,0.003 -0.410659,-0.003 -0.616495,-0.0181 -0.01221,-0.001 -0.0242,0.001 -0.03627,0 -0.01208,0.001 -0.02408,-0.001 -0.03627,0 -0.205837,0.0159 -0.414645,0.0205 -0.616497,0.0181 z m 0.580229,-3.62645 0.09067,0 c 0.513773,0 0.979496,-0.14452 1.323654,-0.39891 0.344156,-0.25438 0.562098,-0.61675 0.562098,-1.0154 0,-0.11768 -0.03643,-0.23364 -0.07252,-0.34451 l 1.523107,-1.1242 c 0.316886,0.17759 0.68458,0.29011 1.106065,0.29011 0.513616,0 0.979449,-0.14586 1.323652,-0.3989 0.344205,-0.25305 0.580232,-0.61677 0.580232,-1.01541 0,-0.26234 -0.126248,-0.49701 -0.290116,-0.70716 l 2.139602,-1.55936 c 0.270951,0.11335 0.575358,0.18132 0.906612,0.18132 0.51377,0 0.997631,-0.14452 1.341783,-0.39891 0.344153,-0.25439 0.5621,-0.61675 0.5621,-1.0154 0,-0.22513 -0.09464,-0.42967 -0.217587,-0.6165 l 2.030808,-1.46872 c 0.27413,0.11666 0.588663,0.19946 0.924744,0.19946 0.513772,0 0.9795,-0.14451 1.323653,-0.3989 0.344152,-0.25439 0.562099,-0.61678 0.562099,-1.01541 0,-0.39865 -0.217947,-0.76102 -0.562099,-1.0154 -0.344153,-0.25439 -0.809881,-0.39892 -1.323653,-0.39892 -0.51377,0 -0.979493,0.14453 -1.323651,0.39892 -0.344159,0.25438 -0.580232,0.61675 -0.580232,1.0154 0,0.30774 0.162512,0.58597 0.380777,0.81595 l -1.903884,1.39618 c -0.329821,-0.20819 -0.754632,-0.34451 -1.214858,-0.34451 -0.419601,0 -0.790322,0.11411 -1.106067,0.29011 l -1.523106,-1.10607 c 0.131376,-0.16027 0.244475,-0.33362 0.290116,-0.52583 0.01522,-0.0641 0.0181,-0.13133 0.0181,-0.19944 0,-0.39864 -0.217947,-0.76103 -0.562099,-1.01542 -0.172074,-0.12721 -0.374691,-0.24031 -0.598364,-0.30824 -0.111835,-0.034 -0.223226,-0.055 -0.344512,-0.0725 -0.121286,-0.0176 -0.252338,-0.0181 -0.380777,-0.0181 -0.404043,0 -0.778988,0.0897 -1.087933,0.25385 l -2.139601,-1.57751 c 0.220538,-0.18592 0.384529,-0.43072 0.453304,-0.68902 0.02292,-0.0861 0.03627,-0.16278 0.03627,-0.25385 0,-0.39864 -0.217947,-0.74289 -0.5621,-0.99728 -0.08604,-0.0636 -0.171899,-0.13029 -0.271983,-0.18132 -0.200174,-0.10202 -0.428315,-0.17914 -0.670892,-0.21759 -0.121286,-0.0192 -0.252338,-0.0181 -0.380777,-0.0181 -0.513772,0 -0.9795,0.16266 -1.323652,0.41705 -0.172073,0.12721 -0.319534,0.26748 -0.41704,0.43516 -0.04874,0.0838 -0.08298,0.17968 -0.108794,0.27199 -0.02582,0.0924 -0.03627,0.19045 -0.03627,0.29011 0,0.39864 0.217947,0.76102 0.5621,1.01542 0.344151,0.25437 0.809879,0.41703 1.323652,0.41703 0.25648,0 0.501877,-0.0567 0.725288,-0.12696 l 2.302794,1.66816 c -0.08227,0.10482 -0.147496,0.2087 -0.199455,0.32638 -0.05199,0.11767 -0.09067,0.24912 -0.09067,0.38078 0,0.39865 0.217895,0.76237 0.5621,1.0154 0.08605,0.0632 0.171881,0.11399 0.271984,0.16319 0.300303,0.14777 0.666457,0.23572 1.051668,0.23572 0.386235,0 0.731908,-0.10254 1.033536,-0.25385 l 1.559372,1.1242 c -0.07606,0.10165 -0.150472,0.21108 -0.199455,0.32638 -0.04897,0.11526 -0.07252,0.23643 -0.07252,0.36264 0,0.31182 0.175299,0.58387 0.398909,0.81596 l -2.103339,1.54123 c -0.307104,-0.16011 -0.671488,-0.27199 -1.0698,-0.27199 -0.452122,0 -0.851421,0.1248 -1.178594,0.32639 l -1.758833,-1.28744 c 0.157144,-0.16971 0.273492,-0.36652 0.326381,-0.58023 0.01765,-0.0712 0.03627,-0.14228 0.03627,-0.21759 0,-0.39865 -0.217947,-0.76101 -0.562098,-1.0154 -0.08604,-0.0636 -0.18833,-0.13201 -0.290115,-0.18132 -0.203575,-0.0987 -0.424915,-0.16441 -0.670892,-0.19946 -0.122992,-0.0175 -0.252337,-0.0181 -0.380777,-0.0181 -0.513771,0 -0.979499,0.14451 -1.323652,0.3989 -0.344152,0.2544 -0.562099,0.61677 -0.562099,1.01541 0,0.39865 0.217895,0.76237 0.562099,1.0154 0.344205,0.25304 0.810037,0.39891 1.323652,0.39891 0.354091,0 0.694623,-0.0709 0.979139,-0.19945 l 1.831355,1.34178 c -0.123717,0.18767 -0.217586,0.39085 -0.217586,0.6165 0,0.0615 0.0059,0.12238 0.0181,0.18132 0.03754,0.17694 0.127367,0.34137 0.235717,0.48957 l -1.378047,1.01541 c -0.350066,-0.31401 -0.853794,-0.52583 -1.432445,-0.52583 -0.481739,0 -0.914514,0.1725 -1.251123,0.3989 l -1.359918,-0.94287 c 0.120167,-0.18561 0.199455,-0.39468 0.199455,-0.6165 0,-0.39865 -0.217947,-0.74288 -0.562099,-0.99727 -0.344152,-0.25438 -0.809887,-0.41704 -1.323653,-0.41704 -0.342991,0 -0.664422,0.0781 -0.942876,0.19945 l -2.139601,-1.45058 c 0.238296,-0.23605 0.435173,-0.51091 0.435173,-0.83409 0,-0.065 -0.0034,-0.1373 -0.0181,-0.19944 -0.04381,-0.18646 -0.151063,-0.35093 -0.271983,-0.5077 l 1.559372,-1.1242 c 0.230415,0.0757 0.476305,0.12696 0.743419,0.12696 0.513767,0 0.979496,-0.16266 1.323654,-0.41704 0.344159,-0.25439 0.562098,-0.59862 0.562098,-0.99727 0,-0.39865 -0.217939,-0.76103 -0.562098,-1.0154 -0.344158,-0.2544 -0.809882,-0.41705 -1.323654,-0.41705 -0.513764,0 -0.980786,0.16258 -1.323651,0.41705 -0.342865,0.25445 -0.562098,0.61695 -0.562098,1.0154 0,0.18268 0.04155,0.35326 0.126922,0.5077 0.04271,0.0772 0.103413,0.14777 0.16319,0.21759 0.05978,0.0698 0.125446,0.13729 0.199455,0.19945 l -1.432446,1.05167 c -0.308027,-0.16227 -0.668496,-0.29012 -1.0698,-0.29012 -0.497352,0 -0.947362,0.1773 -1.287388,0.41704 l -1.994546,-1.37804 c 0.240883,-0.1887 0.429987,-0.43687 0.507704,-0.70716 0.02587,-0.0901 0.03627,-0.1762 0.03627,-0.27199 0,-0.17323 -0.06964,-0.31966 -0.145057,-0.47143 l 1.758826,-1.26926 c 0.236607,0.0801 0.486366,0.12696 0.761553,0.12696 0.513765,0 0.997631,-0.14452 1.341784,-0.39891 0.344152,-0.25438 0.562099,-0.61676 0.562099,-1.0154 0,-0.39865 -0.217895,-0.76237 -0.562099,-1.0154 -0.344205,-0.25303 -0.828176,-0.39891 -1.341784,-0.39891 -0.256804,0 -0.501605,0.0225 -0.725288,0.0907 -0.111847,0.0341 -0.226281,0.0776 -0.326381,0.12696 -0.100105,0.0492 -0.185935,0.11806 -0.271983,0.18132 -0.344205,0.25303 -0.5621,0.61675 -0.5621,1.0154 0,0.3553 0.225571,0.65969 0.507703,0.90661 l -1.595636,1.14234 c -0.343456,-0.25346 -0.792613,-0.43517 -1.30552,-0.43517 -0.58681,0 -1.101047,0.20429 -1.450578,0.52582 l -1.885751,-1.30551 c 0.0913,-0.10852 0.176947,-0.23877 0.235719,-0.36264 0.02936,-0.062 0.05617,-0.11551 0.07252,-0.18133 0.01637,-0.0658 0.0181,-0.12975 0.0181,-0.19945 0,-0.39866 -0.217892,-0.76237 -0.562097,-1.0154 -0.08605,-0.0632 -0.171883,-0.13206 -0.271984,-0.18132 -0.200202,-0.0985 -0.428338,-0.1642 -0.670892,-0.19946 -0.121273,-0.0177 -0.252377,-0.0181 -0.380776,-0.0181 -0.513616,0 -0.997581,0.14587 -1.341786,0.39891 -0.344203,0.25304 -0.562098,0.61674 -0.562098,1.0154 0,0.39864 0.217947,0.76103 0.562098,1.01541 0.344153,0.25439 0.828013,0.3989 1.341786,0.3989 0.358013,0 0.673863,-0.0862 0.961007,-0.21758 l 2.121471,1.45058 c -0.03011,0.0962 -0.07253,0.18349 -0.07253,0.29011 0,0.39864 0.217947,0.76102 0.562102,1.01542 0.344151,0.25439 0.809886,0.41703 1.32365,0.41703 0.219073,0 0.43783,-0.0387 0.634629,-0.0907 l 0.290115,0.21758 0.03627,0.0181 1.922015,1.30553 c -0.07626,0.1537 -0.145059,0.31554 -0.145059,0.48956 0,0.39864 0.217947,0.76102 0.5621,1.01541 0.344152,0.25438 0.828013,0.39891 1.341784,0.39891 0.291584,0 0.550117,-0.0556 0.797819,-0.14506 l 0.25385,0.16319 1.922016,1.32366 c -0.18525,0.21816 -0.344512,0.46233 -0.344512,0.74341 0,0.39866 0.236026,0.76238 0.58023,1.01541 0.344206,0.25303 0.810038,0.39891 1.323653,0.39891 0.440673,0 0.836067,-0.11564 1.160462,-0.30825 l 1.396182,0.94287 c -0.09123,0.16577 -0.163191,0.3525 -0.163191,0.54397 0,0.39864 0.217947,0.76101 0.562099,1.0154 0.321517,0.23767 0.777021,0.36198 1.251123,0.38078 l 0,0.0181 z m 0.09067,-0.59836 c -0.351469,0 -0.675714,-0.11411 -0.888478,-0.27198 -0.160289,-0.11895 -0.26654,-0.25399 -0.308248,-0.39891 -0.01393,-0.0483 -0.0181,-0.0934 -0.0181,-0.14506 0,-0.15515 0.05947,-0.30327 0.181323,-0.43518 0.04062,-0.044 0.09163,-0.0873 0.145056,-0.12696 0.159575,-0.11831 0.385188,-0.21434 0.634629,-0.25384 0.08315,-0.0132 0.165986,-0.0181 0.25385,-0.0181 0.351504,0 0.655911,0.11373 0.870347,0.27197 0.215407,0.159 0.32638,0.35677 0.32638,0.56212 0,0.20527 -0.110982,0.385 -0.32638,0.54395 -0.214436,0.15828 -0.518843,0.27199 -0.870347,0.27199 z m -4.297337,-2.5929 c -0.351653,0 -0.675561,-0.0971 -0.888478,-0.25386 -0.160446,-0.11818 -0.253561,-0.26681 -0.290115,-0.41703 -0.01221,-0.0501 -0.0181,-0.0934 -0.0181,-0.14507 0,-0.1551 0.04642,-0.30326 0.16319,-0.43517 0.03893,-0.044 0.09163,-0.0873 0.145056,-0.12696 0.212764,-0.15783 0.537004,-0.25386 0.88848,-0.25386 0.351492,0 0.655904,0.0955 0.870346,0.25386 0.215394,0.15895 0.326381,0.3568 0.326381,0.5621 0,0.20528 -0.110766,0.40404 -0.326381,0.56209 -0.214593,0.15729 -0.518674,0.25386 -0.870346,0.25386 z m 8.739732,0 c -0.351643,0 -0.65743,-0.0971 -0.870346,-0.25386 -0.160446,-0.11818 -0.266594,-0.26681 -0.308249,-0.41703 -0.01387,-0.0501 -0.0181,-0.0934 -0.0181,-0.14507 0,-0.1551 0.05947,-0.30326 0.181322,-0.43517 0.04062,-0.044 0.09163,-0.0873 0.145058,-0.12696 0.212766,-0.15783 0.518879,-0.25386 0.870346,-0.25386 0.351505,0 0.674039,0.0955 0.888481,0.25386 0.215393,0.15895 0.32638,0.3568 0.32638,0.5621 0,0.20528 -0.110766,0.40404 -0.32638,0.56209 -0.214593,0.15729 -0.536802,0.25386 -0.888481,0.25386 z m -4.47866,-3.17314 c -0.351672,0 -0.655747,-0.11463 -0.870345,-0.27199 -0.161699,-0.11856 -0.266988,-0.25409 -0.308248,-0.39891 -0.01375,-0.0483 -0.0181,-0.0937 -0.0181,-0.14506 0,-0.15399 0.05923,-0.30285 0.181321,-0.43516 0.04067,-0.0442 0.09121,-0.0871 0.14506,-0.12696 0.160834,-0.1187 0.372542,-0.21445 0.616494,-0.25385 0.08132,-0.0131 0.165975,-0.0181 0.253852,-0.0181 0.351469,0 0.675718,0.11411 0.888478,0.27198 0.213717,0.1585 0.32638,0.35526 0.32638,0.5621 0,0.20678 -0.112458,0.38638 -0.32638,0.54396 -0.212917,0.15687 -0.53683,0.27198 -0.888478,0.27198 z m -8.794127,-0.32639 c -0.351648,0 -0.675575,-0.11513 -0.888478,-0.27198 -0.160446,-0.11818 -0.266594,-0.2668 -0.308248,-0.41704 -0.01387,-0.0501 -0.0181,-0.0934 -0.0181,-0.14506 0,-0.15511 0.05947,-0.30837 0.181322,-0.43518 0.04062,-0.0422 0.09163,-0.0692 0.145059,-0.10877 0.159574,-0.11831 0.385186,-0.21434 0.634626,-0.25385 0.08315,-0.0132 0.165981,-0.0181 0.253852,-0.0181 0.351498,0 0.655904,0.11373 0.870346,0.27199 0.215404,0.15898 0.32638,0.33864 0.32638,0.54397 0,0.20527 -0.110779,0.40403 -0.32638,0.56208 -0.214598,0.1573 -0.518675,0.27199 -0.870346,0.27199 z m 17.932769,0 c -0.351672,0 -0.655749,-0.11474 -0.870347,-0.27198 -0.161704,-0.11857 -0.266988,-0.26713 -0.308248,-0.41704 -0.01375,-0.05 -0.0181,-0.0938 -0.0181,-0.14506 0,-0.15398 0.05923,-0.30794 0.181322,-0.43518 0.04067,-0.0424 0.0912,-0.0691 0.145058,-0.10877 0.160834,-0.11869 0.372542,-0.21445 0.616494,-0.25385 0.08132,-0.0131 0.165978,-0.0181 0.253852,-0.0181 0.351469,0 0.675709,0.11411 0.888479,0.27199 0.213717,0.15851 0.326379,0.33713 0.326379,0.54397 0,0.2068 -0.112457,0.4045 -0.326379,0.56208 -0.21291,0.15689 -0.53683,0.27199 -0.888479,0.27199 z m -4.206677,-2.97368 c -0.351654,0 -0.675569,-0.11513 -0.888478,-0.27199 -0.160446,-0.11818 -0.253561,-0.25376 -0.290115,-0.3989 -0.01221,-0.0483 -0.0181,-0.0934 -0.0181,-0.14505 0,-0.15513 0.04642,-0.30327 0.16319,-0.43518 0.03894,-0.044 0.09163,-0.0873 0.145059,-0.12696 0.159576,-0.11831 0.385186,-0.21433 0.634628,-0.25385 0.08315,-0.0132 0.165982,-0.0181 0.253852,-0.0181 0.351505,0 0.674036,0.11373 0.888478,0.27199 0.215405,0.15899 0.308249,0.35678 0.308249,0.56209 0,0.20529 -0.09264,0.38591 -0.308249,0.54397 -0.214593,0.15728 -0.5368,0.27198 -0.888478,0.27198 z m -9.827663,-0.14505 c -0.35147,0 -0.657589,-0.11424 -0.870346,-0.27199 -0.16029,-0.11894 -0.266548,-0.26702 -0.308249,-0.41704 -0.01393,-0.05 -0.0181,-0.0934 -0.0181,-0.14506 0,-0.2068 0.112661,-0.40358 0.32638,-0.56209 0.159574,-0.11831 0.372154,-0.20132 0.616495,-0.23573 0.08144,-0.0114 0.165986,-0.0181 0.253852,-0.0181 0.351504,0 0.674036,0.0955 0.888478,0.25386 0.215394,0.15895 0.32638,0.35679 0.32638,0.5621 0,0.20531 -0.110982,0.40312 -0.32638,0.5621 -0.214442,0.15826 -0.536974,0.27198 -0.888478,0.27198 z m 18.676188,-0.18133 c -0.351648,0 -0.675569,-0.11513 -0.888478,-0.27199 -0.160446,-0.11818 -0.253561,-0.25378 -0.290116,-0.39891 -0.01221,-0.0483 -0.0181,-0.0934 -0.0181,-0.14505 0,-0.15515 0.04642,-0.30326 0.16319,-0.43517 0.03894,-0.044 0.09162,-0.0873 0.145059,-0.12696 0.15957,-0.11831 0.385181,-0.21435 0.634628,-0.25386 0.08315,-0.0132 0.165981,-0.0181 0.253852,-0.0181 0.351469,0 0.657581,0.11411 0.870346,0.27198 0.21374,0.15859 0.326381,0.35524 0.326381,0.5621 0,0.20676 -0.112458,0.38635 -0.326381,0.54397 -0.212915,0.15684 -0.518698,0.27198 -0.870346,0.27198 z m -27.216467,-0.0543 c -0.351467,0 -0.657579,-0.11412 -0.870346,-0.27199 -0.160288,-0.11882 -0.26654,-0.26702 -0.308246,-0.41705 -0.01393,-0.05 -0.0181,-0.0934 -0.0181,-0.14505 0,-0.1551 0.05945,-0.30849 0.18132,-0.43517 0.04062,-0.0422 0.09158,-0.0695 0.14506,-0.10877 0.159678,-0.11768 0.372159,-0.21413 0.616494,-0.25386 0.08144,-0.0132 0.165941,-0.0181 0.253852,-0.0181 0.351653,0 0.675569,0.11512 0.888478,0.27198 0.213926,0.15759 0.32638,0.33717 0.32638,0.54397 0,0.2068 -0.112662,0.40359 -0.32638,0.5621 -0.212764,0.15784 -0.537003,0.27199 -0.888478,0.27199 z m -4.895699,-2.95556 c -0.351476,0 -0.675709,-0.11424 -0.888478,-0.27198 -0.160283,-0.11895 -0.266541,-0.26703 -0.30825,-0.41704 -0.01393,-0.05 -0.0181,-0.0934 -0.0181,-0.14506 0,-0.15507 0.05945,-0.30847 0.181323,-0.43518 0.04062,-0.0422 0.09158,-0.0693 0.145057,-0.10877 0.159692,-0.11767 0.385198,-0.21411 0.634628,-0.25384 0.08315,-0.0132 0.165941,-0.0181 0.253852,-0.0181 0.351637,0 0.657423,0.11513 0.870347,0.27198 0.213924,0.15763 0.326379,0.33723 0.326379,0.54397 0,0.20682 -0.112674,0.40358 -0.326379,0.56209 -0.212772,0.15781 -0.518879,0.27199 -0.870347,0.27199 z m 9.174905,-0.0907 c -0.351476,0 -0.657583,-0.11412 -0.870347,-0.27199 -0.160288,-0.11894 -0.26654,-0.25398 -0.308249,-0.39891 -0.01393,-0.0483 -0.0181,-0.0934 -0.0181,-0.14505 0,-0.10342 0.0358,-0.21327 0.09067,-0.30825 0.02744,-0.0474 0.05002,-0.0829 0.09067,-0.12696 0.04062,-0.0439 0.09158,-0.0875 0.145056,-0.12696 0.159687,-0.11768 0.372162,-0.21413 0.616497,-0.25386 0.08144,-0.0132 0.165939,-0.0181 0.253851,-0.0181 0.351666,0 0.673886,0.11462 0.888479,0.27198 0.215608,0.15803 0.32638,0.35679 0.32638,0.5621 0,0.20527 -0.110995,0.38502 -0.32638,0.54397 -0.214442,0.15828 -0.536981,0.27197 -0.888479,0.27197 z m 9.46502,-0.25385 c -0.351672,0 -0.655749,-0.0965 -0.870347,-0.25386 -0.161699,-0.11856 -0.266986,-0.26712 -0.308247,-0.41703 -0.01374,-0.05 -0.0181,-0.0938 -0.0181,-0.14506 0,-0.15401 0.05923,-0.30285 0.181322,-0.43518 0.04067,-0.0441 0.0912,-0.0871 0.145057,-0.12696 0.214442,-0.15827 0.518849,-0.25385 0.870346,-0.25385 0.351476,0 0.675721,0.0961 0.88848,0.25385 0.213716,0.15851 0.308246,0.35527 0.308246,0.5621 0,0.20675 -0.09432,0.40449 -0.308246,0.5621 -0.212911,0.15685 -0.536836,0.25385 -0.88848,0.25385 z"
     style="fill:#afe478;fill-opacity:1;fill-rule:evenodd;stroke:none"
     inkscape:connector-curvature="0" /><path
     id="path4369"
     d="m 41.105923,105.73159 4.989488,-3.90642 -4.511044,-0.0263 -2.50263,1.91903 -2.465827,0.0158 4.437437,-3.48056 0.05258,0.0368 0,-0.0102 6.913779,0.0368 0.136699,-0.10521 -2.534176,-13.895901 9.752898,-0.07361 -2.697163,13.832821 0.299684,0.2366 6.919037,-0.0368 0,0.0102 0.04732,-0.0368 4.437436,3.48055 -2.465826,-0.0158 -2.50263,-1.91903 -4.511044,0.0263 4.994745,3.90641 -2.676132,-0.0315 -4.89485,-3.81704 -0.352262,1.81913 -3.175605,0.0316 -0.310201,-1.69821 -4.705575,3.66983 -2.676133,0.0316 z"
     style="fill:#577632;fill-opacity:1;stroke:none"
     inkscape:connector-curvature="0" /><g
     transform="matrix(0.43822081,0,0,-0.43822081,-272.20604,356.91925)"
     id="g3443"><path
       id="flowRoot3023-5-6-2-5-9-7-4-5"
       transform="translate(0,308.2677)"
       d="m 790.28125,287.1875 c -2.67365,2e-5 -4.62784,0.93059 -5.90625,2.8125 -1.27842,1.88195 -1.9375,4.71548 -1.9375,8.53125 0,3.64706 0.68145,6.43057 2.03125,8.3125 1.3498,1.88193 3.32345,2.8125 5.90625,2.8125 1.6483,0 3.13721,-0.40637 4.5,-1.25 l 0,-4.5625 c -1.41471,0.90852 -2.76463,1.34375 -4.0625,1.34375 -1.09023,0 -1.86354,-0.54655 -2.34375,-1.65625 -0.48022,-1.10968 -0.71876,-2.7859 -0.71875,-5.03125 -10e-6,-2.29724 0.23204,-4.00761 0.71875,-5.15625 0.4867,-1.14861 1.27179,-1.71873 2.375,-1.71875 0.83064,2e-5 1.79774,0.30155 2.875,0.9375 l 1.46875,-4.03125 c -0.70087,-0.44126 -1.49245,-0.76636 -2.375,-1 -0.88257,-0.2336 -1.72657,-0.34373 -2.53125,-0.34375 z m 15.40625,0 c -2.64769,2e-5 -4.72619,0.9895 -6.21875,2.96875 -1.49257,1.97929 -2.21875,4.7015 -2.21875,8.21875 0,2.28429 0.34337,4.29329 1.03125,6 0.68788,1.70672 1.66557,3.02898 2.9375,3.9375 1.27192,0.90852 2.74495,1.34375 4.40625,1.34375 2.62171,0 4.68194,-0.98948 6.1875,-2.96875 1.50553,-1.97927 2.24998,-4.75629 2.25,-8.3125 -2e-5,-3.43938 -0.76923,-6.16927 -2.28125,-8.1875 -1.51205,-2.01819 -3.53693,-2.99998 -6.09375,-3 z m 22.125,0 c -1.16811,2e-5 -2.16168,0.27919 -3.03125,0.84375 -0.82163,0.53346 -1.47507,1.26593 -1.9375,2.1875 l 0,-2.65625 -5.125,0 0,0.0312 -0.0312,0 0,21.6875 5.1875,0 0,-10.4375 c -10e-6,-2.63469 0.26209,-4.48404 0.78125,-5.59375 0.51915,-1.10967 1.35256,-1.68748 2.46875,-1.6875 0.84361,2e-5 1.4361,0.41408 1.8125,1.21875 0.37637,0.8047 0.56249,1.99207 0.5625,3.5625 l 0,12.9375 5.21875,0 0,-14.15625 c -2e-5,-2.59575 -0.48886,-4.58768 -1.46875,-5.9375 -0.97992,-1.34978 -2.46473,-1.99998 -4.4375,-2 z m 15.4375,0 c -1.82769,0.11784 -3.299,0.65118 -4.40625,1.59375 -1.26544,1.07726 -1.90625,2.53202 -1.90625,4.375 0,1.44067 0.34986,2.69224 1.03125,3.75 0.68139,1.05779 1.80456,2.06553 3.375,3 1.18107,0.71385 1.99621,1.31931 2.4375,1.8125 0.44127,0.4932 0.65624,1.05684 0.65625,1.71875 -10e-6,0.64895 -0.23445,1.1979 -0.65625,1.59375 -0.42182,0.39586 -1.00782,0.59375 -1.8125,0.59375 -0.72682,0 -1.57731,-0.17552 -2.53125,-0.5 -0.95395,-0.32447 -1.78617,-0.72555 -2.5,-1.21875 l 0,4.5 c 1.40171,0.84363 3.17099,1.25 5.3125,1.25 2.41406,0 4.22926,-0.59369 5.46875,-1.78125 1.23947,-1.18756 1.87499,-2.82194 1.875,-4.9375 -10e-6,-0.97341 -0.17025,-1.83568 -0.46875,-2.5625 -0.29853,-0.72681 -0.7049,-1.36642 -1.25,-1.9375 -0.54512,-0.57106 -1.49396,-1.27607 -2.84375,-2.09375 -1.11619,-0.67489 -1.87242,-1.23323 -2.28125,-1.6875 -0.40884,-0.45424 -0.62501,-0.97844 -0.625,-1.5625 -10e-6,-0.50616 0.16903,-0.9308 0.5,-1.28125 0.33095,-0.35041 0.83807,-0.53123 1.5,-0.53125 1.05128,2e-5 2.2675,0.37224 3.65625,1.125 l 1.6875,-3.71875 c -1.70024,-1.01233 -3.51664,-1.49998 -5.4375,-1.5 -0.2758,0 -0.52015,-0.0168 -0.78125,0 z m 16.9375,0 c -2.53088,2e-5 -4.52281,0.9883 -5.9375,3 -1.4147,2.01174 -2.125,4.8241 -2.125,8.40625 0,3.53025 0.81105,6.26015 2.375,8.1875 1.56395,1.92736 3.69366,2.875 6.40625,2.875 2.3232,0 4.30744,-0.50063 5.96875,-1.5 l 0,-4.25 c -1.76514,1.05129 -3.50026,1.5625 -5.1875,1.5625 -1.32385,0 -2.34099,-0.46528 -3.09375,-1.40625 -0.75278,-0.94096 -1.14857,-2.37864 -1.1875,-4.3125 l 10.40625,0 0,-2.75 c -2e-5,-3.10193 -0.66849,-5.53028 -2.03125,-7.25 -1.36279,-1.71968 -3.23161,-2.56248 -5.59375,-2.5625 z m 20.34375,0 c -0.89555,2e-5 -1.70011,0.29097 -2.375,0.875 -0.67491,0.58407 -1.27269,1.54349 -1.84375,2.90625 l -0.1875,0 -0.59375,-3.375 -4.25,0 0,21.6875 5.1875,0 0,-11.15625 c -10e-6,-1.8949 0.32509,-3.35085 1,-4.34375 0.67489,-0.99287 1.64729,-1.49998 2.90625,-1.5 0.58404,2e-5 1.04283,0.089 1.40625,0.21875 l 0.625,-5.03125 c -0.61002,-0.19466 -1.23905,-0.28123 -1.875,-0.28125 z m -20.40625,3.96875 c 0.7917,2e-5 1.42073,0.43235 1.875,1.25 0.45425,0.81768 0.69278,2.01035 0.71875,3.59375 l -5.25,0 c 0.0779,-1.6483 0.36353,-2.87101 0.84375,-3.65625 0.48021,-0.7852 1.0727,-1.18748 1.8125,-1.1875 z M 805.25,291.625 c 0.12695,-0.0175 0.26997,0 0.40625,0 1.07723,2e-5 1.84405,0.56485 2.34375,1.6875 0.49967,1.12269 0.74999,2.79121 0.75,5.0625 -10e-6,4.56856 -1.01715,6.875 -3.09375,6.875 -1.09023,0 -1.88181,-0.59488 -2.375,-1.75 -0.4932,-1.15511 -0.75001,-2.86667 -0.75,-5.125 -10e-6,-2.27129 0.2568,-3.93981 0.75,-5.0625 0.43154,-0.98232 1.0801,-1.5647 1.96875,-1.6875 z"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
       inkscape:connector-curvature="0" /><path
       id="flowRoot3023-5-6-2-5-9-7-1-4-1"
       transform="translate(0,308.2677)"
       d="m 912.25,287.1875 c -2.53088,2e-5 -4.87677,0.66849 -7.03125,2.03125 L 907,292.8125 c 1.68724,-1.01233 3.17086,-1.53123 4.46875,-1.53125 1.75213,2e-5 2.65624,1.00657 2.65625,3.03125 l 0,1.5625 -2.90625,0.125 c -2.49194,0.11682 -4.3413,0.73407 -5.59375,1.84375 -1.25246,1.1097 -1.875,2.80948 -1.875,5.09375 0,2.12854 0.42874,3.7747 1.34375,4.96875 0.91501,1.19405 2.18485,1.78125 3.78125,1.78125 1.24596,0 2.27607,-0.23853 3.09375,-0.71875 0.81766,-0.48022 1.60924,-1.35307 2.375,-2.625 l 0.125,0 1.03125,2.96875 3.78125,0 0,-14.5625 c -2e-5,-2.41405 -0.58072,-4.27638 -1.78125,-5.59375 -1.20056,-1.31733 -2.95276,-1.96873 -5.25,-1.96875 z m 21.34375,0.0312 c -1.16811,2e-5 -2.19293,0.27919 -3.0625,0.84375 -0.85122,0.55267 -1.50307,1.31201 -1.96875,2.28125 l 0,-2.78125 -5.125,0 0,11.65625 0.0312,0 0,10.09375 5.1875,0 0,-10.40625 c -10e-6,-2.63469 0.26209,-4.51529 0.78125,-5.625 0.51915,-1.10967 1.32131,-1.65623 2.4375,-1.65625 0.84361,2e-5 1.46735,0.38283 1.84375,1.1875 0.37637,0.8047 0.56249,1.99207 0.5625,3.5625 l 0,12.9375 5.21875,0 0,-14.15625 c -2e-5,-2.59575 -0.48886,-4.55643 -1.46875,-5.90625 -0.97992,-1.34978 -2.46473,-2.03123 -4.4375,-2.03125 z m 17.21875,0 c -2.67365,2e-5 -4.65909,0.93059 -5.9375,2.8125 -1.27842,1.88195 -1.90625,4.74673 -1.90625,8.5625 0,3.64706 0.68145,6.39932 2.03125,8.28125 1.3498,1.88193 3.2922,2.8125 5.875,2.8125 1.6483,0 3.16846,-0.40637 4.53125,-1.25 l 0,-4.5625 c -1.41471,0.90852 -2.76463,1.375 -4.0625,1.375 -1.09023,0 -1.89479,-0.5778 -2.375,-1.6875 -0.48022,-1.10968 -0.71876,-2.7859 -0.71875,-5.03125 -10e-6,-2.29724 0.26329,-4.00761 0.75,-5.15625 0.4867,-1.14861 1.27179,-1.71873 2.375,-1.71875 0.83064,2e-5 1.79774,0.30155 2.875,0.9375 l 1.46875,-4.03125 c -0.70087,-0.44126 -1.49245,-0.76636 -2.375,-1 -0.88257,-0.2336 -1.72657,-0.34373 -2.53125,-0.34375 z m -65.90625,0.40625 5.65625,21.6875 6.4375,0 5.6875,-21.6875 -5.375,0 c -1.89492,8.63095 -2.89618,13.23375 -3,13.84375 -0.10384,0.61001 -0.21517,1.30444 -0.3125,2.03125 -0.0974,0.72682 -0.14328,1.26689 -0.15625,1.65625 l -0.0625,0 c -0.0389,-0.49319 -0.15027,-1.28357 -0.3125,-2.40625 -0.16224,-1.12266 -0.3207,-1.97844 -0.4375,-2.5625 l -2.75,-12.5625 -5.375,0 z m 29.21875,11.53125 0,1.8125 c -10e-6,1.4147 -0.31043,2.55614 -0.875,3.40625 -0.56459,0.85012 -1.30255,1.28125 -2.25,1.28125 -1.27193,0 -1.90626,-0.89641 -1.90625,-2.6875 -10e-6,-1.20703 0.26089,-2.10874 0.8125,-2.71875 0.55159,-0.61 1.41267,-0.96635 2.59375,-1.03125 l 1.625,-0.0625 z"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
       inkscape:connector-curvature="0" /><g
       transform="matrix(0.8306463,0,0,0.8306463,1795.7434,-128.90577)"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
       id="flowRoot3023-5-6-2-5-9-7-1-5-1-3"><path
         d="m -1008.5625,872.02908 6.4688,0 3.60933,14.74219 c 0.35936,1.31251 0.64842,3.14845 0.86718,5.50781 l 0.14063,0 c 0.0156,-0.37499 0.0859,-1.04296 0.21094,-2.0039 0.12498,-0.96093 0.22655,-1.71484 0.30468,-2.26172 0.0781,-0.54687 1.15624,-5.87499 3.23438,-15.98438 l 6.5625,0 -7.47656,27.98438 c -0.90627,3.43749 -2.10939,5.90624 -3.60938,7.40625 -1.50001,1.49999 -3.5,2.24999 -6,2.25 -1.2344,-10e-6 -2.3359,-0.13283 -3.3047,-0.39844 l 0,-5.22656 c 0.6406,0.18749 1.3594,0.28124 2.1563,0.28125 2.0937,-10e-6 3.4687,-1.37501 4.125,-4.125 l 0.4453,-1.64063 z"
         id="path3407"
         inkscape:connector-curvature="0" /></g></g><g
     transform="matrix(0.25000688,0,0,-0.25000688,348.99292,288.90814)"
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed Light;-inkscape-font-specification:'Open Sans Condensed Light, Light'"
     id="flowRoot3013-0-3-7-9-7-8-1-7"><path
       d="m -1032.3359,754.60721 c -10e-5,2.14063 -0.5626,3.81641 -1.6875,5.02734 -1.125,1.21094 -2.75,1.81641 -4.875,1.81641 -1.1563,0 -2.1719,-0.14844 -3.0469,-0.44531 -0.875,-0.29688 -1.5547,-0.625 -2.0391,-0.98438 l 0,-2.60156 c 0.5781,0.57813 1.3438,1.04297 2.2969,1.39453 0.9531,0.35156 1.9297,0.52734 2.9297,0.52734 1.3125,0 2.3437,-0.42968 3.0937,-1.28906 0.75,-0.85937 1.125,-2.00781 1.125,-3.44531 0,-1.12499 -0.2695,-2.07421 -0.8086,-2.84766 -0.539,-0.77343 -1.5664,-1.65233 -3.082,-2.63672 -1.7344,-1.09373 -2.918,-1.96873 -3.5508,-2.625 -0.6328,-0.65623 -1.125,-1.39061 -1.4765,-2.20312 -0.3516,-0.81248 -0.5274,-1.78123 -0.5274,-2.90625 0,-1.82811 0.6172,-3.33982 1.8516,-4.53516 1.2344,-1.19529 2.8047,-1.79294 4.7109,-1.79297 2.0469,3e-5 3.7578,0.4844 5.1328,1.45313 l -1.1484,1.94531 c -1.2813,-0.85935 -2.6406,-1.28904 -4.0781,-1.28906 -1.3125,2e-5 -2.3594,0.38674 -3.1407,1.16015 -0.7812,0.77346 -1.1718,1.79299 -1.1718,3.0586 0,1.12502 0.2656,2.06642 0.7968,2.82422 0.5313,0.75783 1.6563,1.67579 3.375,2.7539 1.6875,1.10939 2.8438,1.99611 3.4688,2.66016 0.625,0.66407 1.0898,1.39845 1.3945,2.20312 0.3047,0.8047 0.457,1.73048 0.4571,2.77735 z"
       id="path3376"
       inkscape:connector-curvature="0" /><path
       d="m -1012.9062,748.20877 c -10e-5,4.28126 -0.6758,7.5586 -2.0274,9.83203 -1.3516,2.27344 -3.2852,3.41016 -5.8008,3.41016 -2.4844,0 -4.3867,-1.13672 -5.707,-3.41016 -1.3203,-2.27343 -1.9805,-5.55077 -1.9805,-9.83203 0,-8.7656 2.5938,-13.14841 7.7813,-13.14844 2.4375,3e-5 4.3359,1.14847 5.6953,3.44532 1.3593,2.29689 2.039,5.53126 2.0391,9.70312 z m -13.1954,0 c 0,3.67188 0.4375,6.44532 1.3125,8.32031 0.875,1.87501 2.2422,2.8125 4.1016,2.8125 3.6406,0 5.4609,-3.71093 5.4609,-11.13281 0,-7.35935 -1.8203,-11.03904 -5.4609,-11.03906 -1.9063,2e-5 -3.2852,0.9219 -4.1367,2.76562 -0.8516,1.84377 -1.2774,4.60158 -1.2774,8.27344 z"
       id="path3378"
       inkscape:connector-curvature="0" /><path
       d="m -1000.7656,737.52127 -3.9844,0 0,23.46094 -2.2031,0 0,-23.46094 -3.2344,0 0,-1.26562 3.2344,-0.96094 0,-1.92188 c 0,-3.23434 0.3828,-5.56246 1.1484,-6.98437 0.7656,-1.42184 2.0938,-2.13278 3.9844,-2.13281 1.0937,3e-5 2.08591,0.19534 2.97655,0.58593 l -0.77344,2.0625 c -0.82811,-0.39059 -1.57811,-0.5859 -2.25001,-0.58593 -0.7656,3e-5 -1.3437,0.22659 -1.7344,0.67968 -0.3906,0.45316 -0.6797,1.18754 -0.8671,2.20313 -0.1876,1.01565 -0.2813,2.4219 -0.2813,4.21875 l 0,2.13281 3.9844,0 z"
       id="path3380"
       inkscape:connector-curvature="0" /><path
       d="m -992,759.38846 c 0.68749,0 1.29687,-0.0937 1.82813,-0.28125 l 0,1.875 c -0.68751,0.3125 -1.57033,0.46875 -2.64844,0.46875 -2.62501,0 -3.93751,-1.96094 -3.9375,-5.88281 l 0,-18.04688 -2.29688,0 0,-1.3125 2.25,-0.65625 0.72657,-6.04687 1.54687,0 0,6.04687 4.03125,0 0,1.96875 -4.03125,0 0,17.41406 c -10e-6,1.71876 0.18749,2.89063 0.5625,3.51563 0.37499,0.625 1.03124,0.9375 1.96875,0.9375 z"
       id="path3382"
       inkscape:connector-curvature="0" /><path
       d="m -972.03125,760.98221 -3.51562,-17.22656 c -0.0313,-0.12499 -0.0586,-0.2578 -0.082,-0.39844 -0.0235,-0.14061 -0.26954,-1.64061 -0.73828,-4.5 l -0.0469,0 -0.32813,1.99219 -0.53906,2.90625 -3.63281,17.22656 -2.64844,0 -5.53125,-25.42969 2.22656,0 3.16407,14.8125 1.47656,7.73438 0.14062,0 c 0.28124,-2.23437 0.73437,-4.82812 1.35938,-7.78125 l 3.16406,-14.76563 2.34375,0 3.1875,14.8125 c 0.24998,1.10939 0.69529,3.68751 1.33594,7.73438 l 0.14062,0 c 0.0469,-0.51563 0.27733,-1.8125 0.69141,-3.89063 0.41404,-2.07812 1.73826,-8.29686 3.97266,-18.65625 l 2.20312,0 -5.71875,25.42969 z"
       id="path3384"
       inkscape:connector-curvature="0" /><path
       d="m -949.97656,760.98221 -0.28125,-3.5625 -0.0937,0 c -1.21876,2.6875 -3.06251,4.03125 -5.53125,4.03125 -1.65626,0 -2.98829,-0.66016 -3.9961,-1.98047 -1.00781,-1.32031 -1.51172,-3.08984 -1.51171,-5.30859 -10e-6,-2.42187 0.72655,-4.33984 2.17968,-5.75391 1.45312,-1.41405 3.49218,-2.18358 6.11719,-2.30859 l 2.74219,-0.14063 0,-2.10937 c -2e-5,-2.37498 -0.29689,-4.10545 -0.89063,-5.19141 -0.59376,-1.08591 -1.57813,-1.62888 -2.95312,-1.62891 -1.45314,3e-5 -2.93751,0.47659 -4.45313,1.42969 l -0.96093,-1.75781 c 1.76561,-1.09373 3.61718,-1.6406 5.55468,-1.64063 2.09374,3e-5 3.60155,0.66018 4.52344,1.98047 0.92186,1.32034 1.3828,3.52737 1.38281,6.6211 l 0,17.32031 z m -5.41406,-1.42969 c 1.59374,0 2.83202,-0.78515 3.71484,-2.35547 0.8828,-1.57031 1.3242,-3.79296 1.32422,-6.66797 l 0,-2.64843 -2.64844,0.14062 c -2.04688,0.10939 -3.56641,0.67579 -4.55859,1.69922 -0.9922,1.02345 -1.48829,2.51954 -1.48828,4.48828 -10e-6,1.84376 0.32812,3.19532 0.98437,4.05469 0.65624,0.85937 1.54687,1.28906 2.67188,1.28906 z"
       id="path3386"
       inkscape:connector-curvature="0" /><path
       d="m -934.39062,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z"
       id="path3388"
       inkscape:connector-curvature="0" /><path
       d="m -921.10156,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3390"
       inkscape:connector-curvature="0" /><path
       d="m -893.98437,737.52127 -3.98438,0 0,23.46094 -2.20312,0 0,-23.46094 -3.23438,0 0,-1.26562 3.23438,-0.96094 0,-1.92188 c -10e-6,-3.23434 0.3828,-5.56246 1.14843,-6.98437 0.76562,-1.42184 2.09375,-2.13278 3.98438,-2.13281 1.09374,3e-5 2.08592,0.19534 2.97656,0.58593 l -0.77344,2.0625 c -0.82813,-0.39059 -1.57813,-0.5859 -2.25,-0.58593 -0.76563,3e-5 -1.34375,0.22659 -1.73437,0.67968 -0.39063,0.45316 -0.6797,1.18754 -0.86719,2.20313 -0.18751,1.01565 -0.28126,2.4219 -0.28125,4.21875 l 0,2.13281 3.98438,0 z"
       id="path3392"
       inkscape:connector-curvature="0" /><path
       d="m -882.82812,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z"
       id="path3394"
       inkscape:connector-curvature="0" /><path
       d="m -869.53906,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3396"
       inkscape:connector-curvature="0" /><path
       d="m -850.69531,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3398"
       inkscape:connector-curvature="0" /><path
       d="m -832.85937,761.45096 c -4.93751,0 -7.40626,-4.38281 -7.40625,-13.14844 -10e-6,-4.31248 0.61718,-7.59764 1.85156,-9.85547 1.23437,-2.25779 3.05468,-3.38669 5.46094,-3.38672 1.14061,3e-5 2.22264,0.32815 3.24609,0.98438 1.02342,0.65627 1.83983,1.56252 2.44922,2.71875 l 0.1875,0 -0.0937,-2.83594 0,-11.41406 2.22656,0 0,36.46875 -1.82812,0 -0.1875,-3.5625 -0.21094,0 c -0.60939,1.29688 -1.39845,2.29297 -2.36719,2.98828 -0.96876,0.69531 -2.07814,1.04297 -3.32812,1.04297 z m 0.14062,-1.94531 c 1.78124,0 3.15233,-0.82422 4.11328,-2.47266 0.96092,-1.64843 1.44139,-4.07421 1.44141,-7.27734 l 0,-1.45313 c -2e-5,-3.84373 -0.46486,-6.66014 -1.39453,-8.44922 -0.9297,-1.78904 -2.34767,-2.68357 -4.25391,-2.68359 -1.82813,2e-5 -3.14063,0.95705 -3.9375,2.87109 -0.79688,1.91408 -1.19532,4.68361 -1.19531,8.3086 -1e-5,3.65625 0.41406,6.42969 1.24219,8.32031 0.82811,1.89063 2.15624,2.83594 3.98437,2.83594 z"
       id="path3400"
       inkscape:connector-curvature="0" /><path
       d="m -803.84375,748.20877 c -2e-5,4.28126 -0.6758,7.5586 -2.02734,9.83203 -1.35158,2.27344 -3.28517,3.41016 -5.80078,3.41016 -2.48439,0 -4.38673,-1.13672 -5.70704,-3.41016 -1.32031,-2.27343 -1.98047,-5.55077 -1.98046,-9.83203 -10e-6,-8.7656 2.59374,-13.14841 7.78125,-13.14844 2.43748,3e-5 4.33592,1.14847 5.69531,3.44532 1.35936,2.29689 2.03904,5.53126 2.03906,9.70312 z m -13.19531,0 c -1e-5,3.67188 0.43749,6.44532 1.3125,8.32031 0.87499,1.87501 2.24218,2.8125 4.10156,2.8125 3.64061,0 5.46092,-3.71093 5.46094,-11.13281 -2e-5,-7.35935 -1.82033,-11.03904 -5.46094,-11.03906 -1.90626,2e-5 -3.28516,0.9219 -4.13672,2.76562 -0.85157,1.84377 -1.27735,4.60158 -1.27734,8.27344 z"
       id="path3402"
       inkscape:connector-curvature="0" /><path
       d="m -776.58594,760.98221 0,-17.32031 c -2e-5,-4.26561 -1.25002,-6.39842 -3.75,-6.39844 -1.71877,2e-5 -2.95705,0.74611 -3.71484,2.23828 -0.75783,1.49221 -1.13674,3.69142 -1.13672,6.59766 l 0,14.88281 -2.20312,0 0,-17.32031 c -2e-5,-2.15623 -0.30471,-3.7617 -0.91407,-4.81641 -0.60939,-1.05467 -1.5547,-1.58201 -2.83593,-1.58203 -1.68751,2e-5 -2.91408,0.76565 -3.67969,2.29687 -0.76563,1.53127 -1.14845,4.01565 -1.14844,7.45313 l 0,13.96875 -2.22656,0 0,-25.42969 1.875,0 0.1875,3.53906 0.21094,0 c 1.01561,-2.68747 2.74217,-4.03122 5.17968,-4.03125 1.40624,3e-5 2.51561,0.37503 3.32813,1.125 0.81248,0.75003 1.39842,1.84378 1.75781,3.28125 0.60936,-1.56247 1.35936,-2.68747 2.25,-3.375 0.89061,-0.68747 2.04685,-1.03122 3.46875,-1.03125 1.92185,3e-5 3.3281,0.73831 4.21875,2.21485 0.8906,1.47658 1.33591,3.83986 1.33594,7.08984 l 0,16.61719 z"
       id="path3404"
       inkscape:connector-curvature="0" /></g></g><text
   xml:space="preserve"
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   x="113.36552"
   y="-44.040192"
   id="text7147"
   transform="scale(1,-1)"
   sodipodi:linespacing="125%"><tspan
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
     sodipodi:role="line"
     id="tspan7149"
     x="113.36552"
     y="-44.040192" /></text>






<text
   xml:space="preserve"
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   x="113.6648"
   y="-37.62291"
   id="text7155"
   transform="scale(1,-1)"
   sodipodi:linespacing="125%"><tspan
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
     sodipodi:role="line"
     id="tspan7157"
     x="113.6648"
     y="-37.62291" /></text>






<text
   sodipodi:linespacing="125%"
   transform="scale(1,-1)"
   id="text7159"
   y="-87.822914"
   x="138.46829"
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   xml:space="preserve"><tspan
     y="-87.822914"
     x="138.46829"
     id="tspan7161"
     sodipodi:role="line"
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans" /></text>






<text
   sodipodi:linespacing="125%"
   transform="scale(1,-1)"
   id="text6535"
   y="-45.918201"
   x="146.6619"
   style="font-size:5.58918715px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#577632;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   xml:space="preserve"><tspan
     y="-45.918201"
     x="146.6619"
     id="tspan6537"
     sodipodi:role="line" /></text>









<text
   sodipodi:linespacing="125%"
   transform="scale(1,-1)"
   id="text7143"
   y="-45.850258"
   x="234.0332"
   style="font-size:5.39359856px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#4d4d4d;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   xml:space="preserve"><tspan
     y="-45.850258"
     x="234.0332"
     sodipodi:role="line"
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;text-anchor:end;fill:#4d4d4d;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
     id="tspan7218" /></text>









<text
   sodipodi:linespacing="125%"
   transform="scale(1,-1)"
   id="text7429"
   y="-23.965015"
   x="234.0332"
   style="font-size:5.39359856px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   xml:space="preserve"><tspan
     id="tspan7431"
     y="-23.965015"
     x="234.0332"
     sodipodi:role="line"
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;text-anchor:end;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans" /></text>








<g
   id="g3115"
   transform="matrix(0.42457859,0,0,-0.71531053,7.4622436,224.60588)"><title
     id="title3117">Layer 1</title><g
     id="g3200"><rect
   y="112.68655"
   x="-17.575647"
   height="201.31117"
   width="593.52966"
   id="rect9958"
   style="fill:#ffffff;fill-opacity:1;stroke:none" /><g
   id="g3697"><path
     inkscape:connector-curvature="0"
     id="path3570"
     style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
     d="m 31.728962,240.27956 c -2.1e-5,0.98497 -0.115261,1.94714 -0.345715,2.8865 -0.215132,0.93026 -0.530116,1.8149 -0.944953,2.65394 -0.399512,0.83906 -0.898878,1.6097 -1.498099,2.31195 -0.599255,0.70224 -1.275319,1.30873 -2.028192,1.81945 -0.73754,0.5016 -1.559572,0.89377 -2.466098,1.17649 -0.891189,0.29185 -1.843824,0.43777 -2.857909,0.43777 -1.029471,0 -1.974423,-0.14136 -2.83486,-0.42409 -0.845088,-0.28272 -1.613342,-0.67944 -2.304765,-1.19017 -0.67607,-0.51072 -1.275308,-1.11721 -1.797718,-1.81945 -0.507051,-0.70225 -0.937273,-1.47289 -1.290668,-2.31195 -0.338034,-0.83904 -0.59924,-1.72368 -0.783619,-2.65394 -0.169018,-0.93936 -0.253526,-1.90153 -0.253524,-2.8865 -2e-6,-1.45921 0.192062,-2.7953 0.57619,-4.00828 0.384126,-1.22208 0.975682,-2.27089 1.77467,-3.14644 0.79898,-0.8755 1.805394,-1.55495 3.019242,-2.03833 1.229199,-0.48334 2.6812,-0.72503 4.356005,-0.72505 1.766974,2e-5 3.26507,0.24171 4.494291,0.72505 1.229192,0.48338 2.227922,1.16283 2.996194,2.03833 0.768236,0.87555 1.32138,1.92436 1.659431,3.14644 0.353377,1.21298 0.530076,2.54907 0.530097,4.00828 m -4.286864,0.10944 c -1.5e-5,-1.21297 -0.09989,-2.32562 -0.299619,-3.33796 -0.184396,-1.01231 -0.491698,-1.87872 -0.921905,-2.59922 -0.430238,-0.72959 -0.991064,-1.29503 -1.682479,-1.69633 -0.676077,-0.40127 -1.505792,-0.60192 -2.489146,-0.60193 -0.921916,1e-5 -1.728583,0.20066 -2.420003,0.60193 -0.676073,0.4013 -1.236898,0.96674 -1.682478,1.69633 -0.445595,0.7205 -0.775944,1.58691 -0.99105,2.59922 -0.215117,1.01234 -0.322673,2.12499 -0.322666,3.33796 -7e-6,1.23122 0.107551,2.41227 0.322666,3.54315 0.215106,1.13089 0.537773,2.1341 0.968002,3.00962 0.430216,0.86641 0.967994,1.55954 1.613336,2.07938 0.645324,0.51985 1.39053,0.77977 2.235621,0.77977 0.845068,0 1.613324,-0.25992 2.304765,-0.77977 0.706781,-0.51984 1.306019,-1.21297 1.797717,-2.07938 0.507032,-0.87552 0.89116,-1.87873 1.152383,-3.00962 0.276554,-1.13088 0.414841,-2.31193 0.414856,-3.54315" /><path
     inkscape:connector-curvature="0"
     id="path3572"
     style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
     d="m 50.188795,231.31907 0,1.87418 -12.399634,0 0,8.31751 10.002679,0 0,2.02466 -10.210108,0 0,7.14103 -3.664576,0 0,-19.35738 16.271639,0" /><path
     inkscape:connector-curvature="0"
     id="path3574"
     style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
     d="m 67.911108,231.31907 0,1.87418 -12.399635,0 0,8.31751 10.002679,0 0,2.02466 -10.210108,0 0,7.14103 -3.664576,0 0,-19.35738 16.27164,0" /><path
     inkscape:connector-curvature="0"
     id="path3576"
     style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
     d="m 77.981596,250.53965 -10.09487,0 0.04609,-2.1341 c 0.491682,0.0183 0.983365,0.0319 1.47505,0.0411 0.491679,0.009 0.975679,0.0137 1.452002,0.0137 0.07681,-1.83313 0.130599,-3.66627 0.161333,-5.49941 0.04609,-1.83313 0.06914,-3.67994 0.06914,-5.54045 -4e-6,-0.72959 -4e-6,-1.4592 0,-2.18882 -4e-6,-0.72959 -0.01537,-1.46376 -0.04609,-2.2025 l -2.927052,0.24624 -0.230476,-2.46242 c 0.921904,0.0183 1.843809,0.0273 2.765718,0.0273 0.921901,2e-5 1.843806,2e-5 2.765718,0 0.906533,2e-5 1.80539,2e-5 2.696575,0 0.90653,2e-5 1.81307,-0.009 2.719622,-0.0273 l -0.04609,1.7921 c -0.522426,0.0183 -1.044838,0.0411 -1.56724,0.0684 -0.507059,0.0183 -1.021789,0.0411 -1.544193,0.0684 -0.33804,2.63571 -0.645343,5.25774 -0.921906,7.86607 -0.261215,2.59923 -0.491691,5.21669 -0.691429,7.8524 0.676056,0 1.329072,-0.009 1.95905,-0.0274 0.645324,-0.0273 1.29834,-0.0639 1.95905,-0.10944 l 0,2.21618" /><path
     inkscape:connector-curvature="0"
     id="path3578"
     style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
     d="m 95.980481,237.5572 c -1.9e-5,-0.83903 -0.122945,-1.54583 -0.368763,-2.12041 -0.24586,-0.58367 -0.560843,-1.06248 -0.944954,-1.43642 -0.368778,-0.3739 -0.775953,-0.66119 -1.221525,-0.86184 -0.430238,-0.20974 -0.837412,-0.36022 -1.221525,-0.45144 -0.384141,-0.10031 -0.706809,-0.15503 -0.968002,-0.16417 -0.245854,-0.0183 -0.376458,-0.0274 -0.391809,-0.0274 -1.060204,3e-5 -2.028204,0.1733 -2.904004,0.51985 -0.87582,0.33746 -1.628709,0.85731 -2.25867,1.55954 -0.614612,0.69314 -1.098612,1.56866 -1.452001,2.62658 -0.338039,1.04882 -0.507055,2.28003 -0.507049,3.69363 -6e-6,1.41362 0.153645,2.65396 0.460953,3.721 0.32266,1.06706 0.768248,1.96082 1.336764,2.6813 0.5685,0.72049 1.252246,1.26313 2.05124,1.62794 0.81434,0.3648 1.72088,0.5472 2.719623,0.5472 0.752877,-0.0364 1.451988,-0.20064 2.097336,-0.49249 0.276557,-0.11855 0.553128,-0.27359 0.829716,-0.46512 0.291921,-0.19152 0.560809,-0.42864 0.806668,-0.71136 0.261188,-0.28272 0.499348,-0.61105 0.714476,-0.98497 0.215095,-0.38304 0.38411,-0.82536 0.507048,-1.32697 l 3.687625,0.16416 c -0.169038,0.68401 -0.422562,1.29049 -0.760573,1.81946 -0.338053,0.51984 -0.729862,0.97584 -1.175431,1.36801 -0.430241,0.38304 -0.898876,0.7068 -1.405906,0.97128 -0.4917,0.26449 -0.983383,0.48337 -1.475049,0.65665 -1.167763,0.40129 -2.4277,0.62929 -3.779815,0.684 -1.797728,0 -3.403378,-0.21431 -4.816958,-0.64296 -1.398231,-0.43776 -2.581342,-1.08073 -3.549338,-1.92889 -0.95264,-0.85729 -1.682482,-1.91978 -2.189526,-3.18748 -0.491686,-1.26768 -0.737527,-2.73145 -0.737526,-4.39132 -10e-7,-3.4565 0.991047,-6.06483 2.973147,-7.82503 1.982092,-1.76928 5.039743,-2.65392 9.172964,-2.65394 0.04608,2e-5 0.199732,0.005 0.460953,0.0137 0.276557,0.009 0.622272,0.0411 1.037144,0.0958 0.414843,0.0548 0.883477,0.14138 1.405907,0.25992 0.522397,0.10947 1.052492,0.27362 1.590287,0.49248 0.53776,0.21891 1.060174,0.49251 1.567241,0.82082 0.507029,0.32834 0.960298,0.73874 1.359811,1.2312 0.399472,0.48338 0.714455,1.05339 0.944953,1.71002 0.24582,0.65667 0.368741,1.41363 0.368763,2.2709 l -3.964195,0.1368" /><path
     inkscape:connector-curvature="0"
     id="path3580"
     style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
     d="m 110.10736,250.53965 -10.09487,0 0.0461,-2.1341 c 0.49168,0.0183 0.98336,0.0319 1.47505,0.0411 0.49168,0.009 0.97568,0.0137 1.452,0.0137 0.0768,-1.83313 0.1306,-3.66627 0.16133,-5.49941 0.0461,-1.83313 0.0691,-3.67994 0.0691,-5.54045 -1e-5,-0.72959 -1e-5,-1.4592 0,-2.18882 -1e-5,-0.72959 -0.0154,-1.46376 -0.0461,-2.2025 l -2.92705,0.24624 -0.23048,-2.46242 c 0.9219,0.0183 1.84381,0.0273 2.76572,0.0273 0.9219,2e-5 1.8438,2e-5 2.76572,0 0.90653,2e-5 1.80539,2e-5 2.69657,0 0.90653,2e-5 1.81307,-0.009 2.71962,-0.0273 l -0.0461,1.7921 c -0.52242,0.0183 -1.04484,0.0411 -1.56724,0.0684 -0.50706,0.0183 -1.02179,0.0411 -1.54419,0.0684 -0.33804,2.63571 -0.64534,5.25774 -0.92191,7.86607 -0.26121,2.59923 -0.49169,5.21669 -0.69143,7.8524 0.67606,0 1.32908,-0.009 1.95905,-0.0274 0.64533,-0.0273 1.29834,-0.0639 1.95905,-0.10944 l 0,2.21618" /><path
     inkscape:connector-curvature="0"
     id="path3582"
     style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
     d="m 125.73233,250.95005 -1.12933,-3.66628 c -0.73754,-0.0182 -1.46739,-0.0319 -2.18953,-0.0411 -0.72217,-0.009 -1.45201,-0.0136 -2.18953,-0.0136 -0.78363,0 -1.57493,0.005 -2.37391,0.0136 -0.79899,0.009 -1.59797,0.0228 -2.39695,0.0411 -0.19975,0.62018 -0.39182,1.23122 -0.57619,1.83314 -0.16902,0.60193 -0.33804,1.20386 -0.50705,1.80578 l -4.30991,0.0274 c 0.67606,-1.61426 1.30603,-3.24219 1.88991,-4.88381 0.59923,-1.64161 1.17542,-3.28778 1.72857,-4.93853 0.55314,-1.65072 1.0986,-3.30145 1.63638,-4.9522 0.53778,-1.65072 1.08324,-3.28777 1.63639,-4.91117 l 5.94629,-0.0684 c 1.10627,3.29236 2.26634,6.59839 3.48019,9.91809 1.22919,3.31971 2.55827,6.59838 3.98724,9.83601 l -4.63257,0 m -5.64667,-17.25064 c -0.73754,1.92435 -1.43665,3.85781 -2.09734,5.80037 -0.66071,1.93348 -1.30604,3.87605 -1.936,5.82774 0.67606,0.0183 1.34444,0.0228 2.00514,0.0136 0.66069,-0.009 1.33676,-0.0136 2.0282,-0.0136 0.66069,1e-5 1.30602,0.005 1.936,0.0136 0.62995,0.009 1.26761,0.005 1.91295,-0.0136 -0.61461,-1.96082 -1.2369,-3.90795 -1.86686,-5.84141 -0.62998,-1.93345 -1.29068,-3.86235 -1.98209,-5.7867" /><path
     inkscape:connector-curvature="0"
     id="path3584"
     style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
     d="m 145.69025,250.62173 -14.56611,0.30096 c 0.0308,-1.09441 0.0537,-2.18882 0.0692,-3.28323 0.0153,-1.0944 0.0231,-2.19337 0.0231,-3.29691 0,-2.21617 -0.0384,-4.41411 -0.11526,-6.59382 -0.0615,-2.1888 -0.15364,-4.3913 -0.27656,-6.6075 l 5.53144,-0.1368 c -0.16903,1.68723 -0.32268,3.27868 -0.46096,4.77436 -0.12292,1.49571 -0.23816,2.95036 -0.34571,4.36396 -0.0922,1.40451 -0.17671,2.79531 -0.25354,4.17244 -0.0768,1.36802 -0.14597,2.76795 -0.20742,4.1998 0.79898,0.0273 1.60565,0.0456 2.42,0.0547 0.81434,0 1.62869,0 2.44306,0 1.88988,0 3.80284,-0.0274 5.73885,-0.0821 l 0,2.13409" /></g><g
   transform="scale(1.2979808,0.77042743)"
   style="font-size:36.36539459000000107px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="text4987"><path
     d="m 23.413275,310.37871 c -1.7e-5,1.27849 -0.0888,2.52736 -0.266349,3.74663 -0.165743,1.20746 -0.408415,2.35571 -0.728018,3.44477 -0.307795,1.08908 -0.692519,2.08936 -1.154175,3.00086 -0.461683,0.9115 -0.982541,1.69871 -1.562575,2.36162 -0.568221,0.65107 -1.201537,1.16009 -1.89995,1.52706 -0.686596,0.37881 -1.420532,0.56821 -2.201811,0.56821 -0.793133,0 -1.521151,-0.18348 -2.184055,-0.55045 -0.651078,-0.36697 -1.242962,-0.88191 -1.775654,-1.54482 -0.520862,-0.66291 -0.982532,-1.45012 -1.38501,-2.36162 -0.3906463,-0.9115 -0.7221014,-1.91178 -0.9943661,-3.00086 -0.2604309,-1.08906 -0.4616715,-2.23731 -0.6037224,-3.44477 -0.1302158,-1.21927 -0.1953231,-2.46814 -0.1953219,-3.74663 -1.2e-6,-1.89401 0.1479699,-3.62823 0.4439135,-5.20266 0.2959404,-1.58623 0.7516912,-2.94757 1.3672539,-4.08401 0.615556,-1.13639 1.390924,-2.0183 2.326106,-2.64572 0.94701,-0.62737 2.065671,-0.94107 3.355987,-0.9411 1.361324,3e-5 2.515498,0.31373 3.462525,0.9411 0.947002,0.62742 1.716452,1.50933 2.30835,2.64572 0.59187,1.13644 1.018026,2.49778 1.278471,4.08401 0.272251,1.57443 0.408384,3.30865 0.408401,5.20266 m -3.302717,0.14206 c -1.3e-5,-1.5744 -0.07696,-3.0186 -0.230835,-4.3326 -0.142065,-1.31396 -0.378818,-2.43854 -0.710262,-3.37374 -0.331467,-0.94699 -0.763542,-1.68093 -1.296227,-2.20181 -0.520869,-0.52084 -1.160103,-0.78127 -1.917706,-0.78129 -0.71027,2e-5 -1.331748,0.26045 -1.864437,0.78129 -0.520865,0.52088 -0.95294,1.25482 -1.296228,2.20181 -0.343298,0.9352 -0.597808,2.05978 -0.763531,3.37374 -0.165732,1.314 -0.248596,2.7582 -0.248591,4.3326 -5e-6,1.5981 0.08286,3.13108 0.248591,4.59894 0.165723,1.46788 0.414314,2.77003 0.745775,3.90644 0.33145,1.12458 0.745768,2.02425 1.242958,2.69899 0.497176,0.67475 1.071303,1.01213 1.722384,1.01213 0.651064,0 1.242948,-0.33738 1.775654,-1.01213 0.544523,-0.67474 1.006193,-1.57441 1.38501,-2.69899 0.390632,-1.13641 0.686574,-2.43856 0.887827,-3.90644 0.213066,-1.46786 0.319605,-3.00084 0.319618,-4.59894"
     style="fill:#9cd5d3"
     id="path3553" /><path
     d="m 37.635237,298.74818 0,2.43265 -9.553018,0 0,10.79597 7.706338,0 0,2.62797 -7.866147,0 0,9.26892 -2.82329,0 0,-25.12551 12.536117,0"
     style="fill:#9cd5d3"
     id="path3555" /><path
     d="m 51.288992,298.74818 0,2.43265 -9.553018,0 0,10.79597 7.706338,0 0,2.62797 -7.866147,0 0,9.26892 -2.82329,0 0,-25.12551 12.536117,0"
     style="fill:#9cd5d3"
     id="path3557" /><path
     d="m 59.047572,323.69612 -7.777364,0 0.03551,-2.77002 c 0.378805,0.0237 0.757611,0.0414 1.136418,0.0533 0.378804,0.0118 0.751691,0.0178 1.118662,0.0178 0.05919,-2.37938 0.100618,-4.75875 0.124296,-7.13813 0.03551,-2.37937 0.05327,-4.7765 0.05327,-7.1914 -3e-6,-0.947 -3e-6,-1.89401 0,-2.84105 -3e-6,-0.94699 -0.01184,-1.89993 -0.03551,-2.8588 l -2.255081,0.31962 -0.177565,-3.19618 c 0.71026,0.0237 1.420521,0.0355 2.130785,0.0355 0.710258,3e-5 1.420518,3e-5 2.130784,0 0.698419,3e-5 1.390923,3e-5 2.077516,0 0.698416,3e-5 1.396839,-0.0118 2.095271,-0.0355 l -0.03551,2.32611 c -0.40249,0.0237 -0.804971,0.0533 -1.207444,0.0888 -0.390652,0.0237 -0.787214,0.0533 -1.189689,0.0888 -0.260435,3.42111 -0.497189,6.82445 -0.710261,10.21001 -0.201247,3.37375 -0.378812,6.77117 -0.532696,10.19226 0.520852,0 1.023953,-0.0118 1.509305,-0.0355 0.497176,-0.0355 1.000277,-0.0829 1.509306,-0.14205 l 0,2.87656"
     style="fill:#9cd5d3"
     id="path3559" /><path
     d="m 72.914407,306.84516 c -1.4e-5,-1.08905 -0.09472,-2.00647 -0.284105,-2.75226 -0.189417,-0.75759 -0.432089,-1.37907 -0.728018,-1.86444 -0.284118,-0.48532 -0.597816,-0.85821 -0.941097,-1.11866 -0.331467,-0.27224 -0.645166,-0.46756 -0.941096,-0.58597 -0.295954,-0.13019 -0.544545,-0.20121 -0.745775,-0.21307 -0.189414,-0.0237 -0.290034,-0.0355 -0.301861,-0.0355 -0.816811,3e-5 -1.562584,0.22494 -2.237324,0.67475 -0.674756,0.43802 -1.254803,1.11277 -1.740141,2.02425 -0.473514,0.89968 -0.846401,2.0361 -1.118662,3.40925 -0.260434,1.36135 -0.390649,2.95944 -0.390644,4.79427 -5e-6,1.83485 0.118372,3.44478 0.355131,4.82978 0.248586,1.38501 0.591879,2.54511 1.029879,3.48028 0.437988,0.93518 0.964765,1.63952 1.580332,2.11303 0.627389,0.47351 1.325813,0.71026 2.095272,0.71026 0.580036,-0.0473 1.118651,-0.26043 1.615845,-0.63924 0.213067,-0.15388 0.426145,-0.35512 0.639235,-0.60372 0.224904,-0.24859 0.432064,-0.55637 0.621479,-0.92334 0.201228,-0.36696 0.384712,-0.79312 0.550453,-1.27847 0.165714,-0.49718 0.295929,-1.0713 0.390644,-1.72238 l 2.841046,0.21308 c -0.130231,0.88783 -0.325552,1.67503 -0.585965,2.36161 -0.260445,0.67476 -0.562306,1.26664 -0.905584,1.77566 -0.33147,0.49718 -0.692519,0.91742 -1.083149,1.26071 -0.37882,0.3433 -0.757625,0.6274 -1.136419,0.85232 -0.899676,0.52086 -1.870366,0.8168 -2.912072,0.88782 -1.385019,0 -2.622056,-0.27818 -3.711117,-0.83455 -1.077235,-0.56821 -1.988737,-1.40277 -2.734507,-2.50368 -0.73394,-1.11273 -1.29623,-2.49182 -1.686872,-4.13727 -0.378807,-1.64543 -0.56821,-3.54538 -0.568209,-5.69985 -1e-6,-4.48647 0.763529,-7.87204 2.290594,-10.15674 1.527057,-2.29649 3.882756,-3.44474 7.067103,-3.44477 0.0355,3e-5 0.153879,0.006 0.355131,0.0178 0.213067,0.0119 0.479415,0.0533 0.799044,0.12429 0.319606,0.0711 0.680655,0.18351 1.083149,0.33738 0.402468,0.14208 0.810868,0.35515 1.225201,0.63923 0.414305,0.28413 0.816786,0.63926 1.207445,1.0654 0.390628,0.42618 0.73984,0.95887 1.047636,1.59808 0.307763,0.62742 0.550436,1.36728 0.728018,2.21957 0.189386,0.85234 0.284087,1.83486 0.284105,2.94759 l -3.054125,0.17756"
     style="fill:#9cd5d3"
     id="path3561" /><path
     d="m 83.798141,323.69612 -7.777365,0 0.03551,-2.77002 c 0.378805,0.0237 0.757611,0.0414 1.136419,0.0533 0.378804,0.0118 0.751691,0.0178 1.118662,0.0178 0.05918,-2.37938 0.100617,-4.75875 0.124296,-7.13813 0.03551,-2.37937 0.05327,-4.7765 0.05327,-7.1914 -3e-6,-0.947 -3e-6,-1.89401 0,-2.84105 -3e-6,-0.94699 -0.01184,-1.89993 -0.03551,-2.8588 l -2.25508,0.31962 -0.177566,-3.19618 c 0.71026,0.0237 1.420521,0.0355 2.130785,0.0355 0.710258,3e-5 1.420519,3e-5 2.130785,0 0.698418,3e-5 1.390922,3e-5 2.077515,0 0.698416,3e-5 1.396839,-0.0118 2.095272,-0.0355 l -0.03551,2.32611 c -0.402491,0.0237 -0.804972,0.0533 -1.207445,0.0888 -0.390652,0.0237 -0.787214,0.0533 -1.189688,0.0888 -0.260436,3.42111 -0.49719,6.82445 -0.710262,10.21001 -0.201247,3.37375 -0.378812,6.77117 -0.532696,10.19226 0.520852,0 1.023954,-0.0118 1.509306,-0.0355 0.497175,-0.0355 1.000277,-0.0829 1.509306,-0.14205 l 0,2.87656"
     style="fill:#9cd5d3"
     id="path3563" /><path
     d="m 95.836048,324.22882 -0.870071,-4.75876 c -0.56822,-0.0237 -1.13051,-0.0414 -1.686871,-0.0533 -0.556381,-0.0118 -1.118671,-0.0177 -1.686872,-0.0177 -0.603729,0 -1.21337,0.006 -1.828923,0.0177 -0.615566,0.0118 -1.231125,0.0296 -1.84668,0.0533 -0.153895,0.80497 -0.301866,1.59809 -0.443914,2.37938 -0.130218,0.78129 -0.260433,1.56258 -0.390644,2.34386 l -3.320473,0.0355 c 0.520858,-2.09527 1.006203,-4.2083 1.456036,-6.33909 0.461668,-2.13078 0.905581,-4.26748 1.331741,-6.41011 0.426153,-2.14261 0.846391,-4.28523 1.260714,-6.42787 0.414315,-2.1426 0.834553,-4.26746 1.260715,-6.3746 l 4.581187,-0.0888 c 0.852303,4.27343 1.746048,8.56459 2.681238,12.87349 0.947001,4.30893 1.970961,8.56458 3.071881,12.76696 l -3.569064,0 m -4.350353,-22.391 c -0.568216,2.49777 -1.106831,5.00736 -1.615845,7.52877 -0.509027,2.50961 -1.006209,5.03103 -1.491549,7.56429 0.520853,0.0237 1.035792,0.0296 1.544819,0.0177 0.509014,-0.0118 1.029872,-0.0177 1.562575,-0.0177 0.509013,10e-6 1.006195,0.006 1.49155,0.0177 0.485335,0.0119 0.976599,0.006 1.473792,-0.0177 -0.473518,-2.5451 -0.952944,-5.07244 -1.438279,-7.58204 -0.485355,-2.50958 -0.994375,-5.01325 -1.527063,-7.51102"
     style="fill:#9cd5d3"
     id="path3565" /><path
     d="m 111.21218,323.80266 -11.22213,0.39064 c 0.02367,-1.42052 0.04143,-2.84104 0.05327,-4.26157 0.0118,-1.42051 0.0178,-2.84695 0.0178,-4.27932 -1e-5,-2.87655 -0.0296,-5.72943 -0.08879,-8.55866 -0.04735,-2.84102 -0.118378,-5.69982 -0.213078,-8.5764 l 4.261565,-0.17757 c -0.13022,2.19 -0.24859,4.25567 -0.35513,6.19703 -0.0947,1.9414 -0.18349,3.82951 -0.26634,5.66434 -0.071,1.82302 -0.13614,3.62826 -0.19533,5.41574 -0.0592,1.77566 -0.11246,3.59275 -0.15981,5.45126 0.61556,0.0355 1.23704,0.0592 1.86444,0.071 0.62739,0 1.25479,0 1.88219,0 1.45603,0 2.92982,-0.0355 4.42138,-0.10654 l 0,2.77002"
     style="fill:#9cd5d3"
     id="path3567" /></g><path
   d="m 404.16151,235.01271 c -0.0153,0.27361 -0.0537,0.56545 -0.11527,0.87553 -0.0615,0.26449 -0.14599,0.57457 -0.25352,0.93024 -0.0921,0.3557 -0.24586,0.72506 -0.46095,1.10809 l -4.26381,-0.342 c 0.16899,-0.39215 0.29191,-0.76607 0.36875,-1.12177 0.0768,-0.36479 0.11526,-0.70679 0.11526,-1.02601 -10e-6,-0.65663 -0.14598,-1.2312 -0.4379,-1.72369 -0.29195,-0.49248 -0.68376,-0.90744 -1.17544,-1.2449 -0.49168,-0.33742 -1.06788,-0.58823 -1.72857,-0.75241 -0.64534,-0.17326 -1.32909,-0.2599 -2.05124,-0.25992 -0.86045,2e-5 -1.62102,0.13226 -2.28172,0.39673 -0.64533,0.25538 -1.19079,0.59738 -1.63637,1.02601 -0.4456,0.41953 -0.78363,0.89834 -1.0141,1.43641 -0.23049,0.52898 -0.34572,1.07162 -0.34572,1.62793 0,0.54722 0.15365,1.07163 0.46096,1.57321 0.32266,0.49251 0.75289,0.96219 1.29066,1.40906 0.55314,0.43777 1.1908,0.84818 1.91296,1.23121 0.72215,0.38305 1.49809,0.73418 2.32781,1.05337 1.42894,0.54721 2.63511,1.05338 3.61848,1.5185 0.99872,0.46513 1.80539,0.92113 2.42001,1.36801 0.61458,0.43777 1.06016,0.87553 1.33676,1.31329 0.27655,0.43777 0.41484,0.9029 0.41486,1.39537 -2e-5,0.53809 -0.15368,1.0625 -0.46096,1.57322 -0.29195,0.51072 -0.76826,0.96217 -1.42895,1.35433 -0.66071,0.39217 -1.52115,0.70681 -2.58133,0.94393 -1.04485,0.23712 -2.32783,0.35568 -3.84897,0.35568 -1.47505,0 -2.81181,-0.1368 -4.01028,-0.4104 -1.18312,-0.28273 -2.19722,-0.67033 -3.0423,-1.16282 -0.8297,-0.49248 -1.47505,-1.07616 -1.936,-1.75105 -0.44558,-0.684 -0.66838,-1.43185 -0.66838,-2.24354 l 4.33296,0.10944 c 0,0.89378 0.17669,1.60514 0.53009,2.1341 0.36876,0.52897 0.80667,0.93025 1.31373,1.20385 0.5224,0.2736 1.06017,0.45145 1.61332,0.53353 0.5685,0.073 1.05251,0.10944 1.45201,0.10944 0.46094,0 0.95262,-0.0411 1.47506,-0.12312 0.53775,-0.0912 1.02944,-0.23713 1.47503,-0.43777 0.46094,-0.20975 0.8374,-0.4788 1.12934,-0.80712 0.3073,-0.33745 0.46094,-0.75241 0.46096,-1.2449 -2e-5,-0.51072 -0.20745,-0.97584 -0.62229,-1.39537 -0.3995,-0.42864 -0.9296,-0.82992 -1.59028,-1.20385 -0.66071,-0.37392 -1.41361,-0.73416 -2.25867,-1.08073 -0.84509,-0.34655 -1.71322,-0.70224 -2.60439,-1.06705 -0.87582,-0.3648 -1.73627,-0.74784 -2.58134,-1.14913 -0.84508,-0.40127 -1.59797,-0.83904 -2.25867,-1.3133 -0.6607,-0.48335 -1.19848,-1.01687 -1.61333,-1.60057 -0.3995,-0.58367 -0.59924,-1.24031 -0.59924,-1.96993 0,-0.46512 0.0614,-0.94391 0.18438,-1.43642 0.13829,-0.49246 0.35339,-0.97127 0.64533,-1.43641 0.3073,-0.47423 0.70679,-0.91655 1.19848,-1.32697 0.50704,-0.41951 1.13702,-0.78431 1.88991,-1.09441 0.75288,-0.31007 1.63638,-0.55631 2.65048,-0.73873 1.02945,-0.18238 2.21256,-0.27358 3.54934,-0.2736 1.39821,0.0182 2.61204,0.1277 3.64152,0.32832 1.02945,0.20066 1.90526,0.45602 2.62744,0.76608 0.72213,0.30099 1.30602,0.63843 1.75161,1.01234 0.44557,0.37394 0.79129,0.75242 1.03716,1.13545 0.24581,0.37394 0.41483,0.72962 0.50704,1.06705 0.0922,0.33746 0.13826,0.62018 0.13829,0.84817"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3587"
   inkscape:connector-curvature="0" /><path
   d="m 423.49715,241.96221 c -0.19976,1.5413 -0.53779,2.87739 -1.0141,4.00828 -0.47633,1.12177 -1.12935,2.05202 -1.95904,2.79074 -0.81437,0.72961 -1.82078,1.27225 -3.01925,1.62794 -1.18312,0.35568 -2.58903,0.53352 -4.21772,0.53352 -1.65943,0 -3.03462,-0.21432 -4.12553,-0.64296 -1.07556,-0.42865 -1.92832,-1.04426 -2.55828,-1.84682 -0.62998,-0.81169 -1.07556,-1.80122 -1.33677,-2.96859 -0.24585,-1.16736 -0.36877,-2.49434 -0.36877,-3.98092 0.0461,-1.12175 0.16134,-2.28457 0.34572,-3.48843 0.0768,-0.51071 0.16901,-1.05335 0.27658,-1.62794 0.12291,-0.58366 0.2612,-1.17647 0.41486,-1.77841 0.16901,-0.61103 0.36107,-1.22663 0.57618,-1.84682 0.21512,-0.62927 0.46095,-1.24487 0.73753,-1.84681 l 4.72476,0.42408 c -0.56851,1.66899 -1.00641,3.15556 -1.31371,4.45972 -0.30731,1.29506 -0.53011,2.43507 -0.66838,3.42003 -0.1383,0.97587 -0.2228,1.81035 -0.25352,2.50347 -0.0153,0.68401 -0.0231,1.25402 -0.0231,1.71001 0,1.11266 0.0692,2.0429 0.20744,2.79075 0.13827,0.73873 0.36107,1.33609 0.66838,1.79209 0.32265,0.44689 0.72983,0.76609 1.22153,0.95761 0.49166,0.19153 1.08323,0.28729 1.77466,0.28729 0.70678,0 1.37516,-0.12313 2.00515,-0.36937 0.64532,-0.25536 1.20615,-0.65208 1.68248,-1.19017 0.49166,-0.53808 0.87579,-1.23577 1.15237,-2.09306 0.29193,-0.85728 0.43789,-1.89697 0.43792,-3.11907 -3e-5,-0.79344 0.008,-1.65072 0.023,-2.57186 0.0153,-0.93024 0.008,-1.88329 -0.023,-2.85915 -0.0308,-0.98495 -0.0999,-1.97904 -0.20743,-2.98226 -0.10761,-1.00319 -0.29196,-1.9836 -0.55315,-2.94123 l 5.00134,-0.35569 c 0.21509,1.49572 0.36106,2.86829 0.4379,4.11772 0.0922,1.24947 0.13827,2.35756 0.13829,3.32427 -2e-5,0.60194 -0.008,1.13547 -0.0231,1.60058 -0.0154,0.45601 -0.0384,0.84362 -0.0692,1.16281 -0.0308,0.37393 -0.0615,0.70682 -0.0922,0.99865"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3589"
   inkscape:connector-curvature="0" /><path
   d="m 445.345,237.25625 c -0.0615,0.76609 -0.31501,1.4729 -0.76058,2.12041 -0.44561,0.64754 -1.02948,1.23578 -1.75163,1.76474 -0.72217,0.52898 -1.55189,0.9941 -2.48914,1.39537 -0.93728,0.40129 -1.92833,0.73874 -2.97315,1.01233 -1.02947,0.27361 -2.08966,0.47882 -3.18057,0.61561 -1.09093,0.13681 -2.14344,0.20521 -3.15752,0.2052 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18439,1e-5 -0.37645,-0.009 -0.57619,-0.0274 -0.0922,1.08529 -0.16902,2.16603 -0.23048,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.22851 l -3.45714,0 c 0.0922,-1.89698 0.16901,-3.78484 0.23047,-5.66358 0.0768,-1.88785 0.11526,-3.78938 0.11526,-5.7046 0,-1.38625 -0.0231,-2.75882 -0.0692,-4.11772 -0.0461,-1.368 -0.10761,-2.74513 -0.18438,-4.1314 0.73751,-0.17327 1.51346,-0.31006 2.32781,-0.4104 0.81434,-0.10943 1.59796,-0.19151 2.35085,-0.24625 0.76825,-0.0547 1.47505,-0.0866 2.12038,-0.0958 0.64533,-0.0183 1.16774,-0.0273 1.56725,-0.0273 1.45967,2e-5 2.84252,0.11858 4.14858,0.35568 1.32138,0.23715 2.47376,0.62931 3.45715,1.17649 0.98335,0.5381 1.75928,1.24491 2.32781,2.12042 0.58384,0.86643 0.87578,1.92892 0.87581,3.18747 m -14.2665,-4.91117 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33036,3.46565 -0.484,5.19845 l 0.0461,0 c 1.69015,1e-5 3.11911,-0.13679 4.28687,-0.4104 1.18309,-0.2736 2.15878,-0.6156 2.92705,-1.02601 0.7836,-0.41039 1.39052,-0.85272 1.82076,-1.32698 0.43021,-0.48335 0.74519,-0.93479 0.94496,-1.35432 0.21509,-0.41952 0.34569,-0.77064 0.39181,-1.05338 0.0461,-0.28271 0.0691,-0.43319 0.0692,-0.45144 -2e-5,-0.10031 -0.0153,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60646 -0.25352,-0.97128 -0.1383,-0.37392 -0.35341,-0.76152 -0.64533,-1.16282 -0.27659,-0.40126 -0.66839,-0.76606 -1.17542,-1.09441 -0.50707,-0.33742 -1.14472,-0.61558 -1.91297,-0.83448 -0.76826,-0.21887 -1.70553,-0.32831 -2.81181,-0.32833 -0.76827,2e-5 -1.62103,0.0548 -2.55829,0.16416"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3591"
   inkscape:connector-curvature="0" /><path
   d="m 465.74083,237.25625 c -0.0615,0.76609 -0.31501,1.4729 -0.76058,2.12041 -0.44561,0.64754 -1.02948,1.23578 -1.75161,1.76474 -0.72218,0.52898 -1.55189,0.9941 -2.48915,1.39537 -0.93729,0.40129 -1.92833,0.73874 -2.97314,1.01233 -1.02948,0.27361 -2.08967,0.47882 -3.18059,0.61561 -1.09092,0.13681 -2.14343,0.20521 -3.15752,0.2052 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18439,1e-5 -0.37645,-0.009 -0.57618,-0.0274 -0.0922,1.08529 -0.16903,2.16603 -0.23048,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.22851 l -3.45715,0 c 0.0922,-1.89698 0.16901,-3.78484 0.23049,-5.66358 0.0768,-1.88785 0.11526,-3.78938 0.11526,-5.7046 0,-1.38625 -0.0231,-2.75882 -0.0692,-4.11772 -0.0461,-1.368 -0.1076,-2.74513 -0.18437,-4.1314 0.73751,-0.17327 1.51345,-0.31006 2.32781,-0.4104 0.81434,-0.10943 1.59795,-0.19151 2.35086,-0.24625 0.76824,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64532,-0.0183 1.16773,-0.0273 1.56724,-0.0273 1.45967,2e-5 2.84252,0.11858 4.14858,0.35568 1.32138,0.23715 2.47375,0.62931 3.45714,1.17649 0.98335,0.5381 1.75929,1.24491 2.32781,2.12042 0.58386,0.86643 0.87579,1.92892 0.87582,3.18747 m -14.2665,-4.91117 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33035,3.46565 -0.484,5.19845 l 0.0461,0 c 1.69015,1e-5 3.1191,-0.13679 4.28685,-0.4104 1.18311,-0.2736 2.15879,-0.6156 2.92705,-1.02601 0.78362,-0.41039 1.39053,-0.85272 1.82077,-1.32698 0.4302,-0.48335 0.7452,-0.93479 0.94496,-1.35432 0.21508,-0.41952 0.34569,-0.77064 0.3918,-1.05338 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -2e-5,-0.10031 -0.0153,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60646 -0.25354,-0.97128 -0.1383,-0.37392 -0.3534,-0.76152 -0.64533,-1.16282 -0.27658,-0.40126 -0.66839,-0.76606 -1.17542,-1.09441 -0.50707,-0.33742 -1.14472,-0.61558 -1.91297,-0.83448 -0.76826,-0.21887 -1.70553,-0.32831 -2.8118,-0.32833 -0.76826,2e-5 -1.62103,0.0548 -2.55829,0.16416"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3593"
   inkscape:connector-curvature="0" /><path
   d="m 485.46828,240.27956 c -10e-6,0.98497 -0.11526,1.94714 -0.34572,2.8865 -0.21512,0.93026 -0.5301,1.8149 -0.94494,2.65394 -0.39952,0.83906 -0.89888,1.6097 -1.4981,2.31195 -0.59925,0.70224 -1.27532,1.30873 -2.02819,1.81945 -0.73755,0.5016 -1.55957,0.89377 -2.4661,1.17649 -0.89119,0.29185 -1.84383,0.43777 -2.85792,0.43777 -1.02946,0 -1.97442,-0.14136 -2.83485,-0.42409 -0.84509,-0.28272 -1.61334,-0.67944 -2.30476,-1.19017 -0.67608,-0.51072 -1.27532,-1.11721 -1.79772,-1.81945 -0.50705,-0.70225 -0.93728,-1.47289 -1.29067,-2.31195 -0.33803,-0.83904 -0.59924,-1.72368 -0.78362,-2.65394 -0.16902,-0.93936 -0.25353,-1.90153 -0.25352,-2.8865 -10e-6,-1.45921 0.19206,-2.7953 0.57619,-4.00828 0.38412,-1.22208 0.97568,-2.27089 1.77466,-3.14644 0.79899,-0.8755 1.8054,-1.55495 3.01925,-2.03833 1.2292,-0.48334 2.6812,-0.72503 4.35601,-0.72505 1.76697,2e-5 3.26506,0.24171 4.49428,0.72505 1.22919,0.48338 2.22792,1.16283 2.9962,2.03833 0.76823,0.87555 1.32138,1.92436 1.65943,3.14644 0.35337,1.21298 0.53008,2.54907 0.53009,4.00828 m -4.28685,0.10944 c -3e-5,-1.21297 -0.0999,-2.32562 -0.29963,-3.33796 -0.18439,-1.01231 -0.4917,-1.87872 -0.9219,-2.59922 -0.43024,-0.72959 -0.99106,-1.29503 -1.68248,-1.69633 -0.67608,-0.40127 -1.50579,-0.60192 -2.48914,-0.60193 -0.92192,1e-5 -1.72859,0.20066 -2.42001,0.60193 -0.67608,0.4013 -1.2369,0.96674 -1.68248,1.69633 -0.4456,0.7205 -0.77595,1.58691 -0.99105,2.59922 -0.21511,1.01234 -0.32268,2.12499 -0.32266,3.33796 -2e-5,1.23122 0.1076,2.41227 0.32266,3.54315 0.2151,1.13089 0.53777,2.1341 0.968,3.00962 0.43021,0.86641 0.96799,1.55954 1.61334,2.07938 0.64533,0.51985 1.39054,0.77977 2.23562,0.77977 0.84507,0 1.61332,-0.25992 2.30476,-0.77977 0.70678,-0.51984 1.30602,-1.21297 1.79772,-2.07938 0.50703,-0.87552 0.89116,-1.87873 1.15239,-3.00962 0.27654,-1.13088 0.41483,-2.31193 0.41486,-3.54315"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3595"
   inkscape:connector-curvature="0" /><path
   d="m 498.46583,250.92269 -3.91809,-6.63486 c -0.76827,0.0547 -1.51348,0.0821 -2.23563,0.0821 -0.1844,1e-5 -0.36877,1e-5 -0.55314,0 -0.18439,1e-5 -0.37645,-0.009 -0.5762,-0.0274 -0.0922,1.08529 -0.16902,2.16603 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13828,3.22851 l -3.45715,0 c 0.0922,-1.89698 0.16901,-3.78484 0.23047,-5.66358 0.0768,-1.88785 0.11526,-3.78938 0.11526,-5.7046 0,-1.38625 -0.023,-2.75882 -0.0692,-4.11772 -0.0461,-1.368 -0.10761,-2.74513 -0.18438,-4.1314 0.73753,-0.17327 1.51346,-0.31006 2.32781,-0.4104 0.81435,-0.10943 1.59797,-0.19151 2.35086,-0.24625 0.76825,-0.0547 1.47504,-0.0866 2.12039,-0.0958 0.64533,-0.0183 1.16774,-0.0273 1.56724,-0.0273 1.45967,2e-5 2.84253,0.11858 4.14857,0.35568 1.32138,0.23715 2.47377,0.62931 3.45715,1.17649 0.98335,0.5381 1.75929,1.24491 2.32782,2.12042 0.58385,0.86643 0.87579,1.92892 0.8758,3.18747 -0.0768,0.83906 -0.37647,1.60971 -0.89885,2.31194 -0.52244,0.69314 -1.20619,1.31786 -2.05124,1.87418 -0.8451,0.54721 -1.80543,1.02145 -2.88096,1.42273 -1.0602,0.40129 -2.1665,0.72506 -3.31886,0.97129 0.84507,1.15826 1.75929,2.30283 2.74268,3.43371 0.98335,1.13089 2.03585,2.26635 3.15752,3.40636 l -4.90915,0.24623 m -6.10762,-18.57761 c -0.2305,1.75108 -0.43024,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33036,3.46565 -0.48401,5.19845 l 0.0461,0 c 1.69016,1e-5 3.11912,-0.13679 4.28687,-0.4104 1.1831,-0.2736 2.15878,-0.6156 2.92705,-1.02601 0.7836,-0.41039 1.39053,-0.85272 1.82076,-1.32698 0.43021,-0.48335 0.74519,-0.93479 0.94495,-1.35432 0.2151,-0.41952 0.34571,-0.77064 0.39181,-1.05338 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -10e-6,-0.10031 -0.0154,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60646 -0.25352,-0.97128 -0.1383,-0.37392 -0.35341,-0.76152 -0.64533,-1.16282 -0.27658,-0.40126 -0.66841,-0.76606 -1.17544,-1.09441 -0.50705,-0.33742 -1.14471,-0.61558 -1.91295,-0.83448 -0.76826,-0.21887 -1.70553,-0.32831 -2.81181,-0.32833 -0.76826,2e-5 -1.62102,0.0548 -2.55828,0.16416"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3597"
   inkscape:connector-curvature="0" /><path
   d="m 522.29576,231.19595 -0.32266,1.91522 -7.23696,0 0,17.51056 -3.06534,0 0,-17.51056 -5.64668,0 0,-1.96994 16.27164,0.0547"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3599"
   inkscape:connector-curvature="0" /><path
   d="m 539.99503,231.29171 0,1.87417 -12.65316,0 0,8.34488 10.00268,0 0,2.02466 -10.14097,0 0,4.95221 12.26135,0 0,2.16146 -16.17945,0 0,-19.35738 16.70955,0"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3601"
   inkscape:connector-curvature="0" /><path
   d="m 552.46247,250.92269 -3.9181,-6.63486 c -0.76826,0.0547 -1.51347,0.0821 -2.23561,0.0821 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18439,1e-5 -0.37645,-0.009 -0.57619,-0.0274 -0.0922,1.08529 -0.16902,2.16603 -0.23048,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.22851 l -3.45714,0 c 0.0921,-1.89698 0.16901,-3.78484 0.23048,-5.66358 0.0768,-1.88785 0.11526,-3.78938 0.11526,-5.7046 0,-1.38625 -0.0231,-2.75882 -0.0692,-4.11772 -0.0461,-1.368 -0.1076,-2.74513 -0.18438,-4.1314 0.73751,-0.17327 1.51346,-0.31006 2.32781,-0.4104 0.81434,-0.10943 1.59796,-0.19151 2.35085,-0.24625 0.76825,-0.0547 1.47505,-0.0866 2.1204,-0.0958 0.64531,-0.0183 1.16773,-0.0273 1.56723,-0.0273 1.45967,2e-5 2.84253,0.11858 4.14858,0.35568 1.32138,0.23715 2.47376,0.62931 3.45715,1.17649 0.98335,0.5381 1.75928,1.24491 2.32781,2.12042 0.58386,0.86643 0.87579,1.92892 0.87581,3.18747 -0.0768,0.83906 -0.37647,1.60971 -0.89886,2.31194 -0.52243,0.69314 -1.20618,1.31786 -2.05124,1.87418 -0.8451,0.54721 -1.80541,1.02145 -2.88096,1.42273 -1.0602,0.40129 -2.16649,0.72506 -3.31886,0.97129 0.84506,1.15826 1.7593,2.30283 2.74267,3.43371 0.98335,1.13089 2.03586,2.26635 3.15754,3.40636 l -4.90916,0.24623 m -6.10763,-18.57761 c -0.23048,1.75108 -0.43022,3.49301 -0.59923,5.22581 -0.16903,1.73283 -0.33037,3.46565 -0.48401,5.19845 l 0.0461,0 c 1.69015,1e-5 3.1191,-0.13679 4.28685,-0.4104 1.18311,-0.2736 2.15879,-0.6156 2.92705,-1.02601 0.78361,-0.41039 1.39053,-0.85272 1.82077,-1.32698 0.43021,-0.48335 0.7452,-0.93479 0.94496,-1.35432 0.21509,-0.41952 0.34569,-0.77064 0.39181,-1.05338 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -10e-6,-0.10031 -0.0154,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60646 -0.25353,-0.97128 -0.1383,-0.37392 -0.35342,-0.76152 -0.64533,-1.16282 -0.27659,-0.40126 -0.6684,-0.76606 -1.17543,-1.09441 -0.50707,-0.33742 -1.14471,-0.61558 -1.91296,-0.83448 -0.76826,-0.21887 -1.70554,-0.32831 -2.81181,-0.32833 -0.76827,2e-5 -1.62103,0.0548 -2.55829,0.16416"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="path3603"
   inkscape:connector-curvature="0" /><g
   transform="matrix(0.59207878,0,0,0.35143336,349.96837,-162.35997)"
   id="g4480" /><g
   id="g5539"
   transform="matrix(0.68850366,0,0,0.40866716,0.18296913,-31.44899)"
   style="fill:#577632" /><g
   transform="matrix(0.59207878,0,0,0.35143336,-197.92653,-253.68871)"
   id="g4480-1" /><path
   inkscape:connector-curvature="0"
   id="path3349"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 16.595506,134.82445 c -1.8e-5,-0.83903 -0.122945,-1.54584 -0.368761,-2.12041 -0.24586,-0.58367 -0.560844,-1.06248 -0.944954,-1.43642 -0.368779,-0.3739 -0.775953,-0.66119 -1.221526,-0.86185 -0.430237,-0.20974 -0.837413,-0.36022 -1.221525,-0.45144 -0.384142,-0.1003 -0.706808,-0.15502 -0.968001,-0.16417 -0.245855,-0.0182 -0.376458,-0.0273 -0.39181,-0.0273 -1.060204,3e-5 -2.0282045,0.1733 -2.9040039,0.51985 -0.8758201,0.33746 -1.6287092,0.85731 -2.2586695,1.55954 -0.6146114,0.69314 -1.0986116,1.56867 -1.4520019,2.62658 -0.3380385,1.04882 -0.5070544,2.28003 -0.5070483,3.69364 -6.1e-6,1.41361 0.1536447,2.65395 0.4609529,3.72099 0.3226603,1.06705 0.7682476,1.96082 1.3367637,2.6813 0.5685002,0.72049 1.2522463,1.26313 2.0512407,1.62794 0.8143394,0.3648 1.7208793,0.5472 2.7196223,0.5472 0.752877,-0.0364 1.451988,-0.20064 2.097337,-0.49248 0.276556,-0.11856 0.553128,-0.27361 0.829714,-0.46513 0.291921,-0.19152 0.56081,-0.42864 0.806668,-0.71136 0.26119,-0.28272 0.499349,-0.61104 0.714478,-0.98497 0.215093,-0.38304 0.38411,-0.82537 0.507048,-1.32697 l 3.687623,0.16415 c -0.169037,0.68402 -0.422561,1.2905 -0.760572,1.81946 -0.338053,0.51985 -0.729862,0.97586 -1.17543,1.36802 -0.430241,0.38304 -0.898877,0.7068 -1.405906,0.97128 -0.491701,0.26449 -0.983384,0.48337 -1.47505,0.65665 -1.167763,0.40128 -2.4277,0.62929 -3.779814,0.68401 -1.797728,0 -3.4033792,-0.21432 -4.816959,-0.64296 -1.3982306,-0.43777 -2.581342,-1.08074 -3.5493378,-1.92891 -0.9526397,-0.85728 -1.68248109,-1.91977 -2.18952666,-3.18746 -0.49168486,-1.26769 -0.7375262,-2.73146 -0.73752475,-4.39133 -1.45e-6,-3.4565 0.99104644,-6.06484 2.97314661,-7.82503 1.9820914,-1.76928 5.039743,-2.65392 9.1729646,-2.65394 0.04608,2e-5 0.199732,0.005 0.460952,0.0137 0.276558,0.009 0.622272,0.0411 1.037145,0.0958 0.414841,0.0548 0.883477,0.14138 1.405907,0.25992 0.522395,0.10946 1.052491,0.27362 1.590287,0.49249 0.53776,0.2189 1.060173,0.4925 1.56724,0.8208 0.507028,0.32834 0.960299,0.73875 1.359812,1.23121 0.39947,0.48338 0.714455,1.05339 0.944953,1.71002 0.24582,0.65666 0.36874,1.41363 0.368762,2.2709 l -3.964196,0.1368" /><path
   inkscape:connector-curvature="0"
   id="path3351"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 40.350781,137.5468 c -2.1e-5,0.98498 -0.115261,1.94714 -0.345715,2.8865 -0.215131,0.93026 -0.530116,1.81491 -0.944953,2.65395 -0.399512,0.83906 -0.898878,1.6097 -1.498097,2.31194 -0.599257,0.70225 -1.275321,1.30874 -2.028194,1.81946 -0.73754,0.5016 -1.559572,0.89377 -2.466098,1.17649 -0.891189,0.29184 -1.843824,0.43776 -2.857909,0.43776 -1.02947,0 -1.974423,-0.14136 -2.83486,-0.42408 -0.845088,-0.28272 -1.613342,-0.67945 -2.304765,-1.19017 -0.676069,-0.51072 -1.275307,-1.11721 -1.797716,-1.81946 -0.507052,-0.70224 -0.937275,-1.47288 -1.290668,-2.31194 -0.338035,-0.83904 -0.599242,-1.72369 -0.783621,-2.65395 -0.169018,-0.93936 -0.253525,-1.90152 -0.253524,-2.8865 -1e-6,-1.4592 0.192062,-2.79529 0.576192,-4.00827 0.384124,-1.22208 0.97568,-2.27089 1.774668,-3.14644 0.798981,-0.8755 1.805394,-1.55495 3.019242,-2.03833 1.2292,-0.48335 2.6812,-0.72503 4.356005,-0.72505 1.766974,2e-5 3.26507,0.2417 4.494293,0.72505 1.22919,0.48338 2.22792,1.16283 2.996194,2.03833 0.768236,0.87555 1.321378,1.92436 1.65943,3.14644 0.353377,1.21298 0.530075,2.54907 0.530096,4.00827 m -4.286862,0.10944 c -1.7e-5,-1.21296 -0.09989,-2.32561 -0.29962,-3.33795 -0.184397,-1.01232 -0.491699,-1.87873 -0.921906,-2.59922 -0.430238,-0.7296 -0.991063,-1.29504 -1.682478,-1.69634 -0.676078,-0.40127 -1.505792,-0.60191 -2.489147,-0.60192 -0.921915,1e-5 -1.728583,0.20065 -2.420002,0.60192 -0.676072,0.4013 -1.236899,0.96674 -1.682479,1.69634 -0.445594,0.72049 -0.775943,1.5869 -0.991048,2.59922 -0.215117,1.01234 -0.322673,2.12499 -0.322668,3.33795 -5e-6,1.23122 0.107551,2.41227 0.322668,3.54315 0.215105,1.1309 0.537771,2.13411 0.968001,3.00963 0.430215,0.86641 0.967993,1.55954 1.613335,2.07938 0.645324,0.51984 1.390532,0.77977 2.235622,0.77977 0.845069,0 1.613323,-0.25993 2.304765,-0.77977 0.70678,-0.51984 1.306019,-1.21297 1.797716,-2.07938 0.507033,-0.87552 0.89116,-1.87873 1.152383,-3.00963 0.276555,-1.13088 0.414841,-2.31193 0.414858,-3.54315" /><path
   inkscape:connector-curvature="0"
   id="path3353"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 61.225098,128.50424 c -0.62999,3.25588 -1.121673,6.50719 -1.475049,9.75392 -0.338051,3.23764 -0.560846,6.50263 -0.668382,9.79498 l -3.664577,0 -8.642867,-13.63909 c -0.368769,4.52357 -0.576198,9.05169 -0.622287,13.58437 l -3.710671,0.0273 c 0.03072,-0.96673 0.04609,-1.93346 0.04609,-2.90019 -3e-6,-0.96672 -3e-6,-1.94257 0,-2.92754 -3e-6,-4.52356 -0.115235,-9.04256 -0.345715,-13.55701 l 5.139627,0.0547 8.228009,14.70614 c 0.06145,-0.7296 0.115222,-1.5276 0.161334,-2.39402 0.04608,-0.87552 0.08449,-1.78753 0.115234,-2.73603 0.04608,-0.94848 0.07681,-1.91976 0.0922,-2.91386 0.03071,-0.99408 0.04608,-1.97448 0.04609,-2.94123 -1.5e-5,-0.68399 -0.0077,-1.35431 -0.02305,-2.01098 -0.01538,-0.66575 -0.03843,-1.31327 -0.06914,-1.94258 l 5.393149,0.0411" /><path
   inkscape:connector-curvature="0"
   id="path3355"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 81.776749,132.27996 c -0.01538,0.27361 -0.0538,0.56545 -0.115234,0.87552 -0.06149,0.2645 -0.14599,0.57458 -0.253525,0.93025 -0.09221,0.3557 -0.245862,0.72506 -0.460953,1.10809 l -4.263815,-0.34201 c 0.169001,-0.39215 0.291921,-0.76607 0.368763,-1.12176 0.07681,-0.36479 0.115222,-0.70679 0.115235,-1.02601 -1.7e-5,-0.65664 -0.145986,-1.2312 -0.437907,-1.7237 -0.291952,-0.49247 -0.683762,-0.90743 -1.175429,-1.24489 -0.491697,-0.33743 -1.067888,-0.58823 -1.728574,-0.75241 -0.645346,-0.17326 -1.329092,-0.2599 -2.051241,-0.25992 -0.860455,2e-5 -1.621027,0.13226 -2.281716,0.39672 -0.645343,0.25538 -1.190803,0.59739 -1.636384,1.02601 -0.445594,0.41954 -0.783626,0.89835 -1.014096,1.43641 -0.230482,0.52899 -0.345721,1.07163 -0.345714,1.62794 -7e-6,0.54722 0.153644,1.07163 0.460952,1.57321 0.322661,0.4925 0.752883,0.96218 1.290669,1.40906 0.553134,0.43777 1.190786,0.84818 1.912954,1.23121 0.722149,0.38305 1.498086,0.73417 2.327813,1.05337 1.42894,0.54721 2.635099,1.05337 3.618481,1.51849 0.998714,0.46514 1.805382,0.92114 2.420003,1.36802 0.614585,0.43777 1.060173,0.87553 1.336763,1.31329 0.276552,0.43776 0.414839,0.90289 0.414858,1.39537 -1.9e-5,0.53809 -0.15367,1.06249 -0.460953,1.57322 -0.291956,0.51072 -0.768274,0.96216 -1.428955,1.35432 -0.660716,0.39217 -1.521161,0.70681 -2.581336,0.94393 -1.044841,0.23712 -2.327826,0.35569 -3.848957,0.35569 -1.47506,0 -2.811822,-0.1368 -4.010291,-0.4104 -1.183118,-0.28273 -2.197214,-0.67033 -3.04229,-1.16282 -0.829719,-0.49248 -1.475051,-1.07616 -1.936002,-1.75106 -0.44559,-0.684 -0.668384,-1.43184 -0.668382,-2.24353 l 4.332958,0.10944 c -6e-6,0.89377 0.176693,1.60513 0.530096,2.13409 0.368756,0.52897 0.806661,0.93026 1.313716,1.20386 0.522405,0.2736 1.060183,0.45145 1.613335,0.53353 0.568499,0.073 1.052499,0.10944 1.452002,0.10944 0.460942,0 0.952625,-0.0411 1.475049,-0.12313 0.537766,-0.0912 1.029449,-0.23712 1.47505,-0.43776 0.460939,-0.20976 0.837383,-0.4788 1.129334,-0.80713 0.307288,-0.33744 0.460938,-0.7524 0.460953,-1.24489 -1.5e-5,-0.51072 -0.207443,-0.97584 -0.622285,-1.39537 -0.399507,-0.42864 -0.929603,-0.82992 -1.590289,-1.20385 -0.660711,-0.37392 -1.4136,-0.73416 -2.25867,-1.08073 -0.845089,-0.34656 -1.713216,-0.70224 -2.604384,-1.06705 -0.875818,-0.3648 -1.736262,-0.74784 -2.581336,-1.14913 -0.845085,-0.40128 -1.597974,-0.83904 -2.258669,-1.3133 -0.660702,-0.48335 -1.198481,-1.01688 -1.613336,-1.60057 -0.399494,-0.58367 -0.59924,-1.24032 -0.599239,-1.96994 -10e-7,-0.46511 0.06146,-0.94391 0.184381,-1.43641 0.138284,-0.49247 0.353396,-0.97127 0.645335,-1.43642 0.3073,-0.47422 0.706791,-0.91654 1.198478,-1.32696 0.507044,-0.41951 1.137013,-0.78431 1.889907,-1.09442 0.752883,-0.31006 1.636376,-0.5563 2.650479,-0.73872 1.029453,-0.18239 2.212564,-0.27358 3.549338,-0.27361 1.398212,0.0183 2.612052,0.1277 3.641529,0.32833 1.029445,0.20066 1.905255,0.45602 2.627431,0.76608 0.722142,0.30098 1.306015,0.63843 1.751621,1.01234 0.445568,0.37394 0.791283,0.75242 1.037145,1.13544 0.245821,0.37395 0.414836,0.72963 0.507049,1.06705 0.09217,0.33747 0.138264,0.62018 0.138285,0.84818" /><path
   inkscape:connector-curvature="0"
   id="path3357"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 99.977544,128.55896 0,1.87417 -12.65316,0 0,8.34488 10.00268,0 0,2.02466 -10.140965,0 0,4.95221 12.261348,0 0,2.16145 -16.179449,0 0,-19.35737 16.709546,0" /><path
   inkscape:connector-curvature="0"
   id="path3359"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 112.39337,148.18994 -3.9181,-6.63486 c -0.76826,0.0547 -1.51347,0.0821 -2.23562,0.0821 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18438,1e-5 -0.37645,-0.009 -0.57619,-0.0273 -0.0922,1.08529 -0.16902,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.2285 l -3.45715,0 c 0.0922,-1.89697 0.16902,-3.78483 0.23048,-5.66357 0.0768,-1.88785 0.11523,-3.78938 0.11523,-5.70461 0,-1.38624 -0.023,-2.75881 -0.0691,-4.11771 -0.0461,-1.36801 -0.10755,-2.74514 -0.18438,-4.13141 0.73752,-0.17326 1.51346,-0.31006 2.32781,-0.4104 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12039,-0.0958 0.64532,-0.0183 1.16773,-0.0274 1.56724,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14857,0.35568 1.32139,0.23714 2.47377,0.6293 3.45715,1.17649 0.98335,0.5381 1.75928,1.24491 2.32781,2.12042 0.58386,0.86643 0.87579,1.92891 0.87581,3.18747 -0.0768,0.83906 -0.37646,1.60971 -0.89885,2.31194 -0.52244,0.69313 -1.20618,1.31786 -2.05125,1.87418 -0.84509,0.54721 -1.80541,1.02145 -2.88095,1.42273 -1.06021,0.40129 -2.16649,0.72506 -3.31886,0.97129 0.84506,1.15826 1.75929,2.30283 2.74267,3.43371 0.98335,1.13089 2.03586,2.26634 3.15752,3.40635 l -4.90914,0.24624 m -6.10763,-18.57761 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73282 -0.33036,3.46564 -0.484,5.19845 l 0.0461,0 c 1.69015,0 3.11911,-0.13679 4.28686,-0.4104 1.18311,-0.2736 2.15879,-0.61561 2.92706,-1.02601 0.7836,-0.4104 1.39052,-0.85272 1.82076,-1.32698 0.43021,-0.48335 0.74519,-0.9348 0.94495,-1.35433 0.2151,-0.41951 0.3457,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0691,-0.43319 0.0691,-0.45144 -2e-5,-0.10031 -0.0154,-0.29183 -0.0461,-0.57457 -0.0307,-0.28271 -0.11527,-0.60647 -0.25353,-0.97128 -0.1383,-0.37392 -0.35341,-0.76152 -0.64533,-1.16282 -0.27659,-0.40127 -0.6684,-0.76607 -1.17543,-1.09441 -0.50707,-0.33742 -1.14472,-0.61558 -1.91296,-0.83448 -0.76827,-0.21887 -1.70553,-0.32831 -2.81181,-0.32833 -0.76827,2e-5 -1.62103,0.0547 -2.55829,0.16416" /><path
   inkscape:connector-curvature="0"
   id="path3361"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 139.99761,128.4632 c -1.42897,3.24676 -2.75805,6.48439 -3.98725,9.71288 -1.21385,3.22852 -2.37392,6.48439 -3.48019,9.76761 l -5.94629,-0.0274 c -0.55315,-1.63249 -1.09861,-3.26042 -1.63639,-4.8838 -0.53778,-1.62337 -1.08324,-3.24674 -1.63638,-4.87012 -0.55315,-1.62337 -1.12934,-3.24219 -1.72857,-4.85645 -0.58388,-1.61424 -1.21385,-3.22849 -1.88991,-4.84277 l 4.30991,0.0684 c 0.82971,2.82724 1.7132,5.64534 2.65048,8.45431 0.93726,2.79988 1.95904,5.63167 3.06534,8.49537 1.01408,-2.84547 1.98208,-5.67269 2.904,-8.48168 0.92189,-2.8181 1.83612,-5.66355 2.74267,-8.5364 l 4.63258,0" /><path
   inkscape:connector-curvature="0"
   id="path3363"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 154.14201,148.21729 -1.12934,-3.66627 c -0.73753,-0.0183 -1.46738,-0.0319 -2.18952,-0.0411 -0.72217,-0.009 -1.45201,-0.0137 -2.18953,-0.0137 -0.78363,0 -1.57493,0.005 -2.3739,0.0137 -0.799,0.009 -1.59798,0.0228 -2.39695,0.0411 -0.19976,0.62017 -0.39183,1.23122 -0.5762,1.83314 -0.16903,0.60193 -0.33804,1.20385 -0.50705,1.80578 l -4.3099,0.0273 c 0.67605,-1.61426 1.30603,-3.24219 1.8899,-4.8838 0.59923,-1.64162 1.17542,-3.28779 1.72857,-4.93853 0.55315,-1.65072 1.0986,-3.30146 1.63639,-4.95221 0.53777,-1.65071 1.08323,-3.28776 1.63638,-4.91116 l 5.94629,-0.0684 c 1.10627,3.29237 2.26634,6.5984 3.4802,9.91809 1.22919,3.31972 2.55827,6.59839 3.98724,9.83601 l -4.63258,0 m -5.64667,-17.25063 c -0.73754,1.92435 -1.43665,3.85781 -2.09733,5.80037 -0.66071,1.93346 -1.30604,3.87604 -1.936,5.82774 0.67605,0.0182 1.34443,0.0228 2.00513,0.0136 0.6607,-0.009 1.33676,-0.0136 2.0282,-0.0136 0.66068,0 1.30603,0.005 1.936,0.0136 0.62996,0.009 1.26761,0.005 1.91295,-0.0136 -0.61462,-1.96082 -1.2369,-3.90795 -1.86686,-5.84142 -0.62997,-1.93345 -1.29067,-3.86234 -1.98209,-5.78669" /><path
   inkscape:connector-curvature="0"
   id="path3365"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 178.21995,128.50424 c -0.62998,3.25588 -1.12167,6.50719 -1.47505,9.75392 -0.33804,3.23764 -0.56084,6.50263 -0.66838,9.79498 l -3.66458,0 -8.64286,-13.63909 c -0.36877,4.52357 -0.5762,9.05169 -0.62229,13.58437 l -3.71067,0.0273 c 0.0308,-0.96673 0.0461,-1.93346 0.0461,-2.90019 0,-0.96672 0,-1.94257 0,-2.92754 0,-4.52356 -0.11526,-9.04256 -0.34572,-13.55701 l 5.13963,0.0547 8.22802,14.70614 c 0.0614,-0.7296 0.11526,-1.5276 0.16132,-2.39402 0.0461,-0.87552 0.0845,-1.78753 0.11526,-2.73603 0.0461,-0.94848 0.0768,-1.91976 0.0922,-2.91386 0.0308,-0.99408 0.0461,-1.97448 0.0461,-2.94123 -1e-5,-0.68399 -0.008,-1.35431 -0.0231,-2.01098 -0.0153,-0.66575 -0.0384,-1.31327 -0.0692,-1.94258 l 5.39315,0.0411" /><path
   inkscape:connector-curvature="0"
   id="path3367"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 196.09807,134.82445 c -1e-5,-0.83903 -0.12292,-1.54584 -0.36876,-2.12041 -0.24586,-0.58367 -0.56084,-1.06248 -0.94495,-1.43642 -0.36879,-0.3739 -0.77595,-0.66119 -1.22152,-0.86185 -0.43024,-0.20974 -0.83742,-0.36022 -1.22153,-0.45144 -0.38414,-0.1003 -0.70681,-0.15502 -0.96801,-0.16417 -0.24585,-0.0182 -0.37645,-0.0273 -0.39181,-0.0273 -1.0602,3e-5 -2.02819,0.1733 -2.90399,0.51985 -0.87583,0.33746 -1.62871,0.85731 -2.25867,1.55954 -0.61462,0.69314 -1.09861,1.56867 -1.452,2.62658 -0.33805,1.04882 -0.50706,2.28003 -0.50706,3.69364 0,1.41361 0.15364,2.65395 0.46095,3.72099 0.32267,1.06705 0.76825,1.96082 1.33677,2.6813 0.5685,0.72049 1.25225,1.26313 2.05124,1.62794 0.81434,0.3648 1.72089,0.5472 2.71963,0.5472 0.75287,-0.0364 1.45199,-0.20064 2.09733,-0.49248 0.27656,-0.11856 0.55313,-0.27361 0.82972,-0.46513 0.29192,-0.19152 0.56081,-0.42864 0.80667,-0.71136 0.26118,-0.28272 0.49935,-0.61104 0.71447,-0.98497 0.21509,-0.38304 0.38411,-0.82537 0.50705,-1.32697 l 3.68762,0.16415 c -0.16903,0.68402 -0.42255,1.2905 -0.76057,1.81946 -0.33805,0.51985 -0.72986,0.97586 -1.17543,1.36802 -0.43024,0.38304 -0.89888,0.7068 -1.40591,0.97128 -0.4917,0.26449 -0.98339,0.48337 -1.47505,0.65665 -1.16777,0.40128 -2.4277,0.62929 -3.77981,0.68401 -1.79773,0 -3.40338,-0.21432 -4.81696,-0.64296 -1.39823,-0.43777 -2.58133,-1.08074 -3.54934,-1.92891 -0.95263,-0.85728 -1.68247,-1.91977 -2.18953,-3.18746 -0.49167,-1.26769 -0.73752,-2.73146 -0.73752,-4.39133 0,-3.4565 0.99104,-6.06484 2.97315,-7.82503 1.9821,-1.76928 5.03974,-2.65392 9.17296,-2.65394 0.0461,2e-5 0.19973,0.005 0.46095,0.0137 0.27656,0.009 0.62228,0.0411 1.03715,0.0958 0.41484,0.0548 0.88348,0.14138 1.4059,0.25992 0.5224,0.10946 1.05249,0.27362 1.5903,0.49249 0.53775,0.2189 1.06016,0.4925 1.56723,0.8208 0.50703,0.32834 0.9603,0.73875 1.35982,1.23121 0.39947,0.48338 0.71445,1.05339 0.94494,1.71002 0.24583,0.65666 0.36875,1.41363 0.36877,2.2709 l -3.9642,0.1368" /><path
   inkscape:connector-curvature="0"
   id="path3369"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 219.57678,128.29903 c -1.2446,2.16148 -2.53527,4.28646 -3.87201,6.37494 -1.33678,2.08852 -2.76574,4.17701 -4.28687,6.2655 l -0.71447,7.14103 -3.29582,0 -0.34572,-7.00423 c -1.53651,-2.04289 -2.97314,-4.09947 -4.3099,-6.16974 -1.3214,-2.07936 -2.57365,-4.20433 -3.75678,-6.37494 l 5.32402,-0.17783 c 0.72215,1.87875 1.46736,3.73924 2.23562,5.58149 0.78362,1.83315 1.62869,3.67084 2.53524,5.51309 1.01409,-1.86049 1.95904,-3.7073 2.83486,-5.54046 0.8758,-1.84223 1.68247,-3.71185 2.42,-5.60885 l 5.23183,0" /><path
   inkscape:connector-curvature="0"
   id="path3371"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 248.16748,132.27996 c -0.0155,0.27361 -0.0537,0.56545 -0.11526,0.87552 -0.0615,0.2645 -0.14599,0.57458 -0.25352,0.93025 -0.0922,0.3557 -0.24587,0.72506 -0.46096,1.10809 l -4.26381,-0.34201 c 0.169,-0.39215 0.29191,-0.76607 0.36876,-1.12176 0.0768,-0.36479 0.11526,-0.70679 0.11526,-1.02601 -2e-5,-0.65664 -0.14599,-1.2312 -0.4379,-1.7237 -0.29196,-0.49247 -0.68377,-0.90743 -1.17543,-1.24489 -0.4917,-0.33743 -1.06789,-0.58823 -1.72857,-0.75241 -0.64536,-0.17326 -1.3291,-0.2599 -2.05125,-0.25992 -0.86046,2e-5 -1.62103,0.13226 -2.28171,0.39672 -0.64534,0.25538 -1.19081,0.59739 -1.63639,1.02601 -0.4456,0.41954 -0.78363,0.89835 -1.0141,1.43641 -0.23048,0.52899 -0.34572,1.07163 -0.3457,1.62794 -2e-5,0.54722 0.15364,1.07163 0.46095,1.57321 0.32265,0.4925 0.75288,0.96218 1.29066,1.40906 0.55313,0.43777 1.19079,0.84818 1.91296,1.23121 0.72215,0.38305 1.49808,0.73417 2.32781,1.05337 1.42894,0.54721 2.6351,1.05337 3.61848,1.51849 0.99871,0.46514 1.80538,0.92114 2.42,1.36802 0.61458,0.43777 1.06018,0.87553 1.33677,1.31329 0.27654,0.43776 0.41483,0.90289 0.41486,1.39537 -3e-5,0.53809 -0.15367,1.06249 -0.46095,1.57322 -0.29196,0.51072 -0.76828,0.96216 -1.42896,1.35432 -0.66072,0.39217 -1.52116,0.70681 -2.58134,0.94393 -1.04485,0.23712 -2.32782,0.35569 -3.84895,0.35569 -1.47507,0 -2.81183,-0.1368 -4.0103,-0.4104 -1.18312,-0.28273 -2.19722,-0.67033 -3.04229,-1.16282 -0.82971,-0.49248 -1.47506,-1.07616 -1.93599,-1.75106 -0.4456,-0.684 -0.6684,-1.43184 -0.66839,-2.24353 l 4.33296,0.10944 c -1e-5,0.89377 0.17668,1.60513 0.5301,2.13409 0.36874,0.52897 0.80665,0.93026 1.31371,1.20386 0.5224,0.2736 1.06018,0.45145 1.61334,0.53353 0.56849,0.073 1.05249,0.10944 1.452,0.10944 0.46094,0 0.95262,-0.0411 1.47505,-0.12313 0.53776,-0.0912 1.02944,-0.23712 1.47505,-0.43776 0.46094,-0.20976 0.83738,-0.4788 1.12933,-0.80713 0.30729,-0.33744 0.46093,-0.7524 0.46096,-1.24489 -3e-5,-0.51072 -0.20745,-0.97584 -0.6223,-1.39537 -0.3995,-0.42864 -0.9296,-0.82992 -1.59028,-1.20385 -0.66071,-0.37392 -1.41361,-0.73416 -2.25867,-1.08073 -0.84509,-0.34656 -1.71322,-0.70224 -2.60438,-1.06705 -0.87583,-0.3648 -1.73627,-0.74784 -2.58134,-1.14913 -0.84509,-0.40128 -1.59798,-0.83904 -2.25867,-1.3133 -0.66071,-0.48335 -1.19849,-1.01688 -1.61333,-1.60057 -0.3995,-0.58367 -0.59924,-1.24032 -0.59924,-1.96994 0,-0.46511 0.0614,-0.94391 0.18437,-1.43641 0.13829,-0.49247 0.35341,-0.97127 0.64533,-1.43642 0.3073,-0.47422 0.70679,-0.91654 1.19848,-1.32696 0.50705,-0.41951 1.13702,-0.78431 1.88991,-1.09442 0.75289,-0.31006 1.63638,-0.5563 2.65048,-0.73872 1.02946,-0.18239 2.21257,-0.27358 3.54934,-0.27361 1.39821,0.0183 2.61206,0.1277 3.64153,0.32833 1.02945,0.20066 1.90525,0.45602 2.62743,0.76608 0.72214,0.30098 1.30602,0.63843 1.75162,1.01234 0.44557,0.37394 0.79128,0.75242 1.03715,1.13544 0.24582,0.37395 0.41483,0.72963 0.50704,1.06705 0.0922,0.33747 0.13828,0.62018 0.13829,0.84818" /><path
   inkscape:connector-curvature="0"
   id="path3373"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 267.45151,139.22946 c -0.19976,1.5413 -0.53779,2.87739 -1.01408,4.00827 -0.47635,1.12177 -1.12936,2.05202 -1.95906,2.79075 -0.81436,0.72961 -1.82078,1.27225 -3.01924,1.62794 -1.18313,0.35568 -2.58903,0.53352 -4.21771,0.53352 -1.65945,0 -3.03462,-0.21432 -4.12553,-0.64297 -1.07557,-0.42864 -1.92834,-1.04425 -2.5583,-1.84682 -0.62997,-0.81168 -1.07556,-1.80121 -1.33676,-2.96858 -0.24584,-1.16736 -0.36877,-2.49434 -0.36876,-3.98092 0.0461,-1.12176 0.16133,-2.28457 0.34571,-3.48843 0.0768,-0.51071 0.16902,-1.05335 0.27657,-1.62794 0.12292,-0.58367 0.26121,-1.17647 0.41486,-1.77841 0.16901,-0.61103 0.36107,-1.22663 0.57619,-1.84682 0.21511,-0.62927 0.46095,-1.24487 0.73752,-1.84681 l 4.72477,0.42408 c -0.56852,1.66899 -1.00642,3.15556 -1.31371,4.45972 -0.30731,1.29506 -0.5301,2.43507 -0.66838,3.42003 -0.13829,0.97586 -0.2228,1.81035 -0.25353,2.50346 -0.0153,0.68402 -0.0231,1.25403 -0.0231,1.71002 0,1.11266 0.0692,2.0429 0.20743,2.79075 0.13829,0.73872 0.36107,1.33609 0.66838,1.79209 0.32267,0.44689 0.72984,0.76609 1.22153,0.95761 0.49168,0.19152 1.08323,0.28728 1.77467,0.28728 0.70679,0 1.37517,-0.12312 2.00514,-0.36936 0.64532,-0.25536 1.20615,-0.65208 1.68248,-1.19017 0.49167,-0.53809 0.8758,-1.23577 1.15239,-2.09306 0.29192,-0.85728 0.43789,-1.89697 0.4379,-3.11907 -1e-5,-0.79344 0.008,-1.65073 0.0231,-2.57186 0.0153,-0.93024 0.008,-1.88329 -0.0231,-2.85915 -0.0308,-0.98496 -0.0999,-1.97905 -0.20743,-2.98227 -0.1076,-1.00319 -0.29195,-1.9836 -0.55315,-2.94123 l 5.00134,-0.35568 c 0.2151,1.49572 0.36106,2.86829 0.43792,4.11772 0.0922,1.24946 0.13826,2.35755 0.13828,3.32427 -2e-5,0.60194 -0.008,1.13547 -0.0231,1.60057 -0.0153,0.45602 -0.0384,0.84362 -0.0692,1.16282 -0.0308,0.37393 -0.0615,0.70681 -0.0922,0.99865" /><path
   inkscape:connector-curvature="0"
   id="path3375"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 289.24774,134.52349 c -0.0615,0.7661 -0.31501,1.47291 -0.76057,2.12042 -0.44561,0.64754 -1.02948,1.23578 -1.75162,1.76474 -0.72218,0.52897 -1.55189,0.99409 -2.48915,1.39537 -0.93729,0.40129 -1.92833,0.73874 -2.97314,1.01233 -1.02947,0.27361 -2.08966,0.47881 -3.18058,0.61561 -1.09093,0.1368 -2.14344,0.20521 -3.15753,0.2052 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18437,1e-5 -0.37644,-0.009 -0.57618,-0.0273 -0.0922,1.08529 -0.16903,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.2285 l -3.45714,0 c 0.0922,-1.89697 0.16901,-3.78483 0.23047,-5.66357 0.0768,-1.88785 0.11526,-3.78938 0.11526,-5.70461 0,-1.38624 -0.023,-2.75881 -0.0692,-4.11771 -0.0461,-1.36801 -0.1076,-2.74514 -0.18437,-4.13141 0.73752,-0.17326 1.51345,-0.31006 2.32781,-0.4104 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64533,-0.0183 1.16774,-0.0274 1.56725,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14857,0.35568 1.32138,0.23714 2.47377,0.6293 3.45714,1.17649 0.98335,0.5381 1.75929,1.24491 2.32781,2.12042 0.58386,0.86643 0.8758,1.92891 0.87582,3.18747 m -14.2665,-4.91117 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16901,1.73282 -0.33035,3.46564 -0.48399,5.19845 l 0.0461,0 c 1.69015,0 3.11911,-0.13679 4.28687,-0.4104 1.18309,-0.2736 2.15877,-0.61561 2.92705,-1.02601 0.7836,-0.4104 1.39052,-0.85272 1.82075,-1.32698 0.43022,-0.48335 0.7452,-0.9348 0.94496,-1.35433 0.2151,-0.41951 0.3457,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -1e-5,-0.10031 -0.0153,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37392 -0.35342,-0.76152 -0.64533,-1.16282 -0.2766,-0.40127 -0.66841,-0.76607 -1.17544,-1.09441 -0.50706,-0.33742 -1.14471,-0.61558 -1.91295,-0.83448 -0.76828,-0.21887 -1.70553,-0.32831 -2.81182,-0.32833 -0.76826,2e-5 -1.62102,0.0547 -2.55829,0.16416" /><path
   inkscape:connector-curvature="0"
   id="path3377"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 309.59198,134.52349 c -0.0615,0.7661 -0.31501,1.47291 -0.76058,2.12042 -0.44561,0.64754 -1.02948,1.23578 -1.75162,1.76474 -0.72217,0.52897 -1.5519,0.99409 -2.48914,1.39537 -0.9373,0.40129 -1.92835,0.73874 -2.97316,1.01233 -1.02946,0.27361 -2.08965,0.47881 -3.18057,0.61561 -1.09093,0.1368 -2.14343,0.20521 -3.15753,0.2052 -0.18438,1e-5 -0.36877,1e-5 -0.55314,0 -0.18439,1e-5 -0.37645,-0.009 -0.5762,-0.0273 -0.0922,1.08529 -0.16902,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13828,3.2285 l -3.45715,0 c 0.0922,-1.89697 0.16901,-3.78483 0.23047,-5.66357 0.0768,-1.88785 0.11526,-3.78938 0.11526,-5.70461 -10e-6,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.36801 -0.1076,-2.74514 -0.18439,-4.13141 0.73752,-0.17326 1.51346,-0.31006 2.32781,-0.4104 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12039,-0.0958 0.64533,-0.0183 1.16774,-0.0274 1.56724,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14858,0.35568 1.32137,0.23714 2.47376,0.6293 3.45715,1.17649 0.98334,0.5381 1.75928,1.24491 2.32781,2.12042 0.58385,0.86643 0.87579,1.92891 0.87581,3.18747 m -14.26649,-4.91117 c -0.23049,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16903,1.73282 -0.33036,3.46564 -0.48401,5.19845 l 0.0461,0 c 1.69016,0 3.11912,-0.13679 4.28687,-0.4104 1.1831,-0.2736 2.15879,-0.61561 2.92705,-1.02601 0.7836,-0.4104 1.39053,-0.85272 1.82077,-1.32698 0.4302,-0.48335 0.74518,-0.9348 0.94494,-1.35433 0.2151,-0.41951 0.34571,-0.77063 0.39182,-1.05337 0.0461,-0.28271 0.0691,-0.43319 0.0692,-0.45144 -3e-5,-0.10031 -0.0154,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37392 -0.35342,-0.76152 -0.64533,-1.16282 -0.27659,-0.40127 -0.6684,-0.76607 -1.17544,-1.09441 -0.50706,-0.33742 -1.14472,-0.61558 -1.91295,-0.83448 -0.76827,-0.21887 -1.70554,-0.32831 -2.81182,-0.32833 -0.76826,2e-5 -1.62102,0.0547 -2.55828,0.16416" /><path
   inkscape:connector-curvature="0"
   id="path3379"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 329.2678,137.5468 c -2e-5,0.98498 -0.11526,1.94714 -0.34572,2.8865 -0.21513,0.93026 -0.53011,1.81491 -0.94494,2.65395 -0.39952,0.83906 -0.89888,1.6097 -1.49811,2.31194 -0.59925,0.70225 -1.27531,1.30874 -2.02818,1.81946 -0.73755,0.5016 -1.55958,0.89377 -2.4661,1.17649 -0.89119,0.29184 -1.84383,0.43776 -2.85792,0.43776 -1.02947,0 -1.97442,-0.14136 -2.83486,-0.42408 -0.84509,-0.28272 -1.61333,-0.67945 -2.30476,-1.19017 -0.67607,-0.51072 -1.27531,-1.11721 -1.79771,-1.81946 -0.50706,-0.70224 -0.93729,-1.47288 -1.29067,-2.31194 -0.33804,-0.83904 -0.59924,-1.72369 -0.78362,-2.65395 -0.16902,-0.93936 -0.25354,-1.90152 -0.25352,-2.8865 -2e-5,-1.4592 0.19206,-2.79529 0.57618,-4.00827 0.38413,-1.22208 0.97568,-2.27089 1.77467,-3.14644 0.79898,-0.8755 1.8054,-1.55495 3.01924,-2.03833 1.2292,-0.48335 2.6812,-0.72503 4.35601,-0.72505 1.76697,2e-5 3.26506,0.2417 4.49429,0.72505 1.22919,0.48338 2.22792,1.16283 2.99619,2.03833 0.76824,0.87555 1.32139,1.92436 1.65943,3.14644 0.35338,1.21298 0.53008,2.54907 0.5301,4.00827 m -4.28686,0.10944 c -2e-5,-1.21296 -0.0999,-2.32561 -0.29962,-3.33795 -0.18439,-1.01232 -0.4917,-1.87873 -0.92191,-2.59922 -0.43024,-0.7296 -0.99106,-1.29504 -1.68248,-1.69634 -0.67608,-0.40127 -1.50579,-0.60191 -2.48914,-0.60192 -0.92191,1e-5 -1.72858,0.20065 -2.42,0.60192 -0.67608,0.4013 -1.2369,0.96674 -1.68248,1.69634 -0.4456,0.72049 -0.77595,1.5869 -0.99105,2.59922 -0.21512,1.01234 -0.32268,2.12499 -0.32267,3.33795 -10e-6,1.23122 0.10761,2.41227 0.32267,3.54315 0.2151,1.1309 0.53776,2.13411 0.96799,3.00963 0.43022,0.86641 0.968,1.55954 1.61334,2.07938 0.64533,0.51984 1.39054,0.77977 2.23563,0.77977 0.84506,0 1.61331,-0.25993 2.30476,-0.77977 0.70678,-0.51984 1.30602,-1.21297 1.79772,-2.07938 0.50703,-0.87552 0.89115,-1.87873 1.15238,-3.00963 0.27655,-1.13088 0.41484,-2.31193 0.41486,-3.54315" /><path
   inkscape:connector-curvature="0"
   id="path3381"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 342.21374,148.18994 -3.9181,-6.63486 c -0.76827,0.0547 -1.51347,0.0821 -2.23563,0.0821 -0.18439,1e-5 -0.36877,1e-5 -0.55314,0 -0.18438,1e-5 -0.37644,-0.009 -0.57619,-0.0273 -0.0922,1.08529 -0.16902,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.2285 l -3.45714,0 c 0.0922,-1.89697 0.16901,-3.78483 0.23047,-5.66357 0.0768,-1.88785 0.11526,-3.78938 0.11526,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.36801 -0.10761,-2.74514 -0.18438,-4.13141 0.73752,-0.17326 1.51346,-0.31006 2.32781,-0.4104 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64533,-0.0183 1.16775,-0.0274 1.56725,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14857,0.35568 1.32138,0.23714 2.47377,0.6293 3.45714,1.17649 0.98335,0.5381 1.75929,1.24491 2.32782,2.12042 0.58385,0.86643 0.8758,1.92891 0.87581,3.18747 -0.0768,0.83906 -0.37647,1.60971 -0.89885,2.31194 -0.52244,0.69313 -1.20619,1.31786 -2.05124,1.87418 -0.8451,0.54721 -1.80543,1.02145 -2.88096,1.42273 -1.0602,0.40129 -2.1665,0.72506 -3.31886,0.97129 0.84506,1.15826 1.75928,2.30283 2.74267,3.43371 0.98335,1.13089 2.03586,2.26634 3.15752,3.40635 l -4.90914,0.24624 m -6.10764,-18.57761 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16901,1.73282 -0.33035,3.46564 -0.48399,5.19845 l 0.0461,0 c 1.69015,0 3.11911,-0.13679 4.28687,-0.4104 1.18309,-0.2736 2.15877,-0.61561 2.92705,-1.02601 0.7836,-0.4104 1.39053,-0.85272 1.82075,-1.32698 0.43022,-0.48335 0.7452,-0.9348 0.94496,-1.35433 0.2151,-0.41951 0.3457,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -1e-5,-0.10031 -0.0153,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37392 -0.35341,-0.76152 -0.64533,-1.16282 -0.2766,-0.40127 -0.66841,-0.76607 -1.17544,-1.09441 -0.50705,-0.33742 -1.14471,-0.61558 -1.91295,-0.83448 -0.76827,-0.21887 -1.70553,-0.32831 -2.81181,-0.32833 -0.76827,2e-5 -1.62103,0.0547 -2.5583,0.16416" /><path
   inkscape:connector-curvature="0"
   id="path3383"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 365.99205,128.4632 -0.32267,1.91522 -7.23697,0 0,17.51056 -3.06533,0 0,-17.51056 -5.64667,0 0,-1.96995 16.27164,0.0547" /><path
   inkscape:connector-curvature="0"
   id="path3385"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 385.41437,132.27996 c -0.0154,0.27361 -0.0537,0.56545 -0.11526,0.87552 -0.0615,0.2645 -0.146,0.57458 -0.25352,0.93025 -0.0923,0.3557 -0.24586,0.72506 -0.46095,1.10809 l -4.26382,-0.34201 c 0.169,-0.39215 0.29192,-0.76607 0.36876,-1.12176 0.0768,-0.36479 0.11526,-0.70679 0.11526,-1.02601 -1e-5,-0.65664 -0.14598,-1.2312 -0.4379,-1.7237 -0.29196,-0.49247 -0.68376,-0.90743 -1.17543,-1.24489 -0.4917,-0.33743 -1.06788,-0.58823 -1.72857,-0.75241 -0.64536,-0.17326 -1.32909,-0.2599 -2.05125,-0.25992 -0.86046,2e-5 -1.62102,0.13226 -2.28171,0.39672 -0.64534,0.25538 -1.1908,0.59739 -1.63639,1.02601 -0.44559,0.41954 -0.78363,0.89835 -1.0141,1.43641 -0.23048,0.52899 -0.34571,1.07163 -0.3457,1.62794 -10e-6,0.54722 0.15364,1.07163 0.46095,1.57321 0.32265,0.4925 0.75288,0.96218 1.29066,1.40906 0.55314,0.43777 1.19079,0.84818 1.91296,1.23121 0.72215,0.38305 1.49808,0.73417 2.32782,1.05337 1.42893,0.54721 2.63509,1.05337 3.61847,1.51849 0.99872,0.46514 1.80539,0.92114 2.42001,1.36802 0.61458,0.43777 1.06017,0.87553 1.33676,1.31329 0.27655,0.43776 0.41483,0.90289 0.41486,1.39537 -3e-5,0.53809 -0.15368,1.06249 -0.46095,1.57322 -0.29197,0.51072 -0.76828,0.96216 -1.42896,1.35432 -0.66071,0.39217 -1.52116,0.70681 -2.58133,0.94393 -1.04485,0.23712 -2.32783,0.35569 -3.84896,0.35569 -1.47506,0 -2.81183,-0.1368 -4.01029,-0.4104 -1.18312,-0.28273 -2.19722,-0.67033 -3.0423,-1.16282 -0.82971,-0.49248 -1.47505,-1.07616 -1.936,-1.75106 -0.44559,-0.684 -0.66839,-1.43184 -0.66839,-2.24353 l 4.33296,0.10944 c 0,0.89377 0.1767,1.60513 0.5301,2.13409 0.36875,0.52897 0.80667,0.93026 1.31372,1.20386 0.5224,0.2736 1.06018,0.45145 1.61334,0.53353 0.56849,0.073 1.05249,0.10944 1.452,0.10944 0.46094,0 0.95263,-0.0411 1.47505,-0.12313 0.53777,-0.0912 1.02944,-0.23712 1.47504,-0.43776 0.46094,-0.20976 0.83739,-0.4788 1.12935,-0.80713 0.30728,-0.33744 0.46092,-0.7524 0.46095,-1.24489 -3e-5,-0.51072 -0.20744,-0.97584 -0.62229,-1.39537 -0.39951,-0.42864 -0.9296,-0.82992 -1.59029,-1.20385 -0.66071,-0.37392 -1.4136,-0.73416 -2.25867,-1.08073 -0.84509,-0.34656 -1.71321,-0.70224 -2.60438,-1.06705 -0.87583,-0.3648 -1.73627,-0.74784 -2.58133,-1.14913 -0.84509,-0.40128 -1.59799,-0.83904 -2.25869,-1.3133 -0.66069,-0.48335 -1.19847,-1.01688 -1.61332,-1.60057 -0.39949,-0.58367 -0.59924,-1.24032 -0.59924,-1.96994 0,-0.46511 0.0614,-0.94391 0.18438,-1.43641 0.13828,-0.49247 0.35339,-0.97127 0.64533,-1.43642 0.30729,-0.47422 0.70679,-0.91654 1.19848,-1.32696 0.50704,-0.41951 1.13701,-0.78431 1.88991,-1.09442 0.75288,-0.31006 1.63637,-0.5563 2.65047,-0.73872 1.02946,-0.18239 2.21257,-0.27358 3.54935,-0.27361 1.39821,0.0183 2.61205,0.1277 3.64152,0.32833 1.02944,0.20066 1.90525,0.45602 2.62744,0.76608 0.72213,0.30098 1.30601,0.63843 1.75161,1.01234 0.44557,0.37394 0.79129,0.75242 1.03715,1.13544 0.24583,0.37395 0.41484,0.72963 0.50704,1.06705 0.0922,0.33747 0.13828,0.62018 0.13829,0.84818" />

<path
   inkscape:connector-curvature="0"
   id="path3389"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 12.191533,159.23156 0,1.31918 -8.727736,0 0,5.85445 7.04059,0 0,1.4251 -7.186593,0 0,5.02635 -2.5793867,0 0,-13.62508 11.4531257,0" /><path
   inkscape:connector-curvature="0"
   id="path3391"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 20.784666,173.02997 -2.757835,-4.67009 c -0.540758,0.0385 -1.065286,0.0578 -1.573587,0.0578 -0.129786,10e-6 -0.259567,10e-6 -0.389341,0 -0.129786,10e-6 -0.264974,-0.006 -0.405565,-0.0193 -0.0649,0.7639 -0.118973,1.5246 -0.162225,2.28208 -0.03245,0.75106 -0.0649,1.50855 -0.09734,2.27245 l -2.433384,0 c 0.06489,-1.33522 0.118963,-2.66403 0.162226,-3.98641 0.05407,-1.32881 0.08111,-2.66725 0.08111,-4.01532 -10e-7,-0.97573 -0.01622,-1.94184 -0.04866,-2.89834 -0.03245,-0.96289 -0.07571,-1.93221 -0.129785,-2.90796 0.51912,-0.12196 1.065279,-0.21825 1.638477,-0.28887 0.573194,-0.0771 1.12476,-0.1348 1.654701,-0.17333 0.540747,-0.0385 1.038238,-0.0609 1.492476,-0.0674 0.454224,-0.0129 0.821936,-0.0193 1.103134,-0.0193 1.027421,2e-5 2.000773,0.0835 2.92006,0.25036 0.930082,0.16691 1.74121,0.44295 2.433384,0.82809 0.692148,0.37876 1.238308,0.87626 1.638479,1.49251 0.410956,0.60984 0.616441,1.3577 0.616456,2.24356 -0.05409,0.59059 -0.264982,1.13303 -0.63268,1.62731 -0.367724,0.48788 -0.848993,0.9276 -1.443807,1.31918 -0.594839,0.38517 -1.270779,0.71897 -2.02782,1.00142 -0.746247,0.28245 -1.524929,0.51034 -2.336047,0.68366 0.594817,0.81526 1.238311,1.62088 1.930484,2.41688 0.692151,0.79601 1.43298,1.59522 2.22249,2.39763 l -3.455405,0.17333 m -4.298978,-13.07624 c -0.16223,1.23253 -0.302826,2.45863 -0.421785,3.6783 -0.118973,1.21968 -0.232529,2.43936 -0.340675,3.65903 l 0.03245,0 c 1.189648,10e-6 2.195446,-0.0963 3.017395,-0.28887 0.832749,-0.19258 1.519504,-0.4333 2.060265,-0.72218 0.551556,-0.28886 0.97875,-0.6002 1.281582,-0.93402 0.30281,-0.34021 0.524518,-0.65797 0.665125,-0.95327 0.151399,-0.29528 0.243327,-0.54243 0.275783,-0.74144 0.03244,-0.19898 0.04866,-0.3049 0.04866,-0.31775 -1.2e-5,-0.0706 -0.01077,-0.20541 -0.03245,-0.40442 -0.02164,-0.19899 -0.08112,-0.42688 -0.178449,-0.68366 -0.09735,-0.26319 -0.248757,-0.536 -0.454231,-0.81847 -0.194682,-0.28244 -0.470465,-0.53921 -0.827351,-0.77032 -0.356906,-0.2375 -0.80573,-0.4333 -1.346473,-0.58738 -0.540759,-0.15404 -1.200476,-0.23108 -1.979152,-0.23109 -0.540758,1e-5 -1.140992,0.0385 -1.800704,0.11554" /><path
   inkscape:connector-curvature="0"
   id="path3393"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 39.257338,159.2123 0,1.31918 -8.906183,0 0,5.87371 7.040589,0 0,1.4251 -7.137925,0 0,3.48571 8.630401,0 0,1.52138 -11.388236,0 0,-13.62508 11.761354,0" /><path
   inkscape:connector-curvature="0"
   id="path3395"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 52.14945,159.2123 0,1.31918 -8.906185,0 0,5.87371 7.04059,0 0,1.4251 -7.137924,0 0,3.48571 8.6304,0 0,1.52138 -11.388236,0 0,-13.62508 11.761355,0" /><path
   inkscape:connector-curvature="0"
   id="path3397"
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 69.025035,168.863 c -0.01624,0.48627 -0.04056,0.97013 -0.073,1.45158 -0.01624,0.20703 -0.03246,0.42368 -0.04866,0.64995 -0.01624,0.22629 -0.03651,0.45498 -0.06084,0.68608 -0.01624,0.22628 -0.04056,0.45015 -0.073,0.67162 -0.02434,0.22147 -0.04867,0.42849 -0.073,0.62108 l -1.666868,-0.0289 c 0.01621,-0.13962 0.02837,-0.27684 0.0365,-0.41164 0.008,-0.13481 0.0122,-0.26961 0.0122,-0.40442 -0.365015,0.23109 -0.750301,0.41164 -1.155857,0.54163 -0.405571,0.12999 -0.790857,0.22869 -1.155857,0.29609 -0.421793,0.0819 -0.839523,0.13481 -1.253192,0.15888 -0.08922,0.01 -0.174398,0.0144 -0.255505,0.0144 -0.07301,0 -0.15412,0 -0.243339,0 -0.567794,0 -1.111248,-0.0482 -1.630367,-0.14444 -0.519125,-0.0915 -0.981467,-0.23351 -1.387029,-0.42608 -0.397454,-0.19259 -0.717849,-0.43331 -0.961187,-0.72218 -0.235228,-0.29368 -0.35284,-0.63793 -0.35284,-1.03272 0,-0.34663 0.11356,-0.67162 0.340674,-0.97493 0.235226,-0.30813 0.559677,-0.57534 0.973353,-0.80163 0.421785,-0.23109 0.928739,-0.41404 1.520865,-0.54885 0.59212,-0.1348 1.249132,-0.20702 1.97104,-0.21665 0.02432,0 0.16222,0.005 0.413676,0.0145 0.251443,0.01 0.555616,0.0409 0.912519,0.0939 0.365,0.0482 0.754341,0.12759 1.168024,0.23832 0.421778,0.10592 0.811119,0.25518 1.168023,0.44775 -9e-6,-0.21665 -0.0082,-0.44533 -0.02434,-0.68607 -0.01622,-0.24072 -0.05679,-0.47662 -0.121672,-0.70773 -0.05679,-0.2359 -0.150068,-0.45978 -0.27984,-0.67163 -0.129785,-0.21183 -0.308237,-0.39718 -0.535344,-0.55607 -0.219012,-0.16369 -0.498852,-0.29127 -0.839517,-0.38275 -0.340681,-0.0963 -0.754356,-0.14444 -1.241026,-0.14444 -0.381236,0 -0.730021,0.0434 -1.046355,0.12999 -0.316344,0.0867 -0.596184,0.20463 -0.839517,0.35386 -0.243343,0.14927 -0.446124,0.3274 -0.608347,0.53442 -0.162228,0.20221 -0.283897,0.42128 -0.365007,0.65718 l -2.044043,-0.38997 c 0.09734,-0.27443 0.235227,-0.51756 0.413676,-0.72941 0.186557,-0.21182 0.393396,-0.39719 0.620512,-0.55607 0.235226,-0.15887 0.482619,-0.29368 0.742183,-0.40442 0.267668,-0.11554 0.531286,-0.21183 0.790849,-0.28887 0.608342,-0.17813 1.265355,-0.28646 1.971041,-0.32498 0.973347,1e-5 1.796641,0.0867 2.469884,0.25998 0.673228,0.17333 1.216683,0.4285 1.630368,0.76551 0.421776,0.33703 0.721892,0.75348 0.900352,1.24937 0.186548,0.4959 0.279828,1.06882 0.279838,1.71878 m -1.898039,2.00766 c -9e-6,-0.0963 0.004,-0.19017 0.0122,-0.28166 0.008,-0.0963 0.0122,-0.18776 0.0122,-0.27442 -0.429905,-0.25998 -0.855747,-0.45738 -1.277525,-0.59219 -0.413683,-0.1348 -0.790858,-0.23591 -1.131524,-0.30331 -0.389348,-0.077 -0.766522,-0.12036 -1.131523,-0.12999 -0.502904,0 -0.936858,0.0434 -1.30186,0.12999 -0.356901,0.0819 -0.652961,0.19258 -0.888185,0.3322 -0.22712,0.13962 -0.397456,0.2985 -0.511011,0.47663 -0.105448,0.17815 -0.158172,0.36351 -0.15817,0.55608 -2e-6,0.1974 0.06084,0.37554 0.182504,0.53442 0.12166,0.15887 0.292003,0.29368 0.51101,0.40442 0.227113,0.11073 0.49884,0.19739 0.815184,0.25998 0.324447,0.0578 0.685399,0.0867 1.082856,0.0867 0.389336,-0.0193 0.794899,-0.0722 1.216691,-0.15888 0.365001,-0.077 0.766509,-0.19499 1.204525,-0.35387 0.446113,-0.16369 0.900344,-0.39238 1.362695,-0.68606" /><path
   inkscape:connector-curvature="0"
   id="path3399"
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 77.610061,172.94331 c -0.0649,-0.73181 -0.129785,-1.38899 -0.19467,-1.97155 -0.05679,-0.58737 -0.109511,-1.08808 -0.158171,-1.50213 -0.05679,-0.48145 -0.11356,-0.90994 -0.170336,-1.28548 -0.0649,-0.58255 -0.190623,-1.02067 -0.377174,-1.31436 -0.178457,-0.2985 -0.409627,-0.44774 -0.693515,-0.44775 -0.283902,1e-5 -0.571851,0.10593 -0.863852,0.31776 -0.292012,0.21184 -0.579961,0.49349 -0.86385,0.84495 -0.283901,0.35146 -0.555628,0.75347 -0.815184,1.20603 -0.251454,0.44776 -0.48668,0.90995 -0.705681,1.38659 -0.210897,0.47664 -0.397456,0.94845 -0.559679,1.41546 -0.154117,0.46701 -0.271731,0.88828 -0.35284,1.26381 l -1.666867,0.0289 c 0.04866,-0.79921 0.073,-1.55749 0.073,-2.27486 -10e-7,-0.75106 -0.02027,-1.43713 -0.06084,-2.05821 -0.04056,-0.62588 -0.08517,-1.16511 -0.133836,-1.61768 -0.05679,-0.52958 -0.11761,-1.00622 -0.182503,-1.4299 l 2.348215,0.0578 0,2.90315 c 0.186556,-0.31775 0.352836,-0.58496 0.498844,-0.80162 0.145998,-0.21664 0.267667,-0.39238 0.365007,-0.52719 0.113548,-0.15887 0.206832,-0.28404 0.279839,-0.37553 0.210889,-0.23591 0.442059,-0.44533 0.693515,-0.62829 0.251443,-0.18776 0.511004,-0.34423 0.778682,-0.46942 0.275778,-0.12998 0.55156,-0.22868 0.827351,-0.29609 0.283886,-0.0674 0.555615,-0.1011 0.815182,-0.10111 0.259554,1e-5 0.502893,0.0337 0.730016,0.10111 0.227108,0.0674 0.425834,0.17332 0.596179,0.31776 0.178439,0.14444 0.328497,0.3298 0.450176,0.55608 0.129773,0.22147 0.227106,0.48867 0.292006,0.80161 0.129772,0.51998 0.243328,1.08808 0.340673,1.70434 0.08921,0.5296 0.170328,1.14827 0.243339,1.856 0.07299,0.70774 0.117597,1.46842 0.133836,2.28208 l -1.666868,0.0578" /><path
   inkscape:connector-curvature="0"
   id="path3401"
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 90.173662,162.48617 0,10.29825 -1.666867,0 0,-1.12659 c -0.162236,0.17332 -0.340683,0.32498 -0.535344,0.45497 -0.186569,0.12999 -0.381239,0.24313 -0.584012,0.33942 -0.202792,0.0963 -0.409629,0.17814 -0.620513,0.24554 -0.20279,0.0626 -0.401516,0.11555 -0.596179,0.15888 -0.446128,0.10111 -0.90847,0.15888 -1.387029,0.17333 -0.754354,0 -1.455979,-0.0987 -2.104877,-0.2961 -0.648905,-0.19739 -1.212639,-0.47904 -1.691202,-0.84495 -0.470456,-0.3659 -0.839518,-0.80883 -1.107189,-1.3288 -0.267674,-0.52478 -0.40151,-1.10975 -0.401508,-1.75489 -2e-6,-0.54886 0.101385,-1.06641 0.304172,-1.55268 0.210892,-0.48627 0.51101,-0.91235 0.900353,-1.27826 0.39745,-0.3659 0.876015,-0.65477 1.435696,-0.86661 0.567785,-0.21665 1.208576,-0.32498 1.922373,-0.32499 0.600228,0.0145 1.176129,0.0795 1.727702,0.19499 0.23522,0.0482 0.474503,0.11074 0.717849,0.18777 0.25144,0.077 0.494779,0.17333 0.730015,0.28887 0.235218,0.11074 0.454222,0.24074 0.657013,0.38998 0.210885,0.14925 0.393387,0.32257 0.547512,0.51997 l 0,-3.83477 1.752035,-0.0433 m -1.849371,6.49238 c -0.02434,-0.3996 -0.105461,-0.75347 -0.243339,-1.0616 -0.129785,-0.31294 -0.29607,-0.58496 -0.498843,-0.81606 -0.20279,-0.23109 -0.433962,-0.42368 -0.693514,-0.57775 -0.259569,-0.15887 -0.523185,-0.28645 -0.79085,-0.38275 -0.267679,-0.0963 -0.535352,-0.16369 -0.803016,-0.20221 -0.267679,-0.0433 -0.511018,-0.065 -0.730016,-0.065 -0.575906,1e-5 -1.070694,0.077 -1.484364,0.23109 -0.413678,0.15407 -0.754353,0.37073 -1.022021,0.64996 -0.267675,0.27925 -0.466401,0.61386 -0.596178,1.00383 -0.121673,0.38998 -0.182507,0.82088 -0.182504,1.2927 -3e-6,0.55848 0.12166,1.03271 0.365006,1.42269 0.251448,0.38516 0.559675,0.6981 0.924687,0.93883 0.373115,0.23591 0.774622,0.40683 1.204525,0.51274 0.438004,0.10592 0.843567,0.15888 1.216691,0.15888 0.405558,0 0.807066,-0.0578 1.204525,-0.17332 0.397445,-0.12036 0.754341,-0.30572 1.070689,-0.55607 0.316332,-0.25518 0.571837,-0.57775 0.766516,-0.96772 0.194662,-0.38998 0.291996,-0.85939 0.292006,-1.40825" /><path
   inkscape:connector-curvature="0"
   id="path3403"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 111.67674,165.53858 c -2e-5,0.6933 -0.0811,1.37053 -0.24334,2.03172 -0.15142,0.65478 -0.37313,1.27746 -0.66512,1.86803 -0.28121,0.59059 -0.6327,1.13302 -1.05447,1.62731 -0.4218,0.4943 -0.89766,0.92118 -1.42759,1.28066 -0.51913,0.35307 -1.09773,0.6291 -1.73581,0.8281 -0.62728,0.20542 -1.29781,0.30813 -2.0116,0.30813 -0.72461,0 -1.38973,-0.0995 -1.99537,-0.2985 -0.59483,-0.199 -1.13558,-0.47825 -1.62226,-0.83773 -0.47586,-0.35948 -0.89765,-0.78636 -1.265357,-1.28066 -0.356898,-0.49429 -0.659719,-1.03672 -0.908463,-1.62731 -0.237931,-0.59057 -0.421788,-1.21325 -0.551566,-1.86803 -0.118973,-0.66119 -0.178449,-1.33842 -0.178448,-2.03172 -10e-7,-1.02709 0.135186,-1.96753 0.405563,-2.82131 0.270375,-0.86018 0.686753,-1.59841 1.249138,-2.21468 0.562383,-0.61625 1.270763,-1.09449 2.125153,-1.43473 0.8652,-0.34021 1.88722,-0.51032 3.06607,-0.51034 1.24372,2e-5 2.29818,0.17013 3.16339,0.51034 0.8652,0.34024 1.56817,0.81848 2.10894,1.43473 0.54073,0.61627 0.93008,1.3545 1.16802,2.21468 0.24873,0.85378 0.3731,1.79422 0.37312,2.82131 m -3.0174,0.077 c -1e-5,-0.85377 -0.0703,-1.63693 -0.21089,-2.34949 -0.1298,-0.71254 -0.34609,-1.32238 -0.6489,-1.82952 -0.30283,-0.51353 -0.69758,-0.91153 -1.18425,-1.194 -0.47587,-0.28244 -1.05988,-0.42366 -1.75203,-0.42367 -0.64891,1e-5 -1.2167,0.14123 -1.70337,0.42367 -0.47587,0.28247 -0.87062,0.68047 -1.18425,1.194 -0.31364,0.50714 -0.54616,1.11698 -0.69757,1.82952 -0.15141,0.71256 -0.22712,1.49572 -0.22712,2.34949 0,0.86661 0.0757,1.69792 0.22712,2.49392 0.15141,0.796 0.37852,1.50213 0.68135,2.11838 0.30281,0.60985 0.68134,1.09771 1.13558,1.46362 0.45422,0.3659 0.97875,0.54885 1.57358,0.54885 0.59482,0 1.13557,-0.18295 1.62226,-0.54885 0.49748,-0.36591 0.91927,-0.85377 1.26536,-1.46362 0.35688,-0.61625 0.62726,-1.32238 0.81113,-2.11838 0.19466,-0.796 0.29199,-1.62731 0.292,-2.49392" /><path
   inkscape:connector-curvature="0"
   id="path3405"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 126.53177,163.41056 c -0.0433,0.53923 -0.22172,1.03674 -0.53534,1.4925 -0.31365,0.45578 -0.72462,0.86983 -1.23292,1.24214 -0.50831,0.37233 -1.09233,0.69972 -1.75203,0.98217 -0.65973,0.28245 -1.3573,0.51997 -2.09271,0.71254 -0.72462,0.19259 -1.47086,0.33702 -2.23871,0.43331 -0.76788,0.0963 -1.50871,0.14444 -2.22249,0.14444 -0.12979,0 -0.25957,0 -0.38935,0 -0.12978,0 -0.26497,-0.006 -0.40556,-0.0193 -0.0649,0.76391 -0.11897,1.5246 -0.16223,2.28208 -0.0324,0.75107 -0.0649,1.50855 -0.0973,2.27245 l -2.43338,0 c 0.0649,-1.33522 0.11896,-2.66403 0.16222,-3.98641 0.0541,-1.3288 0.0811,-2.66725 0.0811,-4.01532 0,-0.97573 -0.0162,-1.94184 -0.0487,-2.89834 -0.0324,-0.96288 -0.0757,-1.93221 -0.12979,-2.90796 0.51912,-0.12196 1.06528,-0.21825 1.63848,-0.28887 0.57319,-0.077 1.12476,-0.1348 1.6547,-0.17332 0.54075,-0.0385 1.03824,-0.0609 1.49248,-0.0674 0.45422,-0.0129 0.82193,-0.0193 1.10313,-0.0193 1.02742,2e-5 2.00077,0.0835 2.92006,0.25036 0.93008,0.16691 1.74121,0.44295 2.43339,0.82809 0.69214,0.37876 1.2383,0.87627 1.63847,1.49251 0.41096,0.60984 0.61645,1.3577 0.61646,2.24357 M 116.49,159.95372 c -0.16223,1.23253 -0.30283,2.45862 -0.42179,3.67829 -0.11897,1.21968 -0.23253,2.43936 -0.34067,3.65903 l 0.0324,0 c 1.18965,1e-5 2.19544,-0.0963 3.01739,-0.28887 0.83275,-0.19257 1.51951,-0.43329 2.06027,-0.72217 0.55155,-0.28887 0.97875,-0.60021 1.28158,-0.93402 0.30281,-0.34022 0.52452,-0.65798 0.66512,-0.95328 0.1514,-0.29528 0.24333,-0.54242 0.27579,-0.74143 0.0324,-0.19899 0.0487,-0.30491 0.0487,-0.31776 -1e-5,-0.0706 -0.0108,-0.20541 -0.0325,-0.40442 -0.0216,-0.19899 -0.0811,-0.42688 -0.17845,-0.68366 -0.0973,-0.26319 -0.24875,-0.536 -0.45423,-0.81847 -0.19468,-0.28244 -0.47046,-0.53921 -0.82735,-0.77032 -0.35691,-0.2375 -0.80573,-0.4333 -1.34647,-0.58738 -0.54076,-0.15404 -1.20048,-0.23108 -1.97915,-0.23109 -0.54076,1e-5 -1.141,0.0385 -1.80071,0.11555" /><path
   inkscape:connector-curvature="0"
   id="path3408"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 139.26166,159.2123 0,1.31918 -8.90619,0 0,5.87371 7.0406,0 0,1.4251 -7.13793,0 0,3.48571 8.6304,0 0,1.52138 -11.38823,0 0,-13.62508 11.76135,0" /><path
   inkscape:connector-curvature="0"
   id="path3410"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 153.58136,159.17378 c -0.44343,2.29172 -0.78951,4.58022 -1.03824,6.8655 -0.23795,2.27888 -0.39476,4.57701 -0.47046,6.8944 l -2.57938,0 -6.08346,-9.60015 c -0.25957,3.184 -0.40556,6.37121 -0.43801,9.56163 l -2.61183,0.0193 c 0.0217,-0.68045 0.0324,-1.3609 0.0324,-2.04136 0,-0.68045 0,-1.36731 0,-2.06061 0,-3.184 -0.0811,-6.36478 -0.24333,-9.54238 l 3.61763,0.0385 5.79146,10.35121 c 0.0432,-0.51354 0.0811,-1.07523 0.11357,-1.68508 0.0324,-0.61625 0.0594,-1.25818 0.0811,-1.92581 0.0324,-0.6676 0.0541,-1.35126 0.0649,-2.05098 0.0217,-0.6997 0.0324,-1.38978 0.0324,-2.07024 0,-0.48144 -0.005,-0.95327 -0.0162,-1.41547 -0.0104,-0.4686 -0.027,-0.92437 -0.0487,-1.36732 l 3.79607,0.0289" /><path
   inkscape:connector-curvature="0"
   id="path3412"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 174.82487,161.83139 c -0.0104,0.1926 -0.0379,0.39801 -0.0811,0.61626 -0.0432,0.18618 -0.1028,0.40444 -0.17844,0.65478 -0.0649,0.25037 -0.17306,0.51035 -0.32446,0.77995 l -3.00117,-0.24073 c 0.1189,-0.27602 0.20547,-0.53921 0.25956,-0.78958 0.054,-0.25676 0.0811,-0.49749 0.0811,-0.72217 -1e-5,-0.46218 -0.1028,-0.8666 -0.30823,-1.21327 -0.20549,-0.34663 -0.48128,-0.6387 -0.82734,-0.87623 -0.3461,-0.23751 -0.75166,-0.41404 -1.21669,-0.5296 -0.45424,-0.12195 -0.93551,-0.18294 -1.44381,-0.18296 -0.60565,2e-5 -1.14099,0.0931 -1.60603,0.27925 -0.45424,0.17975 -0.83817,0.42048 -1.1518,0.72218 -0.31365,0.2953 -0.55158,0.63232 -0.7138,1.01105 -0.16222,0.37233 -0.24335,0.75428 -0.24333,1.14585 -2e-5,0.38517 0.10812,0.75428 0.32444,1.10734 0.22712,0.34665 0.52994,0.67725 0.90847,0.99179 0.38933,0.30813 0.83816,0.59701 1.34647,0.86662 0.5083,0.26962 1.05446,0.51676 1.63848,0.74143 1.00578,0.38517 1.85477,0.74144 2.54694,1.06883 0.70296,0.32739 1.27075,0.64836 1.70337,0.9629 0.43259,0.30813 0.74622,0.61626 0.9409,0.92438 0.19466,0.30813 0.292,0.63553 0.29201,0.98216 -1e-5,0.37875 -0.10812,0.74786 -0.32444,1.10735 -0.20551,0.35948 -0.54077,0.67723 -1.00581,0.95327 -0.46505,0.27603 -1.0707,0.4975 -1.81693,0.6644 -0.73543,0.16691 -1.63848,0.25036 -2.70917,0.25036 -1.03824,0 -1.97915,-0.0963 -2.82272,-0.28887 -0.83276,-0.199 -1.54655,-0.47183 -2.14138,-0.81847 -0.58401,-0.34665 -1.03824,-0.75749 -1.36268,-1.23252 -0.31365,-0.48144 -0.47047,-1.00783 -0.47046,-1.57916 l 3.04984,0.077 c -1e-5,0.6291 0.12435,1.1298 0.37312,1.50213 0.25956,0.37232 0.56777,0.65478 0.92468,0.84735 0.36771,0.19259 0.74624,0.31776 1.13558,0.37553 0.40015,0.0514 0.74082,0.0771 1.02203,0.0771 0.32444,0 0.67052,-0.0289 1.03824,-0.0867 0.37852,-0.0642 0.7246,-0.16691 1.03824,-0.30814 0.32445,-0.14764 0.58942,-0.33701 0.7949,-0.56811 0.21629,-0.23751 0.32444,-0.52959 0.32445,-0.87624 -1e-5,-0.35949 -0.14601,-0.68687 -0.438,-0.98216 -0.28121,-0.30171 -0.65432,-0.58416 -1.11936,-0.84735 -0.46506,-0.2632 -0.995,-0.51676 -1.58981,-0.7607 -0.59484,-0.24393 -1.20589,-0.49428 -1.83315,-0.75107 -0.61646,-0.25677 -1.2221,-0.52638 -1.81693,-0.80883 -0.59482,-0.28245 -1.12476,-0.59058 -1.5898,-0.92439 -0.46506,-0.34022 -0.84357,-0.71575 -1.13558,-1.1266 -0.2812,-0.41083 -0.42179,-0.87302 -0.42179,-1.38658 0,-0.32738 0.0432,-0.6644 0.12979,-1.01105 0.0973,-0.34663 0.24875,-0.68365 0.45423,-1.01105 0.2163,-0.33379 0.49749,-0.64513 0.84357,-0.93402 0.3569,-0.29527 0.80031,-0.55205 1.33025,-0.77032 0.52994,-0.21824 1.1518,-0.39157 1.8656,-0.51997 0.7246,-0.12837 1.55736,-0.19256 2.49828,-0.19258 0.98415,0.0129 1.83854,0.0899 2.56316,0.2311 0.7246,0.14124 1.34105,0.32098 1.84936,0.53923 0.50831,0.21185 0.91927,0.44937 1.23293,0.71254 0.31362,0.26321 0.55695,0.52961 0.73001,0.79921 0.17302,0.26321 0.29199,0.51356 0.35689,0.75107 0.0649,0.23752 0.0974,0.43652 0.0974,0.597" /><path
   inkscape:connector-curvature="0"
   id="path3414"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 188.75522,165.53858 c -1e-5,0.6933 -0.0811,1.37053 -0.24334,2.03172 -0.15142,0.65478 -0.37313,1.27746 -0.66513,1.86803 -0.28119,0.59059 -0.63268,1.13302 -1.05446,1.62731 -0.42179,0.4943 -0.89766,0.92118 -1.42759,1.28066 -0.51912,0.35307 -1.09773,0.6291 -1.7358,0.8281 -0.62729,0.20542 -1.29782,0.30813 -2.0116,0.30813 -0.72462,0 -1.38975,-0.0995 -1.99538,-0.2985 -0.59483,-0.199 -1.13558,-0.47825 -1.62226,-0.83773 -0.47586,-0.35948 -0.89764,-0.78636 -1.26535,-1.28066 -0.3569,-0.49429 -0.65972,-1.03672 -0.90847,-1.62731 -0.23793,-0.59057 -0.42179,-1.21325 -0.55156,-1.86803 -0.11903,-0.66119 -0.17845,-1.33842 -0.17845,-2.03172 0,-1.02709 0.13519,-1.96753 0.40557,-2.82131 0.27037,-0.86018 0.68675,-1.59841 1.24912,-2.21468 0.56239,-0.61625 1.27078,-1.09449 2.12516,-1.43473 0.8652,-0.34021 1.88723,-0.51032 3.06607,-0.51034 1.24372,2e-5 2.29819,0.17013 3.1634,0.51034 0.86519,0.34024 1.56816,0.81848 2.10893,1.43473 0.54074,0.61627 0.93008,1.3545 1.16803,2.21468 0.24873,0.85378 0.3731,1.79422 0.37311,2.82131 m -3.0174,0.077 c 0,-0.85377 -0.0703,-1.63693 -0.21088,-2.34949 -0.1298,-0.71254 -0.3461,-1.32238 -0.64891,-1.82952 -0.30284,-0.51353 -0.69758,-0.91153 -1.18424,-1.194 -0.47588,-0.28244 -1.05988,-0.42366 -1.75204,-0.42367 -0.64892,1e-5 -1.21671,0.14123 -1.70337,0.42367 -0.47587,0.28247 -0.87062,0.68047 -1.18425,1.194 -0.31363,0.50714 -0.54617,1.11698 -0.69756,1.82952 -0.15143,0.71256 -0.22712,1.49572 -0.22712,2.34949 0,0.86661 0.0757,1.69792 0.22712,2.49392 0.15139,0.796 0.37851,1.50213 0.68135,2.11838 0.3028,0.60985 0.68133,1.09771 1.13557,1.46362 0.45422,0.3659 0.97876,0.54885 1.57358,0.54885 0.59483,0 1.13558,-0.18295 1.62226,-0.54885 0.49749,-0.36591 0.91927,-0.85377 1.26536,-1.46362 0.35688,-0.61625 0.62726,-1.32238 0.81114,-2.11838 0.19465,-0.796 0.29199,-1.62731 0.29199,-2.49392" /><path
   inkscape:connector-curvature="0"
   id="path3416"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 202.78293,166.72295 c -0.14061,1.08487 -0.37854,2.02531 -0.7138,2.8213 -0.33528,0.78959 -0.79492,1.44436 -1.37891,1.96433 -0.57321,0.51355 -1.2816,0.8955 -2.12516,1.14586 -0.83277,0.25035 -1.82234,0.37553 -2.96872,0.37553 -1.16803,0 -2.13599,-0.15086 -2.90385,-0.45257 -0.75704,-0.30171 -1.35728,-0.73502 -1.8007,-1.29992 -0.44342,-0.57132 -0.75705,-1.26782 -0.94091,-2.0895 -0.17304,-0.82167 -0.25955,-1.75569 -0.25955,-2.80205 0.0325,-0.78957 0.11357,-1.60804 0.24333,-2.45541 0.0541,-0.35947 0.11889,-0.74142 0.19467,-1.14585 0.0866,-0.41083 0.18386,-0.82808 0.29201,-1.25177 0.11902,-0.43009 0.25414,-0.8634 0.40556,-1.29993 0.15141,-0.44292 0.32445,-0.87622 0.51912,-1.29992 l 3.32563,0.29851 c -0.40016,1.17475 -0.7084,2.22111 -0.92469,3.13906 -0.21631,0.91156 -0.37312,1.71398 -0.47045,2.40726 -0.0974,0.68688 -0.15683,1.27425 -0.17845,1.76211 -0.0104,0.48147 -0.0162,0.88267 -0.0162,1.20363 0,0.78317 0.0487,1.43794 0.14601,1.96433 0.0974,0.51997 0.25415,0.94044 0.47046,1.2614 0.22711,0.31455 0.5137,0.53923 0.85979,0.67403 0.34607,0.13481 0.76245,0.20221 1.24914,0.20221 0.49748,0 0.96793,-0.0866 1.41136,-0.25998 0.45422,-0.17974 0.84897,-0.45899 1.18425,-0.83773 0.34607,-0.37873 0.61644,-0.86982 0.81112,-1.47324 0.20547,-0.60341 0.30822,-1.33522 0.30823,-2.19542 -1e-5,-0.55847 0.005,-1.16189 0.0162,-1.81026 0.0104,-0.65477 0.005,-1.32559 -0.0162,-2.01247 -0.0217,-0.69327 -0.0703,-1.39298 -0.146,-2.09913 -0.0757,-0.70611 -0.2055,-1.39619 -0.38935,-2.07024 l 3.52031,-0.25035 c 0.15139,1.05278 0.25413,2.01889 0.30822,2.89834 0.0649,0.87946 0.0974,1.65941 0.0974,2.33985 -2e-5,0.42368 -0.005,0.79922 -0.0162,1.1266 -0.0104,0.32098 -0.0271,0.5938 -0.0487,0.81847 -0.0217,0.26319 -0.0432,0.4975 -0.0649,0.70292" /><path
   inkscape:connector-curvature="0"
   id="path3418"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 212.38186,173.02997 -2.75783,-4.67009 c -0.54077,0.0385 -1.06529,0.0578 -1.5736,0.0578 -0.12979,10e-6 -0.25957,10e-6 -0.38934,0 -0.1298,10e-6 -0.26497,-0.006 -0.40556,-0.0193 -0.0649,0.7639 -0.11903,1.5246 -0.16223,2.28208 -0.0325,0.75106 -0.0649,1.50855 -0.0973,2.27245 l -2.43338,0 c 0.0649,-1.33522 0.11902,-2.66403 0.16222,-3.98641 0.0541,-1.32881 0.0811,-2.66725 0.0811,-4.01532 0,-0.97573 -0.0162,-1.94184 -0.0487,-2.89834 -0.0325,-0.96289 -0.0757,-1.93221 -0.1298,-2.90796 0.51912,-0.12196 1.06528,-0.21825 1.63848,-0.28887 0.57319,-0.0771 1.12475,-0.1348 1.65469,-0.17333 0.54076,-0.0385 1.03825,-0.0609 1.49249,-0.0674 0.45423,-0.0129 0.82193,-0.0193 1.10313,-0.0193 1.02742,2e-5 2.00077,0.0835 2.92006,0.25036 0.93008,0.16691 1.7412,0.44295 2.43338,0.82809 0.69215,0.37876 1.23831,0.87626 1.63848,1.49251 0.41095,0.60984 0.61645,1.3577 0.61646,2.24356 -0.0541,0.59059 -0.26498,1.13303 -0.63269,1.62731 -0.36771,0.48788 -0.84899,0.9276 -1.4438,1.31918 -0.59484,0.38517 -1.27078,0.71897 -2.02781,1.00142 -0.74625,0.28245 -1.52494,0.51034 -2.33606,0.68366 0.59481,0.81526 1.23831,1.62088 1.93049,2.41688 0.69215,0.79601 1.43298,1.59522 2.22249,2.39763 l -3.4554,0.17333 m -4.29898,-13.07624 c -0.16224,1.23253 -0.30283,2.45863 -0.42179,3.6783 -0.11903,1.21968 -0.23252,2.43936 -0.34067,3.65903 l 0.0324,0 c 1.18965,10e-6 2.19545,-0.0963 3.0174,-0.28887 0.83275,-0.19258 1.51951,-0.4333 2.06026,-0.72218 0.55156,-0.28886 0.97876,-0.6002 1.28159,-0.93402 0.3028,-0.34021 0.52451,-0.65797 0.66512,-0.95327 0.1514,-0.29528 0.24332,-0.54243 0.27578,-0.74144 0.0325,-0.19898 0.0487,-0.3049 0.0487,-0.31775 0,-0.0706 -0.0104,-0.20541 -0.0325,-0.40442 -0.0217,-0.19899 -0.0811,-0.42688 -0.17845,-0.68366 -0.0974,-0.26319 -0.24876,-0.536 -0.45424,-0.81847 -0.19467,-0.28244 -0.47045,-0.53921 -0.82735,-0.77032 -0.3569,-0.2375 -0.80573,-0.4333 -1.34647,-0.58738 -0.54075,-0.15404 -1.20048,-0.23108 -1.97915,-0.23109 -0.54076,1e-5 -1.14099,0.0385 -1.8007,0.11554" /><path
   inkscape:connector-curvature="0"
   id="path3420"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 230.22183,163.6224 c -1e-5,-0.59057 -0.0866,-1.08808 -0.25956,-1.4925 -0.17306,-0.41083 -0.39477,-0.74785 -0.66512,-1.01105 -0.25957,-0.26319 -0.54618,-0.46539 -0.8598,-0.60663 -0.30283,-0.14763 -0.58944,-0.25355 -0.85979,-0.31776 -0.27039,-0.0706 -0.49751,-0.10912 -0.68135,-0.11555 -0.17305,-0.0128 -0.26499,-0.0193 -0.27578,-0.0193 -0.74625,1e-5 -1.4276,0.12197 -2.04405,0.3659 -0.61646,0.23753 -1.1464,0.60343 -1.58981,1.09771 -0.4326,0.48788 -0.77328,1.10414 -1.02201,1.84877 -0.23795,0.73824 -0.35691,1.60485 -0.35691,2.59984 0,0.99501 0.10812,1.86804 0.32446,2.6191 0.2271,0.75107 0.54073,1.38017 0.9409,1.88729 0.40016,0.50714 0.88142,0.88908 1.44381,1.14586 0.57319,0.25678 1.21128,0.38516 1.91426,0.38516 0.52993,-0.0257 1.02201,-0.14123 1.47625,-0.34665 0.19467,-0.0834 0.38934,-0.19257 0.58401,-0.32738 0.20549,-0.13481 0.39474,-0.30171 0.56779,-0.50071 0.18385,-0.199 0.35148,-0.4301 0.5029,-0.69329 0.1514,-0.26961 0.27037,-0.58095 0.3569,-0.93402 l 2.59561,0.11555 c -0.11903,0.48145 -0.29742,0.90834 -0.53534,1.28066 -0.23795,0.36591 -0.51373,0.68688 -0.82735,0.96291 -0.30284,0.26961 -0.6327,0.49749 -0.98958,0.68366 -0.34609,0.18616 -0.69217,0.34022 -1.03824,0.46219 -0.82196,0.28245 -1.70879,0.44294 -2.6605,0.48145 -1.26537,0 -2.39554,-0.15086 -3.39052,-0.45256 -0.98417,-0.30813 -1.81692,-0.76069 -2.49827,-1.3577 -0.67054,-0.60341 -1.18426,-1.35127 -1.54115,-2.24356 -0.34608,-0.89229 -0.51911,-1.92259 -0.51911,-3.09092 0,-2.43293 0.69756,-4.26886 2.09271,-5.50781 1.39513,-1.24534 3.54733,-1.86802 6.45657,-1.86803 0.0324,1e-5 0.14058,0.003 0.32445,0.01 0.19466,0.006 0.43801,0.0289 0.73001,0.0674 0.292,0.0385 0.62187,0.0995 0.98959,0.18294 0.36769,0.077 0.74082,0.1926 1.11935,0.34665 0.37852,0.15408 0.74622,0.34666 1.10314,0.57774 0.35688,0.23112 0.67592,0.51999 0.95713,0.86662 0.28117,0.34024 0.50288,0.74144 0.66512,1.20363 0.17303,0.4622 0.25955,0.99501 0.25956,1.59841 l -2.79028,0.0963" /><path
   inkscape:connector-curvature="0"
   id="path3422"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 245.82312,159.2123 0,1.31918 -8.90619,0 0,5.87371 7.0406,0 0,1.4251 -7.13793,0 0,3.48571 8.6304,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" /><path
   inkscape:connector-curvature="0"
   id="path3424"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 266.74218,161.83139 c -0.0104,0.1926 -0.0379,0.39801 -0.0811,0.61626 -0.0432,0.18618 -0.1028,0.40444 -0.17845,0.65478 -0.0649,0.25037 -0.17306,0.51035 -0.32446,0.77995 l -3.00116,-0.24073 c 0.11889,-0.27602 0.20547,-0.53921 0.25956,-0.78958 0.0541,-0.25676 0.0811,-0.49749 0.0811,-0.72217 -1e-5,-0.46218 -0.1028,-0.8666 -0.30823,-1.21327 -0.2055,-0.34663 -0.48128,-0.6387 -0.82735,-0.87623 -0.34609,-0.23751 -0.75166,-0.41404 -1.21669,-0.5296 -0.45424,-0.12195 -0.9355,-0.18294 -1.44381,-0.18296 -0.60565,2e-5 -1.14099,0.0931 -1.60603,0.27925 -0.45424,0.17975 -0.83817,0.42048 -1.1518,0.72218 -0.31364,0.2953 -0.55157,0.63232 -0.7138,1.01105 -0.16222,0.37233 -0.24334,0.75428 -0.24333,1.14585 -1e-5,0.38517 0.10812,0.75428 0.32444,1.10734 0.22713,0.34665 0.52994,0.67725 0.90847,0.99179 0.38933,0.30813 0.83816,0.59701 1.34648,0.86662 0.5083,0.26962 1.05445,0.51676 1.63848,0.74143 1.00578,0.38517 1.85476,0.74144 2.54693,1.06883 0.70296,0.32739 1.27075,0.64836 1.70337,0.9629 0.43259,0.30813 0.74622,0.61626 0.94091,0.92438 0.19466,0.30813 0.29199,0.63553 0.292,0.98216 -10e-6,0.37875 -0.10812,0.74786 -0.32444,1.10735 -0.20551,0.35948 -0.54076,0.67723 -1.0058,0.95327 -0.46506,0.27603 -1.0707,0.4975 -1.81693,0.6644 -0.73544,0.16691 -1.63848,0.25036 -2.70916,0.25036 -1.03825,0 -1.97916,-0.0963 -2.82273,-0.28887 -0.83276,-0.199 -1.54656,-0.47183 -2.14138,-0.81847 -0.58402,-0.34665 -1.03825,-0.75749 -1.36269,-1.23252 -0.31364,-0.48144 -0.47045,-1.00783 -0.47045,-1.57916 l 3.04984,0.077 c -2e-5,0.6291 0.12434,1.1298 0.37311,1.50213 0.25956,0.37232 0.56778,0.65478 0.92469,0.84735 0.3677,0.19259 0.74623,0.31776 1.13557,0.37553 0.40016,0.0514 0.74083,0.0771 1.02203,0.0771 0.32445,0 0.67053,-0.0289 1.03825,-0.0867 0.37851,-0.0642 0.72459,-0.16691 1.03824,-0.30814 0.32444,-0.14764 0.58941,-0.33701 0.79491,-0.56811 0.21628,-0.23751 0.32443,-0.52959 0.32444,-0.87624 -10e-6,-0.35949 -0.14601,-0.68687 -0.438,-0.98216 -0.28121,-0.30171 -0.65433,-0.58416 -1.11937,-0.84735 -0.46505,-0.2632 -0.99498,-0.51676 -1.58981,-0.7607 -0.59483,-0.24393 -1.20587,-0.49428 -1.83315,-0.75107 -0.61646,-0.25677 -1.2221,-0.52638 -1.81692,-0.80883 -0.59483,-0.28245 -1.12477,-0.59058 -1.58981,-0.92439 -0.46505,-0.34022 -0.84357,-0.71575 -1.13558,-1.1266 -0.28119,-0.41083 -0.42179,-0.87302 -0.42179,-1.38658 0,-0.32738 0.0432,-0.6644 0.1298,-1.01105 0.0974,-0.34663 0.24874,-0.68365 0.45423,-1.01105 0.21629,-0.33379 0.49749,-0.64513 0.84357,-0.93402 0.35689,-0.29527 0.80031,-0.55205 1.33025,-0.77032 0.52994,-0.21824 1.1518,-0.39157 1.8656,-0.51997 0.7246,-0.12837 1.55735,-0.19256 2.49827,-0.19258 0.98416,0.0129 1.83854,0.0899 2.56317,0.2311 0.72459,0.14124 1.34104,0.32098 1.84937,0.53923 0.50829,0.21185 0.91926,0.44937 1.23291,0.71254 0.31362,0.26321 0.55696,0.52961 0.73001,0.79921 0.17303,0.26321 0.292,0.51356 0.3569,0.75107 0.0649,0.23752 0.0974,0.43652 0.0974,0.597" /><path
   inkscape:connector-curvature="0"
   id="path3426"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 280.67253,165.53858 c -2e-5,0.6933 -0.0811,1.37053 -0.24334,2.03172 -0.15142,0.65478 -0.37313,1.27746 -0.66512,1.86803 -0.28121,0.59059 -0.6327,1.13302 -1.05447,1.62731 -0.4218,0.4943 -0.89766,0.92118 -1.42758,1.28066 -0.51914,0.35307 -1.09774,0.6291 -1.73582,0.8281 -0.62729,0.20542 -1.29781,0.30813 -2.0116,0.30813 -0.72461,0 -1.38973,-0.0995 -1.99537,-0.2985 -0.59484,-0.199 -1.13559,-0.47825 -1.62225,-0.83773 -0.47587,-0.35948 -0.89766,-0.78636 -1.26537,-1.28066 -0.3569,-0.49429 -0.65972,-1.03672 -0.90847,-1.62731 -0.23793,-0.59057 -0.42177,-1.21325 -0.55156,-1.86803 -0.11889,-0.66119 -0.17845,-1.33842 -0.17845,-2.03172 0,-1.02709 0.13519,-1.96753 0.40557,-2.82131 0.27037,-0.86018 0.68675,-1.59841 1.24914,-2.21468 0.56237,-0.61625 1.27076,-1.09449 2.12516,-1.43473 0.86519,-0.34021 1.88721,-0.51032 3.06605,-0.51034 1.24372,2e-5 2.29819,0.17013 3.1634,0.51034 0.86519,0.34024 1.56817,0.81848 2.10893,1.43473 0.54074,0.61627 0.93008,1.3545 1.16803,2.21468 0.24873,0.85378 0.3731,1.79422 0.37312,2.82131 m -3.01739,0.077 c -2e-5,-0.85377 -0.0704,-1.63693 -0.2109,-2.34949 -0.1298,-0.71254 -0.34609,-1.32238 -0.6489,-1.82952 -0.30283,-0.51353 -0.69759,-0.91153 -1.18425,-1.194 -0.47587,-0.28244 -1.05988,-0.42366 -1.75204,-0.42367 -0.6489,1e-5 -1.21669,0.14123 -1.70337,0.42367 -0.47586,0.28247 -0.87061,0.68047 -1.18424,1.194 -0.31364,0.50714 -0.54616,1.11698 -0.69757,1.82952 -0.15141,0.71256 -0.22712,1.49572 -0.22712,2.34949 0,0.86661 0.0757,1.69792 0.22712,2.49392 0.15141,0.796 0.37852,1.50213 0.68135,2.11838 0.30282,0.60985 0.68133,1.09771 1.13558,1.46362 0.45422,0.3659 0.97875,0.54885 1.57358,0.54885 0.59482,0 1.13557,-0.18295 1.62227,-0.54885 0.49747,-0.36591 0.91925,-0.85377 1.26534,-1.46362 0.3569,-0.61625 0.62727,-1.32238 0.81114,-2.11838 0.19466,-0.796 0.29199,-1.62731 0.29201,-2.49392" /><path
   inkscape:connector-curvature="0"
   id="path3428"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 293.62954,159.23156 0,1.31918 -8.72774,0 0,5.85445 7.0406,0 0,1.4251 -7.1866,0 0,5.02635 -2.57938,0 0,-13.62508 11.45312,0" /><path
   inkscape:connector-curvature="0"
   id="path3430"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 304.63982,159.1449 -0.22711,1.34806 -5.09389,0 0,12.32517 -2.15759,0 0,-12.32517 -3.97453,0 0,-1.38658 11.45312,0.0385" /><path
   inkscape:connector-curvature="0"
   id="path3432"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 321.47402,158.83677 -2.62806,13.98136 -3.52029,0 -2.53072,-10.49565 -1.97916,10.45713 -3.89341,0 -2.75783,-13.71175 3.29317,0 1.46004,12.07481 2.28738,-11.32374 3.09851,0 2.67672,10.98673 1.13558,-11.96889 3.35807,0" /><path
   inkscape:connector-curvature="0"
   id="path3434"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 332.12742,173.04923 -0.7949,-2.58059 c -0.51914,-0.0129 -1.03285,-0.0225 -1.54114,-0.0289 -0.50832,-0.006 -1.02203,-0.01 -1.54115,-0.01 -0.55157,0 -1.10855,0.003 -1.67093,0.01 -0.56237,0.006 -1.12476,0.016 -1.68714,0.0289 -0.1406,0.43652 -0.27578,0.86662 -0.40557,1.29029 -0.11889,0.42368 -0.23793,0.84736 -0.35689,1.27104 l -3.03361,0.0193 c 0.47585,-1.13623 0.91927,-2.28209 1.33025,-3.43757 0.42177,-1.15548 0.82734,-2.31418 1.21668,-3.47609 0.38935,-1.16189 0.77328,-2.32379 1.15181,-3.4857 0.37851,-1.16189 0.76246,-2.31417 1.1518,-3.45683 l 4.18542,-0.0481 c 0.77867,2.3174 1.5952,4.64441 2.44961,6.98105 0.86518,2.33665 1.80069,4.64441 2.80649,6.92328 l -3.26073,0 M 328.1529,160.907 c -0.51913,1.35449 -1.01122,2.7154 -1.47626,4.08272 -0.46506,1.3609 -0.91928,2.72823 -1.36269,4.10196 0.47586,0.0129 0.94631,0.016 1.41136,0.01 0.46504,-0.006 0.9409,-0.01 1.42759,-0.01 0.46504,1e-5 0.91927,0.003 1.3627,0.01 0.4434,0.006 0.89223,0.003 1.34647,-0.01 -0.43262,-1.38015 -0.87062,-2.75069 -1.31404,-4.1116 -0.44341,-1.36089 -0.90847,-2.71859 -1.39513,-4.07308" /><path
   inkscape:connector-curvature="0"
   id="path3436"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 343.4946,173.02997 -2.75784,-4.67009 c -0.54076,0.0385 -1.06528,0.0578 -1.57359,0.0578 -0.12979,10e-6 -0.25957,10e-6 -0.38934,0 -0.1298,10e-6 -0.26497,-0.006 -0.40556,-0.0193 -0.0649,0.7639 -0.11903,1.5246 -0.16223,2.28208 -0.0324,0.75106 -0.0649,1.50855 -0.0973,2.27245 l -2.43339,0 c 0.0649,-1.33522 0.11902,-2.66403 0.16223,-3.98641 0.0541,-1.32881 0.0811,-2.66725 0.0811,-4.01532 0,-0.97573 -0.0162,-1.94184 -0.0487,-2.89834 -0.0324,-0.96289 -0.0757,-1.93221 -0.1298,-2.90796 0.51912,-0.12196 1.06528,-0.21825 1.63847,-0.28887 0.5732,-0.0771 1.12476,-0.1348 1.6547,-0.17333 0.54076,-0.0385 1.03825,-0.0609 1.49249,-0.0674 0.45421,-0.0129 0.82193,-0.0193 1.10312,-0.0193 1.02742,2e-5 2.00078,0.0835 2.92006,0.25036 0.93009,0.16691 1.74121,0.44295 2.43339,0.82809 0.69215,0.37876 1.23831,0.87626 1.63848,1.49251 0.41095,0.60984 0.61644,1.3577 0.61645,2.24356 -0.0541,0.59059 -0.26498,1.13303 -0.63268,1.62731 -0.36771,0.48788 -0.84899,0.9276 -1.4438,1.31918 -0.59484,0.38517 -1.27078,0.71897 -2.02783,1.00142 -0.74625,0.28245 -1.52492,0.51034 -2.33604,0.68366 0.59481,0.81526 1.23831,1.62088 1.93049,2.41688 0.69215,0.79601 1.43297,1.59522 2.22248,2.39763 l -3.45539,0.17333 m -4.29899,-13.07624 c -0.16223,1.23253 -0.30282,2.45863 -0.42178,3.6783 -0.11903,1.21968 -0.23254,2.43936 -0.34068,3.65903 l 0.0324,0 c 1.18965,10e-6 2.19544,-0.0963 3.0174,-0.28887 0.83274,-0.19258 1.51949,-0.4333 2.06026,-0.72218 0.55155,-0.28886 0.97875,-0.6002 1.28158,-0.93402 0.30281,-0.34021 0.52452,-0.65797 0.66513,-0.95327 0.1514,-0.29528 0.24332,-0.54243 0.27578,-0.74144 0.0324,-0.19898 0.0487,-0.3049 0.0487,-0.31775 -10e-6,-0.0706 -0.0104,-0.20541 -0.0324,-0.40442 -0.0217,-0.19899 -0.0811,-0.42688 -0.17846,-0.68366 -0.0974,-0.26319 -0.24875,-0.536 -0.45423,-0.81847 -0.19469,-0.28244 -0.47047,-0.53921 -0.82735,-0.77032 -0.3569,-0.2375 -0.80573,-0.4333 -1.34647,-0.58738 -0.54077,-0.15404 -1.20048,-0.23108 -1.97915,-0.23109 -0.54076,1e-5 -1.141,0.0385 -1.80071,0.11554" /><path
   inkscape:connector-curvature="0"
   id="path3438"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 361.96727,159.2123 0,1.31918 -8.90619,0 0,5.87371 7.04059,0 0,1.4251 -7.13792,0 0,3.48571 8.6304,0 0,1.52138 -11.38823,0 0,-13.62508 11.76135,0" />

<g
   id="g4929"
   transform="translate(15.073769,0)"><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 387.49103,157.85416 c -2.46969,0 -4.46755,1.18585 -4.46755,2.65176 0,1.46592 1.99786,2.65176 4.46755,2.65176 2.46972,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65176 -4.46756,-2.65176 z"
     id="path5045"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 399.58122,157.85416 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
     id="path5047"
     inkscape:connector-curvature="0" /><path
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 411.6714,157.85416 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46757,-1.18584 4.46757,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46757,-2.65176 z"
     id="path5049"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 423.76158,157.85416 c -2.46971,0 -4.4928,1.18585 -4.4928,2.65176 0,1.46592 2.02309,2.65176 4.4928,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65176 -4.46756,-2.65176 z"
     id="path5051"
     inkscape:connector-curvature="0" /><path
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 435.82652,157.85416 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
     id="path5053"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 447.91669,157.85416 c -2.46969,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99787,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
     id="path5055"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 460.00688,157.85416 c -2.46971,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
     id="path5057"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 472.09705,157.85416 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46757,-1.18584 4.46757,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46757,-2.65176 z"
     id="path5059"
     inkscape:connector-curvature="0" /><path
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 484.162,157.85416 c -2.46971,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.4697,0 4.4928,-1.18584 4.4928,-2.65176 0,-1.46591 -2.0231,-2.65176 -4.4928,-2.65176 z"
     id="path5061"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 496.25217,157.85416 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
     id="path5063"
     inkscape:connector-curvature="0" /><path
     id="path5954"
     d="m 396.9643,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99785,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5956"
     d="m 409.05448,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5958"
     d="m 421.14465,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46972,0 4.46758,-1.18584 4.46758,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46758,-2.65176 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5960"
     d="m 433.23484,147.45898 c -2.46972,0 -4.4928,1.18584 -4.4928,2.65176 0,1.46591 2.02309,2.65175 4.4928,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5962"
     d="m 445.29977,147.45898 c -2.46969,0 -4.46755,1.18584 -4.46755,2.65176 0,1.46591 1.99786,2.65175 4.46755,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5964"
     d="m 457.38996,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5966"
     d="m 469.48014,147.45898 c -2.46972,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.46969,0 4.46755,-1.18584 4.46755,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46755,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5968"
     d="m 481.57031,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46971,0 4.46757,-1.18584 4.46757,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46757,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5970"
     d="m 493.63526,147.45898 c -2.46972,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.4697,0 4.4928,-1.18584 4.4928,-2.65175 0,-1.46592 -2.0231,-2.65176 -4.4928,-2.65176 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path5972"
     d="m 505.72542,147.45898 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46971,0 4.46757,-1.18584 4.46757,-2.65175 0,-1.46592 -1.99785,-2.65176 -4.46757,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 406.43756,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46756,-2.65175 z"
     id="path5986"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 418.52773,137.19351 c -2.46969,0 -4.46755,1.18584 -4.46755,2.65175 0,1.46592 1.99786,2.65176 4.46755,2.65176 2.46972,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65175 -4.46756,-2.65175 z"
     id="path5988"
     inkscape:connector-curvature="0" /><path
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 430.61792,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46757,-1.18584 4.46757,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46757,-2.65175 z"
     id="path5990"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 442.7081,137.19351 c -2.4697,0 -4.4928,1.18584 -4.4928,2.65175 0,1.46592 2.0231,2.65176 4.4928,2.65176 2.46971,0 4.46755,-1.18584 4.46755,-2.65176 0,-1.46591 -1.99785,-2.65175 -4.46755,-2.65175 z"
     id="path5992"
     inkscape:connector-curvature="0" /><path
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 454.77304,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46756,-2.65175 z"
     id="path5994"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 466.86322,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46756,-2.65175 z"
     id="path5996"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 478.95339,137.19351 c -2.46971,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46756,-2.65175 z"
     id="path5998"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 491.04356,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46972,0 4.46758,-1.18584 4.46758,-2.65176 0,-1.46591 -1.99786,-2.65175 -4.46758,-2.65175 z"
     id="path6000"
     inkscape:connector-curvature="0" /><path
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 503.10851,137.19351 c -2.4697,0 -4.46755,1.18584 -4.46755,2.65175 0,1.46592 1.99785,2.65176 4.46755,2.65176 2.4697,0 4.4928,-1.18584 4.4928,-2.65176 0,-1.46591 -2.0231,-2.65175 -4.4928,-2.65175 z"
     id="path6002"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 515.19869,137.19351 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65175 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65175 -4.46756,-2.65175 z"
     id="path6004"
     inkscape:connector-curvature="0" /><path
     id="path6016"
     d="m 415.91083,126.92803 c -2.46971,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path6018"
     d="m 428.001,126.92803 c -2.46969,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99787,2.65175 4.46756,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path6020"
     d="m 440.09118,126.92803 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.46971,0 4.46757,-1.18584 4.46757,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46757,-2.65176 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path6022"
     d="m 452.18136,126.92803 c -2.4697,0 -4.4928,1.18584 -4.4928,2.65176 0,1.46591 2.0231,2.65175 4.4928,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99785,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path6024"
     d="m 464.2463,126.92803 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path6026"
     d="m 476.33647,126.92803 c -2.46969,0 -4.46755,1.18584 -4.46755,2.65176 0,1.46591 1.99786,2.65175 4.46755,2.65175 2.4697,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path6028"
     d="m 488.42666,126.92803 c -2.46971,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.46971,0 4.46756,-1.18584 4.46756,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46756,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path6030"
     d="m 500.51683,126.92803 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99786,2.65175 4.46756,2.65175 2.4697,0 4.46757,-1.18584 4.46757,-2.65175 0,-1.46592 -1.99786,-2.65176 -4.46757,-2.65176 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path6032"
     d="m 512.58177,126.92803 c -2.4697,0 -4.46756,1.18584 -4.46756,2.65176 0,1.46591 1.99785,2.65175 4.46756,2.65175 2.4697,0 4.4928,-1.18584 4.4928,-2.65175 0,-1.46592 -2.0231,-2.65176 -4.4928,-2.65176 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><g
     transform="translate(1.1591,-0.85910067)"
     id="g4917"><path
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 376.78408,169.03811 c -2.46969,0 -4.46755,1.18585 -4.46755,2.65176 0,1.46592 1.99786,2.65176 4.46755,2.65176 2.46972,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65176 -4.46756,-2.65176 z"
       id="path4897"
       inkscape:connector-curvature="0" /><path
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 388.87427,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
       id="path4899"
       inkscape:connector-curvature="0" /><path
       style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 400.96445,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46757,-1.18584 4.46757,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46757,-2.65176 z"
       id="path4901"
       inkscape:connector-curvature="0" /><path
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 413.05463,169.03811 c -2.46971,0 -4.4928,1.18585 -4.4928,2.65176 0,1.46592 2.02309,2.65176 4.4928,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99785,-2.65176 -4.46756,-2.65176 z"
       id="path4903"
       inkscape:connector-curvature="0" /><path
       style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 425.11957,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
       id="path4905"
       inkscape:connector-curvature="0" /><path
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 437.20974,169.03811 c -2.46969,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99787,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
       id="path4907"
       inkscape:connector-curvature="0" /><path
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 449.29993,169.03811 c -2.46971,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.4697,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
       id="path4909"
       inkscape:connector-curvature="0" /><path
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 461.3901,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46757,-1.18584 4.46757,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46757,-2.65176 z"
       id="path4911"
       inkscape:connector-curvature="0" /><path
       style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 473.45505,169.03811 c -2.46971,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99785,2.65176 4.46756,2.65176 2.4697,0 4.4928,-1.18584 4.4928,-2.65176 0,-1.46591 -2.0231,-2.65176 -4.4928,-2.65176 z"
       id="path4913"
       inkscape:connector-curvature="0" /><path
       style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
       d="m 485.54522,169.03811 c -2.4697,0 -4.46756,1.18585 -4.46756,2.65176 0,1.46592 1.99786,2.65176 4.46756,2.65176 2.46971,0 4.46756,-1.18584 4.46756,-2.65176 0,-1.46591 -1.99786,-2.65176 -4.46756,-2.65176 z"
       id="path4915"
       inkscape:connector-curvature="0" /></g></g><rect
   y="153.92546"
   x="-678.02777"
   height="96.396141"
   width="225.13371"
   id="rect5097"
   style="fill:url(#linearGradient4218);fill-opacity:1;stroke:none"
   transform="matrix(-1,0,-0.67470157,0.73809064,0,0)" /><g
   id="g5852"
   transform="matrix(0.59843688,0,0,0.35143336,-17.575647,-0.07027742)"><rect
     y="506.99512"
     x="0"
     height="12.072122"
     width="991.79999"
     id="rect5567"
     style="fill:#999999;fill-opacity:1;stroke:none" /><rect
     y="519.06726"
     x="0"
     height="12.072122"
     width="991.79999"
     id="rect5571"
     style="fill:#afe478;fill-opacity:1;stroke:none"
     inkscape:transform-center-y="-22.18083" /></g><path
   inkscape:connector-curvature="0"
   id="path3476"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 2.766227,205.75006 c -3.8e-6,0.11555 -0.037857,0.22468 -0.1135578,0.32739 -0.075709,0.10271 -0.1838591,0.19258 -0.3244511,0.26961 -0.1297838,0.077 -0.2811941,0.13802 -0.4542316,0.18295 -0.1730434,0.0449 -0.3568989,0.0674 -0.5515669,0.0674 -0.4001585,0 -0.74083188,-0.0803 -1.02202123,-0.24073 -0.27037705,-0.16691 -0.4055649,-0.36911 -0.40556394,-0.60663 -9.6e-7,-0.11555 0.03785164,-0.22146 0.1135579,-0.31776 0.07570412,-0.10271 0.17844689,-0.18937 0.3082286,-0.25998 0.129779,-0.077 0.28118933,-0.13802 0.45423162,-0.18295 0.17303861,-0.0449 0.35689405,-0.0674 0.55156705,-0.0674 0.194668,0 0.3785235,0.0225 0.5515669,0.0674 0.1730375,0.0449 0.3244478,0.10591 0.4542316,0.18295 0.140592,0.0707 0.2487422,0.15727 0.3244511,0.25998 0.075702,0.0963 0.1135539,0.20221 0.1135578,0.31776" /><path
   inkscape:connector-curvature="0"
   id="path3478"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 7.503214,205.75006 c -3.8e-6,0.11555 -0.037857,0.22468 -0.1135578,0.32739 -0.075709,0.10271 -0.1838592,0.19258 -0.3244512,0.26961 -0.1297838,0.077 -0.281194,0.13802 -0.4542316,0.18295 -0.1730433,0.0449 -0.3568988,0.0674 -0.5515669,0.0674 -0.4001584,0 -0.7408318,-0.0803 -1.0220212,-0.24073 -0.270377,-0.16691 -0.4055648,-0.36911 -0.4055639,-0.60663 -9e-7,-0.11555 0.037852,-0.22146 0.1135577,-0.31776 0.075705,-0.10271 0.1784469,-0.18937 0.3082287,-0.25998 0.1297786,-0.077 0.2811893,-0.13802 0.4542316,-0.18295 0.1730386,-0.0449 0.3568941,-0.0674 0.5515669,-0.0674 0.1946682,0 0.3785237,0.0225 0.551567,0.0674 0.1730376,0.0449 0.3244479,0.10591 0.4542316,0.18295 0.140592,0.0707 0.2487423,0.15727 0.3244512,0.25998 0.075702,0.0963 0.1135539,0.20221 0.1135578,0.31776" /><path
   inkscape:connector-curvature="0"
   id="path3480"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 12.240201,205.75006 c -4e-6,0.11555 -0.03786,0.22468 -0.113558,0.32739 -0.07571,0.10271 -0.183859,0.19258 -0.324451,0.26961 -0.129784,0.077 -0.281194,0.13802 -0.454231,0.18295 -0.173044,0.0449 -0.356899,0.0674 -0.551567,0.0674 -0.400159,0 -0.740832,-0.0803 -1.0220215,-0.24073 -0.2703771,-0.16691 -0.405565,-0.36911 -0.405564,-0.60663 -10e-7,-0.11555 0.037852,-0.22146 0.1135578,-0.31776 0.075705,-0.10271 0.1784469,-0.18937 0.3082286,-0.25998 0.1297786,-0.077 0.2811891,-0.13802 0.4542321,-0.18295 0.173038,-0.0449 0.356894,-0.0674 0.551567,-0.0674 0.194668,0 0.378523,0.0225 0.551566,0.0674 0.173038,0.0449 0.324448,0.10591 0.454232,0.18295 0.140592,0.0707 0.248742,0.15727 0.324451,0.25998 0.0757,0.0963 0.113554,0.20221 0.113558,0.31776" /><path
   inkscape:connector-curvature="0"
   id="path3482"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 18.82656,192.75087 -0.06489,3.19683 3.228288,0 0,1.22289 -3.260734,0 -0.227115,9.44608 -1.995374,0 -0.129786,-9.44608 -3.650075,0 0,-1.22289 3.650075,0 -0.03245,-3.29313 2.482051,0.0963" /><path
   inkscape:connector-curvature="0"
   id="path3484"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 31.842653,206.53964 c -0.08654,-0.97574 -0.173052,-1.84235 -0.259561,-2.59983 -0.07571,-0.76391 -0.146015,-1.40905 -0.210893,-1.93544 -0.07571,-0.61626 -0.151422,-1.15548 -0.227116,-1.61768 -0.09735,-0.77674 -0.26498,-1.3609 -0.5029,-1.75249 -0.237941,-0.39799 -0.54617,-0.59698 -0.924685,-0.59699 -0.356906,1e-5 -0.730024,0.13802 -1.119357,0.41404 -0.378534,0.27604 -0.75706,0.64194 -1.135579,1.09771 -0.378534,0.45578 -0.746244,0.97896 -1.103134,1.56953 -0.346087,0.58417 -0.66513,1.18759 -0.957131,1.81026 -0.281196,0.62268 -0.529941,1.23574 -0.746238,1.83915 -0.216305,0.60342 -0.37853,1.15227 -0.486677,1.64657 l -2.157599,0.0481 c -3e-6,-2.28529 -0.02704,-4.28492 -0.08111,-5.99889 -0.04326,-1.71396 -0.09192,-3.14226 -0.146002,-4.28492 -0.05407,-1.14263 -0.108148,-1.99962 -0.162226,-2.57095 -0.04326,-0.57131 -0.0703,-0.85698 -0.08111,-0.85699 l 2.79028,0.0771 0,8.03062 c 0.237927,-0.39158 0.470451,-0.73501 0.69757,-1.03031 0.227112,-0.29528 0.427189,-0.54243 0.600236,-0.74144 0.194664,-0.23109 0.383927,-0.43009 0.567788,-0.59699 0.324445,-0.30813 0.665118,-0.58416 1.022021,-0.82811 0.356889,-0.24392 0.719193,-0.44934 1.086913,-0.61625 0.378517,-0.17332 0.746228,-0.30492 1.103133,-0.39479 0.367702,-0.0899 0.724598,-0.1348 1.070689,-0.13481 0.681337,1e-5 1.23831,0.18938 1.670924,0.56811 0.432589,0.37233 0.751632,0.96612 0.95713,1.78137 0.173028,0.65478 0.324438,1.38017 0.454232,2.17617 0.118947,0.68046 0.227103,1.48287 0.324451,2.40725 0.09732,0.92439 0.156804,1.92902 0.178448,3.01389 l -2.22249,0.0771" /><path
   inkscape:connector-curvature="0"
   id="path3486"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 47.859919,201.2533 c -0.02164,0.64836 -0.05409,1.2935 -0.09734,1.93544 -0.02164,0.27604 -0.04327,0.5649 -0.06489,0.86661 -0.02164,0.30171 -0.04869,0.60663 -0.08111,0.91476 -0.02165,0.30171 -0.05409,0.60021 -0.09734,0.8955 -0.03246,0.29529 -0.0649,0.57132 -0.09734,0.8281 l -2.222491,-0.0385 c 0.02163,-0.18617 0.03784,-0.36912 0.04866,-0.54886 0.01077,-0.17975 0.01621,-0.35949 0.01622,-0.53923 -0.486689,0.30813 -1.000402,0.54886 -1.541144,0.72218 -0.540762,0.17332 -1.054475,0.30492 -1.541143,0.39479 -0.56239,0.10913 -1.119364,0.17974 -1.670923,0.21184 -0.118973,0.0129 -0.232531,0.0193 -0.340675,0.0193 -0.09734,0 -0.205491,0 -0.324451,0 -0.757057,0 -1.481664,-0.0642 -2.173822,-0.19259 -0.692166,-0.12196 -1.308623,-0.31133 -1.849372,-0.56811 -0.529938,-0.25677 -0.957132,-0.57774 -1.281582,-0.9629 -0.313636,-0.39158 -0.470454,-0.85056 -0.470454,-1.37695 0,-0.4622 0.151411,-0.8955 0.454232,-1.29992 0.313635,-0.41084 0.746235,-0.76711 1.297804,-1.06883 0.562379,-0.30812 1.238319,-0.55206 2.02782,-0.7318 0.789493,-0.17974 1.665511,-0.27603 2.628054,-0.28888 0.03244,1e-5 0.216295,0.006 0.551568,0.0193 0.335258,0.0129 0.740821,0.0546 1.216691,0.12518 0.486668,0.0642 1.00579,0.17012 1.557365,0.31776 0.562373,0.14123 1.081494,0.34023 1.557367,0.597 -1.3e-5,-0.28886 -0.01077,-0.59378 -0.03245,-0.91476 -0.02164,-0.32096 -0.07571,-0.63551 -0.162226,-0.94364 -0.07571,-0.31454 -0.20009,-0.61304 -0.373119,-0.89551 -0.173052,-0.28243 -0.410982,-0.52958 -0.713792,-0.74143 -0.292017,-0.21825 -0.665136,-0.38836 -1.119356,-0.51034 -0.454242,-0.12838 -1.005808,-0.19257 -1.654701,-0.19258 -0.508314,10e-6 -0.973361,0.0578 -1.39514,0.17333 -0.421793,0.11555 -0.794912,0.27283 -1.119357,0.47181 -0.324456,0.19901 -0.594832,0.43653 -0.811128,0.71256 -0.216305,0.26962 -0.378531,0.5617 -0.486677,0.87623 l -2.72539,-0.51996 c 0.129785,-0.3659 0.313635,-0.69008 0.551568,-0.97253 0.248743,-0.28245 0.524527,-0.52959 0.827349,-0.74144 0.313634,-0.21183 0.643493,-0.39157 0.989577,-0.53923 0.356892,-0.15405 0.708381,-0.28244 1.054465,-0.38516 0.811123,-0.2375 1.687141,-0.38194 2.628056,-0.4333 1.297795,1e-5 2.395521,0.11556 3.293178,0.34665 0.897637,0.2311 1.622244,0.57132 2.173824,1.02067 0.562368,0.44936 0.962524,1.00464 1.200468,1.66582 0.248732,0.66121 0.373105,1.42511 0.373119,2.29172 m -2.530718,2.67687 c -1.2e-5,-0.12839 0.0055,-0.25356 0.01622,-0.37554 0.01077,-0.12838 0.01621,-0.25035 0.01622,-0.3659 -0.573209,-0.34664 -1.140998,-0.60984 -1.703369,-0.78958 -0.551577,-0.17974 -1.054475,-0.31455 -1.508699,-0.40442 -0.51913,-0.1027 -1.022028,-0.16048 -1.508697,-0.17332 -0.670538,0 -1.249143,0.0578 -1.735813,0.17332 -0.475867,0.10913 -0.870616,0.25678 -1.184247,0.44294 -0.302825,0.18616 -0.529941,0.398 -0.681348,0.63551 -0.140598,0.23752 -0.210897,0.48466 -0.210893,0.74144 -4e-6,0.26319 0.08111,0.50071 0.243339,0.71254 0.162222,0.21185 0.389337,0.39159 0.681347,0.53923 0.302816,0.14765 0.66512,0.2632 1.086912,0.34665 0.432595,0.077 0.913864,0.11555 1.443807,0.11555 0.519115,-0.0257 1.059865,-0.0963 1.622256,-0.21184 0.486667,-0.10271 1.022012,-0.25999 1.606033,-0.47182 0.594817,-0.21826 1.200458,-0.52318 1.816926,-0.91476" /><path
   inkscape:connector-curvature="0"
   id="path3488"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 53.348745,192.75087 -0.06489,3.19683 3.228288,0 0,1.22289 -3.260734,0 -0.227115,9.44608 -1.995374,0 -0.129785,-9.44608 -3.650076,0 0,-1.22289 3.650076,0 -0.03245,-3.29313 2.482051,0.0963" /><path
   inkscape:connector-curvature="0"
   id="path3490"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 57.92911,197.6039 -1.573587,0 -0.697572,-5.0071 2.271159,0 0,5.0071" /><path
   inkscape:connector-curvature="0"
   id="path3492"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 68.073809,199.6934 c 0.02162,-0.0578 0.03244,-0.11555 0.03245,-0.17333 -1e-5,-0.0642 -1e-5,-0.13159 0,-0.2022 -1e-5,-0.32738 -0.08112,-0.6323 -0.243339,-0.91476 -0.151419,-0.28887 -0.373127,-0.53922 -0.665124,-0.75107 -0.2812,-0.21825 -0.627282,-0.38836 -1.038243,-0.51034 -0.41098,-0.12838 -0.865212,-0.19257 -1.362696,-0.19257 -0.573203,0 -1.092324,0.0449 -1.557365,0.1348 -0.465052,0.0835 -0.865208,0.20864 -1.200469,0.37553 -0.324456,0.16692 -0.578608,0.37554 -0.762461,0.62589 -0.183859,0.24394 -0.275787,0.5296 -0.275783,0.85699 -4e-6,0.18616 0.0757,0.37875 0.227115,0.57773 0.162222,0.19259 0.400154,0.37555 0.713794,0.54886 0.313631,0.17333 0.697565,0.3274 1.151801,0.4622 0.46504,0.13481 1.005792,0.23109 1.622256,0.28886 1.157201,0.11556 2.098108,0.28567 2.822724,0.51034 0.735413,0.21827 1.308609,0.46542 1.719593,0.74144 0.421773,0.27603 0.708371,0.5617 0.859795,0.85698 0.151398,0.2953 0.227103,0.57133 0.227116,0.8281 -1.3e-5,0.16049 -0.03246,0.34344 -0.09734,0.54886 -0.05409,0.20541 -0.162239,0.41726 -0.324451,0.63551 -0.162237,0.21827 -0.389354,0.43331 -0.681348,0.64514 -0.281202,0.20543 -0.648912,0.39159 -1.103133,0.55849 -0.454243,0.16048 -1.000401,0.29208 -1.638479,0.39479 -0.62728,0.10271 -1.373518,0.15407 -2.238713,0.15407 -0.08652,0 -0.281197,-0.006 -0.584012,-0.0193 -0.292012,-0.0129 -0.6435,-0.0546 -1.054467,-0.12518 -0.400161,-0.0706 -0.832761,-0.17653 -1.297804,-0.31776 -0.454235,-0.14122 -0.886836,-0.34022 -1.297804,-0.59699 -0.410973,-0.25678 -0.773278,-0.58096 -1.086911,-0.97254 -0.302823,-0.39158 -0.5029,-0.86982 -0.600236,-1.43473 l 2.6605,-0.0866 c 0.0757,0.37232 0.210889,0.68366 0.405564,0.93401 0.205481,0.25036 0.438005,0.45899 0.69757,0.62589 0.270371,0.16048 0.546154,0.28566 0.82735,0.37553 0.292,0.0899 0.562376,0.15728 0.811128,0.20221 0.259554,0.0385 0.475855,0.061 0.648903,0.0674 0.183849,0.006 0.291998,0.01 0.324451,0.01 0.454224,-0.006 0.865195,-0.0514 1.232915,-0.13481 0.378517,-0.0899 0.697561,-0.2022 0.957131,-0.33701 0.25955,-0.13481 0.459629,-0.28887 0.600234,-0.4622 0.140586,-0.17974 0.210883,-0.36269 0.210893,-0.54885 -10e-6,-0.16048 -0.04867,-0.31776 -0.146003,-0.47183 -0.09735,-0.15406 -0.281201,-0.29849 -0.551567,-0.4333 -0.25957,-0.14123 -0.621874,-0.26961 -1.086912,-0.38517 -0.454239,-0.11554 -1.043658,-0.21825 -1.768259,-0.30812 -1.168029,-0.1348 -2.130566,-0.3338 -2.887615,-0.59701 -0.74624,-0.2696 -1.341067,-0.56168 -1.784481,-0.87623 -0.443418,-0.32096 -0.751646,-0.64514 -0.924685,-0.97254 -0.173042,-0.32738 -0.259563,-0.62266 -0.259561,-0.88587 -2e-6,-0.39157 0.11356,-0.78957 0.340673,-1.194 0.227114,-0.41083 0.594826,-0.78315 1.103134,-1.11697 0.519119,-0.34021 1.195059,-0.61624 2.02782,-0.82809 0.832752,-0.21825 1.860181,-0.32738 3.082285,-0.32739 1.157201,0.0449 2.190037,0.20222 3.098509,0.47182 0.389331,0.11556 0.767857,0.26321 1.13558,0.44294 0.378513,0.17333 0.713779,0.38838 1.005798,0.64514 0.291993,0.25678 0.524516,0.55849 0.69757,0.90513 0.183842,0.34024 0.27577,0.73503 0.275784,1.18437 -1.4e-5,0.0963 -0.01077,0.19901 -0.03245,0.30813 -0.01077,0.10272 -0.02705,0.20863 -0.04866,0.31776 l -2.920061,-0.0578" /><path
   inkscape:connector-curvature="0"
   id="path3494"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 94.201463,200.63705 c -1.8e-5,0.48145 -0.03246,0.96932 -0.09734,1.46361 -0.05409,0.49429 -0.146021,0.97253 -0.275783,1.43473 -0.129798,0.46219 -0.302838,0.89549 -0.519122,1.29992 -0.216318,0.40442 -0.481286,0.76068 -0.794906,1.06882 -0.313652,0.3017 -0.686771,0.53922 -1.119356,0.71254 -0.432616,0.17333 -0.9247,0.25999 -1.476252,0.25999 -0.616471,0 -1.151816,-0.11555 -1.606035,-0.34665 -0.454243,-0.23109 -0.838176,-0.52318 -1.151801,-0.87624 -0.313646,-0.35307 -0.5678,-0.74143 -0.76246,-1.16511 -0.194681,-0.4301 -0.340683,-0.84414 -0.43801,-1.24215 -0.140604,0.44294 -0.319053,0.88267 -0.535344,1.31918 -0.216309,0.4301 -0.47587,0.81847 -0.778682,1.16511 -0.302829,0.34023 -0.654317,0.61626 -1.054467,0.8281 -0.400163,0.21184 -0.848987,0.31776 -1.346472,0.31776 -0.919283,0 -1.670927,-0.17974 -2.254935,-0.53923 -0.584015,-0.35948 -1.043655,-0.84093 -1.378918,-1.44435 -0.324452,-0.60984 -0.551569,-1.31275 -0.681348,-2.10876 -0.118973,-0.796 -0.178449,-1.63051 -0.178447,-2.50355 -2e-6,-0.25035 0.0055,-0.52959 0.01622,-0.83773 0.01077,-0.31454 0.02704,-0.63229 0.04866,-0.95327 0.02162,-0.32738 0.04326,-0.64514 0.06489,-0.95328 0.03245,-0.31453 0.06489,-0.59377 0.09734,-0.83772 l 3.22829,-0.077 c -0.09733,0.43011 -0.194676,0.89231 -0.292007,1.38659 -0.08652,0.48788 -0.162229,0.98538 -0.227115,1.4925 -0.0649,0.50714 -0.118973,1.00784 -0.162226,1.50213 -0.03245,0.4943 -0.04867,0.9597 -0.04866,1.39621 -4e-6,0.0834 0.01077,0.21826 0.03245,0.40442 0.03244,0.18616 0.0757,0.39801 0.129785,0.63551 0.06489,0.23111 0.140591,0.47183 0.227115,0.72219 0.08651,0.24393 0.189259,0.47182 0.308229,0.68366 0.129772,0.20542 0.275778,0.37553 0.438009,0.51034 0.16222,0.12838 0.346075,0.19257 0.551568,0.19257 0.227109,0 0.438002,-0.0995 0.632678,-0.2985 0.20548,-0.19899 0.394742,-0.4654 0.56779,-0.7992 0.173034,-0.33381 0.329851,-0.71576 0.470455,-1.14586 0.151403,-0.43652 0.28659,-0.88587 0.405563,-1.34807 0.11896,-0.46219 0.227108,-0.92438 0.324451,-1.38658 0.09732,-0.46218 0.17844,-0.88907 0.243339,-1.28066 0.06489,-0.39799 0.113547,-0.74142 0.146004,-1.0303 0.04325,-0.28887 0.07028,-0.49429 0.08111,-0.61627 l 2.579387,-0.077 c -0.02164,0.17333 -0.03786,0.37875 -0.04866,0.61626 -0.01077,0.23752 -0.02164,0.48146 -0.03245,0.7318 -1.2e-5,0.24394 -0.0055,0.48467 -0.01622,0.72218 -1.2e-5,0.2311 -1.2e-5,0.43332 0,0.60663 -1.2e-5,0.13481 0.01621,0.35628 0.04866,0.6644 0.03244,0.30172 0.0811,0.64195 0.146003,1.02068 0.06487,0.37233 0.156806,0.7607 0.275783,1.16511 0.11896,0.40443 0.259549,0.77354 0.421786,1.10734 0.162214,0.32739 0.356884,0.60021 0.584013,0.81847 0.227103,0.21184 0.486663,0.31776 0.778683,0.31776 0.194657,-0.0257 0.373105,-0.11875 0.535344,-0.27924 0.162212,-0.16048 0.302806,-0.35628 0.421787,-0.58737 0.118947,-0.23109 0.221694,-0.48145 0.308228,-0.75107 0.08651,-0.27603 0.156803,-0.53601 0.210893,-0.77995 0.05406,-0.25035 0.09191,-0.47182 0.11356,-0.6644 0.03242,-0.19258 0.04865,-0.32418 0.04866,-0.39479 -1.5e-5,-0.41084 -0.01624,-0.85056 -0.04866,-1.31918 -0.03246,-0.46861 -0.07572,-0.94364 -0.129785,-1.4251 -0.05409,-0.48144 -0.118986,-0.95648 -0.194671,-1.4251 -0.07572,-0.4686 -0.151425,-0.90511 -0.227115,-1.30955 l 2.98495,-0.11555 c 0.06487,0.30814 0.118947,0.65158 0.162226,1.03031 0.05406,0.37233 0.09732,0.75429 0.129785,1.14586 0.03242,0.38517 0.05946,0.76712 0.08111,1.14585 0.02161,0.37233 0.03242,0.71577 0.03245,1.03031" /><path
   inkscape:connector-curvature="0"
   id="path3496"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 105.5953,206.53964 c -0.0865,-0.97574 -0.17305,-1.84235 -0.25956,-2.59983 -0.0757,-0.76391 -0.14601,-1.40905 -0.21089,-1.93544 -0.0757,-0.61626 -0.15142,-1.15548 -0.22712,-1.61768 -0.0973,-0.77674 -0.26498,-1.3609 -0.5029,-1.75249 -0.23794,-0.39799 -0.54617,-0.59698 -0.92468,-0.59699 -0.35691,1e-5 -0.73003,0.13802 -1.11936,0.41404 -0.37853,0.27604 -0.75706,0.64194 -1.13558,1.09771 -0.37853,0.45578 -0.74624,0.97896 -1.10313,1.56953 -0.346089,0.58417 -0.665133,1.18759 -0.957133,1.81026 -0.281196,0.62268 -0.529941,1.23574 -0.746238,1.83915 -0.216304,0.60342 -0.37853,1.15227 -0.486676,1.64657 l -2.1576,0.0481 c -3e-6,-2.28529 -0.02704,-4.28492 -0.08111,-5.99889 -0.04326,-1.71396 -0.09194,-3.14226 -0.146002,-4.28492 -0.05407,-1.14263 -0.108148,-1.99962 -0.162226,-2.57095 -0.04326,-0.57131 -0.0703,-0.85698 -0.08111,-0.85699 l 2.790279,0.0771 0,8.03062 c 0.237927,-0.39158 0.470451,-0.73501 0.69757,-1.03031 0.227112,-0.29528 0.427189,-0.54243 0.600236,-0.74144 0.194665,-0.23109 0.383927,-0.43009 0.567789,-0.59699 0.324442,-0.30813 0.665122,-0.58416 1.022022,-0.82811 0.35689,-0.24392 0.71919,-0.44934 1.08691,-0.61625 0.37852,-0.17332 0.74623,-0.30492 1.10313,-0.39479 0.36771,-0.0899 0.7246,-0.1348 1.07069,-0.13481 0.68134,1e-5 1.23831,0.18938 1.67093,0.56811 0.43259,0.37233 0.75163,0.96612 0.95713,1.78137 0.17303,0.65478 0.32444,1.38017 0.45423,2.17617 0.11895,0.68046 0.2271,1.48287 0.32445,2.40725 0.0973,0.92439 0.1568,1.92902 0.17845,3.01389 l -2.22249,0.0771" /><path
   inkscape:connector-curvature="0"
   id="path3498"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 121.36923,196.55434 c -0.0649,0.44935 -0.1298,0.93723 -0.19467,1.46361 -0.0649,0.51997 -0.12439,1.05278 -0.17845,1.59842 -0.0433,0.54565 -0.0865,1.09451 -0.12979,1.64656 -0.0433,0.55207 -0.0811,1.08167 -0.11356,1.58879 -0.0865,1.194 -0.15683,2.39764 -0.21089,3.61089 -0.0541,0.66761 -0.22713,1.28387 -0.51912,1.84877 -0.2812,0.56491 -0.69218,1.05277 -1.23291,1.46362 -0.52995,0.41083 -1.18967,0.7318 -1.97916,0.9629 -0.7895,0.23751 -1.71419,0.35627 -2.77405,0.35627 -0.68136,-0.0129 -1.34648,-0.0642 -1.99538,-0.15406 -0.28119,-0.0385 -0.56779,-0.0899 -0.85979,-0.15406 -0.29201,-0.0578 -0.58402,-0.13161 -0.87602,-0.22147 -0.2812,-0.0835 -0.55698,-0.18617 -0.82735,-0.30813 -0.25957,-0.11555 -0.49209,-0.25036 -0.69757,-0.40442 l 1.26536,-1.08808 c 0.35689,0.24394 0.74082,0.43331 1.1518,0.56811 0.41097,0.13481 0.80031,0.23431 1.16802,0.2985 0.37852,0.0642 0.71379,0.10271 1.0058,0.11555 0.292,0.0193 0.49208,0.0289 0.60024,0.0289 0.70297,-1e-5 1.3032,-0.0835 1.8007,-0.25036 0.5083,-0.16049 0.93008,-0.38516 1.26536,-0.67403 0.33525,-0.28245 0.60022,-0.62268 0.79491,-1.02068 0.19465,-0.39158 0.34066,-0.81526 0.438,-1.27103 0.10814,-0.46219 0.17303,-0.94685 0.19467,-1.45398 0.0324,-0.51355 0.0487,-1.03031 0.0487,-1.55028 l 0,-0.11555 c -0.32446,0.59059 -0.68135,1.0913 -1.07068,1.50213 -0.37854,0.40442 -0.76247,0.74144 -1.1518,1.01105 -0.38935,0.26961 -0.76788,0.48146 -1.13558,0.63552 -0.36772,0.14764 -0.69758,0.25677 -0.98958,0.32738 -0.29201,0.0707 -0.54076,0.11234 -0.74624,0.12518 -0.19467,0.0193 -0.31364,0.0289 -0.35689,0.0289 -0.81114,0 -1.49248,-0.1348 -2.04405,-0.40442 -0.55157,-0.26319 -0.99498,-0.64514 -1.33025,-1.14585 -0.33526,-0.5007 -0.5786,-1.11054 -0.73001,-1.82951 -0.1406,-0.71897 -0.2109,-1.53102 -0.21089,-2.43615 -1e-5,-0.72538 0.0379,-1.49891 0.11356,-2.3206 0.0757,-0.82166 0.18385,-1.69791 0.32445,-2.62873 l 2.9525,0.13481 c -0.28119,1.13624 -0.48668,2.13124 -0.61645,2.985 -0.11898,0.84736 -0.17846,1.5888 -0.17845,2.22431 -1e-5,0.64194 0.0433,1.18438 0.12978,1.62731 0.0973,0.44294 0.2163,0.81205 0.3569,1.10734 0.14059,0.29529 0.292,0.52639 0.45423,0.69328 0.17304,0.16049 0.33526,0.28246 0.48668,0.36591 0.1514,0.077 0.28659,0.12518 0.40556,0.14443 0.11896,0.0129 0.19467,0.0193 0.22712,0.0193 0.41096,0 0.8003,-0.11233 1.16802,-0.33701 0.37852,-0.22468 0.73001,-0.52318 1.05447,-0.8955 0.33525,-0.37233 0.64348,-0.79921 0.92468,-1.28067 0.292,-0.48786 0.55697,-0.99499 0.79491,-1.52138 0.23792,-0.52638 0.44881,-1.05277 0.63268,-1.57916 0.19466,-0.52638 0.35688,-1.01746 0.48667,-1.47325 0.12978,-0.45576 0.23252,-0.85376 0.30823,-1.194 0.0757,-0.34664 0.12436,-0.6034 0.14601,-0.77032 l 2.4496,0" /><path
   inkscape:connector-curvature="0"
   id="path3500"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 135.23263,206.50112 -7.10548,0 0.0325,-1.50212 c 0.34608,0.0129 0.69216,0.0225 1.03824,0.0289 0.34608,0.006 0.68675,0.01 1.02202,0.01 0.0541,-1.29029 0.0919,-2.58058 0.11357,-3.87087 0.0325,-1.29029 0.0487,-2.5902 0.0487,-3.89976 0,-0.51354 0,-1.02709 0,-1.54065 0,-0.51353 -0.0104,-1.03029 -0.0325,-1.55027 l -2.06027,0.17332 -0.16222,-1.73323 c 0.6489,0.0129 1.2978,0.0193 1.9467,0.0193 0.6489,2e-5 1.2978,2e-5 1.9467,0 0.63809,2e-5 1.27077,2e-5 1.89804,0 0.63809,2e-5 1.27618,-0.006 1.91426,-0.0193 l -0.0325,1.26141 c -0.36771,0.0129 -0.73543,0.0289 -1.10314,0.0482 -0.3569,0.0129 -0.7192,0.0289 -1.0869,0.0481 -0.23795,1.85521 -0.45424,3.70077 -0.64891,5.5367 -0.18386,1.82952 -0.34608,3.67188 -0.48667,5.52706 0.47585,0 0.9355,-0.006 1.37891,-0.0193 0.45423,-0.0193 0.91387,-0.0449 1.37892,-0.077 l 0,1.5599" /><path
   inkscape:connector-curvature="0"
   id="path3502"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 139.54782,197.6039 -1.57358,0 -0.69757,-5.0071 2.27115,0 0,5.0071" /><path
   inkscape:connector-curvature="0"
   id="path3504"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 156.40307,206.37595 c 0.12979,-0.51997 0.23791,-1.02389 0.32445,-1.51176 0.0865,-0.48787 0.15138,-0.94685 0.19466,-1.37696 0.0432,-0.43009 0.0703,-0.82166 0.0811,-1.17474 0.0215,-0.35948 0.0325,-0.6676 0.0325,-0.92439 -1e-5,-0.95005 -0.11902,-1.66902 -0.35689,-2.1569 -0.23795,-0.49427 -0.61648,-0.74142 -1.13558,-0.74143 -0.40016,1e-5 -0.85441,0.19259 -1.3627,0.57774 -0.4975,0.37875 -0.99499,0.96933 -1.49247,1.77174 0.0217,0.18617 0.0379,0.38517 0.0487,0.59701 0.0104,0.20542 0.0162,0.42688 0.0162,0.6644 -1e-5,0.61626 -0.0379,1.28708 -0.11357,2.01246 -0.0757,0.7254 -0.21631,1.49893 -0.42178,2.32061 l -2.38471,0.0866 c 0.15139,-0.90512 0.24873,-1.71717 0.292,-2.43614 0.0432,-0.71896 0.0649,-1.34165 0.0649,-1.86803 -1e-5,-0.74464 -0.0325,-1.36732 -0.0974,-1.86804 -0.0649,-0.5007 -0.15142,-0.90191 -0.25955,-1.20363 -0.0974,-0.30812 -0.21091,-0.52638 -0.34069,-0.65477 -0.12979,-0.12838 -0.25957,-0.19257 -0.38934,-0.19258 -0.23793,1e-5 -0.51912,0.14765 -0.84357,0.44293 -0.31364,0.2953 -0.69757,0.73182 -1.1518,1.30955 -0.45424,0.58417 -0.80032,1.14587 -1.03824,1.68508 -0.23794,0.53923 -0.42721,1.06883 -0.56779,1.58879 -0.1298,0.51998 -0.23253,1.03352 -0.30823,1.54065 -0.0757,0.50713 -0.16764,1.01747 -0.27578,1.53101 l -2.2225,0.0385 c 0.0217,-0.4622 0.0325,-0.91798 0.0325,-1.36733 0,-0.44936 0,-0.88587 0,-1.30955 0,-1.02067 -0.0162,-1.95469 -0.0487,-2.80205 -0.0324,-0.84735 -0.0649,-1.58236 -0.0974,-2.20505 -0.0432,-0.72538 -0.0866,-1.37694 -0.1298,-1.95469 l 2.9525,0.077 0,3.10054 c 0.0866,-0.17973 0.20008,-0.38515 0.34067,-0.61625 0.1406,-0.23751 0.30282,-0.47824 0.48668,-0.72218 0.18386,-0.25035 0.39474,-0.49428 0.63269,-0.7318 0.24873,-0.24393 0.51911,-0.45898 0.81112,-0.64515 0.29201,-0.19257 0.61105,-0.34663 0.95713,-0.4622 0.34608,-0.11553 0.7246,-0.1733 1.13558,-0.17332 0.57319,2e-5 1.09771,0.17976 1.57359,0.53923 0.48667,0.35307 0.83816,0.89551 1.05447,1.6273 0.40014,-0.44934 0.80571,-0.7992 1.21669,-1.04956 0.41095,-0.25035 0.78408,-0.43329 1.11935,-0.54886 0.34607,-0.12196 0.63267,-0.19578 0.85979,-0.22146 0.22711,-0.0257 0.36771,-0.0385 0.4218,-0.0385 0.4434,1e-5 0.87059,0.061 1.28158,0.18296 0.41096,0.12197 0.77325,0.35628 1.08691,0.70291 0.32443,0.34024 0.57859,0.81527 0.76246,1.4251 0.19466,0.60985 0.29199,1.39943 0.292,2.36875 -10e-6,0.63552 -0.0432,1.35128 -0.12979,2.14727 -0.0866,0.78958 -0.22174,1.68188 -0.40557,2.67688 l -2.49828,-0.0578" /><path
   inkscape:connector-curvature="0"
   id="path3506"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 179.93511,201.2533 c -0.0217,0.64836 -0.0541,1.2935 -0.0974,1.93544 -0.0217,0.27604 -0.0432,0.5649 -0.0649,0.86661 -0.0217,0.30171 -0.0487,0.60663 -0.0811,0.91476 -0.0217,0.30171 -0.0541,0.60021 -0.0974,0.8955 -0.0325,0.29529 -0.0649,0.57132 -0.0974,0.8281 l -2.2225,-0.0385 c 0.0217,-0.18617 0.0379,-0.36912 0.0487,-0.54886 0.0104,-0.17975 0.0162,-0.35949 0.0162,-0.53923 -0.48669,0.30813 -1.0004,0.54886 -1.54114,0.72218 -0.54077,0.17332 -1.05448,0.30492 -1.54115,0.39479 -0.56238,0.10913 -1.11936,0.17974 -1.67093,0.21184 -0.11902,0.0129 -0.23252,0.0193 -0.34066,0.0193 -0.0974,0 -0.2055,0 -0.32446,0 -0.75706,0 -1.48166,-0.0642 -2.17382,-0.19259 -0.69216,-0.12196 -1.30862,-0.31133 -1.84937,-0.56811 -0.52994,-0.25677 -0.95714,-0.57774 -1.28158,-0.9629 -0.31364,-0.39158 -0.47045,-0.85056 -0.47045,-1.37695 0,-0.4622 0.15141,-0.8955 0.45423,-1.29992 0.31363,-0.41084 0.74623,-0.76711 1.2978,-1.06883 0.56238,-0.30812 1.23832,-0.55206 2.02782,-0.7318 0.78949,-0.17974 1.66551,-0.27603 2.62806,-0.28888 0.0325,1e-5 0.21629,0.006 0.55156,0.0193 0.33526,0.0129 0.74082,0.0546 1.21669,0.12518 0.48667,0.0642 1.00579,0.17012 1.55737,0.31776 0.56238,0.14123 1.08149,0.34023 1.55737,0.597 -1e-5,-0.28886 -0.0104,-0.59378 -0.0325,-0.91476 -0.0217,-0.32096 -0.0757,-0.63551 -0.16222,-0.94364 -0.0757,-0.31454 -0.2001,-0.61304 -0.37312,-0.89551 -0.17306,-0.28243 -0.41099,-0.52958 -0.7138,-0.74143 -0.29202,-0.21825 -0.66514,-0.38836 -1.11935,-0.51034 -0.45424,-0.12838 -1.00581,-0.19257 -1.65471,-0.19258 -0.50831,10e-6 -0.97335,0.0578 -1.39513,0.17333 -0.42179,0.11555 -0.79491,0.27283 -1.11937,0.47181 -0.32445,0.19901 -0.59482,0.43653 -0.81112,0.71256 -0.21631,0.26962 -0.37853,0.5617 -0.48668,0.87623 l -2.72539,-0.51996 c 0.1298,-0.3659 0.31364,-0.69008 0.55158,-0.97253 0.24874,-0.28245 0.52452,-0.52959 0.82734,-0.74144 0.31363,-0.21183 0.64349,-0.39157 0.98958,-0.53923 0.35689,-0.15405 0.70837,-0.28244 1.05447,-0.38516 0.81112,-0.2375 1.68713,-0.38194 2.62805,-0.4333 1.2978,1e-5 2.39552,0.11556 3.29318,0.34665 0.89763,0.2311 1.62224,0.57132 2.17382,1.02067 0.56236,0.44936 0.96252,1.00464 1.20046,1.66582 0.24874,0.66121 0.37311,1.42511 0.37312,2.29172 m -2.53071,2.67687 c -10e-6,-0.12839 0.005,-0.25356 0.0162,-0.37554 0.0104,-0.12838 0.0162,-0.25035 0.0162,-0.3659 -0.57322,-0.34664 -1.141,-0.60984 -1.70338,-0.78958 -0.55158,-0.17974 -1.05447,-0.31455 -1.5087,-0.40442 -0.51912,-0.1027 -1.02203,-0.16048 -1.50869,-0.17332 -0.67054,0 -1.24914,0.0578 -1.73582,0.17332 -0.47586,0.10913 -0.8706,0.25678 -1.18423,0.44294 -0.30284,0.18616 -0.52996,0.398 -0.68135,0.63551 -0.1406,0.23752 -0.2109,0.48466 -0.2109,0.74144 0,0.26319 0.0811,0.50071 0.24333,0.71254 0.16222,0.21185 0.38935,0.39159 0.68135,0.53923 0.30282,0.14765 0.66513,0.2632 1.08692,0.34665 0.43259,0.077 0.91385,0.11555 1.44381,0.11555 0.51911,-0.0257 1.05986,-0.0963 1.62225,-0.21184 0.48667,-0.10271 1.02201,-0.25999 1.60603,-0.47182 0.59482,-0.21826 1.20047,-0.52318 1.81693,-0.91476" /><path
   inkscape:connector-curvature="0"
   id="path3508"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 191.34518,206.69371 c -0.0866,-0.97574 -0.17305,-1.85199 -0.25956,-2.62873 -0.0757,-0.78316 -0.14601,-1.45077 -0.2109,-2.00284 -0.0757,-0.64193 -0.15142,-1.21325 -0.22711,-1.71397 -0.0866,-0.77673 -0.25417,-1.36089 -0.5029,-1.75248 -0.23794,-0.39799 -0.54618,-0.597 -0.92468,-0.597 -0.37854,0 -0.76247,0.14123 -1.1518,0.42368 -0.38936,0.28245 -0.77329,0.65799 -1.1518,1.12659 -0.37855,0.46862 -0.74084,1.00464 -1.08692,1.60805 -0.33527,0.59701 -0.64891,1.21327 -0.94091,1.84878 -0.28119,0.63551 -0.52994,1.26461 -0.74623,1.88729 -0.2055,0.62267 -0.36232,1.18437 -0.47045,1.68508 l -2.2225,0.0385 c 0.0649,-1.06561 0.0974,-2.07666 0.0974,-3.03314 0,-1.00142 -0.027,-1.91618 -0.0811,-2.74428 -0.0541,-0.83451 -0.11358,-1.55347 -0.17845,-2.1569 -0.0757,-0.70612 -0.15682,-1.34164 -0.24335,-1.90655 l 3.13096,0.077 0,3.87088 c 0.24874,-0.42368 0.47045,-0.77995 0.66512,-1.06883 0.19467,-0.28886 0.35689,-0.52316 0.48668,-0.70292 0.15141,-0.21183 0.27578,-0.37873 0.37311,-0.50071 0.2812,-0.31453 0.58942,-0.59378 0.9247,-0.83772 0.33525,-0.25034 0.68134,-0.45897 1.03824,-0.62589 0.36771,-0.17331 0.73541,-0.30491 1.10313,-0.39479 0.37852,-0.0899 0.74082,-0.13479 1.08692,-0.13481 0.34606,2e-5 0.67052,0.0449 0.97335,0.13481 0.30281,0.0899 0.56778,0.23111 0.7949,0.42368 0.23792,0.19259 0.438,0.43973 0.60024,0.74143 0.17303,0.29531 0.3028,0.65158 0.38934,1.06883 0.17303,0.69329 0.32444,1.45078 0.45423,2.27245 0.11889,0.70613 0.2271,1.53102 0.32445,2.47466 0.0974,0.94365 0.15681,1.95791 0.17845,3.04278 l -2.22249,0.077" />



<g
   transform="scale(1.2979808,0.77042743)"
   style="font-size:36.36539459000000107px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="text4991"><path
     d="m 310.34551,303.54245 c -0.0118,0.35515 -0.0414,0.73395 -0.0888,1.13642 -0.0474,0.34331 -0.11248,0.74579 -0.19532,1.20744 -0.0711,0.46169 -0.18942,0.94111 -0.35514,1.43828 l -3.28496,-0.44391 c 0.13021,-0.50901 0.22491,-0.99435 0.28411,-1.45604 0.0592,-0.47349 0.0888,-0.9174 0.0888,-1.33174 -10e-6,-0.85229 -0.11247,-1.59807 -0.33737,-2.23732 -0.22493,-0.63922 -0.52679,-1.17783 -0.90559,-1.61585 -0.37881,-0.43797 -0.82273,-0.76351 -1.33174,-0.97661 -0.49719,-0.22489 -1.02397,-0.33735 -1.58033,-0.33737 -0.66292,2e-5 -1.24888,0.17167 -1.7579,0.51494 -0.49718,0.33148 -0.91742,0.77539 -1.26071,1.33174 -0.3433,0.54455 -0.60373,1.16603 -0.78129,1.86443 -0.17757,0.68661 -0.26635,1.39095 -0.26635,2.11303 0,0.71028 0.11838,1.39095 0.35513,2.042 0.24859,0.63926 0.58005,1.2489 0.99437,1.82893 0.42615,0.56822 0.91742,1.10092 1.47379,1.59809 0.55637,0.49719 1.15417,0.95294 1.79341,1.36725 1.1009,0.71027 2.03016,1.36726 2.78778,1.97098 0.76944,0.60373 1.39092,1.19561 1.86444,1.77565 0.47349,0.56822 0.81678,1.13643 1.02988,1.70463 0.21306,0.56821 0.3196,1.17193 0.31962,1.81116 -2e-5,0.69843 -0.1184,1.3791 -0.35514,2.04201 -0.22493,0.66291 -0.59189,1.24888 -1.1009,1.75789 -0.50903,0.50903 -1.17195,0.91743 -1.98873,1.22521 -0.80498,0.30778 -1.79342,0.46167 -2.96535,0.46167 -1.13642,0 -2.1663,-0.17757 -3.08963,-0.5327 -0.91151,-0.36697 -1.6928,-0.87007 -2.34387,-1.50931 -0.63924,-0.63923 -1.13642,-1.39684 -1.49155,-2.27283 -0.34329,-0.88783 -0.51494,-1.85852 -0.51494,-2.91208 l 3.33823,0.14206 c 0,1.1601 0.13613,2.08343 0.4084,2.77002 0.2841,0.68659 0.62148,1.20744 1.01213,1.56257 0.40247,0.35513 0.81679,0.58597 1.24295,0.69251 0.43799,0.0947 0.81088,0.14205 1.11867,0.14205 0.35512,0 0.73392,-0.0533 1.13642,-0.15981 0.4143,-0.11837 0.79311,-0.30778 1.13641,-0.56821 0.35512,-0.27226 0.64515,-0.62148 0.87007,-1.04763 0.23675,-0.438 0.35512,-0.97661 0.35513,-1.61585 -10e-6,-0.66291 -0.15982,-1.26663 -0.47942,-1.81117 -0.30779,-0.55636 -0.71619,-1.07722 -1.2252,-1.56257 -0.50903,-0.48534 -1.08908,-0.95293 -1.74014,-1.40277 -0.65108,-0.44982 -1.31991,-0.91149 -2.00649,-1.38501 -0.67476,-0.4735 -1.33767,-0.97068 -1.98874,-1.49155 -0.65107,-0.52084 -1.23112,-1.08905 -1.74014,-1.70463 -0.50902,-0.62738 -0.92334,-1.31988 -1.24295,-2.07751 -0.30779,-0.7576 -0.46168,-1.60991 -0.46167,-2.55694 -10e-6,-0.60371 0.0473,-1.22519 0.14205,-1.86444 0.10654,-0.63921 0.27226,-1.26069 0.49718,-1.86444 0.23675,-0.61553 0.54453,-1.18966 0.92334,-1.72238 0.39064,-0.54451 0.87599,-1.01802 1.45604,-1.42053 0.58004,-0.40245 1.26071,-0.72207 2.042,-0.95885 0.79312,-0.23673 1.70462,-0.3551 2.73451,-0.35513 1.07722,0.0237 2.01239,0.16576 2.80553,0.42616 0.79311,0.26045 1.46786,0.59191 2.02425,0.99436 0.55635,0.39067 1.00619,0.82867 1.34949,1.31399 0.34328,0.48537 0.60963,0.97663 0.79905,1.47379 0.18938,0.48537 0.3196,0.94704 0.39064,1.38501 0.071,0.43802 0.10652,0.80499 0.10654,1.10091"
     style="fill:#9cd5d3"
     id="path3642" /><path
     d="m 325.24222,312.56277 c -0.1539,2.00058 -0.41433,3.7348 -0.78129,5.20267 -0.36698,1.45604 -0.87008,2.66348 -1.5093,3.62233 -0.62741,0.94702 -1.40278,1.65136 -2.32611,2.11303 -0.91151,0.46167 -1.99466,0.6925 -3.24945,0.6925 -1.27847,0 -2.33795,-0.27818 -3.17842,-0.83455 -0.82864,-0.55637 -1.48563,-1.35542 -1.97097,-2.39714 -0.48535,-1.05355 -0.82864,-2.33794 -1.02988,-3.85317 -0.18941,-1.51521 -0.28411,-3.2376 -0.28411,-5.16715 0.0355,-1.45602 0.1243,-2.96533 0.26635,-4.52792 0.0592,-0.66289 0.13021,-1.36723 0.21308,-2.11303 0.0947,-0.75759 0.20124,-1.52704 0.31962,-2.30835 0.13021,-0.7931 0.27818,-1.59214 0.44391,-2.39713 0.16573,-0.81678 0.35513,-1.61582 0.56821,-2.39713 l 3.64009,0.55045 c -0.438,2.16632 -0.77537,4.09586 -1.01212,5.78863 -0.23676,1.68097 -0.40841,3.16068 -0.51494,4.43914 -0.10655,1.26664 -0.17165,2.34979 -0.19532,3.24944 -0.0118,0.88784 -0.0178,1.6277 -0.0178,2.21957 0,1.44421 0.0533,2.65165 0.15981,3.62234 0.10653,0.95885 0.27818,1.73422 0.51494,2.3261 0.24858,0.58005 0.56228,0.99437 0.9411,1.24296 0.37879,0.24859 0.83455,0.37289 1.36725,0.37289 0.54452,0 1.05946,-0.15981 1.54482,-0.47943 0.49717,-0.33145 0.92925,-0.84639 1.29623,-1.54482 0.37879,-0.69842 0.67473,-1.604 0.88782,-2.71675 0.22491,-1.11273 0.33736,-2.46223 0.33738,-4.04849 -2e-5,-1.02987 0.006,-2.14261 0.0177,-3.33823 0.0118,-1.20743 0.006,-2.44447 -0.0177,-3.71112 -0.0237,-1.27845 -0.077,-2.56875 -0.15981,-3.87092 -0.0829,-1.30212 -0.22493,-2.57468 -0.42616,-3.81766 l 3.85317,-0.46167 c 0.16571,1.94141 0.27817,3.72298 0.33737,5.34472 0.071,1.62178 0.10653,3.06006 0.10654,4.31484 -1e-5,0.7813 -0.006,1.47381 -0.0178,2.07752 -0.0119,0.59189 -0.0296,1.095 -0.0533,1.5093 -0.0237,0.48536 -0.0474,0.91743 -0.071,1.29623"
     style="fill:#9cd5d3"
     id="path3644" /><path
     d="m 342.0744,306.45452 c -0.0474,0.99438 -0.24269,1.9118 -0.58597,2.75226 -0.34331,0.84049 -0.79314,1.60402 -1.3495,2.2906 -0.55638,0.68659 -1.19562,1.29032 -1.9177,1.81116 -0.72211,0.52087 -1.48564,0.95887 -2.2906,1.31399 -0.79313,0.35514 -1.60993,0.62149 -2.4504,0.79904 -0.84048,0.17758 -1.65136,0.26636 -2.43264,0.26635 -0.14206,10e-6 -0.28411,10e-6 -0.42616,0 -0.14206,10e-6 -0.29003,-0.0118 -0.44392,-0.0355 -0.071,1.40869 -0.13021,2.81145 -0.17756,4.2083 -0.0355,1.38501 -0.071,2.78186 -0.10654,4.19054 l -2.66348,0 c 0.071,-2.46224 0.13021,-4.91264 0.17756,-7.35121 0.0592,-2.45039 0.0888,-4.91855 0.0888,-7.40447 0,-1.79932 -0.0178,-3.58089 -0.0533,-5.34472 -0.0355,-1.77564 -0.0829,-3.56313 -0.14205,-5.36248 0.5682,-0.22489 1.16601,-0.40245 1.79341,-0.53269 0.62739,-0.14203 1.23111,-0.24857 1.81116,-0.31962 0.59188,-0.071 1.13641,-0.11243 1.6336,-0.1243 0.49718,-0.0237 0.89966,-0.0355 1.20745,-0.0355 1.12457,3e-5 2.18996,0.15392 3.19618,0.46167 1.01803,0.3078 1.90585,0.81683 2.66348,1.52706 0.7576,0.69845 1.3554,1.61587 1.79341,2.75227 0.44981,1.1246 0.67473,2.50369 0.67475,4.13727 m -10.9913,-6.3746 c -0.17757,2.27286 -0.33146,4.53386 -0.46167,6.783 -0.13022,2.24918 -0.25452,4.49834 -0.37289,6.74749 l 0.0355,0 c 1.30214,10e-6 2.40305,-0.17756 3.30272,-0.5327 0.91149,-0.35512 1.66319,-0.79903 2.25508,-1.33174 0.60371,-0.53269 1.0713,-1.10681 1.40277,-1.72239 0.33144,-0.62738 0.57411,-1.21334 0.72802,-1.75789 0.16571,-0.54452 0.26633,-1.00027 0.30186,-1.36726 0.0355,-0.36695 0.0532,-0.56227 0.0533,-0.58596 -2e-5,-0.1302 -0.0118,-0.37879 -0.0355,-0.74578 -0.0237,-0.36695 -0.0888,-0.78719 -0.19532,-1.26071 -0.10655,-0.48533 -0.27228,-0.98843 -0.49718,-1.50931 -0.21309,-0.52083 -0.51495,-0.99434 -0.90558,-1.42052 -0.39066,-0.43797 -0.88192,-0.79902 -1.4738,-1.08315 -0.59189,-0.28408 -1.31399,-0.42613 -2.1663,-0.42616 -0.59189,3e-5 -1.24888,0.071 -1.97097,0.21308"
     style="fill:#9cd5d3"
     id="path3646" /><path
     d="m 357.78791,306.45452 c -0.0474,0.99438 -0.24269,1.9118 -0.58597,2.75226 -0.34331,0.84049 -0.79314,1.60402 -1.34949,2.2906 -0.55639,0.68659 -1.19562,1.29032 -1.91771,1.81116 -0.72211,0.52087 -1.48564,0.95887 -2.29059,1.31399 -0.79314,0.35514 -1.60994,0.62149 -2.45041,0.79904 -0.84048,0.17758 -1.65136,0.26636 -2.43264,0.26635 -0.14206,10e-6 -0.28411,10e-6 -0.42616,0 -0.14206,10e-6 -0.29003,-0.0118 -0.44391,-0.0355 -0.071,1.40869 -0.13022,2.81145 -0.17757,4.2083 -0.0355,1.38501 -0.071,2.78186 -0.10654,4.19054 l -2.66348,0 c 0.071,-2.46224 0.13021,-4.91264 0.17757,-7.35121 0.0592,-2.45039 0.0888,-4.91855 0.0888,-7.40447 0,-1.79932 -0.0178,-3.58089 -0.0533,-5.34472 -0.0355,-1.77564 -0.0829,-3.56313 -0.14205,-5.36248 0.5682,-0.22489 1.16601,-0.40245 1.79341,-0.53269 0.62739,-0.14203 1.23111,-0.24857 1.81117,-0.31962 0.59187,-0.071 1.13641,-0.11243 1.6336,-0.1243 0.49717,-0.0237 0.89965,-0.0355 1.20744,-0.0355 1.12457,3e-5 2.18996,0.15392 3.19618,0.46167 1.01803,0.3078 1.90585,0.81683 2.66348,1.52706 0.7576,0.69845 1.3554,1.61587 1.79341,2.75227 0.44982,1.1246 0.67473,2.50369 0.67475,4.13727 m -10.9913,-6.3746 c -0.17757,2.27286 -0.33146,4.53386 -0.46167,6.783 -0.13022,2.24918 -0.25451,4.49834 -0.37289,6.74749 l 0.0355,0 c 1.30214,10e-6 2.40304,-0.17756 3.30271,-0.5327 0.9115,-0.35512 1.66319,-0.79903 2.25508,-1.33174 0.60371,-0.53269 1.0713,-1.10681 1.40277,-1.72239 0.33144,-0.62738 0.57412,-1.21334 0.72802,-1.75789 0.16571,-0.54452 0.26633,-1.00027 0.30186,-1.36726 0.0355,-0.36695 0.0533,-0.56227 0.0533,-0.58596 -10e-6,-0.1302 -0.0118,-0.37879 -0.0355,-0.74578 -0.0237,-0.36695 -0.0888,-0.78719 -0.19533,-1.26071 -0.10655,-0.48533 -0.27228,-0.98843 -0.49718,-1.50931 -0.21309,-0.52083 -0.51495,-0.99434 -0.90558,-1.42052 -0.39066,-0.43797 -0.88192,-0.79902 -1.4738,-1.08315 -0.59189,-0.28408 -1.31399,-0.42613 -2.16629,-0.42616 -0.59189,3e-5 -1.24889,0.071 -1.97098,0.21308"
     style="fill:#9cd5d3"
     id="path3648" /><path
     d="m 372.98648,310.37871 c -10e-6,1.27849 -0.0888,2.52736 -0.26635,3.74663 -0.16574,1.20746 -0.40841,2.35571 -0.72801,3.44477 -0.3078,1.08908 -0.69252,2.08936 -1.15418,3.00086 -0.46168,0.9115 -0.98254,1.69871 -1.56258,2.36162 -0.56822,0.65107 -1.20153,1.16009 -1.89994,1.52706 -0.6866,0.37881 -1.42054,0.56821 -2.20182,0.56821 -0.79313,0 -1.52115,-0.18348 -2.18405,-0.55045 -0.65108,-0.36697 -1.24296,-0.88191 -1.77565,-1.54482 -0.52087,-0.66291 -0.98254,-1.45012 -1.38501,-2.36162 -0.39065,-0.9115 -0.72211,-1.91178 -0.99437,-3.00086 -0.26043,-1.08906 -0.46167,-2.23731 -0.60372,-3.44477 -0.13022,-1.21927 -0.19533,-2.46814 -0.19533,-3.74663 0,-1.89401 0.14797,-3.62823 0.44392,-5.20266 0.29594,-1.58623 0.75169,-2.94757 1.36725,-4.08401 0.61556,-1.13639 1.39093,-2.0183 2.32611,-2.64572 0.94701,-0.62737 2.06567,-0.94107 3.35598,-0.9411 1.36133,3e-5 2.5155,0.31373 3.46253,0.9411 0.947,0.62742 1.71645,1.50933 2.30835,2.64572 0.59187,1.13644 1.01803,2.49778 1.27847,4.08401 0.27225,1.57443 0.40839,3.30865 0.4084,5.20266 m -3.30271,0.14206 c -2e-5,-1.5744 -0.077,-3.0186 -0.23084,-4.3326 -0.14206,-1.31396 -0.37882,-2.43854 -0.71026,-3.37374 -0.33147,-0.94699 -0.76354,-1.68093 -1.29623,-2.20181 -0.52087,-0.52084 -1.1601,-0.78127 -1.91771,-0.78129 -0.71026,2e-5 -1.33174,0.26045 -1.86443,0.78129 -0.52087,0.52088 -0.95294,1.25482 -1.29623,2.20181 -0.3433,0.9352 -0.59781,2.05978 -0.76353,3.37374 -0.16573,1.314 -0.2486,2.7582 -0.24859,4.3326 -1e-5,1.5981 0.0829,3.13108 0.24859,4.59894 0.16572,1.46788 0.41431,2.77003 0.74577,3.90644 0.33145,1.12458 0.74577,2.02425 1.24296,2.69899 0.49718,0.67475 1.07131,1.01213 1.72239,1.01213 0.65106,0 1.24294,-0.33738 1.77565,-1.01213 0.54452,-0.67474 1.00619,-1.57441 1.38501,-2.69899 0.39063,-1.13641 0.68657,-2.43856 0.88783,-3.90644 0.21306,-1.46786 0.3196,-3.00084 0.31962,-4.59894"
     style="fill:#9cd5d3"
     id="path3650" /><path
     d="m 383.00015,324.1933 -3.01861,-8.61192 c -0.59189,0.071 -1.16602,0.10655 -1.72239,0.10654 -0.14206,10e-6 -0.28411,10e-6 -0.42615,0 -0.14206,10e-6 -0.29003,-0.0118 -0.44392,-0.0355 -0.071,1.40869 -0.13022,2.81145 -0.17756,4.2083 -0.0355,1.38501 -0.071,2.78186 -0.10654,4.19054 l -2.66348,0 c 0.071,-2.46224 0.13021,-4.91264 0.17756,-7.35121 0.0592,-2.45039 0.0888,-4.91855 0.0888,-7.40447 0,-1.79932 -0.0177,-3.58089 -0.0533,-5.34472 -0.0355,-1.77564 -0.0829,-3.56313 -0.14205,-5.36248 0.56821,-0.22489 1.16601,-0.40245 1.79341,-0.53269 0.6274,-0.14203 1.23112,-0.24857 1.81117,-0.31962 0.59188,-0.071 1.13641,-0.11243 1.6336,-0.1243 0.49718,-0.0237 0.89966,-0.0355 1.20745,-0.0355 1.12457,3e-5 2.18996,0.15392 3.19617,0.46167 1.01803,0.3078 1.90586,0.81683 2.66348,1.52706 0.7576,0.69845 1.3554,1.61587 1.79342,2.75227 0.44981,1.1246 0.67473,2.50369 0.67474,4.13727 -0.0592,1.08908 -0.29004,2.08937 -0.6925,3.00085 -0.4025,0.89968 -0.92928,1.71056 -1.58033,2.43265 -0.65109,0.71027 -1.39095,1.32583 -2.21957,1.84668 -0.81681,0.52087 -1.66913,0.94111 -2.55694,1.26072 0.65106,1.50339 1.3554,2.98902 2.11303,4.45689 0.7576,1.46787 1.56848,2.94167 2.43264,4.42138 l -3.78214,0.31961 m -4.70548,-24.11338 c -0.17758,2.27286 -0.33147,4.53386 -0.46167,6.783 -0.13022,2.24918 -0.25452,4.49834 -0.37289,6.74749 l 0.0355,0 c 1.30214,10e-6 2.40305,-0.17756 3.30272,-0.5327 0.91149,-0.35512 1.66318,-0.79903 2.25508,-1.33174 0.60371,-0.53269 1.0713,-1.10681 1.40276,-1.72239 0.33145,-0.62738 0.57412,-1.21334 0.72802,-1.75789 0.16572,-0.54452 0.26634,-1.00027 0.30186,-1.36726 0.0355,-0.36695 0.0533,-0.56227 0.0533,-0.58596 -1e-5,-0.1302 -0.0118,-0.37879 -0.0355,-0.74578 -0.0237,-0.36695 -0.0888,-0.78719 -0.19532,-1.26071 -0.10655,-0.48533 -0.27228,-0.98843 -0.49718,-1.50931 -0.21309,-0.52083 -0.51496,-0.99434 -0.90559,-1.42052 -0.39065,-0.43797 -0.88192,-0.79902 -1.47379,-1.08315 -0.59189,-0.28408 -1.31399,-0.42613 -2.1663,-0.42616 -0.59189,3e-5 -1.24888,0.071 -1.97097,0.21308"
     style="fill:#9cd5d3"
     id="path3652" /><path
     d="m 401.35938,298.58837 -0.24859,2.48592 -5.57555,0 0,22.72837 -2.36162,0 0,-22.72837 -4.35036,0 0,-2.55694 12.53612,0.071"
     style="fill:#9cd5d3"
     id="path3654" /><path
     d="m 414.99538,298.71267 0,2.43264 -9.74834,0 0,10.83149 7.70634,0 0,2.62797 -7.81288,0 0,6.42787 9.44648,0 0,2.80553 -12.46509,0 0,-25.1255 12.87349,0"
     style="fill:#9cd5d3"
     id="path3656" /><path
     d="m 424.60064,324.1933 -3.01861,-8.61192 c -0.59189,0.071 -1.16602,0.10655 -1.72238,0.10654 -0.14206,10e-6 -0.28411,10e-6 -0.42616,0 -0.14206,10e-6 -0.29003,-0.0118 -0.44391,-0.0355 -0.071,1.40869 -0.13022,2.81145 -0.17757,4.2083 -0.0355,1.38501 -0.071,2.78186 -0.10654,4.19054 l -2.66348,0 c 0.071,-2.46224 0.13021,-4.91264 0.17757,-7.35121 0.0592,-2.45039 0.0888,-4.91855 0.0888,-7.40447 0,-1.79932 -0.0178,-3.58089 -0.0533,-5.34472 -0.0355,-1.77564 -0.0829,-3.56313 -0.14205,-5.36248 0.5682,-0.22489 1.16601,-0.40245 1.79341,-0.53269 0.62739,-0.14203 1.23111,-0.24857 1.81116,-0.31962 0.59188,-0.071 1.13642,-0.11243 1.63361,-0.1243 0.49717,-0.0237 0.89965,-0.0355 1.20744,-0.0355 1.12457,3e-5 2.18996,0.15392 3.19618,0.46167 1.01803,0.3078 1.90585,0.81683 2.66348,1.52706 0.7576,0.69845 1.3554,1.61587 1.79341,2.75227 0.44982,1.1246 0.67473,2.50369 0.67475,4.13727 -0.0592,1.08908 -0.29004,2.08937 -0.69251,3.00085 -0.40249,0.89968 -0.92927,1.71056 -1.58033,2.43265 -0.65109,0.71027 -1.39094,1.32583 -2.21957,1.84668 -0.81681,0.52087 -1.66912,0.94111 -2.55694,1.26072 0.65106,1.50339 1.35541,2.98902 2.11303,4.45689 0.7576,1.46787 1.56848,2.94167 2.43265,4.42138 l -3.78215,0.31961 m -4.70548,-24.11338 c -0.17757,2.27286 -0.33146,4.53386 -0.46167,6.783 -0.13022,2.24918 -0.25452,4.49834 -0.37289,6.74749 l 0.0355,0 c 1.30214,10e-6 2.40304,-0.17756 3.30271,-0.5327 0.9115,-0.35512 1.66319,-0.79903 2.25508,-1.33174 0.60371,-0.53269 1.0713,-1.10681 1.40277,-1.72239 0.33144,-0.62738 0.57411,-1.21334 0.72802,-1.75789 0.16571,-0.54452 0.26633,-1.00027 0.30186,-1.36726 0.0355,-0.36695 0.0533,-0.56227 0.0533,-0.58596 -1e-5,-0.1302 -0.0119,-0.37879 -0.0355,-0.74578 -0.0237,-0.36695 -0.0888,-0.78719 -0.19532,-1.26071 -0.10655,-0.48533 -0.27228,-0.98843 -0.49718,-1.50931 -0.21309,-0.52083 -0.51495,-0.99434 -0.90558,-1.42052 -0.39066,-0.43797 -0.88192,-0.79902 -1.4738,-1.08315 -0.59189,-0.28408 -1.31399,-0.42613 -2.16629,-0.42616 -0.5919,3e-5 -1.24889,0.071 -1.97098,0.21308"
     style="fill:#9cd5d3"
     id="path3658" /></g>

<g
   transform="matrix(0.53467448,0,0,0.31736055,104.31973,88.434494)"
   id="layer1"
   inkscape:label="Layer 1"><g
     transform="translate(53.538085,-120.20815)"
     id="g4480-11" /><g
     transform="translate(-227.3622,344.1437)"
     id="g5180" /><g
     id="g4361"><path
       inkscape:connector-curvature="0"
       style="fill:#afe478;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 294.8728,344.65416 c -17.99591,0.20347 -32.91812,12.38231 -34.16415,28.45216 -0.13622,1.75558 -0.0824,3.47227 0.1076,5.17312 -5.89428,-1.88791 -12.25439,-3.14371 -18.9681,-3.66429 -29.235,-2.26687 -54.66561,10.5136 -60.46085,29.31434 -19.33453,6.26155 -34.68239,18.44021 -42.24714,34.05638 -17.1699,-0.89371 -32.07025,12.14704 -33.40974,29.42212 -1.36074,17.54933 11.69211,32.91384 29.20658,34.27192 5.54251,0.42975 10.89952,-0.64981 15.62713,-2.80211 13.6788,14.40097 34.76181,24.52877 58.95201,26.40447 21.79146,1.68968 42.02271,-3.65691 57.33542,-13.57944 6.04955,10.00137 17.2846,17.40024 30.7154,19.3992 l 0,0.32315 c 0.40102,-0.0393 0.78811,-0.16657 1.18551,-0.21555 0.40533,0.05 0.77641,0.1752 1.1855,0.21555 l 0,-0.32315 c 13.45167,-1.98865 24.65882,-9.38618 30.7154,-19.3992 15.31272,9.92253 35.65177,15.26916 57.44319,13.57944 24.1902,-1.87567 45.16545,-12.0035 58.84425,-26.40447 4.72765,2.1523 10.08465,3.23189 15.62714,2.80211 17.51446,-1.35805 30.67508,-16.72263 29.31434,-34.27192 -1.33949,-17.27508 -16.23983,-30.31583 -33.40973,-29.42212 -7.56476,-15.61617 -23.02039,-27.79483 -42.35493,-34.05638 -5.79524,-18.80074 -31.11807,-31.58121 -60.35307,-29.31434 -6.71371,0.52058 -13.07382,1.77638 -18.96811,3.66429 0.19003,-1.70085 0.24418,-3.41754 0.1076,-5.17312 -1.24603,-16.06985 -16.27601,-28.24858 -34.27192,-28.45216 -1.19975,-0.0138 -2.44085,0.0138 -3.66429,0.1076 -0.0724,0.007 -0.14381,-0.007 -0.21555,0 -0.0717,-0.007 -0.14312,0.007 -0.21554,0 -1.22345,-0.0948 -2.46455,-0.12174 -3.6643,-0.1076 z m 3.44874,21.55467 0.53887,0 c 3.05373,0 5.82187,0.85901 7.86746,2.37101 2.04558,1.512 3.34097,3.66581 3.34097,6.03531 0,0.6994 -0.21658,1.38874 -0.43109,2.04769 l 9.05296,6.68195 c 1.88349,-1.05553 4.06897,-1.72438 6.57417,-1.72438 3.0528,0 5.82159,0.86702 7.86745,2.37102 2.04587,1.504 3.44875,3.66591 3.44875,6.0353 0,1.55932 -0.75038,2.95413 -1.72437,4.20316 l 12.71725,9.26851 c 1.61046,-0.67375 3.41978,-1.07773 5.38867,-1.07773 3.05372,0 5.92967,0.85898 7.97522,2.37101 2.04556,1.51203 3.34098,3.66581 3.34098,6.03531 0,1.33808 -0.56249,2.55383 -1.29328,3.66429 l 12.07061,8.72964 c 1.62936,-0.69337 3.49886,-1.18551 5.49644,-1.18551 3.05373,0 5.8219,0.85898 7.86746,2.37102 2.04555,1.51203 3.34097,3.66591 3.34097,6.03531 0,2.36949 -1.29542,4.5233 -3.34097,6.0353 -2.04556,1.512 -4.81373,2.37102 -7.86746,2.37102 -3.05372,0 -5.82186,-0.85902 -7.86745,-2.37102 -2.04559,-1.512 -3.44875,-3.66581 -3.44875,-6.0353 0,-1.82915 0.96593,-3.48283 2.26324,-4.84981 l -11.3162,-8.29854 c -1.96037,1.23744 -4.48534,2.04769 -7.22081,2.04769 -2.494,0 -4.69747,-0.67813 -6.57418,-1.72437 l -9.05296,6.57417 c 0.78087,0.95272 1.4531,1.98296 1.72438,3.12543 0.0904,0.38081 0.1076,0.78066 0.1076,1.1855 0,2.3694 -1.29542,4.52328 -3.34098,6.03531 -1.02276,0.756 -2.22706,1.4284 -3.55652,1.83215 -0.66471,0.20175 -1.3268,0.32694 -2.04769,0.43109 -0.72089,0.10415 -1.49983,0.1076 -2.26324,0.1076 -2.40153,0 -4.63011,-0.5329 -6.4664,-1.50882 l -12.71725,9.37628 c 1.31083,1.10508 2.28555,2.56007 2.69433,4.09538 0.13623,0.51176 0.21555,0.96755 0.21555,1.50883 0,2.36939 -1.29542,4.4155 -3.34098,5.92753 -0.51138,0.37802 -1.02172,0.77449 -1.6166,1.07774 -1.18978,0.60653 -2.54579,1.06476 -3.98761,1.29328 -0.72089,0.11415 -1.49983,0.1076 -2.26324,0.1076 -3.05373,0 -5.8219,-0.96675 -7.86745,-2.47879 -1.02276,-0.75603 -1.89923,-1.58987 -2.47879,-2.58656 -0.28969,-0.49834 -0.49324,-1.06794 -0.64664,-1.6166 -0.15347,-0.54866 -0.21555,-1.13202 -0.21555,-1.72437 0,-2.36939 1.29542,-4.52331 3.34098,-6.03531 2.04555,-1.512 4.81372,-2.47879 7.86745,-2.47879 1.52445,0 2.98303,0.33729 4.31093,0.75442 l 13.68722,-9.91515 c -0.48897,-0.62305 -0.87667,-1.24051 -1.18551,-1.93992 -0.30901,-0.69941 -0.53887,-1.48068 -0.53887,-2.26324 0,-2.3695 1.29511,-4.53134 3.34098,-6.03531 0.51145,-0.37598 1.02162,-0.67719 1.6166,-0.96996 1.78493,-0.87832 3.96126,-1.40105 6.25085,-1.40105 2.29569,0 4.35028,0.60977 6.14308,1.50883 l 9.26851,-6.68195 c -0.4521,-0.60405 -0.89437,-1.25462 -1.18551,-1.93992 -0.29107,-0.6853 -0.43109,-1.40533 -0.43109,-2.15547 0,-1.85332 1.04193,-3.47037 2.37101,-4.8498 l -12.50171,-9.16073 c -1.82535,0.95168 -3.99116,1.6166 -6.35862,1.6166 -2.6873,0 -5.06063,-0.74203 -7.00527,-1.93992 l -10.45401,7.65191 c 0.93402,1.00872 1.62556,2.1785 1.93992,3.44874 0.10484,0.42341 0.21554,0.84567 0.21554,1.29328 0,2.36946 -1.29542,4.52328 -3.34097,6.03531 -0.51138,0.37802 -1.11939,0.78459 -1.72437,1.07773 -1.21,0.58632 -2.52559,0.97721 -3.98762,1.18551 -0.73099,0.10415 -1.49982,0.1076 -2.26324,0.1076 -3.05372,0 -5.82189,-0.85898 -7.86745,-2.37101 -2.04555,-1.51204 -3.34097,-3.66585 -3.34097,-6.03531 0,-2.3695 1.29511,-4.53134 3.34097,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86745,-2.37101 2.10463,0 4.12867,0.4214 5.81976,1.18551 l 10.88511,-7.97523 c -0.73538,-1.11546 -1.29328,-2.32311 -1.29328,-3.66429 0,-0.36526 0.0345,-0.72717 0.1076,-1.07774 0.22313,-1.05169 0.75704,-2.029 1.40105,-2.90988 l -8.19077,-6.0353 c -2.0807,1.86639 -5.07473,3.12542 -8.51409,3.12542 -2.86333,0 -5.43564,-1.02534 -7.43636,-2.37101 l -8.083,5.60421 c 0.7142,1.10319 1.18551,2.34581 1.18551,3.6643 0,2.36949 -1.29542,4.41553 -3.34098,5.92753 -2.04555,1.512 -4.81376,2.47879 -7.86745,2.47879 -2.03866,0 -3.94916,-0.46465 -5.60422,-1.18551 l -12.71725,8.62187 c 1.41637,1.40302 2.58656,3.03669 2.58656,4.95757 0,0.38629 -0.0207,0.81611 -0.1076,1.18551 -0.26038,1.10822 -0.89788,2.08576 -1.6166,3.01765 l 9.26851,6.68195 c 1.36953,-0.45024 2.83104,-0.75442 4.4187,-0.75442 3.0537,0 5.82187,0.96683 7.86746,2.47879 2.04559,1.51197 3.34097,3.55804 3.34097,5.92753 0,2.3695 -1.29538,4.52331 -3.34097,6.03531 -2.04559,1.512 -4.81373,2.47879 -7.86746,2.47879 -3.05369,0 -5.82955,-0.96634 -7.86745,-2.47879 -2.0379,-1.51245 -3.34097,-3.66705 -3.34097,-6.03531 0,-1.0858 0.24693,-2.09973 0.75441,-3.01765 0.25383,-0.45896 0.61467,-0.87836 0.96996,-1.29328 0.35529,-0.41492 0.74565,-0.81604 1.18551,-1.18551 l -8.5141,-6.25085 c -1.83083,0.96448 -3.97337,1.72437 -6.35862,1.72437 -2.95613,0 -5.63088,-1.05386 -7.65191,-2.47878 l -11.85507,8.19077 c 1.43175,1.12157 2.55573,2.5966 3.01766,4.20316 0.15381,0.53552 0.21554,1.04725 0.21554,1.6166 0,1.02966 -0.41388,1.90002 -0.86218,2.80211 l 10.45401,7.54413 c 1.40633,-0.47644 2.89084,-0.75441 4.52648,-0.75441 3.05369,0 5.92967,0.85901 7.97523,2.37101 2.04555,1.512 3.34097,3.66592 3.34097,6.03531 0,2.36949 -1.29511,4.53134 -3.34097,6.03531 -2.04587,1.50396 -4.92247,2.37101 -7.97523,2.37101 -1.52638,0 -2.98141,-0.13416 -4.31093,-0.53887 -0.66478,-0.20244 -1.34495,-0.46165 -1.93992,-0.75441 -0.59498,-0.2928 -1.10515,-0.70175 -1.6166,-1.07773 -2.04587,-1.50397 -3.34098,-3.66582 -3.34098,-6.03531 0,-2.11177 1.34074,-3.92095 3.01766,-5.38867 l -9.48406,-6.78972 c -2.04141,1.50652 -4.71109,2.58656 -7.75968,2.58656 -3.48785,0 -6.54434,-1.21427 -8.62187,-3.12543 l -11.20842,7.75968 c 0.54266,0.64482 1.05173,1.41916 1.40105,2.15547 0.17451,0.36816 0.33384,0.68654 0.43109,1.07774 0.0973,0.39119 0.1076,0.7712 0.1076,1.1855 0,2.36957 -1.2951,4.53131 -3.34097,6.03531 -0.51145,0.37598 -1.02162,0.78493 -1.6166,1.07773 -1.18995,0.58556 -2.54593,0.97593 -3.98761,1.18551 -0.72082,0.10484 -1.50007,0.1076 -2.26324,0.1076 -3.0528,0 -5.92936,-0.86702 -7.97523,-2.37101 -2.04586,-1.504 -3.34097,-3.66575 -3.34097,-6.03531 0,-2.36939 1.29542,-4.52331 3.34097,-6.03531 2.04556,-1.512 4.9215,-2.37101 7.97523,-2.37101 2.12794,0 4.00527,0.51238 5.71198,1.29328 l 12.60949,-8.62187 c -0.17899,-0.5718 -0.4311,-1.0906 -0.4311,-1.72437 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.81376,-2.47879 7.86745,-2.47879 1.30211,0 2.60235,0.22969 3.77207,0.53887 l 1.72437,-1.29328 0.21555,-0.1076 11.42397,-7.75968 c -0.45327,-0.91357 -0.86219,-1.87557 -0.86219,-2.90988 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.9215,-2.37101 7.97522,-2.37101 1.7331,0 3.26976,0.33073 4.74203,0.86219 l 1.50883,-0.96996 11.42397,-7.86746 c -1.10108,-1.29669 -2.04769,-2.74806 -2.04769,-4.4187 0,-2.3695 1.40288,-4.53135 3.44874,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86746,-2.37101 2.61925,0 4.96937,0.68699 6.89749,1.83214 l 8.29855,-5.60421 c -0.54221,-0.98531 -0.96996,-2.09511 -0.96996,-3.2332 0,-2.36939 1.29542,-4.52327 3.34097,-6.03531 1.91102,-1.41257 4.61842,-2.1515 7.43636,-2.26324 l 0,-0.1076 z m 0.53887,3.55652 c -2.08904,0 -4.01627,0.6785 -5.28089,1.6166 -0.95272,0.70661 -1.58425,1.50965 -1.83215,2.37101 -0.0828,0.28728 -0.1076,0.5549 -0.1076,0.86219 0,0.92216 0.3535,1.80255 1.07774,2.58656 0.24141,0.26141 0.54462,0.51883 0.86218,0.75441 0.94847,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98658,0.1076 1.50882,0.1076 2.08925,0 3.89857,-0.67599 5.17312,-1.6166 1.28032,-0.94499 1.93992,-2.12046 1.93992,-3.34098 0,-1.22013 -0.65967,-2.28841 -1.93992,-3.2332 -1.27455,-0.94075 -3.08387,-1.6166 -5.17312,-1.6166 z m -25.54228,15.41158 c -2.09014,0 -4.01537,0.5766 -5.28089,1.50883 -0.95365,0.70265 -1.5071,1.58587 -1.72437,2.47879 -0.0724,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.27589,1.80253 0.96996,2.58656 0.23141,0.26142 0.54462,0.51887 0.86218,0.75442 1.26462,0.93809 3.19182,1.50882 5.2809,1.50882 2.08918,0 3.89853,-0.56807 5.17312,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.08287,-1.50883 -5.17312,-1.50883 z m 51.94675,0 c -2.09008,0 -3.9076,0.5766 -5.17312,1.50883 -0.95365,0.70265 -1.58456,1.58587 -1.83215,2.47879 -0.0824,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.3535,1.80253 1.07773,2.58656 0.24142,0.26142 0.54463,0.51887 0.86219,0.75442 1.26462,0.93809 3.08408,1.50882 5.17312,1.50882 2.08925,0 4.00631,-0.56807 5.2809,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.19061,-1.50883 -5.2809,-1.50883 z m -26.62002,18.86034 c -2.09025,0 -3.8976,0.68161 -5.17311,1.6166 -0.9611,0.70444 -1.58691,1.51024 -1.83215,2.37101 -0.0817,0.28694 -0.1076,0.55715 -0.1076,0.86219 0,0.91536 0.35208,1.80011 1.07773,2.58656 0.24176,0.2621 0.54215,0.51821 0.86219,0.75441 0.95596,0.70558 2.2143,1.27466 3.66429,1.50883 0.48334,0.0779 0.98651,0.1076 1.50883,0.1076 2.08904,0 4.0163,-0.67847 5.28089,-1.6166 1.27028,-0.94213 1.93992,-2.11163 1.93992,-3.34097 0,-1.22903 -0.6684,-2.29653 -1.93992,-3.23321 -1.26552,-0.93236 -3.19078,-1.6166 -5.28089,-1.6166 z m -52.27006,1.93992 c -2.09011,0 -4.01545,0.68423 -5.28089,1.6166 -0.95365,0.70247 -1.58457,1.5858 -1.83215,2.47878 -0.0824,0.29763 -0.1076,0.55487 -0.1076,0.86219 0,0.92199 0.35349,1.83287 1.07773,2.58656 0.24141,0.25141 0.54463,0.41109 0.86219,0.64664 0.94847,0.70348 2.28945,1.274 3.77206,1.50883 0.49421,0.0783 0.98655,0.1076 1.50883,0.1076 2.08922,0 3.89853,-0.67589 5.17312,-1.6166 1.28031,-0.94499 1.93992,-2.01286 1.93992,-3.2332 0,-1.22017 -0.6584,-2.40154 -1.93992,-3.34097 -1.27552,-0.93489 -3.08287,-1.61661 -5.17312,-1.61661 z m 106.58783,0 c -2.09025,0 -3.8976,0.68171 -5.17312,1.6166 -0.96113,0.70458 -1.58691,1.58773 -1.83215,2.47878 -0.0817,0.29694 -0.1076,0.55715 -0.1076,0.86219 0,0.91523 0.35208,1.83035 1.07773,2.58656 0.24176,0.2521 0.54211,0.4104 0.86219,0.64664 0.95596,0.70555 2.2143,1.27462 3.66429,1.50883 0.48334,0.0779 0.98652,0.1076 1.50883,0.1076 2.08904,0 4.01624,-0.67865 5.28089,-1.6166 1.27028,-0.94216 1.93992,-2.00386 1.93992,-3.2332 0,-1.2292 -0.66843,-2.40433 -1.93992,-3.34097 -1.26548,-0.93241 -3.19078,-1.61661 -5.28089,-1.61661 z m -25.00342,17.67482 c -2.09014,0 -4.01541,0.68424 -5.28089,1.6166 -0.95365,0.70262 -1.5071,1.50838 -1.72437,2.37102 -0.0724,0.28762 -0.10761,0.5549 -0.10761,0.86218 0,0.92199 0.2759,1.80253 0.96996,2.58657 0.23142,0.26141 0.54463,0.51882 0.86219,0.75441 0.94848,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.67603 5.28089,-1.6166 1.28031,-0.945 1.83215,-2.12064 1.83215,-3.34098 0,-1.22016 -0.55063,-2.29376 -1.83215,-3.2332 -1.27549,-0.93488 -3.19061,-1.6166 -5.28089,-1.6166 z m -58.41314,0.86219 c -2.08905,0 -3.90854,0.67865 -5.17312,1.6166 -0.95272,0.70679 -1.58429,1.58711 -1.83215,2.47879 -0.0828,0.29728 -0.1076,0.55483 -0.1076,0.86219 0,1.22916 0.66964,2.39881 1.93992,3.34097 0.94847,0.70358 2.21199,1.19658 3.66429,1.40105 0.4841,0.0683 0.98658,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.56807 5.28089,-1.50882 1.28025,-0.94482 1.93992,-2.12067 1.93992,-3.34098 0,-1.2203 -0.65964,-2.39601 -1.93992,-3.34097 -1.27459,-0.94075 -3.19164,-1.6166 -5.28089,-1.6166 z m 111.00653,1.07773 c -2.09011,0 -4.01541,0.68441 -5.28089,1.6166 -0.95365,0.70265 -1.5071,1.50842 -1.72438,2.37102 -0.0724,0.28762 -0.1076,0.55494 -0.1076,0.86219 0,0.92216 0.2759,1.80252 0.96996,2.58656 0.23141,0.26141 0.5446,0.51876 0.86219,0.75441 0.94844,0.70347 2.28942,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08904,0 3.90849,-0.67861 5.17312,-1.6166 1.27041,-0.94258 1.93992,-2.11143 1.93992,-3.34098 0,-1.22896 -0.66841,-2.29635 -1.93992,-3.2332 -1.26552,-0.93223 -3.08301,-1.6166 -5.17312,-1.6166 z m -161.76778,0.32315 c -2.08904,0 -3.90849,0.67847 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.58712 -1.83214,2.47879 -0.0828,0.29728 -0.1076,0.55487 -0.1076,0.86219 0,0.92188 0.35332,1.83359 1.07773,2.58656 0.24141,0.25106 0.54432,0.41247 0.86219,0.64664 0.94909,0.6993 2.21202,1.27269 3.66429,1.50882 0.4841,0.0786 0.98631,0.1076 1.50883,0.1076 2.09014,0 4.01541,-0.68419 5.28089,-1.6166 1.27152,-0.93668 1.93992,-2.00403 1.93992,-3.2332 0,-1.2292 -0.66964,-2.39881 -1.93992,-3.34097 -1.26462,-0.93813 -3.19181,-1.6166 -5.28089,-1.6166 z m -29.0988,17.56706 c -2.08908,0 -4.01624,0.67861 -5.28089,1.6166 -0.95268,0.70658 -1.58425,1.58708 -1.83215,2.47878 -0.0828,0.29729 -0.1076,0.55487 -0.1076,0.86219 0,0.92161 0.35333,1.83349 1.07774,2.58656 0.24141,0.25107 0.54431,0.41244 0.86218,0.64664 0.94917,0.69916 2.28952,1.27266 3.77207,1.50883 0.49417,0.0786 0.98631,0.1076 1.50883,0.1076 2.09004,0 3.90756,-0.68437 5.17312,-1.6166 1.27151,-0.93685 1.93992,-2.00438 1.93992,-3.2332 0,-1.22934 -0.66968,-2.39885 -1.93992,-3.34098 -1.26466,-0.93799 -3.08408,-1.6166 -5.17312,-1.6166 z m 54.53331,0.53886 c -2.08908,0 -3.9085,0.67848 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.50966 -1.83215,2.37102 -0.0828,0.28728 -0.1076,0.55487 -0.1076,0.86218 0,0.61467 0.21279,1.26766 0.53887,1.83215 0.16313,0.28211 0.29728,0.49334 0.53887,0.75441 0.24141,0.26107 0.54431,0.52025 0.86218,0.75442 0.94913,0.69926 2.21203,1.27269 3.6643,1.50882 0.4841,0.0786 0.9863,0.1076 1.50882,0.1076 2.09022,0 4.00541,-0.68161 5.2809,-1.6166 1.28152,-0.9393 1.93992,-2.12066 1.93992,-3.34097 0,-1.22013 -0.65971,-2.28845 -1.93992,-3.2332 -1.27459,-0.94078 -3.19168,-1.6166 -5.2809,-1.6166 z m 56.25768,1.50883 c -2.09025,0 -3.8976,0.57394 -5.17312,1.50883 -0.9611,0.7044 -1.5869,1.5877 -1.83214,2.47878 -0.0817,0.29694 -0.1076,0.55718 -0.1076,0.86219 0,0.91537 0.35208,1.80007 1.07773,2.58656 0.24175,0.2621 0.54211,0.51817 0.86218,0.75441 1.27459,0.94072 3.08391,1.50883 5.17312,1.50883 2.08908,0 4.01631,-0.57087 5.2809,-1.50883 1.27027,-0.94216 1.83214,-2.11163 1.83214,-3.34097 0,-1.22882 -0.56059,-2.40416 -1.83214,-3.34097 -1.26549,-0.93227 -3.19082,-1.50883 -5.2809,-1.50883 z"
       id="path5152" /><path
       inkscape:connector-curvature="0"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="M 242.96875,155.625 272.625,178.84375 245.8125,179 230.9375,167.59375 216.28125,167.5 l 26.375,20.6875 0.3125,-0.21875 0,0.0625 41.09375,-0.21875 0.8125,0.625 -15.0625,82.59375 57.96875,0.4375 L 311.75,189.25 l 1.78125,-1.40625 41.125,0.21875 0,-0.0625 0.28125,0.21875 26.375,-20.6875 -14.65625,0.0937 -14.875,11.40625 -26.8125,-0.15625 29.6875,-23.21875 -15.90625,0.1875 -29.09375,22.6875 -2.09375,-10.8125 -18.875,-0.1875 -1.84375,10.09375 -27.96875,-21.8125 -15.90625,-0.1875 z"
       id="path4212-7-6-7-3-0-7-3-1"
       transform="translate(0,308.2677)" /></g><g
     id="flowRoot3013-0-3-7-9-7-8"
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed Light;-inkscape-font-specification:'Open Sans Condensed Light, Light'"
     transform="matrix(0.88882369,0,0,0.88882369,1106.9094,-58.223798)"><path
       inkscape:connector-curvature="0"
       id="path3277"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -1032.3359,754.60721 c -10e-5,2.14063 -0.5626,3.81641 -1.6875,5.02734 -1.125,1.21094 -2.75,1.81641 -4.875,1.81641 -1.1563,0 -2.1719,-0.14844 -3.0469,-0.44531 -0.875,-0.29688 -1.5547,-0.625 -2.0391,-0.98438 l 0,-2.60156 c 0.5781,0.57813 1.3438,1.04297 2.2969,1.39453 0.9531,0.35156 1.9297,0.52734 2.9297,0.52734 1.3125,0 2.3437,-0.42968 3.0937,-1.28906 0.75,-0.85937 1.125,-2.00781 1.125,-3.44531 0,-1.12499 -0.2695,-2.07421 -0.8086,-2.84766 -0.539,-0.77343 -1.5664,-1.65233 -3.082,-2.63672 -1.7344,-1.09373 -2.918,-1.96873 -3.5508,-2.625 -0.6328,-0.65623 -1.125,-1.39061 -1.4765,-2.20312 -0.3516,-0.81248 -0.5274,-1.78123 -0.5274,-2.90625 0,-1.82811 0.6172,-3.33982 1.8516,-4.53516 1.2344,-1.19529 2.8047,-1.79294 4.7109,-1.79297 2.0469,3e-5 3.7578,0.4844 5.1328,1.45313 l -1.1484,1.94531 c -1.2813,-0.85935 -2.6406,-1.28904 -4.0781,-1.28906 -1.3125,2e-5 -2.3594,0.38674 -3.1407,1.16015 -0.7812,0.77346 -1.1718,1.79299 -1.1718,3.0586 0,1.12502 0.2656,2.06642 0.7968,2.82422 0.5313,0.75783 1.6563,1.67579 3.375,2.7539 1.6875,1.10939 2.8438,1.99611 3.4688,2.66016 0.625,0.66407 1.0898,1.39845 1.3945,2.20312 0.3047,0.8047 0.457,1.73048 0.4571,2.77735 z" /><path
       inkscape:connector-curvature="0"
       id="path3279"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -1012.9062,748.20877 c -10e-5,4.28126 -0.6758,7.5586 -2.0274,9.83203 -1.3516,2.27344 -3.2852,3.41016 -5.8008,3.41016 -2.4844,0 -4.3867,-1.13672 -5.707,-3.41016 -1.3203,-2.27343 -1.9805,-5.55077 -1.9805,-9.83203 0,-8.7656 2.5938,-13.14841 7.7813,-13.14844 2.4375,3e-5 4.3359,1.14847 5.6953,3.44532 1.3593,2.29689 2.039,5.53126 2.0391,9.70312 z m -13.1954,0 c 0,3.67188 0.4375,6.44532 1.3125,8.32031 0.875,1.87501 2.2422,2.8125 4.1016,2.8125 3.6406,0 5.4609,-3.71093 5.4609,-11.13281 0,-7.35935 -1.8203,-11.03904 -5.4609,-11.03906 -1.9063,2e-5 -3.2852,0.9219 -4.1367,2.76562 -0.8516,1.84377 -1.2774,4.60158 -1.2774,8.27344 z" /><path
       inkscape:connector-curvature="0"
       id="path3281"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -1000.7656,737.52127 -3.9844,0 0,23.46094 -2.2031,0 0,-23.46094 -3.2344,0 0,-1.26562 3.2344,-0.96094 0,-1.92188 c 0,-3.23434 0.3828,-5.56246 1.1484,-6.98437 0.7656,-1.42184 2.0938,-2.13278 3.9844,-2.13281 1.0937,3e-5 2.08591,0.19534 2.97655,0.58593 l -0.77344,2.0625 c -0.82811,-0.39059 -1.57811,-0.5859 -2.25001,-0.58593 -0.7656,3e-5 -1.3437,0.22659 -1.7344,0.67968 -0.3906,0.45316 -0.6797,1.18754 -0.8671,2.20313 -0.1876,1.01565 -0.2813,2.4219 -0.2813,4.21875 l 0,2.13281 3.9844,0 z" /><path
       inkscape:connector-curvature="0"
       id="path3283"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -992,759.38846 c 0.68749,0 1.29687,-0.0937 1.82813,-0.28125 l 0,1.875 c -0.68751,0.3125 -1.57033,0.46875 -2.64844,0.46875 -2.62501,0 -3.93751,-1.96094 -3.9375,-5.88281 l 0,-18.04688 -2.29688,0 0,-1.3125 2.25,-0.65625 0.72657,-6.04687 1.54687,0 0,6.04687 4.03125,0 0,1.96875 -4.03125,0 0,17.41406 c -10e-6,1.71876 0.18749,2.89063 0.5625,3.51563 0.37499,0.625 1.03124,0.9375 1.96875,0.9375 z" /><path
       inkscape:connector-curvature="0"
       id="path3285"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -972.03125,760.98221 -3.51562,-17.22656 c -0.0313,-0.12499 -0.0586,-0.2578 -0.082,-0.39844 -0.0235,-0.14061 -0.26954,-1.64061 -0.73828,-4.5 l -0.0469,0 -0.32813,1.99219 -0.53906,2.90625 -3.63281,17.22656 -2.64844,0 -5.53125,-25.42969 2.22656,0 3.16407,14.8125 1.47656,7.73438 0.14062,0 c 0.28124,-2.23437 0.73437,-4.82812 1.35938,-7.78125 l 3.16406,-14.76563 2.34375,0 3.1875,14.8125 c 0.24998,1.10939 0.69529,3.68751 1.33594,7.73438 l 0.14062,0 c 0.0469,-0.51563 0.27733,-1.8125 0.69141,-3.89063 0.41404,-2.07812 1.73826,-8.29686 3.97266,-18.65625 l 2.20312,0 -5.71875,25.42969 z" /><path
       inkscape:connector-curvature="0"
       id="path3287"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -949.97656,760.98221 -0.28125,-3.5625 -0.0937,0 c -1.21876,2.6875 -3.06251,4.03125 -5.53125,4.03125 -1.65626,0 -2.98829,-0.66016 -3.9961,-1.98047 -1.00781,-1.32031 -1.51172,-3.08984 -1.51171,-5.30859 -10e-6,-2.42187 0.72655,-4.33984 2.17968,-5.75391 1.45312,-1.41405 3.49218,-2.18358 6.11719,-2.30859 l 2.74219,-0.14063 0,-2.10937 c -2e-5,-2.37498 -0.29689,-4.10545 -0.89063,-5.19141 -0.59376,-1.08591 -1.57813,-1.62888 -2.95312,-1.62891 -1.45314,3e-5 -2.93751,0.47659 -4.45313,1.42969 l -0.96093,-1.75781 c 1.76561,-1.09373 3.61718,-1.6406 5.55468,-1.64063 2.09374,3e-5 3.60155,0.66018 4.52344,1.98047 0.92186,1.32034 1.3828,3.52737 1.38281,6.6211 l 0,17.32031 z m -5.41406,-1.42969 c 1.59374,0 2.83202,-0.78515 3.71484,-2.35547 0.8828,-1.57031 1.3242,-3.79296 1.32422,-6.66797 l 0,-2.64843 -2.64844,0.14062 c -2.04688,0.10939 -3.56641,0.67579 -4.55859,1.69922 -0.9922,1.02345 -1.48829,2.51954 -1.48828,4.48828 -10e-6,1.84376 0.32812,3.19532 0.98437,4.05469 0.65624,0.85937 1.54687,1.28906 2.67188,1.28906 z" /><path
       inkscape:connector-curvature="0"
       id="path3289"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -934.39062,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z" /><path
       inkscape:connector-curvature="0"
       id="path3291"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -921.10156,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z" /><path
       inkscape:connector-curvature="0"
       id="path3293"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -893.98437,737.52127 -3.98438,0 0,23.46094 -2.20312,0 0,-23.46094 -3.23438,0 0,-1.26562 3.23438,-0.96094 0,-1.92188 c -10e-6,-3.23434 0.3828,-5.56246 1.14843,-6.98437 0.76562,-1.42184 2.09375,-2.13278 3.98438,-2.13281 1.09374,3e-5 2.08592,0.19534 2.97656,0.58593 l -0.77344,2.0625 c -0.82813,-0.39059 -1.57813,-0.5859 -2.25,-0.58593 -0.76563,3e-5 -1.34375,0.22659 -1.73437,0.67968 -0.39063,0.45316 -0.6797,1.18754 -0.86719,2.20313 -0.18751,1.01565 -0.28126,2.4219 -0.28125,4.21875 l 0,2.13281 3.98438,0 z" /><path
       inkscape:connector-curvature="0"
       id="path3295"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -882.82812,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z" /><path
       inkscape:connector-curvature="0"
       id="path3297"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -869.53906,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z" /><path
       inkscape:connector-curvature="0"
       id="path3299"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -850.69531,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z" /><path
       inkscape:connector-curvature="0"
       id="path3301"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -832.85937,761.45096 c -4.93751,0 -7.40626,-4.38281 -7.40625,-13.14844 -10e-6,-4.31248 0.61718,-7.59764 1.85156,-9.85547 1.23437,-2.25779 3.05468,-3.38669 5.46094,-3.38672 1.14061,3e-5 2.22264,0.32815 3.24609,0.98438 1.02342,0.65627 1.83983,1.56252 2.44922,2.71875 l 0.1875,0 -0.0937,-2.83594 0,-11.41406 2.22656,0 0,36.46875 -1.82812,0 -0.1875,-3.5625 -0.21094,0 c -0.60939,1.29688 -1.39845,2.29297 -2.36719,2.98828 -0.96876,0.69531 -2.07814,1.04297 -3.32812,1.04297 z m 0.14062,-1.94531 c 1.78124,0 3.15233,-0.82422 4.11328,-2.47266 0.96092,-1.64843 1.44139,-4.07421 1.44141,-7.27734 l 0,-1.45313 c -2e-5,-3.84373 -0.46486,-6.66014 -1.39453,-8.44922 -0.9297,-1.78904 -2.34767,-2.68357 -4.25391,-2.68359 -1.82813,2e-5 -3.14063,0.95705 -3.9375,2.87109 -0.79688,1.91408 -1.19532,4.68361 -1.19531,8.3086 -1e-5,3.65625 0.41406,6.42969 1.24219,8.32031 0.82811,1.89063 2.15624,2.83594 3.98437,2.83594 z" /><path
       inkscape:connector-curvature="0"
       id="path3303"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -803.84375,748.20877 c -2e-5,4.28126 -0.6758,7.5586 -2.02734,9.83203 -1.35158,2.27344 -3.28517,3.41016 -5.80078,3.41016 -2.48439,0 -4.38673,-1.13672 -5.70704,-3.41016 -1.32031,-2.27343 -1.98047,-5.55077 -1.98046,-9.83203 -10e-6,-8.7656 2.59374,-13.14841 7.78125,-13.14844 2.43748,3e-5 4.33592,1.14847 5.69531,3.44532 1.35936,2.29689 2.03904,5.53126 2.03906,9.70312 z m -13.19531,0 c -1e-5,3.67188 0.43749,6.44532 1.3125,8.32031 0.87499,1.87501 2.24218,2.8125 4.10156,2.8125 3.64061,0 5.46092,-3.71093 5.46094,-11.13281 -2e-5,-7.35935 -1.82033,-11.03904 -5.46094,-11.03906 -1.90626,2e-5 -3.28516,0.9219 -4.13672,2.76562 -0.85157,1.84377 -1.27735,4.60158 -1.27734,8.27344 z" /><path
       inkscape:connector-curvature="0"
       id="path3305"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="m -776.58594,760.98221 0,-17.32031 c -2e-5,-4.26561 -1.25002,-6.39842 -3.75,-6.39844 -1.71877,2e-5 -2.95705,0.74611 -3.71484,2.23828 -0.75783,1.49221 -1.13674,3.69142 -1.13672,6.59766 l 0,14.88281 -2.20312,0 0,-17.32031 c -2e-5,-2.15623 -0.30471,-3.7617 -0.91407,-4.81641 -0.60939,-1.05467 -1.5547,-1.58201 -2.83593,-1.58203 -1.68751,2e-5 -2.91408,0.76565 -3.67969,2.29687 -0.76563,1.53127 -1.14845,4.01565 -1.14844,7.45313 l 0,13.96875 -2.22656,0 0,-25.42969 1.875,0 0.1875,3.53906 0.21094,0 c 1.01561,-2.68747 2.74217,-4.03122 5.17968,-4.03125 1.40624,3e-5 2.51561,0.37503 3.32813,1.125 0.81248,0.75003 1.39842,1.84378 1.75781,3.28125 0.60936,-1.56247 1.35936,-2.68747 2.25,-3.375 0.89061,-0.68747 2.04685,-1.03122 3.46875,-1.03125 1.92185,3e-5 3.3281,0.73831 4.21875,2.21485 0.8906,1.47658 1.33591,3.83986 1.33594,7.08984 l 0,16.61719 z" /></g><path
     id="flowRoot3023-5-6-2-5-9-7"
     d="m 160.4375,627.67395 c -4.16544,3e-5 -7.25828,1.44305 -9.25,4.375 -1.99173,2.93201 -2.96875,7.36768 -2.96875,13.3125 0,5.68198 1.05331,10.00553 3.15625,12.9375 2.10293,2.93198 5.1636,4.40625 9.1875,4.40625 2.56799,0 4.90807,-0.68566 7.03125,-2 l 0,-7.09375 c -2.20406,1.41545 -4.32171,2.12501 -6.34375,2.125 -1.69854,10e-6 -2.9081,-0.86489 -3.65625,-2.59375 -0.74817,-1.72885 -1.12501,-4.34558 -1.125,-7.84375 -1e-5,-3.57902 0.36672,-6.24171 1.125,-8.03125 0.75826,-1.78949 1.99999,-2.68747 3.71875,-2.6875 1.2941,3e-5 2.79043,0.47797 4.46875,1.46875 l 2.3125,-6.28125 c -1.09193,-0.68747 -2.34377,-1.1985 -3.71875,-1.5625 -1.37501,-0.36394 -2.68384,-0.53122 -3.9375,-0.53125 z m 24,0 c -4.125,3e-5 -7.36215,1.5414 -9.6875,4.625 -2.32537,3.08366 -3.46875,7.36401 -3.46875,12.84375 0,3.55883 0.52206,6.65351 1.59375,9.3125 1.07168,2.65901 2.61213,4.70956 4.59375,6.125 1.9816,1.41544 4.25551,2.125 6.84375,2.125 4.08453,0 7.31064,-1.54137 9.65625,-4.625 2.34556,-3.08363 3.49997,-7.39706 3.5,-12.9375 -3e-5,-5.35842 -1.17558,-9.63693 -3.53125,-12.78125 -2.35572,-3.14426 -5.51657,-4.68747 -9.5,-4.6875 z m 34.46875,0 c -1.81987,3e-5 -3.39524,0.43294 -4.75,1.3125 -1.28039,0.83132 -2.27951,1.96996 -3,3.40625 l 0,-4.15625 -7.96875,0 0,0.0625 -0.0312,0 0,33.78125 8.0625,0 0,-16.21875 c -10e-6,-4.10475 0.40992,-7.02112 1.21875,-8.75 0.80881,-1.72883 2.07352,-2.59372 3.8125,-2.59375 1.31432,3e-5 2.25734,0.62135 2.84375,1.875 0.58638,1.2537 0.87498,3.11584 0.875,5.5625 l 0,20.125 8.125,0 0,-22.03125 c -3e-5,-4.04408 -0.75463,-7.14703 -2.28125,-9.25 -1.52668,-2.1029 -3.83275,-3.12497 -6.90625,-3.125 z m 25.28125,0 c -3.4375,3e-5 -6.1535,0.82173 -8.125,2.5 -1.97151,1.67834 -2.9375,3.94121 -2.9375,6.8125 0,2.2445 0.53217,4.1958 1.59375,5.84375 1.06157,1.64799 2.80331,3.20039 5.25,4.65625 1.84006,1.11214 3.09374,2.07538 3.78125,2.84375 0.68749,0.76839 1.03124,1.65626 1.03125,2.6875 -1e-5,1.01104 -0.3116,1.82078 -0.96875,2.4375 -0.65718,0.61673 -1.62134,0.93751 -2.875,0.9375 -1.13236,10e-6 -2.4513,-0.27573 -3.9375,-0.78125 -1.48621,-0.50551 -2.76287,-1.13786 -3.875,-1.90625 l 0,7 c 2.18381,1.31434 4.94485,2 8.28125,2 3.76101,0 6.60017,-0.93107 8.53125,-2.78125 1.93104,-1.85018 2.87498,-4.42279 2.875,-7.71875 -2e-5,-1.51653 -0.22245,-2.83639 -0.6875,-3.96875 -0.46509,-1.13234 -1.11951,-2.14153 -1.96875,-3.03125 -0.84928,-0.88969 -2.33458,-1.97609 -4.4375,-3.25 -1.73898,-1.05145 -2.92556,-1.94851 -3.5625,-2.65625 -0.63696,-0.7077 -0.93751,-1.4963 -0.9375,-2.40625 -1e-5,-0.78858 0.23437,-1.45402 0.75,-2 0.51561,-0.54593 1.31249,-0.84372 2.34375,-0.84375 1.63785,3e-5 3.52389,0.60849 5.6875,1.78125 l 2.65625,-5.8125 c -2.64891,-1.57717 -5.47613,-2.34372 -8.46875,-2.34375 z m 25.125,0 c -3.94302,3e-5 -7.01472,1.55335 -9.21875,4.6875 -2.20404,3.13421 -3.28125,7.48165 -3.28125,13.0625 0,5.5 1.21967,9.74726 3.65625,12.75 2.43657,3.00275 5.74264,4.53125 9.96875,4.53125 3.61946,0 6.72425,-0.78677 9.3125,-2.34375 l 0,-6.65625 c -2.75002,1.63787 -5.43385,2.46876 -8.0625,2.46875 -2.06251,10e-6 -3.67097,-0.75275 -4.84375,-2.21875 -1.1728,-1.46598 -1.7831,-3.67463 -1.84375,-6.6875 l 16.21875,0 0,-4.3125 c -3e-5,-4.83269 -1.06437,-8.602 -3.1875,-11.28125 -2.12318,-2.67919 -5.03863,-3.99997 -8.71875,-4 z m 31.71875,0 c -1.39523,3e-5 -2.63605,0.43386 -3.6875,1.34375 -1.05148,0.90996 -2.01656,2.43937 -2.90625,4.5625 l -0.28125,0 -0.90625,-5.28125 -6.625,0 0,33.78125 8.0625,0 0,-17.375 c -10e-6,-2.95218 0.51102,-5.20311 1.5625,-6.75 1.05145,-1.54685 2.56984,-2.31247 4.53125,-2.3125 0.90991,3e-5 1.65256,0.0791 2.21875,0.28125 l 0.9375,-7.8125 c -0.95039,-0.30327 -1.91546,-0.43747 -2.90625,-0.4375 z m -31.75,6.1875 c 1.23344,3e-5 2.19851,0.66363 2.90625,1.9375 0.7077,1.27392 1.08454,3.12687 1.125,5.59375 l -8.1875,0 c 0.12131,-2.56799 0.53308,-4.46413 1.28125,-5.6875 0.74815,-1.22332 1.72242,-1.84372 2.875,-1.84375 z M 184.375,634.5802 c 1.67829,3e-5 2.90899,0.87595 3.6875,2.625 0.77847,1.7491 1.15623,4.39893 1.15625,7.9375 -2e-5,7.11764 -1.60848,10.65626 -4.84375,10.65625 -1.69854,10e-6 -2.95038,-0.88786 -3.71875,-2.6875 -0.76839,-1.79962 -1.12501,-4.45036 -1.125,-7.96875 -1e-5,-3.53857 0.35661,-6.1884 1.125,-7.9375 0.76837,-1.74905 2.02021,-2.62497 3.71875,-2.625 z"
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
     inkscape:connector-curvature="0" /><path
     id="flowRoot3023-5-6-2-5-9-7-1"
     d="m 350.4375,627.67395 c -3.94302,3e-5 -7.5809,1.03313 -10.9375,3.15625 l 2.78125,5.59375 c 2.62866,-1.57718 4.94668,-2.37497 6.96875,-2.375 2.72976,3e-5 4.09373,1.59562 4.09375,4.75 l 0,2.40625 -4.46875,0.1875 c -3.88235,0.18201 -6.79872,1.14616 -8.75,2.875 -1.95129,1.72887 -2.9375,4.3787 -2.9375,7.9375 0,3.31618 0.69945,5.88971 2.125,7.75 1.42554,1.86029 3.38787,2.78125 5.875,2.78125 1.94116,0 3.53859,-0.34559 4.8125,-1.09375 1.27388,-0.74816 2.52572,-2.11213 3.71875,-4.09375 l 0.1875,0 1.59375,4.59375 5.90625,0 0,-22.6875 c -3e-5,-3.76099 -0.91087,-6.66634 -2.78125,-8.71875 -1.87042,-2.05235 -4.60848,-3.06247 -8.1875,-3.0625 z m 33.28125,0.0312 c -1.81987,3e-5 -3.42649,0.46419 -4.78125,1.34375 -1.31804,0.85577 -2.33777,2.0344 -3.0625,3.53125 l 0,-4.28125 -7.96875,0 0,18.15625 0.0312,0 0,15.6875 8.0625,0 0,-16.21875 c -1e-5,-4.10475 0.40992,-7.02112 1.21875,-8.75 0.80881,-1.72883 2.07352,-2.59372 3.8125,-2.59375 1.31432,3e-5 2.28859,0.62135 2.875,1.875 0.58638,1.2537 0.87498,3.11584 0.875,5.5625 l 0,20.125 8.125,0 0,-22.0625 c -3e-5,-4.04408 -0.75463,-7.11578 -2.28125,-9.21875 -1.52668,-2.1029 -3.83275,-3.15622 -6.90625,-3.15625 z m 26.8125,0 c -4.16544,3e-5 -7.25828,1.4743 -9.25,4.40625 -1.99173,2.93201 -2.96875,7.36768 -2.96875,13.3125 0,5.68198 1.05331,10.00553 3.15625,12.9375 2.10293,2.93198 5.1636,4.375 9.1875,4.375 2.56799,0 4.90807,-0.65441 7.03125,-1.96875 l 0,-7.09375 c -2.20406,1.41545 -4.32171,2.12501 -6.34375,2.125 -1.69854,10e-6 -2.9081,-0.86489 -3.65625,-2.59375 -0.74817,-1.72885 -1.12501,-4.34558 -1.125,-7.84375 -10e-6,-3.57902 0.36672,-6.24171 1.125,-8.03125 0.75826,-1.78949 1.99999,-2.68747 3.71875,-2.6875 1.2941,3e-5 2.79043,0.47797 4.46875,1.46875 l 2.28125,-6.28125 c -1.09193,-0.68747 -2.31252,-1.1985 -3.6875,-1.5625 -1.37501,-0.36394 -2.68384,-0.56247 -3.9375,-0.5625 z m -102.6875,0.65625 8.84375,33.78125 10,0 8.875,-33.78125 -8.375,0 c -2.95222,13.44668 -4.52575,20.6434 -4.6875,21.59375 -0.16178,0.95038 -0.31711,1.99266 -0.46875,3.125 -0.15167,1.13236 -0.22979,1.98714 -0.25,2.59375 l -0.125,0 c -0.0607,-0.76837 -0.21601,-2.03216 -0.46875,-3.78125 -0.25277,-1.74907 -0.47428,-3.05881 -0.65625,-3.96875 l -4.3125,-19.5625 -8.375,0 z m 45.5,17.9375 0,2.875 c -2e-5,2.20405 -0.43292,3.95681 -1.3125,5.28125 -0.87961,1.32445 -2.05516,2.00001 -3.53125,2 -1.98162,10e-6 -2.96876,-1.39706 -2.96875,-4.1875 -10e-6,-1.8805 0.42187,-3.29962 1.28125,-4.25 0.85936,-0.95035 2.22242,-1.49263 4.0625,-1.59375 l 2.46875,-0.125 z"
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
     inkscape:connector-curvature="0" /><g
     id="flowRoot3023-5-6-2-5-9-7-1-5"
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
     transform="matrix(1.2941148,0,0,1.2941148,1726.8994,-500.84696)"><path
       inkscape:connector-curvature="0"
       id="path3274"
       d="m -1008.5625,872.02908 6.4688,0 3.60933,14.74219 c 0.35936,1.31251 0.64842,3.14845 0.86718,5.50781 l 0.14063,0 c 0.0156,-0.37499 0.0859,-1.04296 0.21094,-2.0039 0.12498,-0.96093 0.22655,-1.71484 0.30468,-2.26172 0.0781,-0.54687 1.15624,-5.87499 3.23438,-15.98438 l 6.5625,0 -7.47656,27.98438 c -0.90627,3.43749 -2.10939,5.90624 -3.60938,7.40625 -1.50001,1.49999 -3.5,2.24999 -6,2.25 -1.2344,-10e-6 -2.3359,-0.13283 -3.3047,-0.39844 l 0,-5.22656 c 0.6406,0.18749 1.3594,0.28124 2.1563,0.28125 2.0937,-10e-6 3.4687,-1.37501 4.125,-4.125 l 0.4453,-1.64063 z" /></g></g></g></g></g></svg>