summaryrefslogtreecommitdiffstats
path: root/src/crsc-app-basket.svg
blob: 1bd0c020f6f755dd49e2b6f5604a2242af67c616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
<?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://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   version="1.0"
   x="0.0000000"
   y="0.0000000"
   width="125.95000"
   height="125.95000"
   id="svg1"
   sodipodi:version="0.32"
   inkscape:version="0.43+0.44pre3"
   sodipodi:docname="crsc-app-basket-small.svg"
   sodipodi:docbase="/home/dd/Desktop/basket-icon"
   inkscape:export-filename="/home/dd/Desktop/basket-icon/cr16-app-basket.png"
   inkscape:export-xdpi="12.86"
   inkscape:export-ydpi="12.86">
  <metadata
     id="metadata157">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="5.3804605"
     inkscape:cx="109.82959"
     inkscape:cy="30.277546"
     inkscape:window-width="1272"
     inkscape:window-height="960"
     inkscape:window-x="0"
     inkscape:window-y="0"
     inkscape:current-layer="layer5" />
  <defs
     id="defs2">
    <linearGradient
       x1="99.597000"
       y1="27.749901"
       x2="21.819700"
       y2="27.749901"
       id="defitem0"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop4" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop5" />
    </linearGradient>
    <linearGradient
       x1="11.125700"
       y1="40.099499"
       x2="104.75200"
       y2="40.099499"
       id="defitem1"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffdf00;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop7" />
      <stop
         style="stop-color:#ff9000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop8" />
    </linearGradient>
    <linearGradient
       x1="11.854800"
       y1="64.663101"
       x2="104.84800"
       y2="64.663101"
       id="defitem2"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffdf00;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop10" />
      <stop
         style="stop-color:#ff9000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop11" />
    </linearGradient>
    <linearGradient
       x1="30.502899"
       y1="81.021698"
       x2="60.128502"
       y2="55.232700"
       id="defitem3"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop13" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop14" />
    </linearGradient>
    <linearGradient
       x1="97.928001"
       y1="22.252501"
       x2="21.068501"
       y2="22.252501"
       id="defitem4"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop16" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop17" />
    </linearGradient>
    <linearGradient
       x1="19.594999"
       y1="27.792101"
       x2="101.37900"
       y2="27.792101"
       id="defitem5"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop19" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop20" />
    </linearGradient>
    <linearGradient
       x1="64.755302"
       y1="25.712400"
       x2="110.93200"
       y2="130.62399"
       id="defitem6"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop22" />
      <stop
         style="stop-color:#efefef;stop-opacity:1.0000000;"
         offset="0.25799999"
         id="stop23" />
      <stop
         style="stop-color:#cdcdcd;stop-opacity:1.0000000;"
         offset="0.73960000"
         id="stop24" />
      <stop
         style="stop-color:#c3c3c3;stop-opacity:1.0000000;"
         offset="0.85949999"
         id="stop25" />
    </linearGradient>
    <linearGradient
       x1="60.389801"
       y1="116.30300"
       x2="79.354897"
       y2="67.517403"
       id="defitem7"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#b3b3b3;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop27" />
      <stop
         style="stop-color:#828282;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop28" />
    </linearGradient>
    <linearGradient
       x1="79.514603"
       y1="82.517097"
       x2="130.13800"
       y2="18.255899"
       id="defitem8"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop30" />
      <stop
         style="stop-color:#e6e6e6;stop-opacity:1.0000000;"
         offset="0.50330001"
         id="stop31" />
      <stop
         style="stop-color:#d4d4d4;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop32" />
    </linearGradient>
    <linearGradient
       x1="68.365402"
       y1="73.734200"
       x2="118.99000"
       y2="9.4719200"
       id="defitem9"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop34" />
      <stop
         style="stop-color:#e6e6e6;stop-opacity:1.0000000;"
         offset="0.50330001"
         id="stop35" />
      <stop
         style="stop-color:#d4d4d4;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop36" />
    </linearGradient>
    <linearGradient
       x1="62.866600"
       y1="97.084396"
       x2="116.78800"
       y2="73.350800"
       id="defitem10"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#b3caff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop38" />
      <stop
         style="stop-color:#0052bc;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop39" />
    </linearGradient>
    <radialGradient
       cx="89.610001"
       cy="32.573101"
       r="15.583500"
       fx="89.610001"
       fy="32.573101"
       id="defitem11"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="0.0000000"
         id="stop41" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop42" />
    </radialGradient>
    <linearGradient
       x1="91.409698"
       y1="41.617599"
       x2="80.945503"
       y2="27.787001"
       id="defitem12"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop44" />
      <stop
         style="stop-color:#cccccc;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop45" />
    </linearGradient>
    <linearGradient
       x1="84.319199"
       y1="49.683201"
       x2="87.490402"
       y2="41.525299"
       id="defitem13"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#b3b3b3;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop47" />
      <stop
         style="stop-color:#828282;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop48" />
    </linearGradient>
    <linearGradient
       x1="85.781502"
       y1="23.774000"
       x2="45.193100"
       y2="34.420200"
       id="defitem14"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop50" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop51" />
    </linearGradient>
    <linearGradient
       x1="68.927399"
       y1="25.886000"
       x2="27.287701"
       y2="42.358799"
       id="defitem15"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop53" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop54" />
    </linearGradient>
    <linearGradient
       x1="74.806297"
       y1="18.759001"
       x2="36.551102"
       y2="57.944401"
       id="defitem16"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#b3b3b3;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop56" />
      <stop
         style="stop-color:#828282;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop57" />
    </linearGradient>
    <linearGradient
       x1="45.193699"
       y1="42.748402"
       x2="-18.549200"
       y2="80.890900"
       id="defitem17"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="0.0000000"
         id="stop59" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop61" />
    </linearGradient>
    <radialGradient
       cx="10.882900"
       cy="87.761703"
       r="11.140400"
       fx="10.882900"
       fy="87.761703"
       id="defitem18"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="0.0000000"
         id="stop63" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop64" />
    </radialGradient>
    <linearGradient
       x1="15.207300"
       y1="77.703796"
       x2="12.610400"
       y2="97.136299"
       id="defitem19"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop66" />
      <stop
         style="stop-color:#cc0000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop67" />
    </linearGradient>
    <linearGradient
       x1="23.591400"
       y1="73.303596"
       x2="17.194401"
       y2="79.856201"
       id="defitem20"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#b3b3b3;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop69" />
      <stop
         style="stop-color:#828282;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop70" />
    </linearGradient>
    <linearGradient
       x1="11.125700"
       y1="87.100502"
       x2="104.75200"
       y2="87.100502"
       id="defitem21"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffdf00;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop72" />
      <stop
         style="stop-color:#ff9000;stop-opacity:1.0000000;"
         offset="1.0000000"
         id="stop73" />
    </linearGradient>
    <linearGradient
       x1="104.76600"
       y1="64.339401"
       x2="107.58800"
       y2="20.723301"
       id="defitem22"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop75" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop76" />
    </linearGradient>
    <linearGradient
       x1="17.692640"
       y1="61.412624"
       x2="19.019884"
       y2="21.978533"
       id="defitem23"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop78" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop79" />
    </linearGradient>
    <linearGradient
       x1="88.329002"
       y1="51.221001"
       x2="85.953598"
       y2="52.866299"
       id="defitem24"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop81" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop82" />
    </linearGradient>
    <linearGradient
       x1="81.272400"
       y1="53.569000"
       x2="82.794899"
       y2="51.185299"
       id="defitem25"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop84" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop85" />
    </linearGradient>
    <radialGradient
       cx="42.755699"
       cy="104.64000"
       r="21.837799"
       fx="43.139099"
       fy="104.33800"
       id="defitem26"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop87" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop88" />
    </radialGradient>
    <radialGradient
       cx="89.902802"
       cy="74.683296"
       r="20.662201"
       fx="89.902802"
       fy="74.683296"
       id="defitem27"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop90" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop91" />
    </radialGradient>
    <radialGradient
       cx="46.999100"
       cy="97.870102"
       r="49.695499"
       fx="47.110699"
       fy="97.303802"
       id="defitem28"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:#ffffff;stop-opacity:1.0000000;"
         offset="0.0000000"
         id="stop93" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.0000000;"
         offset="1.0000000"
         id="stop94" />
    </radialGradient>
    <linearGradient
       id="linearGradient975"
       xlink:href="#defitem17"
       x1="21.197054"
       y1="65.809898"
       x2="48.444603"
       y2="57.362999"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="linearGradient976"
       xlink:href="#defitem9"
       x1="44.808582"
       y1="40.005417"
       x2="16.589544"
       y2="81.307549"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       x1="68.345337"
       y1="90.622963"
       x2="101.27685"
       y2="68.024048"
       id="linearGradient977"
       xlink:href="#defitem17"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       x1="64.755302"
       y1="25.712400"
       x2="110.93200"
       y2="130.62399"
       id="linearGradient978"
       xlink:href="#defitem12"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       x1="77.465843"
       y1="52.442471"
       x2="70.698074"
       y2="41.078487"
       id="linearGradient980"
       xlink:href="#defitem12"
       gradientTransform="scale(1.200094,0.833268)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       xlink:href="#defitem12"
       id="linearGradient972"
       x1="15.207300"
       y1="77.703796"
       x2="12.610400"
       y2="97.136299"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       xlink:href="#defitem10"
       id="linearGradient1075"
       x1="68.345337"
       y1="90.622963"
       x2="101.27685"
       y2="68.024048"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       xlink:href="#defitem24"
       id="linearGradient1076"
       x1="87.698097"
       y1="51.387012"
       x2="85.953598"
       y2="52.866299"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       xlink:href="#defitem3"
       id="linearGradient1077"
       x1="110.01673"
       y1="39.602791"
       x2="110.69554"
       y2="37.525436"
       gradientTransform="scale(0.744732,1.342765)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem2"
       id="linearGradient1511"
       gradientUnits="userSpaceOnUse"
       x1="11.854800"
       y1="64.663101"
       x2="104.84800"
       y2="64.663101"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem1"
       id="linearGradient1518"
       gradientUnits="userSpaceOnUse"
       x1="11.125700"
       y1="40.099499"
       x2="104.75200"
       y2="40.099499"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem10"
       id="linearGradient1548"
       gradientUnits="userSpaceOnUse"
       x1="68.345337"
       y1="90.622963"
       x2="101.27685"
       y2="68.024048"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem13"
       id="linearGradient1552"
       gradientUnits="userSpaceOnUse"
       x1="84.319199"
       y1="49.683201"
       x2="87.490402"
       y2="41.525299"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem12"
       id="linearGradient1555"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.200094,0,0,-0.833268,2.787865,128.3662)"
       x1="77.465843"
       y1="52.442471"
       x2="70.698074"
       y2="41.078487" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem11"
       id="radialGradient1559"
       gradientUnits="userSpaceOnUse"
       cx="89.610001"
       cy="32.573101"
       fx="89.610001"
       fy="32.573101"
       r="15.583500"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem17"
       id="linearGradient1562"
       gradientUnits="userSpaceOnUse"
       x1="68.345337"
       y1="90.622963"
       x2="101.27685"
       y2="68.024048"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem7"
       id="linearGradient1565"
       gradientUnits="userSpaceOnUse"
       x1="60.389801"
       y1="116.30300"
       x2="79.354897"
       y2="67.517403"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem12"
       id="linearGradient1568"
       gradientUnits="userSpaceOnUse"
       x1="64.755302"
       y1="25.712400"
       x2="110.93200"
       y2="130.62399"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem28"
       id="radialGradient10588"
       gradientUnits="userSpaceOnUse"
       cx="46.999100"
       cy="97.870102"
       fx="47.110699"
       fy="97.303802"
       r="49.695499"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem27"
       id="radialGradient10591"
       gradientUnits="userSpaceOnUse"
       cx="89.902802"
       cy="74.683296"
       fx="89.902802"
       fy="74.683296"
       r="20.662201"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem3"
       id="linearGradient10597"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.744732,0,0,-1.342765,2.787865,128.3662)"
       x1="110.01673"
       y1="39.602791"
       x2="110.69554"
       y2="37.525436" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem24"
       id="linearGradient10600"
       gradientUnits="userSpaceOnUse"
       x1="87.698097"
       y1="51.387012"
       x2="85.953598"
       y2="52.866299"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem0"
       id="linearGradient10615"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)"
       x1="20.037008"
       y1="28.482220"
       x2="94.889908"
       y2="26.172848" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem22"
       id="linearGradient11357"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,-1,-29.11641,114.7126)"
       x1="110.28571"
       y1="57.111237"
       x2="107.58800"
       y2="20.723301" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem3"
       id="linearGradient11363"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.975701,0,0,-1,4.184334,128.3662)"
       x1="29.560040"
       y1="79.313225"
       x2="60.128502"
       y2="55.232700" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem5"
       id="linearGradient11377"
       x1="33.368298"
       y1="107.71607"
       x2="109.67058"
       y2="86.740944"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(2.787865,2.41615)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem1"
       id="linearGradient11449"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.000000,0.000000,0.000000,-1.000000,0.000000,125.9500)"
       x1="11.125700"
       y1="40.099499"
       x2="104.75200"
       y2="40.099499" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem1"
       id="linearGradient11453"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.000000,0.000000,0.000000,-1.000000,0.000000,125.9500)"
       x1="11.125700"
       y1="40.099499"
       x2="104.75200"
       y2="40.099499" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem20"
       id="linearGradient11507"
       gradientUnits="userSpaceOnUse"
       x1="23.591400"
       y1="73.303596"
       x2="17.194401"
       y2="79.856201"
       gradientTransform="matrix(1,0,0,-0.808173,6.93555,122.2776)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem12"
       id="linearGradient11510"
       gradientUnits="userSpaceOnUse"
       x1="15.207300"
       y1="77.703796"
       x2="12.610400"
       y2="97.136299"
       gradientTransform="matrix(1,0,0,-0.808173,6.93555,122.2776)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem18"
       id="radialGradient11514"
       gradientUnits="userSpaceOnUse"
       cx="10.882900"
       cy="87.761703"
       fx="10.882900"
       fy="87.761703"
       r="11.140400"
       gradientTransform="matrix(1,0,0,-0.808173,6.93555,122.2776)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem17"
       id="linearGradient11517"
       gradientUnits="userSpaceOnUse"
       x1="21.197054"
       y1="65.809898"
       x2="48.444603"
       y2="57.362999"
       gradientTransform="matrix(1,0,0,-0.808173,6.93555,122.2776)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem16"
       id="linearGradient11520"
       gradientUnits="userSpaceOnUse"
       x1="74.806297"
       y1="18.759001"
       x2="36.551102"
       y2="57.944401"
       gradientTransform="matrix(1,0,0,-0.808173,2.660823,120.419)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem9"
       id="linearGradient11523"
       gradientUnits="userSpaceOnUse"
       x1="44.808582"
       y1="40.005417"
       x2="16.589544"
       y2="81.307549"
       gradientTransform="matrix(1,0,0,-0.808173,2.660823,120.419)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem23"
       id="linearGradient2092"
       gradientUnits="userSpaceOnUse"
       x1="17.692640"
       y1="61.412624"
       x2="19.019884"
       y2="21.978533"
       gradientTransform="matrix(1,0,0,-1,-8.921169,121.8611)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem22"
       id="linearGradient2095"
       gradientUnits="userSpaceOnUse"
       x1="104.76600"
       y1="64.339401"
       x2="107.58800"
       y2="20.723301"
       gradientTransform="matrix(1,0,0,-1,10.54172,124.2921)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem21"
       id="linearGradient2098"
       gradientUnits="userSpaceOnUse"
       x1="11.125700"
       y1="87.100502"
       x2="104.75200"
       y2="87.100502"
       gradientTransform="matrix(1,0,0,-1,2.787865,128.3662)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem16"
       id="linearGradient3026"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,-0.808173,6.93555,122.2776)"
       x1="74.806297"
       y1="18.759001"
       x2="36.551102"
       y2="57.944401" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem9"
       id="linearGradient3030"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,-0.808173,6.93555,122.2776)"
       x1="44.808582"
       y1="40.005417"
       x2="16.589544"
       y2="81.307549" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem12"
       id="linearGradient2985"
       x1="18.613743"
       y1="107.65684"
       x2="109.26532"
       y2="107.65684"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <g
     inkscape:groupmode="layer"
     id="layer12"
     inkscape:label="SHADOW"
     style="display:inline">
    <path
       sodipodi:type="arc"
       style="fill:#afafaf;fill-opacity:0.31791908"
       id="path11475"
       sodipodi:cx="67.484802"
       sodipodi:cy="111.03368"
       sodipodi:rx="39.886345"
       sodipodi:ry="10.185145"
       d="M 107.37115 111.03368 A 39.886345 10.185145 0 1 1  27.598457,111.03368 A 39.886345 10.185145 0 1 1  107.37115 111.03368 z"
       transform="matrix(1.256307,0,0,1.120323,-20.32516,-13.76383)" />
    <path
       sodipodi:type="arc"
       style="fill:#676767;fill-opacity:0.19075144"
       id="path11473"
       sodipodi:cx="67.484802"
       sodipodi:cy="111.03368"
       sodipodi:rx="39.886345"
       sodipodi:ry="10.185145"
       d="M 107.37115 111.03368 A 39.886345 10.185145 0 1 1  27.598457,111.03368 A 39.886345 10.185145 0 1 1  107.37115 111.03368 z"
       transform="matrix(1.097568,0,0,0.971273,-9.984449,1.970245)" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer11"
     inkscape:label="RIM"
     style="opacity:1;display:none">
    <path
       style="fill:#5a4b0c;fill-opacity:1;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round"
       d="M 45.381615,44.60365 C 38.534896,45.256224 31.713113,46.126616 24.959806,47.451306 C 21.65922,48.149272 18.423232,49.29547 15.258756,50.439504 C 12.218408,51.604456 9.3756421,53.387474 7.1684225,55.760771 C 4.8450873,59.034884 5.7506761,63.136926 5.889108,66.798351 C 6.9525065,72.642615 8.953945,78.459772 10.80127,84.086014 C 12.817249,89.232585 14.803528,94.454934 17.458607,99.3097 C 19.211108,102.78424 21.918338,105.85946 24.633977,108.62656 C 29.24241,111.20417 34.10757,113.41805 39.323358,114.38914 C 44.761531,115.55968 50.298652,116.35311 55.81857,117.00723 C 62.174978,117.49087 68.532069,116.94767 74.8783,116.59432 C 81.705021,115.38151 88.770977,114.82993 95.124248,111.84883 C 97.64799,110.8495 100.07538,109.45445 102.23293,107.83194 C 104.56616,105.7776 104.57208,106.82575 106.22081,104.18414 C 108.15784,102.79704 112.8577,93.528343 114.36668,89.396867 C 115.89573,85.676934 117.07284,81.526699 118.11167,77.646231 C 119.15728,71.364052 120.6594,64.899081 119.31912,58.54115 C 118.03573,56.093231 115.71781,54.46406 113.6235,52.779869 C 110.13997,51.191699 106.76865,49.320809 102.95675,48.655857 C 95.376069,46.728136 87.601797,45.580861 79.822527,44.815029 C 71.063003,44.023774 62.259554,44.248363 53.476155,44.231816 C 50.777975,44.355761 48.079795,44.479705 45.381615,44.60365 z M 75.287865,46.9474 C 84.506374,47.801377 93.765623,48.649747 102.75857,50.95256 C 106.0374,51.616131 109.07275,53.200095 112.08543,54.586277 C 113.95935,55.570376 115.72744,56.937258 116.90216,58.660726 C 117.96688,62.688982 117.36072,66.924915 116.82985,70.986787 C 115.6433,77.321167 114.31627,83.702942 111.59045,89.578673 C 110.19569,92.985146 108.33403,96.219971 106.3375,99.304676 C 104.11346,102.67852 101.49656,105.87321 97.909114,107.86179 C 93.803494,110.66383 88.7551,111.50916 84.071781,112.92131 C 78.330803,113.7463 72.615132,114.83031 66.79467,114.83273 C 63.154286,115.18825 59.528253,114.98507 55.909654,114.50525 C 51.421031,114.04574 46.892676,113.83166 42.543498,112.53069 C 38.528,111.40311 34.212409,111.12754 30.546388,109.00775 C 28.170257,107.87159 25.65445,106.93816 23.953757,104.82167 C 20.035927,100.03474 17.774862,94.055688 15.412865,88.47865 C 12.771445,81.343575 10.178886,74.14899 8.9212,66.618451 C 8.5604462,63.709677 7.6053696,60.656229 8.6316155,57.79115 C 10.61891,55.223323 13.336652,53.338886 16.450151,52.447194 C 20.602554,50.589143 25.091937,49.78853 29.530837,48.938716 C 35.598929,48.188758 41.641189,47.096397 47.725267,46.558373 C 55.589676,46.442491 63.456191,46.193844 71.309697,46.765267 C 72.635753,46.825978 73.961809,46.886689 75.287865,46.9474 z "
       id="path11447"
       sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer13"
     inkscape:label="rim - dark"
     style="display:inline">
    <path
       style="opacity:1;fill:#907813;fill-opacity:1;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round;display:inline"
       d="M 45.381615,44.60365 C 38.534896,45.256224 31.713113,46.126616 24.959806,47.451306 C 21.65922,48.149272 18.423232,49.29547 15.258756,50.439504 C 12.218408,51.604456 9.3756421,53.387474 7.1684225,55.760771 C 4.8450873,59.034884 6.1223915,63.322784 6.2608234,66.984209 C 7.3242219,72.828473 8.953945,78.459772 10.80127,84.086014 C 12.817249,89.232585 14.803528,94.454934 17.458607,99.3097 C 19.211108,102.78424 21.918338,105.85946 24.633977,108.62656 C 29.24241,111.20417 34.10757,113.41805 39.323358,114.38914 C 44.761531,115.55968 50.298652,116.35311 55.81857,117.00723 C 62.174978,117.49087 68.532069,116.94767 74.8783,116.59432 C 81.705021,115.38151 88.770977,114.82993 95.124248,111.84883 C 97.64799,110.8495 100.07538,109.45445 102.23293,107.83194 C 104.56616,105.7776 104.57208,106.82575 106.22081,104.18414 C 108.15784,102.79704 112.8577,93.528343 114.36668,89.396867 C 115.89573,85.676934 117.07284,81.526699 118.11167,77.646231 C 119.15728,71.364052 120.6594,64.899081 119.31912,58.54115 C 118.03573,56.093231 115.71781,54.46406 113.6235,52.779869 C 110.13997,51.191699 106.76865,49.320809 102.95675,48.655857 C 95.376069,46.728136 87.601797,45.580861 79.822527,44.815029 C 71.063003,44.023774 62.259554,44.248363 53.476155,44.231816 C 50.777975,44.355761 48.079795,44.479705 45.381615,44.60365 z M 75.287865,46.9474 C 84.506374,47.801377 93.765623,48.649747 102.75857,50.95256 C 106.0374,51.616131 109.07275,53.200095 112.08543,54.586277 C 113.95935,55.570376 115.72744,56.937258 116.90216,58.660726 C 117.96688,62.688982 117.36072,66.924915 116.82985,70.986787 C 115.6433,77.321167 114.31627,83.702942 111.59045,89.578673 C 110.19569,92.985146 108.33403,96.219971 106.3375,99.304676 C 104.11346,102.67852 101.49656,105.87321 97.909114,107.86179 C 93.803494,110.66383 88.7551,111.50916 84.071781,112.92131 C 78.330803,113.7463 72.615132,114.83031 66.79467,114.83273 C 63.154286,115.18825 59.528253,114.98507 55.909654,114.50525 C 51.421031,114.04574 46.892676,113.83166 42.543498,112.53069 C 38.528,111.40311 34.212409,111.12754 30.546388,109.00775 C 28.170257,107.87159 25.65445,106.93816 23.953757,104.82167 C 20.035927,100.03474 17.774862,94.055688 15.412865,88.47865 C 12.771445,81.343575 10.178886,74.14899 8.9212,66.618451 C 8.5604462,63.709677 7.6053696,60.656229 8.6316155,57.79115 C 10.61891,55.223323 13.336652,53.338886 16.450151,52.447194 C 20.602554,50.589143 25.091937,49.78853 29.530837,48.938716 C 35.598929,48.188758 41.641189,47.096397 47.725267,46.558373 C 55.589676,46.442491 63.456191,46.193844 71.309697,46.765267 C 72.635753,46.825978 73.961809,46.886689 75.287865,46.9474 z "
       id="path2951"
       sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer8"
     inkscape:label="BACK"
     style="display:inline">
    <path
       id="path833"
       style="fill:url(#linearGradient1518);fill-opacity:0.468927;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round"
       d="M 6.6513222,59.451286 C 6.1917793,71.62677 17.089725,100.14832 24.047708,107.1063 C 27.591015,110.64961 41.993165,116.41635 63.509465,116.41635 C 85.025765,116.41635 98.457156,110.64961 102.00046,107.1063 C 113.46125,95.64552 119.717,75.216541 118.80287,61.40145 C 118.12469,51.152223 90.015065,45.38695 63.509465,44.99755 C 31.976165,44.53535 6.99439,50.361783 6.6513222,59.451286 z "
       sodipodi:nodetypes="csssscc" />
    <path
       sodipodi:nodetypes="ccccc"
       id="path11349"
       style="fill:url(#linearGradient11357);fill-rule:evenodd;stroke-width:1.25;display:inline"
       d="M 102.21412,52.509259 C 99.002759,64.172982 96.328947,70.006782 94.64708,72.185392 C 93.05057,74.034012 70.801036,73.924025 69.083787,74.641695 C 73.198974,73.823157 76.942547,56.442701 77.837477,48.151763 C 86.248436,48.414605 99.322855,51.457889 102.21412,52.509259 z " />
    <path
       sodipodi:nodetypes="ccccccc"
       id="path839"
       style="fill:url(#linearGradient10615);fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round"
       d="M 23.778982,107.01161 L 18.613742,99.017372 C 25.453018,93.035417 40.008106,87.974303 62.180981,87.820208 C 86.325232,87.829002 104.85948,92.986097 109.00248,98.034597 C 106.77865,101.19096 104.45779,104.53809 101.91006,106.98553 C 99.799304,100.85607 83.163965,95.12845 62.394165,94.93205 C 39.463465,94.71695 30.018682,101.99811 23.778982,107.01161 z " />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer7"
     inkscape:label="bottom front"
     style="display:inline">
    <path
       id="path837"
       style="fill:url(#linearGradient11377);fill-opacity:1;fill-rule:evenodd;stroke-width:0.86876702"
       d="M 101.75987,106.04467 C 101.75987,112.14583 84.297565,117.09755 62.781265,117.09755 C 41.265065,117.09755 24.094873,111.48334 24.065407,106.17609 C 24.030756,99.935095 41.002223,94.597628 62.518423,94.597628 C 84.034723,94.597628 101.75987,99.943516 101.75987,106.04467 z "
       sodipodi:nodetypes="csssc" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer9"
     inkscape:label="LID"
     style="display:inline">
    <path
       id="path860"
       style="fill:url(#linearGradient1511);fill-opacity:0.51000001;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round"
       d="M 6.7907155,59.49775 C 15.713065,73.19995 39.552565,75.37065 63.190765,75.78775 C 86.829065,76.04545 109.51958,70.033361 118.86858,61.467161 C 121.25358,51.458661 91.9001,44.948863 63.350165,44.83825 C 25.497703,44.468979 6.0597051,52.739179 6.7907155,59.49775 z "
       sodipodi:nodetypes="ccccc" />
    <path
       id="path866"
       style="opacity:0.72881356;fill:url(#linearGradient11363);fill-opacity:0.63276798;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round"
       d="M 9.404133,60.023435 C 9.641419,65.707448 26.120418,70.804357 39.750747,72.165401 C 47.817662,72.970916 51.21012,73.229438 53.548773,69.746794 C 56.990249,64.621862 59.957952,53.473213 60.521858,47.619263 C 31.726091,46.894321 9.1355112,53.737569 9.404133,60.023435 z "
       sodipodi:nodetypes="csscs" />
  </g>
  <path
     id="path934"
     style="fill:white;fill-rule:evenodd;stroke-width:1.45019996"
     d="M 62.869371,45.243254 C 47.609647,45.243254 34.103706,46.243998 24.038533,48.922541 C 19.006098,50.261761 15.062656,51.550766 12.157745,53.377445 C 10.705264,54.290785 9.3303773,55.210337 8.4982929,56.291466 C 7.7878202,57.214724 7.1303659,58.055213 7.0066155,60.35365 L 8.8350788,60.35365 C 8.8207941,58.718452 9.2164485,58.019239 9.6985475,57.392816 C 10.335004,56.565645 11.646895,55.829375 12.983665,54.988772 C 15.657256,53.30767 19.565788,51.749002 24.505615,50.434372 C 34.385269,47.805318 47.847598,46.88303 63.000792,46.88303 C 78.153884,46.883134 91.76595,48.910147 101.6453,51.539201 C 106.58523,52.853934 110.54178,54.442773 113.21512,56.123979 C 114.55179,56.964685 115.57371,57.815207 116.21027,58.642378 C 116.69146,59.267871 116.77217,59.80606 116.87205,60.35365 L 118.73228,60.35365 C 118.60013,59.258263 118.18047,58.208335 117.47127,57.286317 C 116.63901,56.205084 115.48695,55.261576 114.03427,54.348236 C 111.12991,52.521557 107.02406,50.908955 101.99213,49.569735 C 91.926553,46.891192 78.128993,45.243254 62.869371,45.243254 z "
     sodipodi:nodetypes="csssccsssssssccsssc" />
  <g
     inkscape:groupmode="layer"
     id="layer1"
     inkscape:label="doc1"
     style="display:inline">
    <path
       d="M 118.79287,49.96525 L 71.847965,29.30275 L 49.094765,80.99715 L 82.231565,95.58225 L 102.11667,87.85205 L 118.79287,49.96525 L 118.79287,49.96525 z "
       style="fill:white;stroke-width:0.41061199"
       id="path889" />
    <path
       d="M 116.84787,50.56365 L 72.720165,31.14095 L 50.487165,81.47525 L 81.881365,95.29335 L 100.32907,88.09455 L 116.84787,50.56385 L 116.84787,50.56365 z "
       style="fill:url(#linearGradient1568);stroke-width:0.41061199"
       id="path902" />
    <path
       d="M 118.88287,49.75995 L 71.732965,29.00705 L 48.799065,81.11215 L 82.226165,95.82495 L 102.28447,88.02735 L 119.08787,49.85035 L 118.88287,49.75995 z M 117.97119,50.211671 C 117.79219,50.616871 102.02287,87.50835 101.94877,87.67665 C 101.77787,87.74315 82.407865,95.27315 82.236965,95.33955 C 82.068565,95.26545 49.794465,81.06005 49.390465,80.88225 C 49.568965,80.47655 71.915886,30.660856 72.094286,30.255556 C 72.499186,30.433756 117.56619,50.033471 117.97119,50.211671 z "
       style="fill:url(#linearGradient1565);stroke-width:0.41061199"
       id="path911"
       sodipodi:nodetypes="ccccccccccccc" />
    <path
       d="M 114.93487,55.21335 L 116.97387,50.58035 L 72.706865,31.09645 L 60.858565,57.90845 C 64.132665,61.57825 68.260965,64.64475 73.107465,66.77795 C 88.441765,73.52725 106.16287,67.84765 114.93487,55.21335 z "
       style="fill:url(#linearGradient1562);stroke-width:0.41061199"
       id="path922" />
    <path
       d="M 87.769465,80.38775 L 81.307665,95.06875 L 82.043865,95.39285 L 101.93607,87.65985 L 102.31827,86.79135 L 87.769465,80.38775 L 87.769465,80.38775 z "
       style="fill:url(#radialGradient1559);fill-opacity:0.1;stroke-width:0.41061199"
       id="path1083" />
    <path
       d="M 82.231565,95.58225 L 102.11667,87.85205 L 88.308965,81.77465 L 82.231565,95.58225 z "
       style="fill:white;stroke-width:0.41061199"
       id="path1085" />
    <path
       d="M 83.529365,95.22615 L 101.02927,88.42385 L 88.877565,83.07535 L 83.529365,95.22615 z "
       style="fill:url(#linearGradient1555);stroke-width:0.41061199"
       id="path1094" />
    <path
       d="M 88.399365,81.56935 C 88.285565,81.51925 88.153765,81.57055 88.103665,81.68425 L 82.026265,95.49195 C 81.989565,95.57525 82.006365,95.67185 82.069465,95.73785 C 82.132065,95.80265 82.228565,95.82405 82.312965,95.79165 L 102.19797,88.06135 C 102.28297,88.02765 102.33927,87.94755 102.34127,87.85725 C 102.34317,87.76595 102.29037,87.68345 102.20697,87.64675 L 88.399365,81.56935 L 88.399365,81.56935 z M 101.53067,87.83915 C 100.59667,88.20155 83.588465,94.81345 82.654965,95.17705 C 83.054265,94.26995 88.255065,82.45385 88.423865,82.07025 C 88.807465,82.23905 100.62357,87.43995 101.53067,87.83915 z "
       style="fill:url(#linearGradient1552);stroke-width:0.41061199"
       id="path1103" />
    <path
       d="M 95.8682,100.911 L 43.3098,77.7775 L 66.4433,25.219 L 119.002,48.3526 L 95.8682,100.911 z "
       style="fill:none;stroke-width:0.41061199"
       id="path1116" />
    <path
       d="M 114.57498,55.753188 L 116.97387,50.58035 L 72.706865,31.09645 L 70.395696,36.494893 L 114.57498,55.753188 z "
       style="fill:url(#linearGradient1548);stroke-width:0.41061199"
       id="path1074"
       sodipodi:nodetypes="ccccc" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer2"
     inkscape:label="doc2"
     style="display:inline">
    <path
       d="M 30.734049,99.873243 L 67.198549,96.762262 L 47.140149,45.525387 L 23.234749,47.205498 L 17.377349,61.943745 L 30.734049,99.873243 L 30.734049,99.873243 z "
       style="fill:white;stroke-width:0.42452899"
       id="path964" />
    <path
       style="fill:url(#linearGradient3030);stroke-width:0.42452899"
       d="M 23.649726,48.389827 C 21.920559,52.577327 20.191393,56.764827 18.462226,60.952327 C 22.837226,73.389827 27.212226,85.827327 31.587226,98.264827 C 42.837226,97.31691 54.087226,96.368994 65.337226,95.421077 C 58.972643,79.202327 52.73948,63.246419 46.374897,47.027669 C 38.843647,47.569336 31.180976,47.84816 23.649726,48.389827 z "
       id="path965"
       sodipodi:nodetypes="cccccc" />
    <path
       style="fill:url(#linearGradient3026);stroke-width:0.42452899"
       d="M 23.055976,46.764827 C 21.86327,49.017426 20.984815,51.87252 19.910846,54.354274 C 18.934716,56.883981 17.828346,59.437629 16.930976,61.952327 C 21.443591,74.743167 25.938665,87.540603 30.462226,100.32733 C 42.902305,99.337595 55.337614,98.221562 67.774726,97.171077 C 60.988143,79.829436 54.215509,62.482279 47.430976,45.139827 C 39.305179,45.656353 31.181056,46.227354 23.055976,46.764827 z M 56.712226,71.296077 C 60.014309,79.650244 63.316393,88.00441 66.618476,96.358577 C 54.743476,97.358577 42.868476,98.358577 30.993476,99.358577 C 26.608059,86.900244 22.222643,74.44191 17.837226,61.983577 C 19.733059,57.202327 21.628893,52.421077 23.524726,47.639827 C 31.264309,47.118994 39.003893,46.59816 46.743476,46.077327 C 50.066393,54.483577 53.389309,62.889827 56.712226,71.296077 z "
       id="path966" />
    <path
       d="M 29.689949,93.961943 L 31.323249,98.600129 L 65.707849,95.666622 L 54.890649,68.362174 C 51.050949,66.764416 48.506749,66.462887 44.742249,66.784055 C 32.831149,67.800251 26.907749,79.949759 29.689949,93.961943 z "
       style="fill:url(#linearGradient11517);stroke-width:0.42452899"
       id="path967" />
    <path
       d="M 29.190249,61.928875 L 24.014549,47.231279 L 23.442749,47.280012 L 17.583249,62.023592 L 17.889349,62.892944 L 29.190249,61.928875 L 29.190249,61.928875 z "
       style="fill:url(#radialGradient11514);fill-opacity:0.1;stroke-width:0.42452899"
       id="path974" />
    <path
       d="M 28.951428,61.803143 C 28.951428,61.803143 23.587896,47.532561 23.562896,47.59479 L 17.639785,62.135905 C 17.615085,62.199428 25.213167,63.099806 28.951428,61.803143 z "
       style="fill:#656565;fill-opacity:0.22674417;stroke:none;stroke-width:0.42452899;stroke-opacity:1;display:inline"
       id="path11530"
       sodipodi:nodetypes="cccc" />
    <path
       d="M 23.234749,47.205498 L 17.377349,61.943745 L 28.102549,61.028731 L 23.234749,47.205498 z "
       style="fill:white;stroke-width:0.42452899"
       id="path975" />
    <path
       d="M 22.89757,49.360776 L 18.268055,61.147787 L 27.049849,60.211103 L 22.89757,49.360776 z "
       style="fill:url(#linearGradient11510);stroke-width:0.42452899"
       id="path976"
       sodipodi:nodetypes="cccc" />
    <path
       d="M 28.174949,61.23425 C 28.263249,61.226734 28.302149,61.128945 28.262049,61.015073 L 23.394249,47.19184 C 23.364849,47.108436 23.299949,47.036913 23.228649,47.00992 C 23.158349,46.983735 23.095649,47.007334 23.070649,47.069563 L 17.213249,61.80781 C 17.188549,61.871333 17.205849,61.960474 17.257349,62.034826 C 17.309449,62.109986 17.384949,62.154759 17.449749,62.149263 L 28.174949,61.23425 L 28.174949,61.23425 z M 17.689949,61.705334 C 17.965449,61.013699 22.844028,48.801919 23.118628,48.109477 C 23.832691,51.251701 27.735549,60.452827 27.870749,60.83679 C 27.572849,60.862167 18.394549,61.645206 17.689949,61.705334 z "
       style="fill:url(#linearGradient11507);stroke-width:0.42452899"
       id="path977"
       sodipodi:nodetypes="cccsccsccccccc" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer6"
     inkscape:label="doc4"
     style="display:inline">
    <g
       id="g122"
       transform="matrix(1,0,0,-1,2.15166,126.9994)">
      <path
         id="path950"
         style="fill:white;fill-rule:evenodd;stroke-width:0.78354502"
         d="M 81.9334,42.7224 L 45.124,52.8879 L 36.8284,21.0747 L 84.5101,21.5391 L 81.9334,42.7224 z " />
      <path
         id="path952"
         style="fill:url(#defitem14);fill-rule:evenodd;stroke-width:0.64687002"
         d="M 79.2746,41.2165 L 47.5188,49.3388 L 41.2753,24.3463 L 81.4159,23.7233 L 79.2746,41.2165 z " />
      <path
         id="path954"
         style="fill:#a3a3a3;fill-rule:evenodd;stroke-width:0.78354502"
         d="M 82.5076,43.2046 L 82.0973,43.3157 L 45.2806,53.4831 L 44.6994,53.6572 L 44.5205,53.032 L 36.2085,21.2375 L 36.0106,20.4366 L 36.8354,20.4584 L 84.5161,20.9162 L 85.2286,20.9279 L 85.1242,21.606 L 82.5526,42.7996 L 82.5076,43.2046 z M 81.3585,42.24 L 83.805,22.149 L 37.6372,21.7051 L 45.5772,52.1174 L 81.3585,42.24 z " />
    </g>
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer3"
     inkscape:label="doc3"
     style="display:inline" />
  <g
     inkscape:groupmode="layer"
     id="layer10"
     inkscape:label="TRANSPARENCY"
     style="display:inline">
    <path
       inkscape:export-ydpi="100.00000"
       inkscape:export-xdpi="100.00000"
       d="M 6.988867,61.258951 C 7.320324,73.578073 16.113507,93.08394 19.189136,99.587404 C 27.836048,106.61708 41.667432,109.62166 63.264576,109.62166 C 81.695283,109.46261 101.74761,106.66669 108.64916,99.388576 C 113.83708,87.31344 118.55438,75.353928 119.11689,60.330963 C 116.33302,69.003229 89.637486,76.174609 63.131886,75.785209 C 33.937886,74.783209 14.079709,68.945853 6.988867,61.258951 z "
       style="opacity:1;fill:#f0c515;fill-opacity:0.81976743;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round"
       id="path930"
       sodipodi:nodetypes="ccccccc" />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer5"
     inkscape:label="basket front"
     style="opacity:1;display:inline">
    <path
       inkscape:export-ydpi="100.00000"
       inkscape:export-xdpi="100.00000"
       d="M 7.6459739,61.127529 C 7.9774302,73.446655 15.850665,95.449523 20.371927,101.55872 C 27.717835,106.35811 41.536011,109.8845 63.133155,109.8845 C 81.563862,109.72545 100.69623,108.37516 107.59779,101.09705 C 114.09992,90.730388 119.08007,74.69682 118.98547,60.593805 C 117.59354,64.929939 118.40466,60.742734 116.64483,60.67967 C 113.57078,71.130304 76.743303,73.479378 63.52615,73.419625 C 36.694398,73.298323 14.736815,68.814431 7.6459739,61.127529 z "
       style="fill:url(#linearGradient2098);fill-opacity:0.51412395;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round"
       id="path11403"
       sodipodi:nodetypes="ccccccsc" />
    <path
       d="M 119.00496,63.665871 C 118.17271,76.984027 112.06841,95.356885 106.18108,102.13524 C 104.58457,103.98386 96.922778,104.53098 95.205533,105.24865 C 104.18331,100.22463 111.98125,80.371588 112.23876,69.164963 C 112.23876,69.164963 115.58009,69.442345 119.00496,63.665871 z "
       style="opacity:0.6;fill:url(#linearGradient2095);fill-rule:evenodd;stroke-width:1.25"
       id="path11405"
       sodipodi:nodetypes="ccccc" />
    <path
       d="M 7.0634382,60.382968 C 7.2017415,61.960641 7.7677564,62.876101 8.593538,63.929957 C 9.4192798,64.983813 10.968773,66.339214 12.410181,67.229428 C 15.292949,69.009855 19.366796,70.581626 24.360969,71.886936 C 34.349418,74.497659 48.073636,76.07235 63.216937,76.07235 C 78.360239,76.07235 92.052623,74.497659 102.04147,71.886936 C 107.03505,70.581626 111.1096,69.009855 113.99182,67.229428 C 115.43342,66.339214 116.57669,65.356555 117.40262,64.3027 C 118.22854,63.248944 118.77915,62.056924 118.77915,60.778098 C 118.77915,60.589683 118.67605,60.427753 118.65402,60.243165 L 116.80795,60.243165 C 116.83999,60.415266 117.02721,60.609119 117.02721,60.778098 C 117.02721,61.471337 116.78292,62.206367 116.15123,63.012494 C 115.51952,63.818721 114.50539,64.679228 113.17891,65.498546 C 110.52595,67.137184 106.59957,68.622954 101.69729,69.904298 C 91.893244,72.466884 78.254521,74.089812 63.216937,74.089812 C 48.179154,74.089812 34.572066,72.466985 24.767725,69.904298 C 19.865553,68.622954 16.097771,67.026699 13.44456,65.388061 C 12.117979,64.568743 10.914412,63.818721 10.282807,63.012494 C 9.6511019,62.206367 8.8665807,60.898652 8.8665807,60.205514 L 7.0634382,60.382968 z "
       style="fill:white;fill-rule:evenodd;stroke-width:1.45019996"
       id="path11409"
       sodipodi:nodetypes="ccccccccccccccccccccc" />
    <path
       sodipodi:nodetypes="ccccccs"
       id="path11367"
       style="fill:url(#linearGradient2985);fill-opacity:1.0;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round"
       d="M 24.436088,108.19439 C 23.558637,107.06221 22.556379,107.42834 18.613742,98.885951 C 19.640411,102.06034 29.932164,109.58181 62.443823,109.76755 C 86.586906,109.52993 104.85948,105.47111 109.26532,98.166018 C 108.3557,102.24234 105.1149,106.24656 103.3557,108.43116 C 99.930725,112.1583 83.163965,117.33864 62.394165,117.14224 C 39.463465,116.92714 26.775251,111.21265 24.436088,108.19439 z "
       inkscape:export-xdpi="99.533745"
       inkscape:export-ydpi="99.533745" />
    <path
       sodipodi:nodetypes="ccscscscs"
       id="path11397"
       style="fill:#2a2a2a;fill-opacity:1;fill-rule:evenodd;stroke-width:1.25;stroke-linejoin:round;display:inline"
       d="M 24.173246,108.72007 C 23.295795,107.58789 20.453639,103.87997 18.745164,99.674478 C 21.295528,103.36441 24.820285,107.21193 25.976677,108.39952 C 30.116118,112.65065 49.732497,115.51826 62.39599,115.49565 C 74.467531,115.37684 92.309836,113.13452 101.58486,108.25986 C 102.43889,107.811 106.20816,103.9213 109.52817,97.903178 C 107.43575,103.8194 105.20412,106.32333 103.3557,108.43116 C 100.01994,112.23507 83.163965,117.33864 62.394165,117.14224 C 39.463465,116.92714 26.512409,111.73833 24.173246,108.72007 z " />
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer4"
     inkscape:label="handle"
     style="display:inline">
    <path
       d="M 90.412225,75.074998 L 83.869695,78.408702 C 84.287509,81.532121 91.225538,80.858337 92.520586,78.66015 C 93.37382,77.16685 91.009725,75.353798 90.412225,75.074998 z "
       style="fill:#5e2f2f;fill-opacity:0.40116278;fill-rule:evenodd;stroke-width:1.25"
       id="path979"
       sodipodi:nodetypes="cccc" />
    <path
       style="fill:#9e6d0b;fill-opacity:0.99402511;fill-rule:evenodd;stroke-linejoin:round"
       d="M 55.600365,4.2286501 C 46.555805,4.6648134 38.621297,10.968448 34.845508,18.925864 C 30.627366,27.557007 29.570776,37.052891 30.569936,46.514006 C 33.965622,45.983058 35.450201,46.101593 37.754151,45.64683 C 37.215739,36.930584 37.329198,27.484594 42.719352,19.668329 C 46.052815,15.025873 51.921024,12.08957 58.068491,11.995407 C 64.035973,11.904002 71.220947,14.90597 74.9474,20.602008 C 81.252176,29.241389 82.847011,40.444765 83.25823,50.912215 C 83.58309,58.887605 83.137947,66.499753 83.1349,74.47865 C 81.526323,76.029108 82.080949,79.061835 84.3224,79.72865 C 86.888457,80.492033 90.652955,80.437097 92.319115,78.10365 C 92.884989,76.657556 91.907512,75.06215 90.694115,74.3224 C 90.786588,58.747558 91.81875,42.677916 86.725365,27.6974 C 83.781943,19.463585 78.686135,11.375003 70.621134,7.3851827 C 66.015081,5.0030974 60.776981,3.9793908 55.600365,4.2286501 z "
       id="path870"
       sodipodi:nodetypes="ccccczcccsccccc" />
    <path
       d="M 57.256665,5.1661501 C 48.670365,5.1661501 41.474065,9.7091501 37.006665,17.10315 C 32.636836,24.336477 30.700474,34.778398 31.52484,46.326651 C 34.991077,45.646486 32.219354,46.367006 34.335932,45.645687 C 32.102093,27.985998 39.474413,11.964531 52.052649,9.6694341 C 62.188971,7.8199028 69.448565,12.63015 73.412865,16.57215 C 77.377165,20.51515 80.177265,26.09015 82.069065,32.50985 C 85.478765,44.07905 84.457765,63.67585 84.498465,74.73995 C 79.311565,81.36215 97.014265,79.98095 89.692465,74.69035 C 89.708565,63.20005 90.837165,44.98075 86.756665,31.13485 C 84.716365,24.21215 81.625365,17.85215 76.850365,13.10315 C 72.075365,8.3551501 65.552065,5.3371501 57.287865,5.1661501 C 57.277465,5.1661501 57.267065,5.1661501 57.256665,5.1661501 z "
       style="fill:#fa0;fill-rule:evenodd;stroke-width:4.875;stroke-linejoin:round"
       id="path873"
       sodipodi:nodetypes="csccsssccsssc" />
    <path
       d="M 89.047337,75.256906 C 89.366037,76.345606 89.03835,77.588436 87.00695,78.358536 C 88.71975,78.517836 90.356738,77.679956 90.46909,77.317737 C 90.803853,76.238473 89.644837,75.535706 89.047337,75.256906 z "
       style="fill:url(#linearGradient10600);fill-rule:evenodd;stroke-width:1.25"
       id="path875" />
    <path
       d="M 84.947065,78.11115 C 84.733765,77.08995 84.863909,75.914435 86.083609,74.901135 C 84.976909,75.110135 84.331936,76.265935 84.304636,76.686835 C 84.281636,77.007335 84.547165,77.84965 84.947065,78.11115 z "
       style="fill:url(#linearGradient10597);fill-opacity:1;fill-rule:evenodd;stroke-width:1.25"
       id="path877" />
    <path
       d="M 89.194165,74.49875 C 89.694965,62.64135 89.644965,36.76295 85.536565,29.37485 C 88.625165,38.78795 88.613065,60.36405 87.747065,74.56275 L 89.194165,74.49875 z "
       style="fill:url(#radialGradient10591);fill-rule:evenodd;stroke-width:1.25"
       id="path883" />
    <path
       d="M 83.035665,27.34615 C 79.813165,18.55015 75.111665,8.2861501 62.855665,6.3561501 C 52.480165,4.7461501 47.587865,5.4951501 39.360965,14.27815 C 46.478665,8.6631501 53.324765,5.6301501 62.139065,7.5821501 C 73.800165,10.21015 78.049665,18.98415 81.315765,27.92615 C 85.537565,39.27855 85.673265,62.87015 85.197865,74.88135 C 86.950465,58.47065 86.798465,37.26645 83.035665,27.34615 z "
       style="fill:url(#radialGradient10588);fill-rule:evenodd;stroke-width:1.25"
       id="path885" />
  </g>
</svg>