~qajenkinsbot/qa-dashboard/ci-production

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
<?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"
   sodipodi:docname="topping_brownies.svg"
   inkscape:version="0.48+devel r12648"
   version="1.1"
   id="svg6517"
   height="96"
   width="96">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="2.4414063"
     inkscape:cx="-4.6462591"
     inkscape:cy="78.069752"
     inkscape:document-units="px"
     inkscape:current-layer="layer3"
     showgrid="false"
     fit-margin-top="0"
     fit-margin-left="0"
     fit-margin-right="0"
     fit-margin-bottom="0"
     inkscape:window-width="1920"
     inkscape:window-height="1029"
     inkscape:window-x="0"
     inkscape:window-y="24"
     inkscape:window-maximized="1"
     showborder="true"
     showguides="false"
     inkscape:guide-bbox="true"
     inkscape:showpageshadow="false"
     inkscape:snap-bbox="true"
     inkscape:bbox-paths="true"
     inkscape:bbox-nodes="true"
     inkscape:snap-bbox-edge-midpoints="true"
     inkscape:snap-bbox-midpoints="true"
     inkscape:object-paths="true"
     inkscape:snap-intersection-paths="true"
     inkscape:object-nodes="true"
     inkscape:snap-smooth-nodes="true"
     inkscape:snap-midpoints="true"
     inkscape:snap-object-midpoints="true"
     inkscape:snap-center="true"
     inkscape:snap-grids="true"
     inkscape:snap-global="false">
    <inkscape:grid
       type="xygrid"
       id="grid821" />
    <sodipodi:guide
       orientation="1,0"
       position="16,48"
       id="guide823" />
    <sodipodi:guide
       orientation="0,1"
       position="64,80"
       id="guide825" />
    <sodipodi:guide
       orientation="1,0"
       position="80,40"
       id="guide827" />
    <sodipodi:guide
       orientation="0,1"
       position="64,16"
       id="guide829" />
  </sodipodi:namedview>
  <defs
     id="defs6519">
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4667">
      <stop
         style="stop-color:#3f201c;stop-opacity:1"
         offset="0"
         id="stop4669" />
      <stop
         style="stop-color:#62322c;stop-opacity:1"
         offset="1"
         id="stop4671" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4659">
      <stop
         style="stop-color:#93573a;stop-opacity:1"
         offset="0"
         id="stop4661" />
      <stop
         style="stop-color:#b36946;stop-opacity:1"
         offset="1"
         id="stop4663" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4651">
      <stop
         style="stop-color:#713c34;stop-opacity:1"
         offset="0"
         id="stop4653" />
      <stop
         style="stop-color:#522c25;stop-opacity:1"
         offset="1"
         id="stop4655" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4643">
      <stop
         style="stop-color:#ce835c;stop-opacity:1"
         offset="0"
         id="stop4645" />
      <stop
         style="stop-color:#c67144;stop-opacity:1"
         offset="1"
         id="stop4647" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5040">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop5042" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop5044" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4302">
      <stop
         style="stop-color:#cccccc;stop-opacity:1;"
         offset="0"
         id="stop4304" />
      <stop
         id="stop4995"
         offset="0.59437883"
         style="stop-color:#b7b7b7;stop-opacity:1" />
      <stop
         style="stop-color:#f1f1f1;stop-opacity:1"
         offset="1"
         id="stop4306" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4273">
      <stop
         style="stop-color:#f2f2f2;stop-opacity:1;"
         offset="0"
         id="stop4275" />
      <stop
         style="stop-color:#e2e2e2;stop-opacity:1"
         offset="1"
         id="stop4277" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4265">
      <stop
         style="stop-color:#d4d4d4;stop-opacity:1"
         offset="0"
         id="stop4267" />
      <stop
         style="stop-color:#bcbcbc;stop-opacity:1"
         offset="1"
         id="stop4269" />
    </linearGradient>
    <filter
       style="color-interpolation-filters:sRGB;"
       inkscape:label="Drop Shadow"
       id="filter950">
      <feFlood
         flood-opacity="0.25"
         flood-color="rgb(0,0,0)"
         result="flood"
         id="feFlood952" />
      <feComposite
         in="flood"
         in2="SourceGraphic"
         operator="in"
         result="composite1"
         id="feComposite954" />
      <feGaussianBlur
         in="composite1"
         stdDeviation="1"
         result="blur"
         id="feGaussianBlur956" />
      <feOffset
         dx="0"
         dy="1"
         result="offset"
         id="feOffset958" />
      <feComposite
         in="SourceGraphic"
         in2="offset"
         operator="over"
         result="composite2"
         id="feComposite960" />
    </filter>
    <filter
       style="color-interpolation-filters:sRGB;"
       inkscape:label="Inner Shadow"
       id="filter1121">
      <feFlood
         flood-opacity="0.59999999999999998"
         flood-color="rgb(0,0,0)"
         result="flood"
         id="feFlood1123" />
      <feComposite
         in="flood"
         in2="SourceGraphic"
         operator="out"
         result="composite1"
         id="feComposite1125" />
      <feGaussianBlur
         in="composite1"
         stdDeviation="1"
         result="blur"
         id="feGaussianBlur1127" />
      <feOffset
         dx="0"
         dy="2"
         result="offset"
         id="feOffset1129" />
      <feComposite
         in="offset"
         in2="SourceGraphic"
         operator="atop"
         result="composite2"
         id="feComposite1131" />
    </filter>
    <linearGradient
       id="Background">
      <stop
         id="stop4178"
         offset="0"
         style="stop-color:#693d2d;stop-opacity:1" />
      <stop
         id="stop4180"
         offset="1"
         style="stop-color:#8a5743;stop-opacity:1" />
    </linearGradient>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath873">
      <g
         transform="matrix(0,-0.66666667,0.66604479,0,-258.25992,677.00001)"
         id="g875"
         inkscape:label="Layer 1"
         style="fill:#ff00ff;fill-opacity:1;stroke:none;display:inline">
        <path
           style="fill:#ff00ff;fill-opacity:1;stroke:none;display:inline"
           d="m 46.702703,898.22775 50.594594,0 C 138.16216,898.22775 144,904.06497 144,944.92583 l 0,50.73846 c 0,40.86071 -5.83784,46.69791 -46.702703,46.69791 l -50.594594,0 C 5.8378378,1042.3622 0,1036.525 0,995.66429 L 0,944.92583 C 0,904.06497 5.8378378,898.22775 46.702703,898.22775 Z"
           id="path877"
           inkscape:connector-curvature="0"
           sodipodi:nodetypes="sssssssss" />
      </g>
    </clipPath>
    <filter
       inkscape:collect="always"
       id="filter891"
       inkscape:label="Badge Shadow">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.71999962"
         id="feGaussianBlur893" />
    </filter>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath4168">
      <path
         style="opacity:0.531;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         d="m 24,20 0,32 c 0,6.627417 10.745166,12 24,12 13.254834,0 24,-5.372583 24,-12 l 0,-32 -48,0 z"
         id="path4170"
         inkscape:connector-curvature="0"
         xml:space="default" />
    </clipPath>
    <linearGradient
       id="Background-9">
      <stop
         style="stop-color:#a8785c;stop-opacity:1"
         offset="0"
         id="stop4178-1" />
      <stop
         style="stop-color:#bc9781;stop-opacity:1"
         offset="1"
         id="stop4180-8" />
    </linearGradient>
    <filter
       id="filter1121-1"
       inkscape:label="Inner Shadow"
       style="color-interpolation-filters:sRGB">
      <feFlood
         id="feFlood1123-4"
         result="flood"
         flood-color="rgb(0,0,0)"
         flood-opacity="0.59999999999999998" />
      <feComposite
         id="feComposite1125-9"
         result="composite1"
         operator="out"
         in2="SourceGraphic"
         in="flood" />
      <feGaussianBlur
         id="feGaussianBlur1127-5"
         result="blur"
         stdDeviation="1"
         in="composite1" />
      <feOffset
         id="feOffset1129-5"
         result="offset"
         dy="2"
         dx="0" />
      <feComposite
         id="feComposite1131-8"
         result="composite2"
         operator="atop"
         in2="SourceGraphic"
         in="offset" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4265"
       id="linearGradient4271"
       x1="32.399764"
       y1="69"
       x2="63.633367"
       y2="69"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,-6)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4273"
       id="linearGradient4279"
       x1="40"
       y1="56"
       x2="54.579212"
       y2="75"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,-6)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4302"
       id="radialGradient4308"
       cx="-48.020508"
       cy="74.438477"
       fx="-48.020508"
       fy="74.438477"
       r="28.350586"
       gradientTransform="matrix(1.1772922,0,0,0.91463949,8.5136632,-8.1605411)"
       gradientUnits="userSpaceOnUse" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath4513">
      <path
         transform="matrix(-1,0,0,1,0,-6)"
         d="m -48.033203,32.251953 c -7.509321,2.22e-4 -14.984106,1.561779 -20.220703,4.183594 -5.236656,2.621844 -8.117188,6.230272 -8.117188,9.652344 0,3.42207 2.880532,7.0305 8.117188,9.652343 5.236597,2.621815 12.711382,4.183371 20.220703,4.183594 7.509386,2.22e-4 14.990857,-1.561647 20.234375,-4.183594 5.243516,-2.621946 8.128906,-6.2304 8.128906,-9.652343 0,-3.421944 -2.88539,-7.030397 -8.128906,-9.652344 -5.243518,-2.621947 -12.724989,-4.183817 -20.234375,-4.183594 z"
         id="path4515"
         style="opacity:0.52999998;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:original="M -48.033203 31.554688 C -55.638356 31.554913 -63.192726 33.122052 -68.566406 35.8125 C -73.940086 38.502948 -77.068359 42.283368 -77.068359 46.087891 C -77.068359 49.892413 -73.940086 53.672833 -68.566406 56.363281 C -63.192726 59.053729 -55.638356 60.620868 -48.033203 60.621094 C -40.42805 60.621319 -32.866866 59.055696 -27.486328 56.365234 C -22.105791 53.674772 -18.972656 49.892838 -18.972656 46.087891 C -18.972656 42.282944 -22.105791 38.501009 -27.486328 35.810547 C -32.866866 33.120085 -40.42805 31.554462 -48.033203 31.554688 z "
         inkscape:radius="-0.69769174"
         sodipodi:type="inkscape:offset" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5040"
       id="linearGradient5046"
       x1="48.275932"
       y1="44.84375"
       x2="76.195312"
       y2="44.84375"
       gradientUnits="userSpaceOnUse"
       spreadMethod="reflect" />
    <linearGradient
       gradientTransform="matrix(0,-0.66666669,0.6660448,0,-866.25992,731.40773)"
       y2="970.29498"
       x2="144"
       y1="970.29498"
       x1="0"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6461"
       xlink:href="#Background-0"
       inkscape:collect="always" />
    <linearGradient
       id="Background-0">
      <stop
         style="stop-color:#79c5eb;stop-opacity:1"
         offset="0"
         id="stop4178-4" />
      <stop
         style="stop-color:#a8daf2;stop-opacity:1"
         offset="1"
         id="stop4180-4" />
    </linearGradient>
    <filter
       id="filter1121-3"
       inkscape:label="Inner Shadow"
       style="color-interpolation-filters:sRGB">
      <feFlood
         id="feFlood1123-1"
         result="flood"
         flood-color="rgb(0,0,0)"
         flood-opacity="0.59999999999999998" />
      <feComposite
         id="feComposite1125-5"
         result="composite1"
         operator="out"
         in2="SourceGraphic"
         in="flood" />
      <feGaussianBlur
         id="feGaussianBlur1127-9"
         result="blur"
         stdDeviation="1"
         in="composite1" />
      <feOffset
         id="feOffset1129-1"
         result="offset"
         dy="2"
         dx="0" />
      <feComposite
         id="feComposite1131-85"
         result="composite2"
         operator="atop"
         in2="SourceGraphic"
         in="offset" />
    </filter>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath5879">
      <path
         transform="matrix(-1,0,0,1,0,-6)"
         d="m -48.033203,32.251953 c -7.509321,2.22e-4 -14.984106,1.561779 -20.220703,4.183594 -5.236656,2.621844 -8.117188,6.230272 -8.117188,9.652344 0,3.42207 2.880532,7.0305 8.117188,9.652343 5.236597,2.621815 12.711382,4.183371 20.220703,4.183594 7.509386,2.22e-4 14.990857,-1.561647 20.234375,-4.183594 5.243516,-2.621946 8.128906,-6.2304 8.128906,-9.652343 0,-3.421944 -2.88539,-7.030397 -8.128906,-9.652344 -5.243518,-2.621947 -12.724989,-4.183817 -20.234375,-4.183594 z"
         id="path5881"
         style="opacity:0.494;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:original="M -48.033203 31.554688 C -55.638356 31.554913 -63.192726 33.122052 -68.566406 35.8125 C -73.940086 38.502948 -77.068359 42.283368 -77.068359 46.087891 C -77.068359 49.892413 -73.940086 53.672833 -68.566406 56.363281 C -63.192726 59.053729 -55.638356 60.620868 -48.033203 60.621094 C -40.42805 60.621319 -32.866866 59.055696 -27.486328 56.365234 C -22.105791 53.674772 -18.972656 49.892838 -18.972656 46.087891 C -18.972656 42.282944 -22.105791 38.501009 -27.486328 35.810547 C -32.866866 33.120085 -40.42805 31.554462 -48.033203 31.554688 z "
         inkscape:radius="-0.69769174"
         sodipodi:type="inkscape:offset" />
    </clipPath>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath6346">
      <path
         transform="matrix(-1,0,0,1,0,-36)"
         d="m -48.033203,32.251953 c -7.509321,2.22e-4 -14.984106,1.561779 -20.220703,4.183594 -5.236656,2.621844 -8.117188,6.230272 -8.117188,9.652344 0,3.42207 2.880532,7.0305 8.117188,9.652343 5.236597,2.621815 12.711382,4.183371 20.220703,4.183594 7.509386,2.22e-4 14.990857,-1.561647 20.234375,-4.183594 5.243516,-2.621946 8.128906,-6.2304 8.128906,-9.652343 0,-3.421944 -2.88539,-7.030397 -8.128906,-9.652344 -5.243518,-2.621947 -12.724989,-4.183817 -20.234375,-4.183594 z"
         id="path6348"
         style="opacity:0.55400002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:original="M -48.033203 31.554688 C -55.638356 31.554913 -63.192726 33.122052 -68.566406 35.8125 C -73.940086 38.502948 -77.068359 42.283368 -77.068359 46.087891 C -77.068359 49.892413 -73.940086 53.672833 -68.566406 56.363281 C -63.192726 59.053729 -55.638356 60.620868 -48.033203 60.621094 C -40.42805 60.621319 -32.866866 59.055696 -27.486328 56.365234 C -22.105791 53.674772 -18.972656 49.892838 -18.972656 46.087891 C -18.972656 42.282944 -22.105791 38.501009 -27.486328 35.810547 C -32.866866 33.120085 -40.42805 31.554462 -48.033203 31.554688 z "
         inkscape:radius="-0.69769174"
         sodipodi:type="inkscape:offset" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4643"
       id="linearGradient4649"
       x1="168.67925"
       y1="133.29816"
       x2="194.49392"
       y2="133.29816"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2271848,0,0,1.2271848,-48.233764,-24.49868)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4651"
       id="linearGradient4657"
       x1="173.65176"
       y1="138.60212"
       x2="196.15719"
       y2="138.60212"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2271848,0,0,1.2271848,-48.233764,-24.49868)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4659"
       id="linearGradient4665"
       x1="196.25522"
       y1="135.37318"
       x2="206.67173"
       y2="135.37319"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2271848,0,0,1.2271848,-48.233764,-24.49868)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4667"
       id="linearGradient4673"
       x1="183.15614"
       y1="141.41517"
       x2="206.7169"
       y2="141.41517"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2271848,0,0,1.2271848,-48.233764,-24.49868)" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath5164">
      <path
         transform="matrix(-1,0,0,1,0,-6)"
         d="m -48.033203,32.251953 c -7.509321,2.22e-4 -14.984106,1.561779 -20.220703,4.183594 -5.236656,2.621844 -8.117188,6.230272 -8.117188,9.652344 0,3.42207 2.880532,7.0305 8.117188,9.652343 5.236597,2.621815 12.711382,4.183371 20.220703,4.183594 7.509386,2.22e-4 14.990857,-1.561647 20.234375,-4.183594 5.243516,-2.621946 8.128906,-6.2304 8.128906,-9.652343 0,-3.421944 -2.88539,-7.030397 -8.128906,-9.652344 -5.243518,-2.621947 -12.724989,-4.183817 -20.234375,-4.183594 z"
         id="path5166"
         style="opacity:0.519;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:original="M -48.033203 31.554688 C -55.638356 31.554913 -63.192726 33.122052 -68.566406 35.8125 C -73.940086 38.502948 -77.068359 42.283368 -77.068359 46.087891 C -77.068359 49.892413 -73.940086 53.672833 -68.566406 56.363281 C -63.192726 59.053729 -55.638356 60.620868 -48.033203 60.621094 C -40.42805 60.621319 -32.866866 59.055696 -27.486328 56.365234 C -22.105791 53.674772 -18.972656 49.892838 -18.972656 46.087891 C -18.972656 42.282944 -22.105791 38.501009 -27.486328 35.810547 C -32.866866 33.120085 -40.42805 31.554462 -48.033203 31.554688 z "
         inkscape:radius="-0.69769174"
         sodipodi:type="inkscape:offset" />
    </clipPath>
  </defs>
  <metadata
     id="metadata6522">
    <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>
  <g
     inkscape:label="BACKGROUND"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(268,-635.29076)"
     style="display:inline"
     sodipodi:insensitive="true">
    <path
       xml:space="default"
       sodipodi:nodetypes="sssssssss"
       inkscape:connector-curvature="0"
       id="path6455"
       d="m -268,700.27259 0,-33.72973 c 0,-27.24324 3.88785,-31.13513 31.10302,-31.13513 l 33.79408,0 c 27.21507,0 31.1029,3.89189 31.1029,31.13513 l 0,33.72973 c 0,27.24325 -3.88783,31.13514 -31.1029,31.13514 l -33.79408,0 c -27.21517,0 -31.10302,-3.89189 -31.10302,-31.13514 z"
       style="fill:url(#linearGradient6461);fill-opacity:1;stroke:none;display:inline;filter:url(#filter1121-3)" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer3"
     inkscape:label="PLACE YOUR PICTOGRAM HERE"
     style="display:inline">
    <path
       style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 82.083984 71.474609 C 78.767395 71.487129 75.240485 72.154865 73.3125 72.574219 L 72.478516 71.519531 L 53.365234 74.310547 C 53.365234 74.310547 55.65506 82.091633 58.841797 82.148438 C 63.432803 82.230272 67.203449 81.706936 70.142578 81.017578 C 71.094788 81.084547 72.12896 81.151049 73.275391 81.199219 C 77.113715 81.360495 81.655821 81.37322 84.859375 80.578125 C 85.756693 80.355418 87.032453 80.130845 88.220703 79.671875 C 89.408954 79.212905 90.709291 78.371568 90.943359 76.908203 C 91.157363 75.570283 90.342986 74.46319 89.445312 73.710938 C 88.547639 72.958686 87.473384 72.431895 86.541016 72.089844 C 85.217566 71.604318 83.682066 71.468577 82.083984 71.474609 z "
       id="path4725" />
    <path
       xml:space="default"
       d="m 85.529667,65.761978 a 28.924789,12.151525 0 1 1 0,0 28.924789,12.151525 0 1 1 0,0 z"
       sodipodi:ry="12.151525"
       sodipodi:rx="28.924789"
       sodipodi:cy="65.761978"
       sodipodi:cx="56.604877"
       id="path4424"
       style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       sodipodi:type="arc" />
    <path
       sodipodi:type="inkscape:offset"
       inkscape:radius="1.2831184"
       inkscape:original="M 48.005859 60.824219 C 42.265617 60.824389 36.477477 62.08594 32.798828 63.927734 C 29.119797 65.76972 27.892578 67.94432 27.892578 69 C 27.892578 70.05568 29.119797 72.23028 32.798828 74.072266 C 36.477477 75.91406 42.265617 77.175611 48.005859 77.175781 C 53.745807 77.175951 59.541368 75.914996 63.226562 74.072266 C 66.911941 72.229445 68.140625 70.052938 68.140625 69 C 68.140625 67.947062 66.911941 65.770555 63.226562 63.927734 C 59.541367 62.085004 53.745807 60.824049 48.005859 60.824219 z "
       style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       id="path4325"
       d="m 48.005859,59.541016 c -5.928213,1.75e-4 -11.830542,1.262228 -15.78125,3.240234 -1.969194,0.985919 -3.337705,2.084381 -4.238281,3.148438 -0.900576,1.064056 -1.376953,2.045267 -1.376953,3.070312 0,1.025045 0.476377,2.006256 1.376953,3.070312 0.900576,1.064057 2.269087,2.162519 4.238281,3.148438 3.950708,1.978006 9.853037,3.240059 15.78125,3.240234 5.927891,1.76e-4 11.837841,-1.259597 15.794922,-3.238281 1.972406,-0.986273 3.342372,-2.086255 4.244141,-3.150391 0.901769,-1.064135 1.378906,-2.044748 1.378906,-3.070312 0,-1.025564 -0.477137,-2.006177 -1.378906,-3.070312 C 67.143153,64.865552 65.773187,63.76557 63.800781,62.779297 59.843699,60.800613 53.93375,59.54084 48.005859,59.541016 Z"
       transform="matrix(0.77602598,0,0,0.97227103,10.754471,-4.0867014)" />
    <path
       sodipodi:type="arc"
       style="color:#000000;fill:url(#linearGradient4271);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       id="path4261"
       sodipodi:cx="48.005745"
       sodipodi:cy="63"
       sodipodi:rx="15.627622"
       sodipodi:ry="7.8138108"
       d="m 63.633367,63 a 15.627622,7.8138108 0 1 1 0,0 15.627622,7.8138108 0 1 1 0,0 z"
       xml:space="default" />
    <path
       style="opacity:0.05;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="m 44.986328,58.333984 0,12.328125 c 0.994693,0.100294 2.007856,0.152314 3.023438,0.152344 4.088753,1.21e-4 8.15414,-0.842591 11.046875,-2.289062 2.892734,-1.446471 4.576171,-3.47974 4.576171,-5.525391 0,-1.669471 -1.136148,-3.325315 -3.121093,-4.666016 l -15.525391,0 z"
       id="rect4318"
       inkscape:connector-curvature="0" />
    <path
       style="color:#000000;fill:url(#linearGradient4279);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="m 18.972599,40.087738 57.991511,0 C 77,55 68.600956,69 48.011766,69 27.422575,69 19,55 18.972599,40.087738 Z"
       id="path4263"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cczc" />
    <path
       sodipodi:type="inkscape:offset"
       inkscape:radius="-0.69769174"
       inkscape:original="M -48.033203 31.554688 C -55.638356 31.554913 -63.192726 33.122052 -68.566406 35.8125 C -73.940086 38.502948 -77.068359 42.283368 -77.068359 46.087891 C -77.068359 49.892413 -73.940086 53.672833 -68.566406 56.363281 C -63.192726 59.053729 -55.638356 60.620868 -48.033203 60.621094 C -40.42805 60.621319 -32.866866 59.055696 -27.486328 56.365234 C -22.105791 53.674772 -18.972656 49.892838 -18.972656 46.087891 C -18.972656 42.282944 -22.105791 38.501009 -27.486328 35.810547 C -32.866866 33.120085 -40.42805 31.554462 -48.033203 31.554688 z "
       style="color:#000000;fill:url(#radialGradient4308);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       id="path4300"
       d="m -48.033203,32.251953 c -7.509321,2.22e-4 -14.984106,1.561779 -20.220703,4.183594 -5.236656,2.621844 -8.117188,6.230272 -8.117188,9.652344 0,3.42207 2.880532,7.0305 8.117188,9.652343 5.236597,2.621815 12.711382,4.183371 20.220703,4.183594 7.509386,2.22e-4 14.990857,-1.561647 20.234375,-4.183594 5.243516,-2.621946 8.128906,-6.2304 8.128906,-9.652343 0,-3.421944 -2.88539,-7.030397 -8.128906,-9.652344 -5.243518,-2.621947 -12.724989,-4.183817 -20.234375,-4.183594 z"
       transform="matrix(-1,0,0,1,0,-6)" />
    <path
       style="opacity:0.3;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="m 18.972656,40.087891 c 0.02204,11.993988 5.482024,23.390487 18.328125,27.394531 -4.847864,-3.291904 -11.82851,-9.56138 -12.478515,-18.6875 -3.718621,-2.498709 -5.84961,-5.589844 -5.84961,-8.707031 z"
       id="path4283"
       inkscape:connector-curvature="0" />
    <path
       style="opacity:0.05;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="m 76.371094,40.087891 c 0,3.288553 -2.68417,6.740216 -7.539063,9.332031 C 65.874555,59.900316 62.938852,69.595883 42.416016,68.623047 44.172141,68.869666 46.034538,69 48.011719,69 68.600909,69 77.000734,55.000153 76.964844,40.087891 Z"
       id="path4310"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cccscc" />
    <g
       inkscape:groupmode="maskhelper"
       id="g5083"
       clip-path="url(#clipPath5164)">
      <g
         id="g5001">
        <path
           transform="matrix(-0.74390622,0,0,0.74390622,12.297753,9.8293541)"
           d="m -48.033203,32.251953 c -7.509321,2.22e-4 -14.984106,1.561779 -20.220703,4.183594 -5.236656,2.621844 -8.117188,6.230272 -8.117188,9.652344 0,3.42207 2.880532,7.0305 8.117188,9.652343 5.236597,2.621815 12.711382,4.183371 20.220703,4.183594 7.509386,2.22e-4 14.990857,-1.561647 20.234375,-4.183594 5.243516,-2.621946 8.128906,-6.2304 8.128906,-9.652343 0,-3.421944 -2.88539,-7.030397 -8.128906,-9.652344 -5.243518,-2.621947 -12.724989,-4.183817 -20.234375,-4.183594 z"
           id="path4851"
           style="color:#000000;fill:#3e201b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           inkscape:original="M -48.033203 31.554688 C -55.638356 31.554913 -63.192726 33.122052 -68.566406 35.8125 C -73.940086 38.502948 -77.068359 42.283368 -77.068359 46.087891 C -77.068359 49.892413 -73.940086 53.672833 -68.566406 56.363281 C -63.192726 59.053729 -55.638356 60.620868 -48.033203 60.621094 C -40.42805 60.621319 -32.866866 59.055696 -27.486328 56.365234 C -22.105791 53.674772 -18.972656 49.892838 -18.972656 46.087891 C -18.972656 42.282944 -22.105791 38.501009 -27.486328 35.810547 C -32.866866 33.120085 -40.42805 31.554462 -48.033203 31.554688 z "
           inkscape:radius="-0.69769174"
           sodipodi:type="inkscape:offset" />
        <g
           id="g4979"
           transform="translate(-64.827162,-35.836133)">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 103.7914,75.155627 c 0.43322,0.30296 0.90363,0.550092 1.33282,0.857964 0.12045,0.336984 0.49108,0.342055 0.77245,0.463428 0.21944,0.312532 0.71347,0.02281 0.79545,0.42304 0.17943,0.293788 0.19192,0.166568 0.54331,0.230309 0.23911,0.231474 0.41925,-0.04977 0.41896,-0.316541 0.22692,-0.289113 0.52346,-0.549597 0.5441,-0.950953 0.0989,-0.346091 0.0896,-0.222166 -0.0451,-0.510101 -0.17218,-0.296438 0.0631,-0.602738 -0.21756,-0.83097 -0.0167,-0.323653 -0.13164,-0.701121 0.16239,-0.940522 0.27182,-0.287988 -0.0196,-0.653421 0.12378,-0.995739 0.0922,-0.293133 -0.37552,-0.549034 -0.0898,-0.743782 -0.20462,-0.16227 0.16381,-0.382931 -0.18498,-0.430021 -0.73255,-0.384964 -1.41755,-0.854025 -2.05637,-1.378705 -0.50798,-0.392102 -1.33637,-0.26144 -1.91877,-0.484702 -0.36104,0.392051 0.1653,0.177053 -0.2273,0.855122 -0.2317,0.22827 -0.40276,0.560919 -0.29793,0.890571 0.0159,0.390158 0.14512,0.633431 0.0249,1.00699 -0.38749,0.387441 -0.11556,0.924963 0.13725,1.302211 0.23287,0.298385 -0.3348,0.559235 -0.0904,0.795011 -0.10643,0.233908 0.0131,0.565345 0.14311,0.724752 0.41776,0.08494 -0.33844,-0.04255 -0.005,0.02062 0.0442,0.0077 0.0893,0.017 0.13449,0.01202 z"
             id="path4981"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccccccccccccccccccccccc" />
          <path
             style="color:#000000;fill:#66362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.80181,71.59646 c 0.26309,-0.167657 0.52809,-0.200829 0.81671,-0.26003 0.66367,-0.136128 1.30786,-0.7173 1.85284,-1.056374 0.2526,-0.157168 0.54,-0.290367 0.74357,-0.471306 0.12294,-0.109272 0.324,-0.184188 0.31693,-0.184188 -0.24065,0 0.0332,0.300834 0.1219,0.395463 0.009,0.0093 -0.0638,0.589101 -0.0731,0.671746 -0.0633,0.562631 -0.25023,1.135528 -0.15847,1.70645 0.0205,0.127449 0.1849,0.354689 0.17066,0.449636 -0.0238,0.158761 -0.18653,0.222733 -0.2316,0.362959 -0.0413,0.128585 0.0488,0.237088 0.0488,0.357542 0,0.179409 -0.20835,0.363517 -0.2438,0.552565 -0.0489,0.260805 0.0246,0.25912 -0.0488,0.585068 -0.0187,0.08318 0.38529,0.328131 0.10971,0.818013 -0.16227,0.288454 -1.11834,0.383244 -1.4262,0.520061 -0.88343,0.392613 -2.12923,0.856068 -2.41356,1.235145 -0.005,0.0062 -0.13409,-0.03363 -0.13409,0 0,0.03867 0.006,-0.10041 0.0975,-0.0325 0.0266,0.01972 -0.21603,-0.11205 -0.19503,-0.146267 0.13436,-0.218954 0.34366,-0.206188 0.25598,-0.530896 -0.0903,-0.334477 0.26698,-0.540227 0.31693,-0.828847 0.0497,-0.286979 -0.0755,-0.595132 0.0122,-0.893855 0.0651,-0.221854 -0.34676,-1.518927 -0.37788,-1.809379 -0.0108,-0.100721 0.12122,-0.141447 0.13409,-0.232944 0.0317,-0.225095 0.1552,-0.569202 0.1219,-0.628407 -0.0151,-0.02676 0.3535,-0.20282 0.3535,-0.254613 0,-0.05499 -0.13308,-0.248961 -0.17066,-0.325038 z"
             id="path4983"
             inkscape:connector-curvature="0" />
          <path
             style="color:#000000;fill:#aa6442;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 103.93767,69.543303 c 0.4653,-0.676026 1.22405,-0.80836 1.92598,-1.159303 0.28745,-0.143718 0.46494,-0.372438 0.80452,-0.460471 0.0998,-0.02586 0.76795,-0.243463 0.76795,-0.31962 0,-0.03985 -0.25182,0.184291 -0.17066,0.265447 0.12667,0.126659 0.41178,0.285456 0.57292,0.368377 0.30569,0.157302 0.63633,0.163614 0.93861,0.297952 0.489,0.217319 0.97198,0.463895 1.47495,0.655493 0.46217,0.176054 1.40182,0.117281 1.40182,0.650076 0,0.0403 -0.55027,0.230774 -0.60949,0.249196 -0.42204,0.131293 -0.74628,0.546908 -1.1824,0.68258 -0.24446,0.07605 -0.43507,0.338642 -0.48759,0.40088 -0.12213,0.144747 -0.67523,0.285049 -0.85328,0.308787 -0.1888,0.02517 -0.43582,0.34129 -0.71919,0.34129 -0.49884,0 -1.5251,-0.635383 -2.04787,-0.996784 -0.28783,-0.198979 -1.89458,-1.202693 -1.81627,-1.2839 0.0719,-0.07457 0.17879,0.104734 0.26818,0.157101"
             id="path4985"
             inkscape:connector-curvature="0" />
        </g>
        <path
           sodipodi:type="inkscape:offset"
           inkscape:radius="-0.69769174"
           inkscape:original="M -48.033203 31.554688 C -55.638356 31.554913 -63.192726 33.122052 -68.566406 35.8125 C -73.940086 38.502948 -77.068359 42.283368 -77.068359 46.087891 C -77.068359 49.892413 -73.940086 53.672833 -68.566406 56.363281 C -63.192726 59.053729 -55.638356 60.620868 -48.033203 60.621094 C -40.42805 60.621319 -32.866866 59.055696 -27.486328 56.365234 C -22.105791 53.674772 -18.972656 49.892838 -18.972656 46.087891 C -18.972656 42.282944 -22.105791 38.501009 -27.486328 35.810547 C -32.866866 33.120085 -40.42805 31.554462 -48.033203 31.554688 z "
           style="color:#000000;fill:#5c2f29;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="path4855"
           d="m -48.033203,32.251953 c -7.509321,2.22e-4 -14.984106,1.561779 -20.220703,4.183594 -5.236656,2.621844 -8.117188,6.230272 -8.117188,9.652344 0,3.42207 2.880532,7.0305 8.117188,9.652343 5.236597,2.621815 12.711382,4.183371 20.220703,4.183594 7.509386,2.22e-4 14.990857,-1.561647 20.234375,-4.183594 5.243516,-2.621946 8.128906,-6.2304 8.128906,-9.652343 0,-3.421944 -2.88539,-7.030397 -8.128906,-9.652344 -5.243518,-2.621947 -12.724989,-4.183817 -20.234375,-4.183594 z"
           transform="matrix(-0.36339419,0,0,0.36339419,23.420829,25.269199)" />
        <path
           transform="matrix(-0.36339419,0,0,0.36339419,36.507057,29.799047)"
           d="m -48.033203,32.251953 c -7.509321,2.22e-4 -14.984106,1.561779 -20.220703,4.183594 -5.236656,2.621844 -8.117188,6.230272 -8.117188,9.652344 0,3.42207 2.880532,7.0305 8.117188,9.652343 5.236597,2.621815 12.711382,4.183371 20.220703,4.183594 7.509386,2.22e-4 14.990857,-1.561647 20.234375,-4.183594 5.243516,-2.621946 8.128906,-6.2304 8.128906,-9.652343 0,-3.421944 -2.88539,-7.030397 -8.128906,-9.652344 -5.243518,-2.621947 -12.724989,-4.183817 -20.234375,-4.183594 z"
           id="path4857"
           style="color:#000000;fill:#5c2f29;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           inkscape:original="M -48.033203 31.554688 C -55.638356 31.554913 -63.192726 33.122052 -68.566406 35.8125 C -73.940086 38.502948 -77.068359 42.283368 -77.068359 46.087891 C -77.068359 49.892413 -73.940086 53.672833 -68.566406 56.363281 C -63.192726 59.053729 -55.638356 60.620868 -48.033203 60.621094 C -40.42805 60.621319 -32.866866 59.055696 -27.486328 56.365234 C -22.105791 53.674772 -18.972656 49.892838 -18.972656 46.087891 C -18.972656 42.282944 -22.105791 38.501009 -27.486328 35.810547 C -32.866866 33.120085 -40.42805 31.554462 -48.033203 31.554688 z "
           inkscape:radius="-0.69769174"
           sodipodi:type="inkscape:offset" />
        <g
           id="g4883"
           transform="translate(-77.846281,-22.548578)">
          <path
             style="color:#000000;fill:#552b26;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 111.15398,60.046773 c 0.16369,0.484474 0.0632,0.849426 0.13409,1.321821 0.0205,0.136773 -0.21942,0.182031 -0.21942,0.319621 0,0.110229 0.0582,0.330695 0.0366,0.417132 -0.0243,0.09732 -0.31247,0.389846 -0.39007,0.487557 -0.0875,0.110127 -0.13426,0.406808 -0.18284,0.547148 -0.11054,0.319316 -0.44956,0.59533 -0.60949,0.893855 -0.0549,0.102461 0.002,0.285013 -0.0244,0.379211 -0.065,0.230951 -0.31927,0.344408 -0.42664,0.487557 -0.0446,0.05952 0.16819,0.488677 0.0731,0.601321 -0.0724,0.0858 -0.23019,0.37795 -0.14628,0.303368 0.052,-0.04621 0.28037,0.106196 0.28037,0.22211 0,0.08931 -0.21312,0.16374 -0.26818,0.20044 -0.0841,0.05606 0.19798,0.298278 0.0975,0.287117 -0.50495,-0.0561 -1.64822,-1.009784 -1.99911,-1.44642 -0.14016,-0.174412 -0.0645,-0.435586 -0.19504,-0.60132 -0.29669,-0.376728 -0.90204,-0.725864 -0.90204,-1.175555 0,-0.02369 0.26718,-0.125809 0.29256,-0.140849 0.21252,-0.12593 0.39268,-0.303022 0.5851,-0.455054 0.63702,-0.503292 1.21214,-1.10361 1.87722,-1.587269 0.61032,-0.443841 1.42295,-0.62094 1.87163,-1.119437 z"
             id="path4885"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="ccsccccccccsccscsccscc" />
          <path
             style="color:#000000;fill:#c9794f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 102.81622,61.769475 c 0.60018,0.217492 1.19879,0.443605 1.80408,0.639241 0.52809,0.170685 2.28624,1.207464 2.59641,0.931776 0.0257,-0.02281 -0.0991,0.02874 -0.0731,0.09209 0.0451,0.110155 0.14396,0.115663 0.20722,0.162519 0.12677,0.0939 0.54983,0.185359 0.80452,0.05959 0.23481,-0.115947 0.6556,-0.299451 0.80452,-0.520061 0.10585,-0.156803 0.11092,-0.390103 0.23161,-0.530896 0.0632,-0.07379 0.32019,-0.172254 0.26817,-0.276282 -0.01,-0.01927 0.94599,-1.818308 1.03613,-1.874387 0.17043,-0.10604 0.70361,-0.430224 0.5851,-0.509226 -0.19972,-0.13314 -0.81032,0.152459 -1.02393,0.205857 -1.54071,0.385152 -3.15784,0.5734 -4.60771,1.088878 -0.43985,0.156381 -2.66935,0.369263 -2.63298,0.530896 0.0164,0.07309 0.14628,-0.0325 0.21942,-0.04876"
             id="path4887"
             inkscape:connector-curvature="0" />
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.80181,63.833467 c 0.15869,0.272844 0.25236,0.343488 0.43883,0.509226 0.092,0.08174 0.17796,0.705309 0.2438,0.812595 0.16876,0.275004 0.39631,0.38952 0.64605,0.639242 0.0224,0.0224 -0.10811,0.110477 -0.0853,0.14085 0.0418,0.05573 0.15038,0.0056 0.17066,0.08668 0.015,0.06006 0.067,0.349396 0.0731,0.352124 0.0347,0.01543 0.15329,-0.0076 0.17065,0.05417 0.008,0.02864 -0.13377,0.173354 -0.0853,0.173354 10e-4,0 -0.3016,-0.178539 -0.60948,-0.400881 -0.31889,-0.230291 -1.23557,-0.622389 -1.63342,-0.763839 -1.24523,-0.442719 -2.10834,-1.867416 -2.91334,-2.654478 -0.31529,-0.308265 -0.80725,-0.517069 -1.06051,-0.74217 -0.10046,-0.08929 -0.46352,-0.232944 -0.32912,-0.232944 1.30104,0 2.66933,0.220099 4.41268,0.828847 0.1095,0.03824 1.13429,0.5931 1.14583,0.639242 0.004,0.01434 -0.84662,0.653691 -0.37788,0.482139"
             id="path4889"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(-0.47514031,0.87991004,-0.87991004,-0.47514031,155.12759,-12.657345)"
           style="display:inline"
           id="g4822-6">
          <path
             sodipodi:nodetypes="cccccccccccccccccccccc"
             inkscape:connector-curvature="0"
             id="path4770-5"
             d="m 107.54583,81.825608 c -0.0437,0.437365 -0.41925,0.762337 -0.35539,1.222586 0.0226,0.308928 0.43003,0.568981 0.25748,0.873487 -0.14606,0.140067 -0.42249,0.293293 -0.23727,0.550146 -0.0816,0.09397 -0.25349,0.18727 -0.0864,0.333143 0.17888,0.201525 -0.12714,0.462095 0.0103,0.718865 0.0573,0.189529 0.0744,0.344148 -0.0641,0.476957 0.11025,0.121965 0.075,0.343083 0.0318,0.34263 0.23343,0.101482 0.14769,0.661107 0.39167,0.749077 0.22892,0.143265 0.47434,0.252028 0.69357,0.415213 -0.15251,0.04496 -0.12913,0.123714 0.009,0.181636 -0.19287,0.229348 0.12341,0.462039 0.2305,0.656079 0.14267,0.317821 0.37265,0.569162 0.55683,0.855681 0.20291,-0.374314 0.4698,-1.258042 0.76167,-1.578204 0.21585,-0.224066 0.21321,-0.573665 0.22023,-0.884363 -0.0152,-0.318187 0.25805,-0.445002 0.35915,-0.690907 0.033,-0.246197 -0.11636,-0.478165 -0.0471,-0.729116 0.045,-0.545051 0.0446,-1.161192 -0.27981,-1.597688 -0.28605,-0.393611 -0.68058,-0.642213 -1.01858,-0.965968 -0.49416,-0.420461 -0.98012,-0.904037 -1.58471,-1.079112 -0.0533,0.03053 0.13606,0.125331 0.15087,0.149858 z"
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             sodipodi:nodetypes="ccccsccscsscsccssscccc"
             inkscape:connector-curvature="0"
             id="path4768-5"
             d="m 108.86232,84.678674 c -0.0691,0.123676 -0.1501,0.239123 -0.20723,0.371027 -0.0661,0.152602 0.44016,1.378721 0.46321,1.548077 0.0216,0.158819 -0.13747,0.207235 -0.1219,0.313452 0.014,0.09532 0.14005,0.232285 0.10971,0.319852 -0.19137,0.552345 -0.002,1.150142 -0.0244,1.253814 -0.0103,0.04877 -0.12616,0.106489 -0.14628,0.166323 -0.0562,0.167169 0.0609,0.253405 0.0609,0.396613 0,0.122706 -0.17046,0.108851 -0.12189,0.134338 0.32923,0.17278 2.25456,-0.116101 2.77925,-0.07677 0.60794,0.04558 2.52339,-0.119895 2.97429,0.05758 0.23767,0.09355 0.62759,0.07172 0.86547,0.08956 0.1225,0.0092 0.48844,0.05118 0.36569,0.05118 -0.0746,0 0.12881,-0.556792 0.14627,-0.767641 0.0166,-0.200209 -0.22862,-0.34831 -0.18284,-0.55654 0.088,-0.400067 0.23639,-0.715695 0.34131,-1.119477 0.11451,-0.440689 -0.24687,-1.710665 -0.26595,-1.710665 -0.62306,0 -1.31088,-0.493782 -1.94039,-0.573068 -0.8806,-0.110905 -1.78159,-0.05878 -2.66954,-0.166322 -0.35925,-0.0435 -2.96295,-0.328034 -2.79145,0.03199 0.046,0.09656 0.17886,0.153347 0.3657,0.236689 z"
             style="color:#000000;fill:#64352d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4766-1"
             d="m 107.53364,81.784237 c 0.44364,-0.0578 0.87262,0.04612 1.31649,-0.03231 0.4899,-0.08656 1.14612,0.06745 1.64561,0.084 0.85509,0.02833 1.70737,-0.407066 2.47451,-0.407066 0.0584,0 0.0244,0.137164 0.0244,0.206763 0,0.07613 0.22727,0.151525 0.26817,0.200303 0.0576,0.06864 -0.0298,0.16043 0.061,0.232609 0.1474,0.117197 0.38399,0.211097 0.49978,0.374758 0.11179,0.158021 0.11827,0.432937 0.28036,0.555677 0.11078,0.08388 0.25951,0.08867 0.3535,0.213225 0.0778,0.103099 0.014,0.33216 0.1219,0.439373 0.3931,0.390689 0.69117,1.154653 1.13364,1.389191 0.0852,0.04516 0.21942,0.09558 0.21942,0.206764 0,0.03499 -0.54506,-0.04355 -0.64606,-0.05816 -0.39283,-0.05679 -0.78926,-0.05501 -1.1824,-0.116302 -1.12026,-0.174651 -2.23892,-0.23907 -3.36436,-0.23907 -0.41141,0 -0.87157,-0.04015 -1.26773,0.109838 -0.40623,0.153805 -0.93454,-0.08183 -0.87766,0.03876 0.0435,0.09212 0.26761,-0.867516 -0.0975,-1.201812 -0.21801,-0.199611 -0.53225,-0.587209 -0.68262,-0.8529 -0.034,-0.0601 0.11902,-0.288186 0.10971,-0.342452 -0.0137,-0.07987 -0.37455,-0.776524 -0.39007,-0.801209 z"
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
        <g
           id="g4817"
           transform="matrix(0.92387953,-0.38268343,0.38268343,0.92387953,-113.55723,21.188414)">
          <path
             sodipodi:nodetypes="ccccscccssscccccsccsccc"
             inkscape:connector-curvature="0"
             id="path4780"
             d="m 126.50617,74.957669 c 0,0.182178 0.13899,0.669043 0.17745,0.847361 0.0283,0.131473 0.0737,0.249533 0.0366,0.380809 -0.0413,0.146234 -0.23252,0.220013 -0.25599,0.368909 -0.0262,0.166021 0.0244,0.559829 0.0244,0.630715 0,0.04153 0.1457,0.01361 0.1219,0.0833 -0.0354,0.103619 -0.14587,0.174275 -0.20722,0.214205 -0.004,0.0025 0.0939,0.10809 0.0975,0.130904 0.0104,0.06589 -0.1097,0.297667 -0.1097,0.41056 0,0.140777 0.92585,0.09638 0.99955,0.0833 0.81456,-0.144585 2.04438,-0.214418 2.82801,-0.166604 0.28243,0.01723 0.74567,0.04916 0.96299,-0.0357 0.0335,-0.01309 -0.0762,-0.01634 -0.0975,-0.0476 -0.003,-0.0043 0.13866,-0.185944 0.14628,-0.208254 0.0318,-0.09316 0.20398,-0.11907 0.21941,-0.232056 0.048,-0.351052 -0.31755,-1.473702 -0.28036,-1.588689 0.0742,-0.229513 -0.41445,-1.357972 -0.41445,-1.725541 0,-0.515629 0.40108,-1.098675 0.4754,-1.606539 0.0337,-0.230234 -0.41353,-0.678765 -0.19504,-0.785419 0.009,-0.0044 -0.35744,0.08301 -0.707,0.0952 -0.35435,0.01236 -0.71275,0.06759 -1.07269,0.07736 -0.66793,0.01811 -2.3163,0.07949 -2.75319,0.281521 0.007,0.742109 -0.0132,2.132286 0.004,2.792256 z"
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             sodipodi:nodetypes="cccccccsccccc"
             inkscape:connector-curvature="0"
             id="path4782"
             d="m 135.28504,69.435617 c -0.007,1.779616 0.41457,2.774313 -0.25146,4.252201 -0.0338,0.07499 0.0125,0.38463 -0.0122,0.446322 -0.28473,0.710815 -2.43097,1.973659 -3.03524,2.644114 -0.20064,-0.194019 -1.3825,2.768135 -0.92647,-0.128478 0.0227,-0.415929 -0.38526,-0.902341 -0.48758,-1.271339 -0.10477,-0.377791 -0.0891,-0.941355 -0.061,-1.332201 0.008,-0.104674 0.12189,-0.141975 0.12189,-0.243448 0,-0.305773 0.053,-0.456324 0.10971,-0.770918 0.0816,-0.452908 -0.24359,-0.829895 0.0975,-1.460688 0.077,-0.142478 0.48342,-0.190554 0.62167,-0.250209 0.74085,-0.319667 1.45301,-1.006046 2.11422,-1.464568 0.77996,-0.646507 1.17353,-0.587465 1.61873,-0.94017"
             style="color:#000000;fill:#62342c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4778"
             d="m 126.41549,71.888994 c 0.67819,-0.904794 1.69481,-1.454354 2.57203,-2.156086 0.271,-0.216784 0.49373,-0.585135 0.58511,-0.720501 0.10296,-0.15253 1.20431,-0.270054 2.20634,-0.232944 0.68946,0.02553 1.48002,0.06129 2.16976,-0.01083 0.20722,-0.02167 0.84574,-0.153406 0.97518,0 0.10262,0.121613 0.58185,0.16161 0.4754,0.04334 -0.018,-0.02002 -0.0534,0.09181 -0.15847,0.130015 -0.21932,0.07975 -0.5633,0.36525 -0.74357,0.525478 -0.59121,0.525492 -1.38444,0.708712 -2.0113,1.240563 -0.23362,0.198213 -0.2415,0.550527 -0.43883,0.725918 -0.23625,0.20999 -0.94499,0.894115 -0.96299,0.910107 -0.0566,0.05033 -0.50246,-0.05285 -0.60948,-0.04334 -0.33773,0.03002 -0.6475,-0.11333 -0.97518,-0.102928 -0.83066,0.02637 -1.64007,-0.03061 -2.43794,-0.08126 -0.29832,-0.01894 -0.41915,-0.17414 -0.64606,-0.227527 z"
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
        <g
           transform="translate(-59.0558,-31.138513)"
           id="g4947">
          <path
             inkscape:connector-curvature="0"
             id="path4949"
             d="m 114.689,78.275993 c -0.0448,-0.177462 -0.41445,-0.0063 -0.41445,-0.05417 0,-0.232124 0.33065,0.134863 0.41445,0.05417 0.0883,-0.08499 -0.18519,-0.286537 -0.0853,-0.357542 0.37902,-0.269507 0.87395,-0.377842 1.15802,-0.731336 0.64642,-0.804385 0.21075,-1.040975 0.41445,-1.403081 0.17365,-0.308685 0.72334,-0.557531 0.99956,-0.785508 0.12682,-0.104673 0.10005,-0.364461 0.24379,-0.449637 0.30682,-0.181808 1.47998,-0.77881 1.38963,-0.899272 -0.0527,-0.07024 0.26308,-0.225263 0.18284,-0.189605 -0.37683,0.167469 -0.2181,0.888613 -0.29255,1.186389 -0.0627,0.250872 0.002,0.265377 0.0366,0.48214 0.0205,0.12754 -0.1219,0.362729 -0.1219,0.514643 0,0.07182 0.13015,0.107432 0.0975,0.189606 -0.0831,0.209239 -0.30794,0.460148 -0.17066,0.753005 0.19505,0.416078 0.51585,0.740932 0.3657,1.208058 -0.0405,0.126136 0.29271,0.437552 0.26817,0.62299 -0.093,0.702296 -0.40226,1.213032 -0.40226,1.820213 0,7.69e-4 -0.3703,0.313521 -0.40226,0.308787 -0.0943,-0.01397 -0.89932,-0.608536 -1.1824,-0.780092 -0.3473,-0.210467 -0.67988,-0.398229 -1.02394,-0.606738 -0.33769,-0.204649 -1.675,-1.074865 -1.70656,-1.105129"
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             sodipodi:nodetypes="cccssssssssccccssccc"
             inkscape:connector-curvature="0"
             id="path4951"
             d="m 118.84569,73.920482 c 0.64539,0.615725 1.24229,1.136222 1.7675,1.836466 0.0818,0.109094 0.2248,0.115175 0.30475,0.216692 0.20016,0.254162 0.2562,1.172057 0.67043,1.386829 0.36316,0.188294 0.75501,0.815577 1.03613,0.915524 0.13476,0.04791 0.46032,0.180697 0.34131,0.260031 -0.17163,0.114411 -0.78966,0.14772 -1.04832,0.216692 -0.73093,0.194904 -1.42551,0.580962 -2.15758,0.758422 -0.25473,0.06175 -1.64561,0.975806 -1.64561,0.687997 0,-0.172655 -0.71919,-1.495386 -0.71919,-1.760623 0,-0.199123 -0.0244,-0.435844 -0.0244,-0.617572 0,-0.132111 0.19587,-0.266041 0.20723,-0.42255 0.0165,-0.227913 -0.0753,-0.536601 -0.0366,-0.725918 0.0123,-0.06027 0.14741,-0.152263 0.17065,-0.238361 0.0482,-0.178431 -0.18237,-0.374979 -0.1097,-0.557983 0.0411,-0.103469 0.22455,-0.228133 0.30474,-0.303368 0.13735,-0.128862 0.19968,-0.423136 0.37788,-0.601321 0.17584,-0.17583 0.26812,-0.47076 0.35008,-0.725711 0.0411,-0.12794 0.14853,-0.28355 0.10973,-0.469361 z"
             style="color:#000000;fill:#65362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
        <g
           id="g4973"
           transform="translate(-78.785806,-35.299262)">
          <path
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 124.23354,84.099593 c 1.64421,-0.09185 3.35995,-0.0439 4.98559,0.162519 0.36664,0.04655 1.01918,0.261196 1.35306,0.07042 0.21887,-0.12506 0.52546,-0.09151 0.48758,-0.108346 -0.16075,-0.07144 -0.43503,-0.548313 -0.60948,-0.910106 -0.0403,-0.08369 0.0476,-0.144345 0.0244,-0.211275 -0.0627,-0.181045 -0.22304,-0.421522 -0.30475,-0.612155 -0.0433,-0.101005 0.049,-0.23768 0.0244,-0.303369 -0.0772,-0.205892 -0.45809,-0.438857 -0.53634,-0.769257 -0.0859,-0.362492 -0.0673,-0.888662 -0.2438,-1.045539 -0.35116,-0.312126 -2.37918,-0.223015 -2.93772,-0.232944 -0.28206,-0.005 -1.87208,-0.08817 -2.10882,0.04334 -0.0252,0.01403 0.0679,0.027 0.0853,0.08126 0.0331,0.10285 -0.16097,0.151563 -0.20722,0.249196 -0.0897,0.189385 0.0463,0.32302 0,0.487557 -0.0513,0.182401 -0.23989,0.288828 -0.29256,0.460471 -0.16233,0.529059 -0.009,1.100425 -0.0609,1.587269 -0.0117,0.109357 0.12887,0.279451 0.14627,0.395463 0.0133,0.08845 -0.13021,0.207825 -0.061,0.2817 0.0375,0.03996 0.06,0.316148 0.06,0.316148"
             id="path4975"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="ccsccccccscccccccccc" />
          <path
             style="color:#000000;fill:#65362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 124.08044,84.525162 c 0.0162,0.348768 -0.003,0.707125 0.11951,1.038939 -0.0104,0.329292 -0.10546,0.652915 -0.0181,0.984286 0.0719,0.338291 0.0679,0.69775 0.17278,1.023454 0.20789,0.201121 0.0563,0.38477 -0.0805,0.533663 0.16121,0.283223 0.19019,0.675048 0.47639,0.867856 1.2376,0.0149 2.4781,-0.117817 3.71628,-0.02945 0.76586,0.02793 1.53751,0.09827 2.30146,0.0096 0.35221,-0.03939 -0.0301,-0.486551 0.0622,-0.74987 0.0853,-0.445047 0.19765,-0.897189 0.17102,-1.352462 -0.0582,-0.286244 -0.13931,-0.607705 0.0459,-0.868356 0.22946,-0.376893 -0.009,-0.810734 -0.20197,-1.147143 -0.20933,-0.188686 0.0618,-0.531072 0.0242,-0.726086 -0.84569,-0.06852 -1.62497,-0.479651 -2.47772,-0.512534 -1.12552,-0.09115 -2.26985,-0.130864 -3.38673,0.0647 -1.47035,-0.140763 -0.92121,0.01015 -0.92475,0.863403 z"
             id="path4977"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccccccccccccccc" />
        </g>
        <g
           transform="matrix(0.99710444,0.07604421,-0.07604421,0.99710444,-70.432828,-31.336733)"
           id="g4859">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 126.50617,74.957669 c 0,0.182178 0.13899,0.669043 0.17745,0.847361 0.0283,0.131473 0.0737,0.249533 0.0366,0.380809 -0.0413,0.146234 -0.23252,0.220013 -0.25599,0.368909 -0.0262,0.166021 0.0244,0.559829 0.0244,0.630715 0,0.04153 0.1457,0.01361 0.1219,0.0833 -0.0354,0.103619 -0.14587,0.174275 -0.20722,0.214205 -0.004,0.0025 0.0939,0.10809 0.0975,0.130904 0.0104,0.06589 -0.1097,0.297667 -0.1097,0.41056 0,0.140777 0.92585,0.09638 0.99955,0.0833 0.81456,-0.144585 2.04438,-0.214418 2.82801,-0.166604 0.28243,0.01723 0.74567,0.04916 0.96299,-0.0357 0.0335,-0.01309 -0.0762,-0.01634 -0.0975,-0.0476 -0.003,-0.0043 0.13866,-0.185944 0.14628,-0.208254 0.0318,-0.09316 0.20398,-0.11907 0.21941,-0.232056 0.048,-0.351052 -0.31755,-1.473702 -0.28036,-1.588689 0.0742,-0.229513 -0.41445,-1.357972 -0.41445,-1.725541 0,-0.515629 0.40108,-1.098675 0.4754,-1.606539 0.0337,-0.230234 -0.41353,-0.678765 -0.19504,-0.785419 0.009,-0.0044 -0.35744,0.08301 -0.707,0.0952 -0.35435,0.01236 -0.71275,0.06759 -1.07269,0.07736 -0.66793,0.01811 -2.3163,0.07949 -2.75319,0.281521 0.007,0.742109 -0.0132,2.132286 0.004,2.792256 z"
             id="path4861"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="ccccscccssscccccsccsccc" />
          <path
             style="color:#000000;fill:#62342c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 135.28504,69.435617 c -0.007,1.779616 0.41457,2.774313 -0.25146,4.252201 -0.0338,0.07499 0.0125,0.38463 -0.0122,0.446322 -0.28473,0.710815 -2.43097,1.973659 -3.03524,2.644114 -0.20064,-0.194019 -1.3825,2.768135 -0.92647,-0.128478 0.0227,-0.415929 -0.38526,-0.902341 -0.48758,-1.271339 -0.10477,-0.377791 -0.0891,-0.941355 -0.061,-1.332201 0.008,-0.104674 0.12189,-0.141975 0.12189,-0.243448 0,-0.305773 0.053,-0.456324 0.10971,-0.770918 0.0816,-0.452908 -0.24359,-0.829895 0.0975,-1.460688 0.077,-0.142478 0.48342,-0.190554 0.62167,-0.250209 0.74085,-0.319667 1.45301,-1.006046 2.11422,-1.464568 0.77996,-0.646507 1.17353,-0.587465 1.61873,-0.94017"
             id="path4863"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccccccsccccc" />
          <path
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 126.41549,71.888994 c 0.67819,-0.904794 1.69481,-1.454354 2.57203,-2.156086 0.271,-0.216784 0.49373,-0.585135 0.58511,-0.720501 0.10296,-0.15253 1.20431,-0.270054 2.20634,-0.232944 0.68946,0.02553 1.48002,0.06129 2.16976,-0.01083 0.20722,-0.02167 0.84574,-0.153406 0.97518,0 0.10262,0.121613 0.58185,0.16161 0.4754,0.04334 -0.018,-0.02002 -0.0534,0.09181 -0.15847,0.130015 -0.21932,0.07975 -0.5633,0.36525 -0.74357,0.525478 -0.59121,0.525492 -1.38444,0.708712 -2.0113,1.240563 -0.23362,0.198213 -0.2415,0.550527 -0.43883,0.725918 -0.23625,0.20999 -0.94499,0.894115 -0.96299,0.910107 -0.0566,0.05033 -0.50246,-0.05285 -0.60948,-0.04334 -0.33773,0.03002 -0.6475,-0.11333 -0.97518,-0.102928 -0.83066,0.02637 -1.64007,-0.03061 -2.43794,-0.08126 -0.29832,-0.01894 -0.41915,-0.17414 -0.64606,-0.227527 z"
             id="path4865"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g4933"
           transform="translate(-42.949672,-41.33906)">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.54583,81.825608 c -0.0437,0.437365 -0.41925,0.762337 -0.35539,1.222586 0.0226,0.308928 0.43003,0.568981 0.25748,0.873487 -0.14606,0.140067 -0.42249,0.293293 -0.23727,0.550146 -0.0816,0.09397 -0.25349,0.18727 -0.0864,0.333143 0.17888,0.201525 -0.12714,0.462095 0.0103,0.718865 0.0573,0.189529 0.0744,0.344148 -0.0641,0.476957 0.11025,0.121965 0.075,0.343083 0.0318,0.34263 0.23343,0.101482 0.14769,0.661107 0.39167,0.749077 0.22892,0.143265 0.47434,0.252028 0.69357,0.415213 -0.15251,0.04496 -0.12913,0.123714 0.009,0.181636 -0.19287,0.229348 0.12341,0.462039 0.2305,0.656079 0.14267,0.317821 0.37265,0.569162 0.55683,0.855681 0.20291,-0.374314 0.4698,-1.258042 0.76167,-1.578204 0.21585,-0.224066 0.21321,-0.573665 0.22023,-0.884363 -0.0152,-0.318187 0.25805,-0.445002 0.35915,-0.690907 0.033,-0.246197 -0.11636,-0.478165 -0.0471,-0.729116 0.045,-0.545051 0.0446,-1.161192 -0.27981,-1.597688 -0.28605,-0.393611 -0.68058,-0.642213 -1.01858,-0.965968 -0.49416,-0.420461 -0.98012,-0.904037 -1.58471,-1.079112 -0.0533,0.03053 0.13606,0.125331 0.15087,0.149858 z"
             id="path4935"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccccccccccccccccccccc" />
          <path
             style="color:#000000;fill:#64352d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 108.86232,84.678674 c -0.0691,0.123676 -0.1501,0.239123 -0.20723,0.371027 -0.0661,0.152602 0.44016,1.378721 0.46321,1.548077 0.0216,0.158819 -0.13747,0.207235 -0.1219,0.313452 0.014,0.09532 0.14005,0.232285 0.10971,0.319852 -0.19137,0.552345 -0.002,1.150142 -0.0244,1.253814 -0.0103,0.04877 -0.12616,0.106489 -0.14628,0.166323 -0.0562,0.167169 0.0609,0.253405 0.0609,0.396613 0,0.122706 -0.17046,0.108851 -0.12189,0.134338 0.32923,0.17278 2.25456,-0.116101 2.77925,-0.07677 0.60794,0.04558 2.52339,-0.119895 2.97429,0.05758 0.23767,0.09355 0.62759,0.07172 0.86547,0.08956 0.1225,0.0092 0.48844,0.05118 0.36569,0.05118 -0.0746,0 0.12881,-0.556792 0.14627,-0.767641 0.0166,-0.200209 -0.22862,-0.34831 -0.18284,-0.55654 0.088,-0.400067 0.23639,-0.715695 0.34131,-1.119477 0.11451,-0.440689 -0.24687,-1.710665 -0.26595,-1.710665 -0.62306,0 -1.31088,-0.493782 -1.94039,-0.573068 -0.8806,-0.110905 -1.78159,-0.05878 -2.66954,-0.166322 -0.35925,-0.0435 -2.96295,-0.328034 -2.79145,0.03199 0.046,0.09656 0.17886,0.153347 0.3657,0.236689 z"
             id="path4937"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="ccccsccscsscsccssscccc" />
          <path
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.53364,81.784237 c 0.44364,-0.0578 0.87262,0.04612 1.31649,-0.03231 0.4899,-0.08656 1.14612,0.06745 1.64561,0.084 0.85509,0.02833 1.70737,-0.407066 2.47451,-0.407066 0.0584,0 0.0244,0.137164 0.0244,0.206763 0,0.07613 0.22727,0.151525 0.26817,0.200303 0.0576,0.06864 -0.0298,0.16043 0.061,0.232609 0.1474,0.117197 0.38399,0.211097 0.49978,0.374758 0.11179,0.158021 0.11827,0.432937 0.28036,0.555677 0.11078,0.08388 0.25951,0.08867 0.3535,0.213225 0.0778,0.103099 0.014,0.33216 0.1219,0.439373 0.3931,0.390689 0.69117,1.154653 1.13364,1.389191 0.0852,0.04516 0.21942,0.09558 0.21942,0.206764 0,0.03499 -0.54506,-0.04355 -0.64606,-0.05816 -0.39283,-0.05679 -0.78926,-0.05501 -1.1824,-0.116302 -1.12026,-0.174651 -2.23892,-0.23907 -3.36436,-0.23907 -0.41141,0 -0.87157,-0.04015 -1.26773,0.109838 -0.40623,0.153805 -0.93454,-0.08183 -0.87766,0.03876 0.0435,0.09212 0.26761,-0.867516 -0.0975,-1.201812 -0.21801,-0.199611 -0.53225,-0.587209 -0.68262,-0.8529 -0.034,-0.0601 0.11902,-0.288186 0.10971,-0.342452 -0.0137,-0.07987 -0.37455,-0.776524 -0.39007,-0.801209 z"
             id="path4939"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g4867"
           transform="matrix(0.96981825,0.24382895,-0.24382895,0.96981825,-20.566138,-47.50504)">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 103.7914,75.155627 c 0.43322,0.30296 0.90363,0.550092 1.33282,0.857964 0.12045,0.336984 0.49108,0.342055 0.77245,0.463428 0.21944,0.312532 0.71347,0.02281 0.79545,0.42304 0.17943,0.293788 0.19192,0.166568 0.54331,0.230309 0.23911,0.231474 0.41925,-0.04977 0.41896,-0.316541 0.22692,-0.289113 0.52346,-0.549597 0.5441,-0.950953 0.0989,-0.346091 0.0896,-0.222166 -0.0451,-0.510101 -0.17218,-0.296438 0.0631,-0.602738 -0.21756,-0.83097 -0.0167,-0.323653 -0.13164,-0.701121 0.16239,-0.940522 0.27182,-0.287988 -0.0196,-0.653421 0.12378,-0.995739 0.0922,-0.293133 -0.37552,-0.549034 -0.0898,-0.743782 -0.20462,-0.16227 0.16381,-0.382931 -0.18498,-0.430021 -0.73255,-0.384964 -1.41755,-0.854025 -2.05637,-1.378705 -0.50798,-0.392102 -1.33637,-0.26144 -1.91877,-0.484702 -0.36104,0.392051 0.1653,0.177053 -0.2273,0.855122 -0.2317,0.22827 -0.40276,0.560919 -0.29793,0.890571 0.0159,0.390158 0.14512,0.633431 0.0249,1.00699 -0.38749,0.387441 -0.11556,0.924963 0.13725,1.302211 0.23287,0.298385 -0.3348,0.559235 -0.0904,0.795011 -0.10643,0.233908 0.0131,0.565345 0.14311,0.724752 0.41776,0.08494 -0.33844,-0.04255 -0.005,0.02062 0.0442,0.0077 0.0893,0.017 0.13449,0.01202 z"
             id="path4869"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccccccccccccccccccccccc" />
          <path
             style="color:#000000;fill:#66362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.80181,71.59646 c 0.26309,-0.167657 0.52809,-0.200829 0.81671,-0.26003 0.66367,-0.136128 1.30786,-0.7173 1.85284,-1.056374 0.2526,-0.157168 0.54,-0.290367 0.74357,-0.471306 0.12294,-0.109272 0.324,-0.184188 0.31693,-0.184188 -0.24065,0 0.0332,0.300834 0.1219,0.395463 0.009,0.0093 -0.0638,0.589101 -0.0731,0.671746 -0.0633,0.562631 -0.25023,1.135528 -0.15847,1.70645 0.0205,0.127449 0.1849,0.354689 0.17066,0.449636 -0.0238,0.158761 -0.18653,0.222733 -0.2316,0.362959 -0.0413,0.128585 0.0488,0.237088 0.0488,0.357542 0,0.179409 -0.20835,0.363517 -0.2438,0.552565 -0.0489,0.260805 0.0246,0.25912 -0.0488,0.585068 -0.0187,0.08318 0.38529,0.328131 0.10971,0.818013 -0.16227,0.288454 -1.11834,0.383244 -1.4262,0.520061 -0.88343,0.392613 -2.12923,0.856068 -2.41356,1.235145 -0.005,0.0062 -0.13409,-0.03363 -0.13409,0 0,0.03867 0.006,-0.10041 0.0975,-0.0325 0.0266,0.01972 -0.21603,-0.11205 -0.19503,-0.146267 0.13436,-0.218954 0.34366,-0.206188 0.25598,-0.530896 -0.0903,-0.334477 0.26698,-0.540227 0.31693,-0.828847 0.0497,-0.286979 -0.0755,-0.595132 0.0122,-0.893855 0.0651,-0.221854 -0.34676,-1.518927 -0.37788,-1.809379 -0.0108,-0.100721 0.12122,-0.141447 0.13409,-0.232944 0.0317,-0.225095 0.1552,-0.569202 0.1219,-0.628407 -0.0151,-0.02676 0.3535,-0.20282 0.3535,-0.254613 0,-0.05499 -0.13308,-0.248961 -0.17066,-0.325038 z"
             id="path4871"
             inkscape:connector-curvature="0" />
          <path
             style="color:#000000;fill:#aa6442;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 103.93767,69.543303 c 0.4653,-0.676026 1.22405,-0.80836 1.92598,-1.159303 0.28745,-0.143718 0.46494,-0.372438 0.80452,-0.460471 0.0998,-0.02586 0.76795,-0.243463 0.76795,-0.31962 0,-0.03985 -0.25182,0.184291 -0.17066,0.265447 0.12667,0.126659 0.41178,0.285456 0.57292,0.368377 0.30569,0.157302 0.63633,0.163614 0.93861,0.297952 0.489,0.217319 0.97198,0.463895 1.47495,0.655493 0.46217,0.176054 1.40182,0.117281 1.40182,0.650076 0,0.0403 -0.55027,0.230774 -0.60949,0.249196 -0.42204,0.131293 -0.74628,0.546908 -1.1824,0.68258 -0.24446,0.07605 -0.43507,0.338642 -0.48759,0.40088 -0.12213,0.144747 -0.67523,0.285049 -0.85328,0.308787 -0.1888,0.02517 -0.43582,0.34129 -0.71919,0.34129 -0.49884,0 -1.5251,-0.635383 -2.04787,-0.996784 -0.28783,-0.198979 -1.89458,-1.202693 -1.81627,-1.2839 0.0719,-0.07457 0.17879,0.104734 0.26818,0.157101"
             id="path4873"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g4987"
           transform="matrix(0.73990202,-0.67271466,0.67271466,0.73990202,-105.94059,81.403461)">
          <path
             sodipodi:nodetypes="cccccccccccccccccccccccc"
             inkscape:connector-curvature="0"
             id="path4989"
             d="m 143.7914,75.155627 c 0.43322,0.30296 0.90363,0.550092 1.33282,0.857964 0.12045,0.336984 0.49108,0.342055 0.77245,0.463428 0.21944,0.312532 0.71347,0.02281 0.79545,0.42304 0.17943,0.293788 0.19192,0.166568 0.54331,0.230309 0.23911,0.231474 0.41925,-0.04977 0.41896,-0.316541 0.22692,-0.289113 0.52346,-0.549597 0.5441,-0.950953 0.0989,-0.346091 0.0896,-0.222166 -0.0451,-0.510101 -0.17218,-0.296438 0.0631,-0.602738 -0.21756,-0.83097 -0.0167,-0.323653 -0.13164,-0.701121 0.16239,-0.940522 0.27182,-0.287988 -0.0196,-0.653421 0.12378,-0.995739 0.0922,-0.293133 -0.37552,-0.549034 -0.0898,-0.743782 -0.20462,-0.16227 0.16381,-0.382931 -0.18498,-0.430021 -0.73255,-0.384964 -1.41755,-0.854025 -2.05637,-1.378705 -0.50798,-0.392102 -1.33637,-0.26144 -1.91877,-0.484702 -0.36104,0.392051 0.1653,0.177053 -0.2273,0.855122 -0.2317,0.22827 -0.40276,0.560919 -0.29793,0.890571 0.0159,0.390158 0.14512,0.633431 0.0249,1.00699 -0.38749,0.387441 -0.11556,0.924963 0.13725,1.302211 0.23287,0.298385 -0.3348,0.559235 -0.0904,0.795011 -0.10643,0.233908 0.0131,0.565345 0.14311,0.724752 0.41776,0.08494 -0.33844,-0.04255 -0.005,0.02062 0.0442,0.0077 0.0893,0.017 0.13449,0.01202 z"
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4991"
             d="m 147.80181,71.59646 c 0.26309,-0.167657 0.52809,-0.200829 0.81671,-0.26003 0.66367,-0.136128 1.30786,-0.7173 1.85284,-1.056374 0.2526,-0.157168 0.54,-0.290367 0.74357,-0.471306 0.12294,-0.109272 0.324,-0.184188 0.31693,-0.184188 -0.24065,0 0.0332,0.300834 0.1219,0.395463 0.009,0.0093 -0.0638,0.589101 -0.0731,0.671746 -0.0633,0.562631 -0.25023,1.135528 -0.15847,1.70645 0.0205,0.127449 0.1849,0.354689 0.17066,0.449636 -0.0238,0.158761 -0.18653,0.222733 -0.2316,0.362959 -0.0413,0.128585 0.0488,0.237088 0.0488,0.357542 0,0.179409 -0.20835,0.363517 -0.2438,0.552565 -0.0489,0.260805 0.0246,0.25912 -0.0488,0.585068 -0.0187,0.08318 0.38529,0.328131 0.10971,0.818013 -0.16227,0.288454 -1.11834,0.383244 -1.4262,0.520061 -0.88343,0.392613 -2.12923,0.856068 -2.41356,1.235145 -0.005,0.0062 -0.13409,-0.03363 -0.13409,0 0,0.03867 0.006,-0.10041 0.0975,-0.0325 0.0266,0.01972 -0.21603,-0.11205 -0.19503,-0.146267 0.13436,-0.218954 0.34366,-0.206188 0.25598,-0.530896 -0.0903,-0.334477 0.26698,-0.540227 0.31693,-0.828847 0.0497,-0.286979 -0.0755,-0.595132 0.0122,-0.893855 0.0651,-0.221854 -0.34676,-1.518927 -0.37788,-1.809379 -0.0108,-0.100721 0.12122,-0.141447 0.13409,-0.232944 0.0317,-0.225095 0.1552,-0.569202 0.1219,-0.628407 -0.0151,-0.02676 0.3535,-0.20282 0.3535,-0.254613 0,-0.05499 -0.13308,-0.248961 -0.17066,-0.325038 z"
             style="color:#000000;fill:#66362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4993"
             d="m 143.93767,69.543303 c 0.4653,-0.676026 1.22405,-0.80836 1.92598,-1.159303 0.28745,-0.143718 0.46494,-0.372438 0.80452,-0.460471 0.0998,-0.02586 0.76795,-0.243463 0.76795,-0.31962 0,-0.03985 -0.25182,0.184291 -0.17066,0.265447 0.12667,0.126659 0.41178,0.285456 0.57292,0.368377 0.30569,0.157302 0.63633,0.163614 0.93861,0.297952 0.489,0.217319 0.97198,0.463895 1.47495,0.655493 0.46217,0.176054 1.40182,0.117281 1.40182,0.650076 0,0.0403 -0.55027,0.230774 -0.60949,0.249196 -0.42204,0.131293 -0.74628,0.546908 -1.1824,0.68258 -0.24446,0.07605 -0.43507,0.338642 -0.48759,0.40088 -0.12213,0.144747 -0.67523,0.285049 -0.85328,0.308787 -0.1888,0.02517 -0.43582,0.34129 -0.71919,0.34129 -0.49884,0 -1.5251,-0.635383 -2.04787,-0.996784 -0.28783,-0.198979 -1.89458,-1.202693 -1.81627,-1.2839 0.0719,-0.07457 0.17879,0.104734 0.26818,0.157101"
             style="color:#000000;fill:#aa6442;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
        <g
           transform="matrix(0.71038623,-0.70381205,0.70381205,0.71038623,-78.837182,63.976293)"
           id="g4875"
           inkscape:transform-center-x="-7.2477572"
           inkscape:transform-center-y="-1.8790482">
          <path
             sodipodi:nodetypes="cccccccccccccccccccccccc"
             inkscape:connector-curvature="0"
             id="path4877"
             d="m 103.7914,75.155627 c 0.43322,0.30296 0.90363,0.550092 1.33282,0.857964 0.12045,0.336984 0.49108,0.342055 0.77245,0.463428 0.21944,0.312532 0.71347,0.02281 0.79545,0.42304 0.17943,0.293788 0.19192,0.166568 0.54331,0.230309 0.23911,0.231474 0.41925,-0.04977 0.41896,-0.316541 0.22692,-0.289113 0.52346,-0.549597 0.5441,-0.950953 0.0989,-0.346091 0.0896,-0.222166 -0.0451,-0.510101 -0.17218,-0.296438 0.0631,-0.602738 -0.21756,-0.83097 -0.0167,-0.323653 -0.13164,-0.701121 0.16239,-0.940522 0.27182,-0.287988 -0.0196,-0.653421 0.12378,-0.995739 0.0922,-0.293133 -0.37552,-0.549034 -0.0898,-0.743782 -0.20462,-0.16227 0.16381,-0.382931 -0.18498,-0.430021 -0.73255,-0.384964 -1.41755,-0.854025 -2.05637,-1.378705 -0.50798,-0.392102 -1.33637,-0.26144 -1.91877,-0.484702 -0.36104,0.392051 0.1653,0.177053 -0.2273,0.855122 -0.2317,0.22827 -0.40276,0.560919 -0.29793,0.890571 0.0159,0.390158 0.14512,0.633431 0.0249,1.00699 -0.38749,0.387441 -0.11556,0.924963 0.13725,1.302211 0.23287,0.298385 -0.3348,0.559235 -0.0904,0.795011 -0.10643,0.233908 0.0131,0.565345 0.14311,0.724752 0.41776,0.08494 -0.33844,-0.04255 -0.005,0.02062 0.0442,0.0077 0.0893,0.017 0.13449,0.01202 z"
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4879"
             d="m 107.80181,71.59646 c 0.26309,-0.167657 0.52809,-0.200829 0.81671,-0.26003 0.66367,-0.136128 1.30786,-0.7173 1.85284,-1.056374 0.2526,-0.157168 0.54,-0.290367 0.74357,-0.471306 0.12294,-0.109272 0.324,-0.184188 0.31693,-0.184188 -0.24065,0 0.0332,0.300834 0.1219,0.395463 0.009,0.0093 -0.0638,0.589101 -0.0731,0.671746 -0.0633,0.562631 -0.25023,1.135528 -0.15847,1.70645 0.0205,0.127449 0.1849,0.354689 0.17066,0.449636 -0.0238,0.158761 -0.18653,0.222733 -0.2316,0.362959 -0.0413,0.128585 0.0488,0.237088 0.0488,0.357542 0,0.179409 -0.20835,0.363517 -0.2438,0.552565 -0.0489,0.260805 0.0246,0.25912 -0.0488,0.585068 -0.0187,0.08318 0.38529,0.328131 0.10971,0.818013 -0.16227,0.288454 -1.11834,0.383244 -1.4262,0.520061 -0.88343,0.392613 -2.12923,0.856068 -2.41356,1.235145 -0.005,0.0062 -0.13409,-0.03363 -0.13409,0 0,0.03867 0.006,-0.10041 0.0975,-0.0325 0.0266,0.01972 -0.21603,-0.11205 -0.19503,-0.146267 0.13436,-0.218954 0.34366,-0.206188 0.25598,-0.530896 -0.0903,-0.334477 0.26698,-0.540227 0.31693,-0.828847 0.0497,-0.286979 -0.0755,-0.595132 0.0122,-0.893855 0.0651,-0.221854 -0.34676,-1.518927 -0.37788,-1.809379 -0.0108,-0.100721 0.12122,-0.141447 0.13409,-0.232944 0.0317,-0.225095 0.1552,-0.569202 0.1219,-0.628407 -0.0151,-0.02676 0.3535,-0.20282 0.3535,-0.254613 0,-0.05499 -0.13308,-0.248961 -0.17066,-0.325038 z"
             style="color:#000000;fill:#66362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4881"
             d="m 103.93767,69.543303 c 0.4653,-0.676026 1.22405,-0.80836 1.92598,-1.159303 0.28745,-0.143718 0.46494,-0.372438 0.80452,-0.460471 0.0998,-0.02586 0.76795,-0.243463 0.76795,-0.31962 0,-0.03985 -0.25182,0.184291 -0.17066,0.265447 0.12667,0.126659 0.41178,0.285456 0.57292,0.368377 0.30569,0.157302 0.63633,0.163614 0.93861,0.297952 0.489,0.217319 0.97198,0.463895 1.47495,0.655493 0.46217,0.176054 1.40182,0.117281 1.40182,0.650076 0,0.0403 -0.55027,0.230774 -0.60949,0.249196 -0.42204,0.131293 -0.74628,0.546908 -1.1824,0.68258 -0.24446,0.07605 -0.43507,0.338642 -0.48759,0.40088 -0.12213,0.144747 -0.67523,0.285049 -0.85328,0.308787 -0.1888,0.02517 -0.43582,0.34129 -0.71919,0.34129 -0.49884,0 -1.5251,-0.635383 -2.04787,-0.996784 -0.28783,-0.198979 -1.89458,-1.202693 -1.81627,-1.2839 0.0719,-0.07457 0.17879,0.104734 0.26818,0.157101"
             style="color:#000000;fill:#aa6442;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
        <g
           id="g4995"
           transform="translate(-59.0558,-40.802189)">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 114.689,78.275993 c -0.0448,-0.177462 -0.41445,-0.0063 -0.41445,-0.05417 0,-0.232124 0.33065,0.134863 0.41445,0.05417 0.0883,-0.08499 -0.18519,-0.286537 -0.0853,-0.357542 0.37902,-0.269507 0.87395,-0.377842 1.15802,-0.731336 0.64642,-0.804385 0.21075,-1.040975 0.41445,-1.403081 0.17365,-0.308685 0.72334,-0.557531 0.99956,-0.785508 0.12682,-0.104673 0.10005,-0.364461 0.24379,-0.449637 0.30682,-0.181808 1.47998,-0.77881 1.38963,-0.899272 -0.0527,-0.07024 0.26308,-0.225263 0.18284,-0.189605 -0.37683,0.167469 -0.2181,0.888613 -0.29255,1.186389 -0.0627,0.250872 0.002,0.265377 0.0366,0.48214 0.0205,0.12754 -0.1219,0.362729 -0.1219,0.514643 0,0.07182 0.13015,0.107432 0.0975,0.189606 -0.0831,0.209239 -0.30794,0.460148 -0.17066,0.753005 0.19505,0.416078 0.51585,0.740932 0.3657,1.208058 -0.0405,0.126136 0.29271,0.437552 0.26817,0.62299 -0.093,0.702296 -0.40226,1.213032 -0.40226,1.820213 0,7.69e-4 -0.3703,0.313521 -0.40226,0.308787 -0.0943,-0.01397 -0.89932,-0.608536 -1.1824,-0.780092 -0.3473,-0.210467 -0.67988,-0.398229 -1.02394,-0.606738 -0.33769,-0.204649 -1.675,-1.074865 -1.70656,-1.105129"
             id="path4997"
             inkscape:connector-curvature="0" />
          <path
             style="color:#000000;fill:#65362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 118.84569,73.920482 c 0.64539,0.615725 1.24229,1.136222 1.7675,1.836466 0.0818,0.109094 0.2248,0.115175 0.30475,0.216692 0.20016,0.254162 0.2562,1.172057 0.67043,1.386829 0.36316,0.188294 0.75501,0.815577 1.03613,0.915524 0.13476,0.04791 0.46032,0.180697 0.34131,0.260031 -0.17163,0.114411 -0.78966,0.14772 -1.04832,0.216692 -0.73093,0.194904 -1.42551,0.580962 -2.15758,0.758422 -0.25473,0.06175 -1.64561,0.975806 -1.64561,0.687997 0,-0.172655 -0.71919,-1.495386 -0.71919,-1.760623 0,-0.199123 -0.0244,-0.435844 -0.0244,-0.617572 0,-0.132111 0.19587,-0.266041 0.20723,-0.42255 0.0165,-0.227913 -0.0753,-0.536601 -0.0366,-0.725918 0.0123,-0.06027 0.14741,-0.152263 0.17065,-0.238361 0.0482,-0.178431 -0.18237,-0.374979 -0.1097,-0.557983 0.0411,-0.103469 0.22455,-0.228133 0.30474,-0.303368 0.13735,-0.128862 0.19968,-0.423136 0.37788,-0.601321 0.17584,-0.17583 0.26812,-0.47076 0.35008,-0.725711 0.0411,-0.12794 0.14853,-0.28355 0.10973,-0.469361 z"
             id="path4999"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccssssssssccccssccc" />
        </g>
        <g
           transform="matrix(0.82786932,0.56092102,-0.56092102,0.82786932,10.420244,-72.911671)"
           id="g4891"
           inkscape:transform-center-x="3.3554432"
           inkscape:transform-center-y="1.2079595">
          <path
             sodipodi:nodetypes="ccsccccccccsccscsccscc"
             inkscape:connector-curvature="0"
             id="path4893"
             d="m 111.15398,60.046773 c 0.16369,0.484474 0.0632,0.849426 0.13409,1.321821 0.0205,0.136773 -0.21942,0.182031 -0.21942,0.319621 0,0.110229 0.0582,0.330695 0.0366,0.417132 -0.0243,0.09732 -0.31247,0.389846 -0.39007,0.487557 -0.0875,0.110127 -0.13426,0.406808 -0.18284,0.547148 -0.11054,0.319316 -0.44956,0.59533 -0.60949,0.893855 -0.0549,0.102461 0.002,0.285013 -0.0244,0.379211 -0.065,0.230951 -0.31927,0.344408 -0.42664,0.487557 -0.0446,0.05952 0.16819,0.488677 0.0731,0.601321 -0.0724,0.0858 -0.23019,0.37795 -0.14628,0.303368 0.052,-0.04621 0.28037,0.106196 0.28037,0.22211 0,0.08931 -0.21312,0.16374 -0.26818,0.20044 -0.0841,0.05606 0.19798,0.298278 0.0975,0.287117 -0.50495,-0.0561 -1.64822,-1.009784 -1.99911,-1.44642 -0.14016,-0.174412 -0.0645,-0.435586 -0.19504,-0.60132 -0.29669,-0.376728 -0.90204,-0.725864 -0.90204,-1.175555 0,-0.02369 0.26718,-0.125809 0.29256,-0.140849 0.21252,-0.12593 0.39268,-0.303022 0.5851,-0.455054 0.63702,-0.503292 1.21214,-1.10361 1.87722,-1.587269 0.61032,-0.443841 1.42295,-0.62094 1.87163,-1.119437 z"
             style="color:#000000;fill:#552b26;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4895"
             d="m 102.81622,61.769475 c 0.60018,0.217492 1.19879,0.443605 1.80408,0.639241 0.52809,0.170685 2.28624,1.207464 2.59641,0.931776 0.0257,-0.02281 -0.0991,0.02874 -0.0731,0.09209 0.0451,0.110155 0.14396,0.115663 0.20722,0.162519 0.12677,0.0939 0.54983,0.185359 0.80452,0.05959 0.23481,-0.115947 0.6556,-0.299451 0.80452,-0.520061 0.10585,-0.156803 0.11092,-0.390103 0.23161,-0.530896 0.0632,-0.07379 0.32019,-0.172254 0.26817,-0.276282 -0.01,-0.01927 0.94599,-1.818308 1.03613,-1.874387 0.17043,-0.10604 0.70361,-0.430224 0.5851,-0.509226 -0.19972,-0.13314 -0.81032,0.152459 -1.02393,0.205857 -1.54071,0.385152 -3.15784,0.5734 -4.60771,1.088878 -0.43985,0.156381 -2.66935,0.369263 -2.63298,0.530896 0.0164,0.07309 0.14628,-0.0325 0.21942,-0.04876"
             style="color:#000000;fill:#c9794f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4897"
             d="m 107.80181,63.833467 c 0.15869,0.272844 0.25236,0.343488 0.43883,0.509226 0.092,0.08174 0.17796,0.705309 0.2438,0.812595 0.16876,0.275004 0.39631,0.38952 0.64605,0.639242 0.0224,0.0224 -0.10811,0.110477 -0.0853,0.14085 0.0418,0.05573 0.15038,0.0056 0.17066,0.08668 0.015,0.06006 0.067,0.349396 0.0731,0.352124 0.0347,0.01543 0.15329,-0.0076 0.17065,0.05417 0.008,0.02864 -0.13377,0.173354 -0.0853,0.173354 10e-4,0 -0.3016,-0.178539 -0.60948,-0.400881 -0.31889,-0.230291 -1.23557,-0.622389 -1.63342,-0.763839 -1.24523,-0.442719 -2.10834,-1.867416 -2.91334,-2.654478 -0.31529,-0.308265 -0.80725,-0.517069 -1.06051,-0.74217 -0.10046,-0.08929 -0.46352,-0.232944 -0.32912,-0.232944 1.30104,0 2.66933,0.220099 4.41268,0.828847 0.1095,0.03824 1.13429,0.5931 1.14583,0.639242 0.004,0.01434 -0.84662,0.653691 -0.37788,0.482139"
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
        <g
           id="g4959"
           transform="translate(-82.543902,-40.1311)">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.54583,81.825608 c -0.0437,0.437365 -0.41925,0.762337 -0.35539,1.222586 0.0226,0.308928 0.43003,0.568981 0.25748,0.873487 -0.14606,0.140067 -0.42249,0.293293 -0.23727,0.550146 -0.0816,0.09397 -0.25349,0.18727 -0.0864,0.333143 0.17888,0.201525 -0.12714,0.462095 0.0103,0.718865 0.0573,0.189529 0.0744,0.344148 -0.0641,0.476957 0.11025,0.121965 0.075,0.343083 0.0318,0.34263 0.23343,0.101482 0.14769,0.661107 0.39167,0.749077 0.22892,0.143265 0.47434,0.252028 0.69357,0.415213 -0.15251,0.04496 -0.12913,0.123714 0.009,0.181636 -0.19287,0.229348 0.12341,0.462039 0.2305,0.656079 0.14267,0.317821 0.37265,0.569162 0.55683,0.855681 0.20291,-0.374314 0.4698,-1.258042 0.76167,-1.578204 0.21585,-0.224066 0.21321,-0.573665 0.22023,-0.884363 -0.0152,-0.318187 0.25805,-0.445002 0.35915,-0.690907 0.033,-0.246197 -0.11636,-0.478165 -0.0471,-0.729116 0.045,-0.545051 0.0446,-1.161192 -0.27981,-1.597688 -0.28605,-0.393611 -0.68058,-0.642213 -1.01858,-0.965968 -0.49416,-0.420461 -0.98012,-0.904037 -1.58471,-1.079112 -0.0533,0.03053 0.13606,0.125331 0.15087,0.149858 z"
             id="path4961"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccccccccccccccccccccc" />
          <path
             style="color:#000000;fill:#64352d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 108.86232,84.678674 c -0.0691,0.123676 -0.1501,0.239123 -0.20723,0.371027 -0.0661,0.152602 0.44016,1.378721 0.46321,1.548077 0.0216,0.158819 -0.13747,0.207235 -0.1219,0.313452 0.014,0.09532 0.14005,0.232285 0.10971,0.319852 -0.19137,0.552345 -0.002,1.150142 -0.0244,1.253814 -0.0103,0.04877 -0.12616,0.106489 -0.14628,0.166323 -0.0562,0.167169 0.0609,0.253405 0.0609,0.396613 0,0.122706 -0.17046,0.108851 -0.12189,0.134338 0.32923,0.17278 2.25456,-0.116101 2.77925,-0.07677 0.60794,0.04558 2.52339,-0.119895 2.97429,0.05758 0.23767,0.09355 0.62759,0.07172 0.86547,0.08956 0.1225,0.0092 0.48844,0.05118 0.36569,0.05118 -0.0746,0 0.12881,-0.556792 0.14627,-0.767641 0.0166,-0.200209 -0.22862,-0.34831 -0.18284,-0.55654 0.088,-0.400067 0.23639,-0.715695 0.34131,-1.119477 0.11451,-0.440689 -0.24687,-1.710665 -0.26595,-1.710665 -0.62306,0 -1.31088,-0.493782 -1.94039,-0.573068 -0.8806,-0.110905 -1.78159,-0.05878 -2.66954,-0.166322 -0.35925,-0.0435 -2.96295,-0.328034 -2.79145,0.03199 0.046,0.09656 0.17886,0.153347 0.3657,0.236689 z"
             id="path4963"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="ccccsccscsscsccssscccc" />
          <path
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.53364,81.784237 c 0.44364,-0.0578 0.87262,0.04612 1.31649,-0.03231 0.4899,-0.08656 1.14612,0.06745 1.64561,0.084 0.85509,0.02833 1.70737,-0.407066 2.47451,-0.407066 0.0584,0 0.0244,0.137164 0.0244,0.206763 0,0.07613 0.22727,0.151525 0.26817,0.200303 0.0576,0.06864 -0.0298,0.16043 0.061,0.232609 0.1474,0.117197 0.38399,0.211097 0.49978,0.374758 0.11179,0.158021 0.11827,0.432937 0.28036,0.555677 0.11078,0.08388 0.25951,0.08867 0.3535,0.213225 0.0778,0.103099 0.014,0.33216 0.1219,0.439373 0.3931,0.390689 0.69117,1.154653 1.13364,1.389191 0.0852,0.04516 0.21942,0.09558 0.21942,0.206764 0,0.03499 -0.54506,-0.04355 -0.64606,-0.05816 -0.39283,-0.05679 -0.78926,-0.05501 -1.1824,-0.116302 -1.12026,-0.174651 -2.23892,-0.23907 -3.36436,-0.23907 -0.41141,0 -0.87157,-0.04015 -1.26773,0.109838 -0.40623,0.153805 -0.93454,-0.08183 -0.87766,0.03876 0.0435,0.09212 0.26761,-0.867516 -0.0975,-1.201812 -0.21801,-0.199611 -0.53225,-0.587209 -0.68262,-0.8529 -0.034,-0.0601 0.11902,-0.288186 0.10971,-0.342452 -0.0137,-0.07987 -0.37455,-0.776524 -0.39007,-0.801209 z"
             id="path4965"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="translate(-75.56458,-33.420214)"
           id="g4925">
          <path
             sodipodi:nodetypes="cccccccccccccccccccccc"
             inkscape:connector-curvature="0"
             id="path4927"
             d="m 107.54583,81.825608 c -0.0437,0.437365 -0.41925,0.762337 -0.35539,1.222586 0.0226,0.308928 0.43003,0.568981 0.25748,0.873487 -0.14606,0.140067 -0.42249,0.293293 -0.23727,0.550146 -0.0816,0.09397 -0.25349,0.18727 -0.0864,0.333143 0.17888,0.201525 -0.12714,0.462095 0.0103,0.718865 0.0573,0.189529 0.0744,0.344148 -0.0641,0.476957 0.11025,0.121965 0.075,0.343083 0.0318,0.34263 0.23343,0.101482 0.14769,0.661107 0.39167,0.749077 0.22892,0.143265 0.47434,0.252028 0.69357,0.415213 -0.15251,0.04496 -0.12913,0.123714 0.009,0.181636 -0.19287,0.229348 0.12341,0.462039 0.2305,0.656079 0.14267,0.317821 0.37265,0.569162 0.55683,0.855681 0.20291,-0.374314 0.4698,-1.258042 0.76167,-1.578204 0.21585,-0.224066 0.21321,-0.573665 0.22023,-0.884363 -0.0152,-0.318187 0.25805,-0.445002 0.35915,-0.690907 0.033,-0.246197 -0.11636,-0.478165 -0.0471,-0.729116 0.045,-0.545051 0.0446,-1.161192 -0.27981,-1.597688 -0.28605,-0.393611 -0.68058,-0.642213 -1.01858,-0.965968 -0.49416,-0.420461 -0.98012,-0.904037 -1.58471,-1.079112 -0.0533,0.03053 0.13606,0.125331 0.15087,0.149858 z"
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             sodipodi:nodetypes="ccccsccscsscsccssscccc"
             inkscape:connector-curvature="0"
             id="path4929"
             d="m 108.86232,84.678674 c -0.0691,0.123676 -0.1501,0.239123 -0.20723,0.371027 -0.0661,0.152602 0.44016,1.378721 0.46321,1.548077 0.0216,0.158819 -0.13747,0.207235 -0.1219,0.313452 0.014,0.09532 0.14005,0.232285 0.10971,0.319852 -0.19137,0.552345 -0.002,1.150142 -0.0244,1.253814 -0.0103,0.04877 -0.12616,0.106489 -0.14628,0.166323 -0.0562,0.167169 0.0609,0.253405 0.0609,0.396613 0,0.122706 -0.17046,0.108851 -0.12189,0.134338 0.32923,0.17278 2.25456,-0.116101 2.77925,-0.07677 0.60794,0.04558 2.52339,-0.119895 2.97429,0.05758 0.23767,0.09355 0.62759,0.07172 0.86547,0.08956 0.1225,0.0092 0.48844,0.05118 0.36569,0.05118 -0.0746,0 0.12881,-0.556792 0.14627,-0.767641 0.0166,-0.200209 -0.22862,-0.34831 -0.18284,-0.55654 0.088,-0.400067 0.23639,-0.715695 0.34131,-1.119477 0.11451,-0.440689 -0.24687,-1.710665 -0.26595,-1.710665 -0.62306,0 -1.31088,-0.493782 -1.94039,-0.573068 -0.8806,-0.110905 -1.78159,-0.05878 -2.66954,-0.166322 -0.35925,-0.0435 -2.96295,-0.328034 -2.79145,0.03199 0.046,0.09656 0.17886,0.153347 0.3657,0.236689 z"
             style="color:#000000;fill:#64352d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4931"
             d="m 107.53364,81.784237 c 0.44364,-0.0578 0.87262,0.04612 1.31649,-0.03231 0.4899,-0.08656 1.14612,0.06745 1.64561,0.084 0.85509,0.02833 1.70737,-0.407066 2.47451,-0.407066 0.0584,0 0.0244,0.137164 0.0244,0.206763 0,0.07613 0.22727,0.151525 0.26817,0.200303 0.0576,0.06864 -0.0298,0.16043 0.061,0.232609 0.1474,0.117197 0.38399,0.211097 0.49978,0.374758 0.11179,0.158021 0.11827,0.432937 0.28036,0.555677 0.11078,0.08388 0.25951,0.08867 0.3535,0.213225 0.0778,0.103099 0.014,0.33216 0.1219,0.439373 0.3931,0.390689 0.69117,1.154653 1.13364,1.389191 0.0852,0.04516 0.21942,0.09558 0.21942,0.206764 0,0.03499 -0.54506,-0.04355 -0.64606,-0.05816 -0.39283,-0.05679 -0.78926,-0.05501 -1.1824,-0.116302 -1.12026,-0.174651 -2.23892,-0.23907 -3.36436,-0.23907 -0.41141,0 -0.87157,-0.04015 -1.26773,0.109838 -0.40623,0.153805 -0.93454,-0.08183 -0.87766,0.03876 0.0435,0.09212 0.26761,-0.867516 -0.0975,-1.201812 -0.21801,-0.199611 -0.53225,-0.587209 -0.68262,-0.8529 -0.034,-0.0601 0.11902,-0.288186 0.10971,-0.342452 -0.0137,-0.07987 -0.37455,-0.776524 -0.39007,-0.801209 z"
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
        <g
           inkscape:transform-center-y="3.33178"
           inkscape:transform-center-x="2.8001057"
           id="g4899"
           transform="matrix(0.97525701,-0.22107413,0.22107413,0.97525701,-76.41193,15.665552)">
          <path
             style="color:#000000;fill:#552b26;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 111.15398,60.046773 c 0.16369,0.484474 0.0632,0.849426 0.13409,1.321821 0.0205,0.136773 -0.21942,0.182031 -0.21942,0.319621 0,0.110229 0.0582,0.330695 0.0366,0.417132 -0.0243,0.09732 -0.31247,0.389846 -0.39007,0.487557 -0.0875,0.110127 -0.13426,0.406808 -0.18284,0.547148 -0.11054,0.319316 -0.44956,0.59533 -0.60949,0.893855 -0.0549,0.102461 0.002,0.285013 -0.0244,0.379211 -0.065,0.230951 -0.31927,0.344408 -0.42664,0.487557 -0.0446,0.05952 0.16819,0.488677 0.0731,0.601321 -0.0724,0.0858 -0.23019,0.37795 -0.14628,0.303368 0.052,-0.04621 0.28037,0.106196 0.28037,0.22211 0,0.08931 -0.21312,0.16374 -0.26818,0.20044 -0.0841,0.05606 0.19798,0.298278 0.0975,0.287117 -0.50495,-0.0561 -1.64822,-1.009784 -1.99911,-1.44642 -0.14016,-0.174412 -0.0645,-0.435586 -0.19504,-0.60132 -0.29669,-0.376728 -0.90204,-0.725864 -0.90204,-1.175555 0,-0.02369 0.26718,-0.125809 0.29256,-0.140849 0.21252,-0.12593 0.39268,-0.303022 0.5851,-0.455054 0.63702,-0.503292 1.21214,-1.10361 1.87722,-1.587269 0.61032,-0.443841 1.42295,-0.62094 1.87163,-1.119437 z"
             id="path4901"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="ccsccccccccsccscsccscc" />
          <path
             style="color:#000000;fill:#c9794f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 102.81622,61.769475 c 0.60018,0.217492 1.19879,0.443605 1.80408,0.639241 0.52809,0.170685 2.28624,1.207464 2.59641,0.931776 0.0257,-0.02281 -0.0991,0.02874 -0.0731,0.09209 0.0451,0.110155 0.14396,0.115663 0.20722,0.162519 0.12677,0.0939 0.54983,0.185359 0.80452,0.05959 0.23481,-0.115947 0.6556,-0.299451 0.80452,-0.520061 0.10585,-0.156803 0.11092,-0.390103 0.23161,-0.530896 0.0632,-0.07379 0.32019,-0.172254 0.26817,-0.276282 -0.01,-0.01927 0.94599,-1.818308 1.03613,-1.874387 0.17043,-0.10604 0.70361,-0.430224 0.5851,-0.509226 -0.19972,-0.13314 -0.81032,0.152459 -1.02393,0.205857 -1.54071,0.385152 -3.15784,0.5734 -4.60771,1.088878 -0.43985,0.156381 -2.66935,0.369263 -2.63298,0.530896 0.0164,0.07309 0.14628,-0.0325 0.21942,-0.04876"
             id="path4903"
             inkscape:connector-curvature="0" />
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.80181,63.833467 c 0.15869,0.272844 0.25236,0.343488 0.43883,0.509226 0.092,0.08174 0.17796,0.705309 0.2438,0.812595 0.16876,0.275004 0.39631,0.38952 0.64605,0.639242 0.0224,0.0224 -0.10811,0.110477 -0.0853,0.14085 0.0418,0.05573 0.15038,0.0056 0.17066,0.08668 0.015,0.06006 0.067,0.349396 0.0731,0.352124 0.0347,0.01543 0.15329,-0.0076 0.17065,0.05417 0.008,0.02864 -0.13377,0.173354 -0.0853,0.173354 10e-4,0 -0.3016,-0.178539 -0.60948,-0.400881 -0.31889,-0.230291 -1.23557,-0.622389 -1.63342,-0.763839 -1.24523,-0.442719 -2.10834,-1.867416 -2.91334,-2.654478 -0.31529,-0.308265 -0.80725,-0.517069 -1.06051,-0.74217 -0.10046,-0.08929 -0.46352,-0.232944 -0.32912,-0.232944 1.30104,0 2.66933,0.220099 4.41268,0.828847 0.1095,0.03824 1.13429,0.5931 1.14583,0.639242 0.004,0.01434 -0.84662,0.653691 -0.37788,0.482139"
             id="path4905"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g4907"
           transform="translate(-100.12642,-17.71674)">
          <path
             inkscape:connector-curvature="0"
             id="path4909"
             d="m 137.64774,62.244467 c -0.62219,0 -0.3759,-0.05795 -0.75591,0.06872"
             style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             sodipodi:nodetypes="ccccccccccccccccccccc"
             inkscape:connector-curvature="0"
             id="path4911"
             d="m 137.60234,60.543133 c -0.66551,-0.277276 -1.29045,-0.643817 -1.9281,-0.97883 -0.10542,-0.02103 -0.19989,-0.368694 -0.19194,-0.244926 0.18279,0.131185 0.16746,0.362493 0.21398,0.595284 0.0372,0.130932 -0.0514,0.215198 0.0857,0.314998 0.0399,0.294272 -0.20054,0.615118 -0.008,0.887708 0.25992,0.529621 0.43398,1.097834 0.63628,1.651409 0.18371,0.268682 0.0293,0.51963 -0.0828,0.778965 -0.0872,0.271891 -0.24498,0.546315 -0.24878,0.830842 0.20887,0.155765 0.4499,0.245152 0.70549,0.307655 0.45579,0.15112 0.68122,0.394931 1.10643,0.617088 -0.17069,0.110627 -0.10621,-0.05973 0.01,-0.0088 -0.057,0.227504 0.16535,0.250076 0.30976,0.329121 0.065,0.09492 0.45688,-0.353536 0.57308,-0.409702 0.24499,-0.148004 0.45936,-0.343121 0.49086,-0.649254 -3.3e-4,-0.267765 0.49716,-0.370067 0.2177,-0.630308 0.0435,-0.262391 0.13214,-0.527647 0.0309,-0.796489 -0.0993,-0.414978 -0.18713,-0.860217 -0.45483,-1.204113 -0.26023,-0.298133 -0.67331,-0.424945 -0.9031,-0.750371 -0.13215,-0.255197 -0.29327,-0.512895 -0.5623,-0.64026 z"
             style="color:#000000;fill:#744335;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             sodipodi:nodetypes="csssccccccsccccccsccccccccccc"
             inkscape:connector-curvature="0"
             id="path4913"
             d="m 138.15087,65.673318 c 0.68086,-0.132151 1.43972,-0.155959 2.14539,-0.124598 0.84695,0.03764 1.84933,-0.254613 2.27948,-0.254613 0.0361,0 0.52415,0.06308 0.52415,-0.04334 0,-0.570388 0.1846,-1.524368 -0.0169,-2.285403 -0.0584,-0.220579 0.21128,-0.464995 0.15846,-0.687997 -0.0376,-0.158933 -0.16649,-0.670252 -0.0373,-0.823434 0.26008,-0.308219 -0.018,-0.373014 -0.1097,-0.617572 -0.10881,-0.29014 0.19187,-0.460676 -0.14628,-1.061791 -0.0108,-0.01928 0.12607,-0.123707 0.0366,-0.113764 -0.75161,0.08351 -2.06018,0.229538 -2.83485,0.340596 -0.49252,0.07061 -1.15468,0.05717 -1.62124,0.243779 -0.26449,0.105792 -0.54668,0.182473 -0.84109,0.167936 -0.0445,-0.0022 -0.56277,-0.06053 -0.54853,-0.01625 0.0482,0.149799 0.29791,0.329847 0.37788,0.514644 0.0396,0.09141 -0.0132,0.178837 0.0122,0.265447 0.10156,0.346032 0.43949,0.651029 0.52416,1.002201 0.0815,0.338198 -0.1219,0.480734 -0.1219,0.769257 0,0.116674 0.17446,0.233272 0.19503,0.352125 0.0182,0.105132 -0.12533,0.221618 -0.0609,0.357542 0.0819,0.172904 0.24048,0.299514 0.28036,0.476722 0.007,0.03 -0.11088,0.103591 -0.1219,0.135433 -0.0233,0.06734 0.16237,0.269586 0.17066,0.335872 0.0166,0.133053 -0.12151,0.22961 -0.0975,0.357542 0.036,0.192072 0.11418,0.431626 0.0731,0.487558 -0.0616,0.08391 -0.22775,0.118373 -0.21942,0.222109 0.006,0.08043 0.20813,-0.147627 0.23161,-0.07043 0.0235,0.0772 -0.15441,0.04695 -0.23161,0.07043 z"
             style="color:#000000;fill:#aa6442;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4915"
             d="m 135.42038,59.291736 c 0.86871,-0.318294 1.71327,-0.600178 2.65736,-0.693414 0.75341,-0.07441 1.85997,-0.592997 2.26728,-0.303369 0.14492,0.10305 0.39253,0.04629 0.54854,0.135432 0.60449,0.3454 1.31595,0.587422 1.8894,0.969697 0.11524,0.07682 0.29256,0.410624 0.29256,0.2817 0,-0.02851 -0.3925,0.138989 -0.74358,0.205858 -0.51465,0.09802 -1.07494,0.120259 -1.62123,0.135432 -0.78723,0.02187 -1.71726,0.144814 -2.43794,0.411715 -0.24049,0.08906 -0.80026,0.08966 -0.85328,0.09751 -0.10946,0.01622 -0.32912,0.153992 -0.32912,0.04334 0,-0.232551 -0.69704,-0.548299 -0.98737,-0.698832 -0.276,-0.143104 -0.56051,-0.282716 -0.68262,-0.585069 z"
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
        <g
           id="g4917"
           transform="translate(-55.163486,-46.573551)">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.54583,81.825608 c -0.0437,0.437365 -0.41925,0.762337 -0.35539,1.222586 0.0226,0.308928 0.43003,0.568981 0.25748,0.873487 -0.14606,0.140067 -0.42249,0.293293 -0.23727,0.550146 -0.0816,0.09397 -0.25349,0.18727 -0.0864,0.333143 0.17888,0.201525 -0.12714,0.462095 0.0103,0.718865 0.0573,0.189529 0.0744,0.344148 -0.0641,0.476957 0.11025,0.121965 0.075,0.343083 0.0318,0.34263 0.23343,0.101482 0.14769,0.661107 0.39167,0.749077 0.22892,0.143265 0.47434,0.252028 0.69357,0.415213 -0.15251,0.04496 -0.12913,0.123714 0.009,0.181636 -0.19287,0.229348 0.12341,0.462039 0.2305,0.656079 0.14267,0.317821 0.37265,0.569162 0.55683,0.855681 0.20291,-0.374314 0.4698,-1.258042 0.76167,-1.578204 0.21585,-0.224066 0.21321,-0.573665 0.22023,-0.884363 -0.0152,-0.318187 0.25805,-0.445002 0.35915,-0.690907 0.033,-0.246197 -0.11636,-0.478165 -0.0471,-0.729116 0.045,-0.545051 0.0446,-1.161192 -0.27981,-1.597688 -0.28605,-0.393611 -0.68058,-0.642213 -1.01858,-0.965968 -0.49416,-0.420461 -0.98012,-0.904037 -1.58471,-1.079112 -0.0533,0.03053 0.13606,0.125331 0.15087,0.149858 z"
             id="path4919"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccccccccccccccccccccc" />
          <path
             style="color:#000000;fill:#64352d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 108.86232,84.678674 c -0.0691,0.123676 -0.1501,0.239123 -0.20723,0.371027 -0.0661,0.152602 0.44016,1.378721 0.46321,1.548077 0.0216,0.158819 -0.13747,0.207235 -0.1219,0.313452 0.014,0.09532 0.14005,0.232285 0.10971,0.319852 -0.19137,0.552345 -0.002,1.150142 -0.0244,1.253814 -0.0103,0.04877 -0.12616,0.106489 -0.14628,0.166323 -0.0562,0.167169 0.0609,0.253405 0.0609,0.396613 0,0.122706 -0.17046,0.108851 -0.12189,0.134338 0.32923,0.17278 2.25456,-0.116101 2.77925,-0.07677 0.60794,0.04558 2.52339,-0.119895 2.97429,0.05758 0.23767,0.09355 0.62759,0.07172 0.86547,0.08956 0.1225,0.0092 0.48844,0.05118 0.36569,0.05118 -0.0746,0 0.12881,-0.556792 0.14627,-0.767641 0.0166,-0.200209 -0.22862,-0.34831 -0.18284,-0.55654 0.088,-0.400067 0.23639,-0.715695 0.34131,-1.119477 0.11451,-0.440689 -0.24687,-1.710665 -0.26595,-1.710665 -0.62306,0 -1.31088,-0.493782 -1.94039,-0.573068 -0.8806,-0.110905 -1.78159,-0.05878 -2.66954,-0.166322 -0.35925,-0.0435 -2.96295,-0.328034 -2.79145,0.03199 0.046,0.09656 0.17886,0.153347 0.3657,0.236689 z"
             id="path4921"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="ccccsccscsscsccssscccc" />
          <path
             style="color:#000000;fill:#ca7a50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 107.53364,81.784237 c 0.44364,-0.0578 0.87262,0.04612 1.31649,-0.03231 0.4899,-0.08656 1.14612,0.06745 1.64561,0.084 0.85509,0.02833 1.70737,-0.407066 2.47451,-0.407066 0.0584,0 0.0244,0.137164 0.0244,0.206763 0,0.07613 0.22727,0.151525 0.26817,0.200303 0.0576,0.06864 -0.0298,0.16043 0.061,0.232609 0.1474,0.117197 0.38399,0.211097 0.49978,0.374758 0.11179,0.158021 0.11827,0.432937 0.28036,0.555677 0.11078,0.08388 0.25951,0.08867 0.3535,0.213225 0.0778,0.103099 0.014,0.33216 0.1219,0.439373 0.3931,0.390689 0.69117,1.154653 1.13364,1.389191 0.0852,0.04516 0.21942,0.09558 0.21942,0.206764 0,0.03499 -0.54506,-0.04355 -0.64606,-0.05816 -0.39283,-0.05679 -0.78926,-0.05501 -1.1824,-0.116302 -1.12026,-0.174651 -2.23892,-0.23907 -3.36436,-0.23907 -0.41141,0 -0.87157,-0.04015 -1.26773,0.109838 -0.40623,0.153805 -0.93454,-0.08183 -0.87766,0.03876 0.0435,0.09212 0.26761,-0.867516 -0.0975,-1.201812 -0.21801,-0.199611 -0.53225,-0.587209 -0.68262,-0.8529 -0.034,-0.0601 0.11902,-0.288186 0.10971,-0.342452 -0.0137,-0.07987 -0.37455,-0.776524 -0.39007,-0.801209 z"
             id="path4923"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g4941"
           transform="translate(-76.638322,-37.983617)">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 114.689,78.275993 c -0.0448,-0.177462 -0.41445,-0.0063 -0.41445,-0.05417 0,-0.232124 0.33065,0.134863 0.41445,0.05417 0.0883,-0.08499 -0.18519,-0.286537 -0.0853,-0.357542 0.37902,-0.269507 0.87395,-0.377842 1.15802,-0.731336 0.64642,-0.804385 0.21075,-1.040975 0.41445,-1.403081 0.17365,-0.308685 0.72334,-0.557531 0.99956,-0.785508 0.12682,-0.104673 0.10005,-0.364461 0.24379,-0.449637 0.30682,-0.181808 1.47998,-0.77881 1.38963,-0.899272 -0.0527,-0.07024 0.26308,-0.225263 0.18284,-0.189605 -0.37683,0.167469 -0.2181,0.888613 -0.29255,1.186389 -0.0627,0.250872 0.002,0.265377 0.0366,0.48214 0.0205,0.12754 -0.1219,0.362729 -0.1219,0.514643 0,0.07182 0.13015,0.107432 0.0975,0.189606 -0.0831,0.209239 -0.30794,0.460148 -0.17066,0.753005 0.19505,0.416078 0.51585,0.740932 0.3657,1.208058 -0.0405,0.126136 0.29271,0.437552 0.26817,0.62299 -0.093,0.702296 -0.40226,1.213032 -0.40226,1.820213 0,7.69e-4 -0.3703,0.313521 -0.40226,0.308787 -0.0943,-0.01397 -0.89932,-0.608536 -1.1824,-0.780092 -0.3473,-0.210467 -0.67988,-0.398229 -1.02394,-0.606738 -0.33769,-0.204649 -1.675,-1.074865 -1.70656,-1.105129"
             id="path4943"
             inkscape:connector-curvature="0" />
          <path
             style="color:#000000;fill:#65362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 118.84569,73.920482 c 0.64539,0.615725 1.24229,1.136222 1.7675,1.836466 0.0818,0.109094 0.2248,0.115175 0.30475,0.216692 0.20016,0.254162 0.2562,1.172057 0.67043,1.386829 0.36316,0.188294 0.75501,0.815577 1.03613,0.915524 0.13476,0.04791 0.46032,0.180697 0.34131,0.260031 -0.17163,0.114411 -0.78966,0.14772 -1.04832,0.216692 -0.73093,0.194904 -1.42551,0.580962 -2.15758,0.758422 -0.25473,0.06175 -1.64561,0.975806 -1.64561,0.687997 0,-0.172655 -0.71919,-1.495386 -0.71919,-1.760623 0,-0.199123 -0.0244,-0.435844 -0.0244,-0.617572 0,-0.132111 0.19587,-0.266041 0.20723,-0.42255 0.0165,-0.227913 -0.0753,-0.536601 -0.0366,-0.725918 0.0123,-0.06027 0.14741,-0.152263 0.17065,-0.238361 0.0482,-0.178431 -0.18237,-0.374979 -0.1097,-0.557983 0.0411,-0.103469 0.22455,-0.228133 0.30474,-0.303368 0.13735,-0.128862 0.19968,-0.423136 0.37788,-0.601321 0.17584,-0.17583 0.26812,-0.47076 0.35008,-0.725711 0.0411,-0.12794 0.14853,-0.28355 0.10973,-0.469361 z"
             id="path4945"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccssssssssccccssccc" />
        </g>
        <g
           id="g4953"
           transform="translate(-57.84784,-26.306675)">
          <path
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 114.689,78.275993 c -0.0448,-0.177462 -0.41445,-0.0063 -0.41445,-0.05417 0,-0.232124 0.33065,0.134863 0.41445,0.05417 0.0883,-0.08499 -0.18519,-0.286537 -0.0853,-0.357542 0.37902,-0.269507 0.87395,-0.377842 1.15802,-0.731336 0.64642,-0.804385 0.21075,-1.040975 0.41445,-1.403081 0.17365,-0.308685 0.72334,-0.557531 0.99956,-0.785508 0.12682,-0.104673 0.10005,-0.364461 0.24379,-0.449637 0.30682,-0.181808 1.47998,-0.77881 1.38963,-0.899272 -0.0527,-0.07024 0.26308,-0.225263 0.18284,-0.189605 -0.37683,0.167469 -0.2181,0.888613 -0.29255,1.186389 -0.0627,0.250872 0.002,0.265377 0.0366,0.48214 0.0205,0.12754 -0.1219,0.362729 -0.1219,0.514643 0,0.07182 0.13015,0.107432 0.0975,0.189606 -0.0831,0.209239 -0.30794,0.460148 -0.17066,0.753005 0.19505,0.416078 0.51585,0.740932 0.3657,1.208058 -0.0405,0.126136 0.29271,0.437552 0.26817,0.62299 -0.093,0.702296 -0.40226,1.213032 -0.40226,1.820213 0,7.69e-4 -0.3703,0.313521 -0.40226,0.308787 -0.0943,-0.01397 -0.89932,-0.608536 -1.1824,-0.780092 -0.3473,-0.210467 -0.67988,-0.398229 -1.02394,-0.606738 -0.33769,-0.204649 -1.675,-1.074865 -1.70656,-1.105129"
             id="path4955"
             inkscape:connector-curvature="0" />
          <path
             style="color:#000000;fill:#65362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 118.84569,73.920482 c 0.64539,0.615725 1.24229,1.136222 1.7675,1.836466 0.0818,0.109094 0.2248,0.115175 0.30475,0.216692 0.20016,0.254162 0.2562,1.172057 0.67043,1.386829 0.36316,0.188294 0.75501,0.815577 1.03613,0.915524 0.13476,0.04791 0.46032,0.180697 0.34131,0.260031 -0.17163,0.114411 -0.78966,0.14772 -1.04832,0.216692 -0.73093,0.194904 -1.42551,0.580962 -2.15758,0.758422 -0.25473,0.06175 -1.64561,0.975806 -1.64561,0.687997 0,-0.172655 -0.71919,-1.495386 -0.71919,-1.760623 0,-0.199123 -0.0244,-0.435844 -0.0244,-0.617572 0,-0.132111 0.19587,-0.266041 0.20723,-0.42255 0.0165,-0.227913 -0.0753,-0.536601 -0.0366,-0.725918 0.0123,-0.06027 0.14741,-0.152263 0.17065,-0.238361 0.0482,-0.178431 -0.18237,-0.374979 -0.1097,-0.557983 0.0411,-0.103469 0.22455,-0.228133 0.30474,-0.303368 0.13735,-0.128862 0.19968,-0.423136 0.37788,-0.601321 0.17584,-0.17583 0.26812,-0.47076 0.35008,-0.725711 0.0411,-0.12794 0.14853,-0.28355 0.10973,-0.469361 z"
             id="path4957"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cccssssssssccccssccc" />
        </g>
        <g
           id="g4967"
           transform="translate(-61.874372,-12.750684)">
          <path
             style="color:#000000;fill:#95583a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 125.8182,53.053036 c -0.64275,0.702269 -1.438,1.15343 -2.06006,1.890638 -0.78459,0.929819 -2.58585,2.344968 -2.80363,2.248181 -0.0443,-0.0197 0.0667,-0.102865 0.0366,-0.14085 -0.27331,-0.344141 -0.12447,-0.720989 -0.51197,-1.262232 -0.47963,-0.669918 -0.86534,-1.270761 -1.4262,-1.868969 -0.26468,-0.282305 -0.59558,-0.487593 -0.80452,-0.812595 -0.0478,-0.07429 -0.27109,-0.213296 -0.24379,-0.211275 1.03444,0.07662 2.20437,0.382266 3.33998,0.406298 0.55321,0.01171 1.1783,-0.209465 1.73094,-0.270865 1.01575,-0.112855 2.06395,0.07413 3.02304,0"
             id="path4969"
             inkscape:connector-curvature="0" />
          <path
             style="color:#000000;fill:#4a2521;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="m 121.28363,56.926407 c -0.43097,0.540229 -0.0844,0.745005 0.0853,1.273066 0.025,0.07774 0.14853,0.07696 0.17065,0.14085 0.0204,0.05878 -0.0365,0.165527 -0.0244,0.232944 0.0368,0.204189 0.33945,0.535043 0.25599,0.720501 -0.007,0.01603 0.13002,1.632413 -0.0366,1.48434 -0.1027,-0.09128 1.25299,-1.288422 1.35305,-1.408498 0.63512,-0.762084 0.73578,-1.998799 0.92642,-2.93076 0.0887,-0.433776 0.37985,-0.797928 0.49978,-1.224311 0.0285,-0.101228 0.21976,-0.217102 0.29255,-0.303368 0.11505,-0.136342 0.0577,-0.357742 0.19504,-0.514644 0.30881,-0.352907 1.17021,-0.683909 1.17021,-1.132216 0,-0.006 -0.27944,-0.222274 -0.28036,-0.22211 -0.68987,0.122636 -1.66772,0.491965 -2.42575,0.828848 -1.58226,0.703179 -2.56335,1.360398 -2.18196,3.055358 z"
             id="path4971"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="translate(-79.414752,-21.002953)"
           style="display:inline"
           id="g4846-8">
          <path
             sodipodi:nodetypes="cccccccccccccccccccccccc"
             inkscape:connector-curvature="0"
             id="path4730-2"
             d="m 103.7914,75.155627 c 0.43322,0.30296 0.90363,0.550092 1.33282,0.857964 0.12045,0.336984 0.49108,0.342055 0.77245,0.463428 0.21944,0.312532 0.71347,0.02281 0.79545,0.42304 0.17943,0.293788 0.19192,0.166568 0.54331,0.230309 0.23911,0.231474 0.41925,-0.04977 0.41896,-0.316541 0.22692,-0.289113 0.52346,-0.549597 0.5441,-0.950953 0.0989,-0.346091 0.0896,-0.222166 -0.0451,-0.510101 -0.17218,-0.296438 0.0631,-0.602738 -0.21756,-0.83097 -0.0167,-0.323653 -0.13164,-0.701121 0.16239,-0.940522 0.27182,-0.287988 -0.0196,-0.653421 0.12378,-0.995739 0.0922,-0.293133 -0.37552,-0.549034 -0.0898,-0.743782 -0.20462,-0.16227 0.16381,-0.382931 -0.18498,-0.430021 -0.73255,-0.384964 -1.41755,-0.854025 -2.05637,-1.378705 -0.50798,-0.392102 -1.33637,-0.26144 -1.91877,-0.484702 -0.36104,0.392051 0.1653,0.177053 -0.2273,0.855122 -0.2317,0.22827 -0.40276,0.560919 -0.29793,0.890571 0.0159,0.390158 0.14512,0.633431 0.0249,1.00699 -0.38749,0.387441 -0.11556,0.924963 0.13725,1.302211 0.23287,0.298385 -0.3348,0.559235 -0.0904,0.795011 -0.10643,0.233908 0.0131,0.565345 0.14311,0.724752 0.41776,0.08494 -0.33844,-0.04255 -0.005,0.02062 0.0442,0.0077 0.0893,0.017 0.13449,0.01202 z"
             style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4732-5"
             d="m 107.80181,71.59646 c 0.26309,-0.167657 0.52809,-0.200829 0.81671,-0.26003 0.66367,-0.136128 1.30786,-0.7173 1.85284,-1.056374 0.2526,-0.157168 0.54,-0.290367 0.74357,-0.471306 0.12294,-0.109272 0.324,-0.184188 0.31693,-0.184188 -0.24065,0 0.0332,0.300834 0.1219,0.395463 0.009,0.0093 -0.0638,0.589101 -0.0731,0.671746 -0.0633,0.562631 -0.25023,1.135528 -0.15847,1.70645 0.0205,0.127449 0.1849,0.354689 0.17066,0.449636 -0.0238,0.158761 -0.18653,0.222733 -0.2316,0.362959 -0.0413,0.128585 0.0488,0.237088 0.0488,0.357542 0,0.179409 -0.20835,0.363517 -0.2438,0.552565 -0.0489,0.260805 0.0246,0.25912 -0.0488,0.585068 -0.0187,0.08318 0.38529,0.328131 0.10971,0.818013 -0.16227,0.288454 -1.11834,0.383244 -1.4262,0.520061 -0.88343,0.392613 -2.12923,0.856068 -2.41356,1.235145 -0.005,0.0062 -0.13409,-0.03363 -0.13409,0 0,0.03867 0.006,-0.10041 0.0975,-0.0325 0.0266,0.01972 -0.21603,-0.11205 -0.19503,-0.146267 0.13436,-0.218954 0.34366,-0.206188 0.25598,-0.530896 -0.0903,-0.334477 0.26698,-0.540227 0.31693,-0.828847 0.0497,-0.286979 -0.0755,-0.595132 0.0122,-0.893855 0.0651,-0.221854 -0.34676,-1.518927 -0.37788,-1.809379 -0.0108,-0.100721 0.12122,-0.141447 0.13409,-0.232944 0.0317,-0.225095 0.1552,-0.569202 0.1219,-0.628407 -0.0151,-0.02676 0.3535,-0.20282 0.3535,-0.254613 0,-0.05499 -0.13308,-0.248961 -0.17066,-0.325038 z"
             style="color:#000000;fill:#66362e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             inkscape:connector-curvature="0"
             id="path4736-6"
             d="m 103.93767,69.543303 c 0.4653,-0.676026 1.22405,-0.80836 1.92598,-1.159303 0.28745,-0.143718 0.46494,-0.372438 0.80452,-0.460471 0.0998,-0.02586 0.76795,-0.243463 0.76795,-0.31962 0,-0.03985 -0.25182,0.184291 -0.17066,0.265447 0.12667,0.126659 0.41178,0.285456 0.57292,0.368377 0.30569,0.157302 0.63633,0.163614 0.93861,0.297952 0.489,0.217319 0.97198,0.463895 1.47495,0.655493 0.46217,0.176054 1.40182,0.117281 1.40182,0.650076 0,0.0403 -0.55027,0.230774 -0.60949,0.249196 -0.42204,0.131293 -0.74628,0.546908 -1.1824,0.68258 -0.24446,0.07605 -0.43507,0.338642 -0.48759,0.40088 -0.12213,0.144747 -0.67523,0.285049 -0.85328,0.308787 -0.1888,0.02517 -0.43582,0.34129 -0.71919,0.34129 -0.49884,0 -1.5251,-0.635383 -2.04787,-0.996784 -0.28783,-0.198979 -1.89458,-1.202693 -1.81627,-1.2839 0.0719,-0.07457 0.17879,0.104734 0.26818,0.157101"
             style="color:#000000;fill:#aa6442;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        </g>
      </g>
    </g>
    <path
       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="m 48.033203,25.554688 c -7.605153,-2.26e-4 -15.166337,1.565397 -20.546875,4.255859 -5.380537,2.690462 -8.513672,6.472397 -8.513672,10.277344 0,3.804947 3.133135,7.586881 8.513672,10.277343 5.380538,2.690462 12.941722,4.256085 20.546875,4.25586 7.605153,-2.26e-4 15.159523,-1.567365 20.533203,-4.257813 5.37368,-2.690448 8.501953,-6.470868 8.501953,-10.27539 0,-3.804523 -3.128273,-7.584943 -8.501953,-10.275391 -5.37368,-2.690448 -12.92805,-4.257587 -20.533203,-4.257812 z m 0,1.09375 c 7.454859,2.19e-4 14.884276,1.559768 20.042969,4.142578 5.158783,2.582855 7.898437,6.092153 7.898437,9.296875 0,3.20472 -2.739654,6.714019 -7.898437,9.296875 -5.158693,2.58281 -12.58811,4.142356 -20.042969,4.142578 -7.454962,2.2e-4 -14.890991,-1.557616 -20.056641,-4.140625 -5.165646,-2.583009 -7.910156,-6.094548 -7.910156,-9.298828 0,-3.20428 2.74451,-6.71582 7.910156,-9.298829 5.16565,-2.583009 12.601679,-4.140847 20.056641,-4.140624 z"
       id="path4293"
       inkscape:connector-curvature="0" />
    <path
       style="opacity:0.3;color:#000000;fill:url(#linearGradient5046);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 21.259766 35.939453 C 20.332062 37.306707 19.845703 38.717219 19.845703 40.087891 C 19.845703 43.414664 22.667854 46.977295 27.876953 49.582031 C 33.08596 52.186721 40.547974 53.748268 48.033203 53.748047 C 55.518383 53.747825 62.973741 52.186545 68.175781 49.582031 C 73.377985 46.977437 76.195313 43.414911 76.195312 40.087891 C 76.195313 38.717118 75.709461 37.306711 74.783203 35.939453 C 75.501491 37.126483 75.869141 38.328959 75.869141 39.484375 C 75.869141 42.624749 73.166976 46.115211 68.029297 48.6875 C 62.892346 51.259425 55.472943 52.818138 48.033203 52.818359 C 40.593431 52.818579 33.167443 51.259687 28.023438 48.6875 C 22.878818 46.115005 20.171875 42.624136 20.171875 39.484375 C 20.171875 38.329185 20.540314 37.126473 21.259766 35.939453 z "
       id="path5037" />
    <g
       id="g4707"
       transform="matrix(0.78660812,0,0,0.78660812,-73.986579,-40.869306)">
      <path
         sodipodi:nodetypes="cccccccccccccccccccccsccccsccccccsccccc"
         inkscape:connector-curvature="0"
         id="path4604"
         d="m 159.31759,141.61243 c -0.0518,0.0383 0.14311,0.16149 0.13651,0.18202 -0.0347,0.10811 0.0771,0.42612 0.0465,0.5617 -0.0188,0.0834 0.2318,0.16116 0.20478,0.19719 -0.11916,0.15883 -0.0745,0.23248 0.0341,0.40953 0.0612,0.0999 -0.13893,0.20681 -0.17066,0.33369 -0.0791,0.31681 0.6679,1.23995 0.7338,1.27411 0.0431,0.0223 -0.14859,0.0446 -0.11941,0.0834 0.1145,0.1526 0.009,0.37513 0.13653,0.50813 0.2087,0.21641 0.0726,0.24872 0.17065,0.55362 0.0749,0.23275 0.59905,0.16714 0.64847,0.38678 0.0193,0.0858 0.9218,0.98991 1.10923,1.11485 0.16923,0.11278 -0.0572,0.32536 -0.0853,0.46261 -0.0166,0.0809 0.12411,0.0821 0.15358,0.12137 0.0989,0.13189 0.0352,0.32205 0.0512,0.3716 0.11499,0.35758 0.69979,0.37191 0.87032,0.75082 0.0347,0.0772 -0.10799,0.31562 -0.1194,0.35645 -0.0178,0.0633 0.49465,0.1285 0.49488,0.12893 0.0463,0.0822 -0.22151,0.059 -0.2389,0.15168 -0.022,0.11707 0.21072,0.0815 0.2389,0.14409 0.047,0.10431 0.18473,0.34493 0.32424,0.47779 0.21778,0.20739 0.61324,0.0293 0.81913,0.21236 0.15376,0.13667 -0.002,0.39505 0.11941,0.48536 0.17042,0.12623 1.3386,0.44363 1.50172,0.60672 0.22028,0.22027 0.30695,0.82636 0.40956,0.96317 0.40416,0.53884 0.58768,0.62926 0.88737,1.2286 0.13047,0.26092 0.66554,0.13085 0.66554,0.68256 0,0.0661 0.36163,0.42487 0.3413,0.39436 -0.0746,-0.11179 0.60116,0.0661 0.93857,-0.12137 0.0535,-0.0297 -0.0384,-0.12112 0.0341,-0.1896 0.49305,-0.46564 0.64335,-0.47633 0.73379,-1.039 0.0367,-0.22831 0.46563,-0.31564 0.5802,-0.48538 0.0314,-0.0465 0.20648,-2.27902 0.20478,-2.28276 -0.14024,-0.31164 -0.35991,-0.55242 -0.52901,-0.83424 -0.14276,-0.23791 0.24061,-1.25492 -0.10235,-1.72915 -0.40765,-0.56361 -0.96064,-1.28194 -1.51879,-1.69122 -0.45912,-0.33668 -1.12844,-0.62543 -1.48466,-1.0845 -0.58442,-0.75321 -1.44636,-1.79902 -2.26964,-2.29796 -1.79255,-0.79081 -4.49537,-2.10923 -6.42731,-2.4352"
         style="color:#000000;fill:#8f5b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         inkscape:connector-curvature="0"
         id="path4606"
         d="m 177.00935,153.04196 c 0.50487,-0.61539 0.19749,-0.82769 -0.0512,-1.38028 -0.0417,-0.0928 0.13651,-0.081 0.13651,-0.13652 0,-0.0826 -0.15358,-0.0563 -0.15358,-0.12136 0,-0.47564 -0.24314,-1.39362 -0.0341,-1.85807 0.0428,-0.0952 -0.25115,-0.0739 -0.25598,-0.0911 -0.0228,-0.0812 0.1936,-0.0839 0.20478,-0.11376 0.0512,-0.13643 -0.14604,-0.28165 -0.17065,-0.40195 -0.0239,-0.1172 0.13823,-0.27757 0.0853,-0.37162 -0.37481,-0.66627 -0.33877,-1.6877 0.3413,-1.90357 0.0206,-0.006 0.89191,0.0283 1.36519,-0.18202 0.28877,-0.12834 1.08482,-0.079 1.39934,-0.0682 0.979,0.0335 2.012,-0.0188 2.98638,-0.0911 0.85083,-0.0631 1.70864,0.0123 2.55975,-0.11376 0.89496,-0.13257 1.92707,-0.61151 2.83279,-0.5612 0.41105,0.0228 0.74566,0.37266 1.16043,0.40952 0.94718,0.0842 1.71074,-0.21092 2.61094,-0.31094 1.56709,-0.1741 3.08817,-0.47517 4.64168,-0.7053 0.93049,-0.13785 1.80563,-0.11413 2.67921,-0.4247 0.51501,-0.18311 1.33644,-0.12984 1.89422,-0.18202 0.43154,-0.0404 0.92129,-0.10861 1.34813,-0.2351 0.42137,-0.12485 1.13149,-0.0134 1.39934,-0.0303 0.35696,-0.0227 1.02727,-0.01 1.29694,0.1896 0.0854,0.0633 -0.15047,0.18282 -0.13653,0.2882 0.0221,0.16699 0.25886,0.2956 0.22185,0.49294 -0.14043,0.74886 -0.91113,2.41351 -0.73379,2.76815 0.1443,0.2886 0.31863,0.35718 0.54608,0.37162 0.13849,0.009 0.0839,0.27942 0.18771,0.37162 0.1455,0.12932 -0.2341,0.26857 -0.15358,0.44745 0.0376,0.0833 -0.0152,0.22833 0.0682,0.26544 0.0495,0.022 0.19188,0.0147 0.15358,0.0531 -0.46497,0.46494 -0.8364,0.71309 -1.33106,1.15276 -0.0918,0.0816 0.12897,0.15433 0.017,0.21235 -0.49936,0.25891 -1.0969,0.27723 -1.50173,0.63705 -0.0429,0.0382 -0.0654,0.24371 -0.0853,0.25786 -0.0209,0.0148 -0.23505,0.0803 -0.22183,0.12137 0.0304,0.0947 0.34153,0.16164 0.0512,0.33369 -0.30014,0.17785 -0.83792,0.11536 -1.09216,0.34128 -0.11351,0.10088 -0.88109,0.65841 -1.05803,0.69772 -1.91113,0.42467 -3.75254,0.50054 -5.76797,0.50054 -0.68155,0 -1.39101,0.067 -2.06487,0.16685 -0.28106,0.0416 -0.61142,-0.0609 -0.90444,-0.0379 -1.9742,0.15484 -3.92717,0.0557 -5.88743,0.11376 -1.87589,0.0556 -7.26774,0.1744 -8.58371,-0.87216 z"
         style="color:#000000;fill:url(#linearGradient4673);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         inkscape:connector-curvature="0"
         id="path4608"
         d="m 180.2517,137.55551 c 2.16116,-0.20582 4.37963,0.11965 6.51883,-0.28061 1.3819,-0.25858 2.78573,-0.75351 4.31746,-0.948 0.4144,-0.0526 0.92724,0.099 1.56998,0.0455 0.68962,-0.0574 1.05236,-0.19416 1.75769,-0.2882 0.94065,-0.1254 3.41968,0.19886 4.04441,-0.35644 0.006,-0.006 -0.30048,0.12374 -0.25598,0.34128 0.0594,0.29042 0.98978,0.73007 0.98978,1.20585 0,0.47584 1.49307,1.80704 1.38226,1.97941 -0.12598,0.19597 -0.25745,0.41482 -0.32423,0.65223 -0.0516,0.18316 0.99593,0.31515 1.09217,0.36402 0.56126,0.28507 1.08905,0.80047 1.19454,1.17552 0.0204,0.0725 -0.0722,0.49155 -0.0512,0.62189 0.0351,0.21821 0.43348,0.27147 0.25598,0.50812 -0.035,0.0466 0.11401,0.0423 0.15358,0.0834 0.0614,0.0637 -0.0864,0.24624 0,0.26543 0.85415,0.1898 2.77993,0.66889 2.25259,1.1376 -0.0686,0.0609 0.27112,0.0507 0.23891,0.13651 -0.14125,0.37666 -2.91734,0.97041 -3.70311,1.31961 -1.72138,0.76501 -4.40335,0.99226 -6.26286,1.24377 -1.90584,0.25779 -3.74487,0.60855 -5.66558,0.75082 -1.19782,0.0887 -2.46717,-0.18424 -3.66898,-0.2351 -2.87357,-0.12162 -5.89071,-0.11376 -8.27653,-0.11376 -0.45781,0 -1.26557,0.12426 -1.33107,-0.16685 -0.0177,-0.0785 0.18772,-0.0713 0.18772,-0.15168 0,-0.42134 0.14099,-0.20254 0.27303,-0.58397 0.0704,-0.2033 0.006,-0.42419 0.0853,-0.65222 0.0811,-0.23449 0.45898,-0.37367 0.52902,-0.59154 0.0168,-0.0522 -0.10026,-0.23312 -0.0682,-0.31853 0.10099,-0.26925 0.56314,-0.29578 0.69966,-0.5233 0.0788,-0.13134 0.0457,-0.32958 0.22184,-0.53088 0.16683,-0.19063 0.52427,-0.30103 0.61434,-0.56121 0.14109,-0.40758 -0.0275,-1.03448 0.10235,-1.34236 0.24907,-0.59034 0.75942,-0.74958 0.95565,-1.24378 0.27562,-0.69413 0.0341,-1.07587 0.0341,-1.73672 0,-0.4046 0.78906,-0.73058 0.68261,-1.06176 -0.0577,-0.17922 -0.49511,0.0372 -0.54608,-0.14409 -0.0281,-0.10001 0.25218,-0.21046 0.2901,-0.11376 0.0379,0.0967 -0.1934,0.0758 -0.2901,0.11376 z"
         style="color:#000000;fill:url(#linearGradient4665);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         sodipodi:nodetypes="ccsssccccccsscccc"
         inkscape:connector-curvature="0"
         id="path4682"
         d="m 196.70945,146.59054 c -0.42842,0.0535 -0.91118,0.12174 -1.2871,0.17257 -1.90585,0.25778 -3.74543,0.60795 -5.66615,0.75021 -1.19782,0.0887 -2.46536,-0.18402 -3.66717,-0.23489 -2.87358,-0.12161 -5.89288,-0.11499 -8.2787,-0.11499 -0.3529,0 -0.90834,0.0731 -1.17686,-0.0264 -0.17093,0.41461 -0.10811,0.99587 0.13662,1.43091 0.0529,0.094 -0.10787,0.25432 -0.0839,0.37152 0.0247,0.12026 0.22135,0.26384 0.17018,0.40027 -0.011,0.0298 -0.22896,0.0337 -0.20613,0.11498 0.005,0.0172 0.2993,-0.004 0.25647,0.0911 -0.20903,0.46445 0.0335,1.38192 0.0335,1.85755 0,0.065 0.1534,0.0396 0.1534,0.12223 0,0.0555 -0.17835,0.0438 -0.13662,0.13662 0.24866,0.55259 0.5576,0.76519 0.0528,1.38059 0.89903,0.71497 3.67081,0.87271 5.95377,0.89162 1.26497,-4.00575 13.74591,-7.34393 13.74591,-7.34393 z"
         style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         id="path4699"
         d="m 195.03646,140.75662 c -0.85175,2e-5 -1.62506,0.47716 -1.62506,0.99948 0,0.52231 0.77331,0.99706 1.62506,0.99709 0.85174,3e-5 1.62745,-0.47472 1.62745,-0.99709 0,-0.52237 -0.77571,-0.99952 -1.62745,-0.99948 z m 0.23488,2.53107 c -1.28376,4e-5 -2.44957,0.71559 -2.44957,1.50282 0,0.78723 1.16581,1.50517 2.44957,1.50521 1.14031,5e-5 2.18607,-0.56586 2.40644,-1.24396 0.14818,0.0371 0.30312,0.0623 0.46498,0.0623 0.70775,3e-5 1.35183,-0.39525 1.35183,-0.8293 0,-0.43406 -0.64408,-0.82933 -1.35183,-0.82931 -0.42656,10e-6 -0.8088,0.15291 -1.0618,0.36192 -0.46041,-0.31721 -1.115,-0.52972 -1.80962,-0.5297 z"
         style="opacity:0.4;color:#000000;fill:#764124;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4675"
         d="m 189.99349,136.5166 c -0.92456,0.19349 -1.80443,0.43307 -2.67488,0.62797 l -7.4446,10.026 c 1.96815,0.004 4.09073,0.0179 6.21502,0.10787 1.20181,0.0508 2.46935,0.32362 3.66717,0.2349 1.92072,-0.14227 3.7603,-0.49244 5.66615,-0.75022 0.37592,-0.0508 0.85868,-0.11903 1.2871,-0.17256 l -6.71596,-10.07395 z"
         style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path4602"
         d="m 190.2006,136.90328 c 0.0634,0.47324 0.10002,0.49054 0.30718,0.70531 0.009,0.009 -0.1156,0.31026 -0.10235,0.33369 0.12593,0.22386 0.87668,0.6515 0.87032,0.68256 -0.0145,0.0706 0.0167,0.56901 -0.13652,0.65981 -0.0573,0.034 -0.23389,0.28417 -0.20478,0.34886 0.0557,0.12382 0.33142,0.57411 0.47782,0.68255 0.0796,0.059 0.34267,0.10357 0.25597,0.15168 -0.44964,0.24979 0.63004,2.62323 0.30718,2.87432 -0.0582,0.0453 0.16864,0.0192 0.20478,0.0834 0.12186,0.21655 0.30716,0.53399 0.30716,0.69015 0,0.0224 -2.06141,0.52287 -2.25257,0.54604 -0.97274,0.11794 -1.96612,0.63229 -2.79867,1.0845 -0.10652,0.0579 -0.24847,0.24458 -0.30716,0.26544 -1.2991,0.46188 -2.64079,0.82918 -3.9591,1.34996 -1.01323,0.40027 -2.25737,1.03224 -2.91811,1.66846 -0.15261,0.14696 0.21548,0.33889 -0.2901,0.75082 -0.49943,0.40692 -3.12362,1.14198 -3.87376,1.32719 -0.86988,0.21477 -1.46143,0.96182 -1.91128,1.28169 -0.25324,0.18007 -1.76054,0.50762 -2.16726,0.65223 -0.12719,0.0452 -0.26931,0.24585 -0.32423,0.31093 -0.10198,0.12088 -0.61434,0.26652 -0.61434,0.39437 0,0.8702 -0.90801,1.02201 -2.25259,0.9025 -0.0988,-0.009 -0.3077,-0.8152 -0.42663,-0.96317 -0.0934,-0.11622 -0.36447,-0.16528 -0.42662,-0.30336 -0.073,-0.1622 -0.0577,-0.45439 -0.20478,-0.56879 -0.13982,-0.10873 0.0367,-0.23342 -0.0341,-0.28061 -0.062,-0.0414 -0.54075,-1.4604 -0.51196,-1.52438 0.014,-0.0311 0.14774,0.0294 0.13653,-0.0303 -0.0158,-0.0844 -0.8116,-0.7265 -0.87032,-0.85699 -0.52715,-1.17137 -1.15148,-1.60685 -1.39933,-3.31418 -0.0935,-0.64375 -0.46235,-1.30465 0.0682,-1.92633 0.4769,-0.55877 1.47262,-0.84508 2.09899,-1.1831 1.80452,-0.97381 3.64053,-1.55914 5.59732,-2.18418 1.4406,-0.46017 2.83629,-1.11442 4.24919,-1.64572 1.56761,-0.58949 3.16976,-0.85267 4.76114,-1.3727 0.87691,-0.28656 1.83916,-0.92531 2.73041,-1.06935 1.32706,-0.21445 2.63287,-0.66072 3.94201,-0.91006 0.32092,-0.0611 1.89422,0.0496 1.89422,0.0379 0,-0.13782 -0.34779,0.29289 -0.22185,0.34886 0.12337,0.0549 0.41258,-0.34478 0.32423,-0.24269 -0.0883,0.1021 -0.21615,0.16179 -0.32423,0.24269 0.10235,-0.0303 0.20478,-0.0606 0.30717,-0.0911 -0.006,-0.0177 -0.011,-0.0353 -0.0171,-0.0531"
         style="color:#000000;fill:url(#linearGradient4657);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         inkscape:connector-curvature="0"
         id="path4600"
         d="m 158.76685,140.55116 c 1.45327,-0.34492 3.13048,-0.30606 4.45397,-1.22101 0.19283,-0.13331 0.28015,-0.36499 0.42662,-0.46262 0.13738,-0.0916 0.42454,-0.10787 0.51196,-0.25028 0.067,-0.10922 -0.25882,-0.17194 -0.23891,-0.24268 0.0353,-0.12562 0.76763,-0.12125 0.88737,-0.15927 0.83524,-0.26513 1.50061,-0.73508 2.26966,-1.11483 0.52359,-0.25856 0.70694,-0.87117 1.31399,-1.16794 0.44817,-0.21909 0.84657,-0.43689 1.34814,-0.6598 0.13652,-0.0607 0.26077,0.19524 0.40956,0.18201 0.18392,-0.0163 0.86387,-0.0741 1.1263,-0.21993 0.4153,-0.23072 0.50653,-0.68804 0.9215,-0.84941 0.23933,-0.093 0.53513,-0.0609 0.785,-0.14409 0.1822,-0.0607 1.44523,-0.79535 1.58704,-0.9025 0.28515,-0.21543 0.33499,-0.93338 0.6826,-1.13 0.55412,-0.31342 1.22516,-0.4404 1.80889,-0.66739 0.76816,-0.29871 1.53553,-0.92758 2.28672,-1.37271 0.62354,-0.36948 1.21233,-0.44776 1.56998,-0.60671 0.0406,-0.018 -0.0259,0.0853 -0.0341,0.12893 -0.011,0.0599 0.21185,0.33776 0.25596,0.38677 0.26387,0.29318 0.6532,0.53713 1.00685,0.72048 0.75511,0.39153 3.94408,0.99849 4.36864,1.50164 0.18999,0.22516 0.53221,0.60387 0.6826,0.82664 0.0438,0.0649 -0.0659,0.20817 0,0.30336 0.19916,0.28765 0.60277,0.22983 0.85325,0.50813 0.4252,0.47242 0.48164,1.23544 1.10922,1.48645 0.44469,0.17787 1.50717,0.99123 1.24574,1.2817 -0.15014,0.16682 -5.45143,1.35967 -6.34817,1.88082 -0.36269,0.21078 -2.64508,1.52327 -2.64508,1.71397 0,0.0864 0.31943,0.15899 0.35836,0.16685 0.10812,0.0218 0.17979,0.15926 0.29011,0.15926 0.0471,0 -0.48657,0.14388 -0.98977,0.34887 -0.70622,0.2877 -1.63964,0.26811 -2.30378,0.63705 -0.44868,0.24924 -2.8626,1.32537 -2.54269,1.75189 0.0844,0.11266 -1.09738,0.15843 -1.62118,0.53088 -0.68154,0.48463 -1.65391,0.31778 -2.42323,0.73565 -0.322,0.17491 -0.54647,0.65262 -0.75086,0.85698 -0.13875,0.13875 -0.41838,0.10726 -0.58021,0.23511 -0.0947,0.0749 -0.12716,0.24954 -0.17065,0.28819 -0.21799,0.19375 -0.72013,0.011 -0.93858,0.20477 -0.78223,0.69528 -2.0015,1.12216 -3.20821,1.52438 -0.89261,0.29751 0.26087,0.71424 -1.09216,0.86457 -0.10309,0.011 -0.48788,-0.23738 -0.61434,-0.28061 -0.7567,-0.25868 -1.44155,-0.73365 -1.84303,-1.38786 -0.0869,-0.14158 -0.0304,-0.31399 -0.20478,-0.42471 -0.28323,-0.17982 -1.09652,-0.64148 -1.16042,-1.03901 -0.0711,-0.44177 -0.063,-1.02202 -0.25597,-1.3651 -0.12954,-0.23027 -0.97825,-1.06607 -1.00684,-1.20586 -0.17538,-0.85732 -1.24259,-1.9326 -1.58705,-2.35103 z"
         style="color:#000000;fill:url(#linearGradient4649);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         id="path4610"
         d="m 181.08202,132.71521 c -0.18487,-0.001 -0.38004,0.0209 -0.57045,0.0719 -0.76167,0.20412 -1.339,0.81852 -1.2128,1.2895 0.12619,0.47098 0.93527,0.71459 1.69696,0.51053 0.76168,-0.20406 1.33902,-0.81847 1.21281,-1.28951 -0.0946,-0.35327 -0.57191,-0.57819 -1.12652,-0.58242 z m 2.73959,0.84128 c -0.13716,-0.001 -0.28056,0.0173 -0.42185,0.0551 -0.56511,0.15145 -0.99484,0.60691 -0.9012,0.95635 0.0936,0.34944 0.69321,0.52771 1.25834,0.3763 0.56513,-0.1514 0.99485,-0.60685 0.90121,-0.95634 -0.0702,-0.26211 -0.425,-0.42829 -0.8365,-0.43143 z m -13.02924,3.37476 c -0.18488,-0.001 -0.37765,0.0233 -0.56807,0.0744 -0.76166,0.20411 -1.33899,0.81612 -1.2128,1.2871 0.1262,0.47099 0.93289,0.71459 1.69457,0.51053 0.76169,-0.20406 1.34142,-0.81846 1.21521,-1.28951 -0.0946,-0.35327 -0.57431,-0.5782 -1.12891,-0.58243 z m 9.40281,0.41945 c -0.13716,-10e-4 -0.28056,0.0173 -0.42183,0.0551 -0.14129,0.0379 -0.27492,0.0935 -0.39309,0.16298 -0.11892,0.07 -0.22113,0.15323 -0.3044,0.24209 -0.16504,0.17613 -0.2504,0.37708 -0.20373,0.55128 0.0236,0.0879 0.0791,0.16374 0.15819,0.22769 0.23441,0.19106 0.6763,0.26455 1.10015,0.151 0.28257,-0.0757 0.53111,-0.22858 0.69748,-0.40507 0.16629,-0.17656 0.25056,-0.37652 0.20374,-0.55127 -0.0214,-0.0796 -0.0763,-0.14578 -0.14381,-0.20612 -0.0184,-0.0164 -0.0388,-0.0307 -0.0599,-0.0455 -0.0592,-0.0415 -0.12634,-0.0755 -0.20374,-0.10308 -0.0277,-0.01 -0.0519,-0.0209 -0.0815,-0.0287 -0.10787,-0.0292 -0.22304,-0.0493 -0.34755,-0.0503 z m -2.44718,1.94144 c -0.13716,-10e-4 -0.28056,0.0148 -0.42184,0.0528 -0.56511,0.15145 -0.99245,0.60689 -0.89882,0.95635 0.0936,0.34944 0.69323,0.53009 1.25834,0.37869 0.56514,-0.15141 0.99248,-0.60685 0.89882,-0.95634 -0.0702,-0.26211 -0.425,-0.42829 -0.8365,-0.43143 z m -8.92825,0.34515 c -0.32003,-0.002 -0.65306,0.0363 -0.9827,0.12463 -0.69605,0.18653 -1.29656,0.57264 -1.68258,1.01387 -0.34046,-0.47722 -1.27836,-0.69412 -2.16915,-0.4554 -1.02374,0.27435 -1.79947,1.09989 -1.62985,1.73292 0.16962,0.63303 1.25563,0.95977 2.2794,0.68549 0.4597,-0.12316 0.85346,-0.36415 1.15048,-0.64234 0.30709,0.74437 1.62625,1.11881 2.8858,0.78136 1.31859,-0.35326 2.32054,-1.41842 2.10204,-2.23386 -0.16387,-0.61157 -0.99331,-0.99933 -1.95344,-1.00667 z m -2.74917,4.29515 c -0.18488,-0.001 -0.37765,0.0209 -0.56806,0.0719 -0.76166,0.20412 -1.339,0.81852 -1.2128,1.28951 0.12619,0.47098 0.93288,0.71459 1.69457,0.51052 0.76168,-0.20405 1.33902,-0.81847 1.21281,-1.2895 -0.0946,-0.35328 -0.57191,-0.5782 -1.12652,-0.58243 z"
         style="opacity:0.4;color:#000000;fill:#dd936c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4628"
         d="m 177.47238,132.74876 c -0.18488,-0.001 -0.38004,0.0209 -0.57046,0.0719 -0.76167,0.20412 -1.33901,0.81852 -1.2128,1.2895 0.1262,0.47098 0.93528,0.71459 1.69696,0.51054 0.76169,-0.20407 1.33902,-0.81848 1.2128,-1.28951 -0.0946,-0.35328 -0.5719,-0.5782 -1.1265,-0.58243 z m 9.30933,2.09245 c -0.18486,-10e-4 -0.37763,0.0209 -0.56805,0.0719 -0.45166,0.121 -0.81685,0.38907 -1.03064,0.6831 -0.39525,-0.37556 -1.21102,-0.53169 -1.99658,-0.32118 -0.99753,0.26733 -1.75438,1.07295 -1.5891,1.68978 0.16527,0.61682 1.22193,0.93357 2.21948,0.66632 0.68694,-0.18404 1.23761,-0.62404 1.47406,-1.08097 0.32854,0.22024 0.87128,0.30585 1.40455,0.16298 0.76169,-0.20407 1.34141,-0.81847 1.2152,-1.2895 -0.0946,-0.35328 -0.5743,-0.5782 -1.12892,-0.58243 z m -10.23691,0.19893 c -0.12763,-9.8e-4 -0.26164,0.0151 -0.3931,0.0503 -0.5258,0.14092 -0.92361,0.5641 -0.83649,0.88923 0.0871,0.32514 0.64384,0.49321 1.16966,0.35234 0.52581,-0.14087 0.92602,-0.56405 0.83889,-0.88923 -0.0653,-0.24388 -0.39611,-0.39975 -0.77896,-0.40267 z m -9.10802,3.03681 c -0.12763,-9.8e-4 -0.26164,0.0151 -0.39308,0.0503 -0.52581,0.14092 -0.92362,0.5641 -0.8365,0.88923 0.0871,0.32515 0.64384,0.49321 1.16965,0.35234 0.52583,-0.14087 0.92604,-0.56646 0.83891,-0.89162 -0.0653,-0.24388 -0.39611,-0.39735 -0.77898,-0.40027 z m 6.59372,3.30764 c -0.18487,-0.001 -0.37764,0.0209 -0.56805,0.0719 -0.76168,0.20411 -1.33901,0.81852 -1.2128,1.2895 0.12619,0.47098 0.93288,0.71459 1.69457,0.51053 0.76168,-0.20407 1.34141,-0.81847 1.21519,-1.2895 -0.0946,-0.35328 -0.57431,-0.5782 -1.12891,-0.58244 z"
         style="color:#000000;fill:#bc6739;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
      <path
         id="path4693"
         d="m 193.35387,137.21647 c -0.80566,4e-5 -1.53638,0.44792 -1.53638,0.94196 0,0.49406 0.73072,0.94433 1.53638,0.94436 0.34,1e-5 0.65337,-0.0908 0.91799,-0.2205 0.0468,0.73952 1.14258,1.40211 2.3537,1.40214 1.23766,5e-5 2.36329,-0.69104 2.36329,-1.45009 0,-0.75904 -1.12563,-1.45013 -2.36329,-1.45009 -0.69435,3e-5 -1.3458,0.22162 -1.79045,0.54649 -0.18155,-0.39547 -0.80314,-0.71429 -1.48124,-0.71427 z m 6.47627,3.8781 c -0.70775,3e-5 -1.35182,0.3953 -1.35182,0.82931 0,0.434 0.64407,0.82928 1.35182,0.82931 0.70775,2e-5 1.35183,-0.39526 1.35183,-0.82931 0,-0.43406 -0.64408,-0.82933 -1.35183,-0.82931 z"
         style="opacity:0.2;color:#000000;fill:#dd936c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         inkscape:connector-curvature="0" />
    </g>
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer2"
     inkscape:label="BADGE"
     style="display:none"
     sodipodi:insensitive="true">
    <g
       style="display:inline"
       transform="translate(-340.00001,-581)"
       id="g4394"
       clip-path="none">
      <g
         id="g855">
        <g
           inkscape:groupmode="maskhelper"
           id="g870"
           clip-path="url(#clipPath873)"
           style="opacity:0.6;filter:url(#filter891)">
          <path
             transform="matrix(1.4999992,0,0,1.4999992,-29.999795,-237.54282)"
             d="m 264,552.36218 c 0,3.1416 -1.29336,6.26386 -3.51461,8.48526 -2.22124,2.22141 -5.34284,3.51456 -8.48248,3.51437 -3.13963,-1.8e-4 -6.25853,-1.29366 -8.47695,-3.51506 -2.21842,-2.22139 -3.50934,-5.34333 -3.50934,-8.48457 0,-3.14124 1.29092,-6.26317 3.50934,-8.48457 2.21842,-2.22139 5.33732,-3.51487 8.47695,-3.51506 3.13964,-1.8e-4 6.26124,1.29297 8.48248,3.51437 2.22125,2.22141 3.51461,5.34367 3.51461,8.48526 z"
             sodipodi:ry="12"
             sodipodi:rx="12"
             sodipodi:cy="552.36218"
             sodipodi:cx="252"
             id="path844"
             style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             sodipodi:type="arc" />
        </g>
        <g
           id="g862">
          <path
             sodipodi:type="arc"
             style="color:#000000;fill:#f5f5f5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             id="path4398"
             sodipodi:cx="252"
             sodipodi:cy="552.36218"
             sodipodi:rx="12"
             sodipodi:ry="12"
             d="m 264,552.36218 c 0,3.1416 -1.29336,6.26386 -3.51461,8.48526 -2.22124,2.22141 -5.34284,3.51456 -8.48248,3.51437 -3.13963,-1.8e-4 -6.25853,-1.29366 -8.47695,-3.51506 -2.21842,-2.22139 -3.50934,-5.34333 -3.50934,-8.48457 0,-3.14124 1.29092,-6.26317 3.50934,-8.48457 2.21842,-2.22139 5.33732,-3.51487 8.47695,-3.51506 3.13964,-1.8e-4 6.26124,1.29297 8.48248,3.51437 2.22125,2.22141 3.51461,5.34367 3.51461,8.48526 z"
             transform="matrix(1.4999992,0,0,1.4999992,-29.999795,-238.54282)" />
          <path
             transform="matrix(1.25,0,0,1.25,33,-100.45273)"
             d="m 264,552.36218 c 0,3.1416 -1.29336,6.26386 -3.51461,8.48526 -2.22124,2.22141 -5.34284,3.51456 -8.48248,3.51437 -3.13963,-1.8e-4 -6.25853,-1.29366 -8.47695,-3.51506 -2.21842,-2.22139 -3.50934,-5.34333 -3.50934,-8.48457 0,-3.14124 1.29092,-6.26317 3.50934,-8.48457 2.21842,-2.22139 5.33732,-3.51487 8.47695,-3.51506 3.13964,-1.8e-4 6.26124,1.29297 8.48248,3.51437 2.22125,2.22141 3.51461,5.34367 3.51461,8.48526 z"
             sodipodi:ry="12"
             sodipodi:rx="12"
             sodipodi:cy="552.36218"
             sodipodi:cx="252"
             id="path4400"
             style="color:#000000;fill:#dd4814;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             sodipodi:type="arc" />
          <path
             sodipodi:type="star"
             style="color:#000000;fill:#f5f5f5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             id="path4459"
             sodipodi:sides="5"
             sodipodi:cx="666.19574"
             sodipodi:cy="589.50385"
             sodipodi:r1="7.2431178"
             sodipodi:r2="4.3458705"
             sodipodi:arg1="1.0471976"
             sodipodi:arg2="1.6755161"
             inkscape:flatsided="false"
             inkscape:rounded="0.1"
             inkscape:randomized="0"
             d="m 669.8173,595.77657 c -0.39132,0.22593 -3.62645,-1.90343 -4.07583,-1.95066 -0.44938,-0.0472 -4.05653,1.36297 -4.39232,1.06062 -0.3358,-0.30235 0.68963,-4.03715 0.59569,-4.47913 -0.0939,-0.44198 -2.5498,-3.43681 -2.36602,-3.8496 0.18379,-0.41279 4.05267,-0.59166 4.44398,-0.81759 0.39132,-0.22593 2.48067,-3.48704 2.93005,-3.4398 0.44938,0.0472 1.81505,3.67147 2.15084,3.97382 0.3358,0.30236 4.08294,1.2817 4.17689,1.72369 0.0939,0.44198 -2.9309,2.86076 -3.11469,3.27355 -0.18379,0.41279 0.0427,4.27917 -0.34859,4.5051 z"
             transform="matrix(1.511423,-0.16366377,0.16366377,1.511423,-755.37346,-191.93651)" />
        </g>
      </g>
    </g>
  </g>
</svg>