Files @ 123eb7603cee
Branch filter:

Location: website/www/conservancy/static/img/projects/inkscape.svg

Bradley M. Kuhn
Use typical way of putting the category in a block.

Django is so frustrating as it's never clear about how things trickle
up and down through templates, so move the category to the top like
the others.
  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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
   version="1.0"
   width="128"
   height="128"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.48.5 r10040"
   sodipodi:docname="Inkscape_Logo_Standard_square.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="inkscape.png"
   inkscape:export-xdpi="45"
   inkscape:export-ydpi="45">
  <title
     id="title7387">Inkscape Logo</title>
  <sodipodi:namedview
     bordercohor="#666666"
     inkscape:window-height="577"
     inkscape:window-width="862"
     inkscape:pageshadow="2"
     inkscape:pageopacity="0.0"
     guidetolerance="10.0"
     gridtolerance="10.0"
     objecttolerance="10.0"
     borderopacity="1.0"
     bordercolor="#666666"
     pagecolor="#ffffff"
     id="base"
     inkscape:zoom="1"
     inkscape:cx="-232"
     inkscape:cy="64"
     inkscape:window-x="146"
     inkscape:window-y="67"
     inkscape:current-layer="svg2"
     showgrid="false"
     inkscape:window-maximized="0" />
  <defs
     id="defs4">
    <linearGradient
       id="WhiteTransparent"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:white;stop-opacity:1"
         offset="0"
         id="stop7" />
      <stop
         style="stop-color:white;stop-opacity:0"
         offset="1"
         id="stop9" />
    </linearGradient>
    <linearGradient
       id="BlackTransparent"
       gradientUnits="userSpaceOnUse">
      <stop
         style="stop-color:black;stop-opacity:1"
         offset="0"
         id="stop12" />
      <stop
         style="stop-color:black;stop-opacity:0"
         offset="1"
         id="stop14" />
    </linearGradient>
    <linearGradient
       id="liquidShade"
       xlink:href="#BlackTransparent"
       x1="0"
       y1="128"
       x2="0"
       y2="64"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="liquidSpecular"
       xlink:href="#WhiteTransparent"
       x1="0"
       y1="128"
       x2="0"
       y2="76"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="sideSpecular"
       xlink:href="#WhiteTransparent"
       x1="80"
       y1="20"
       x2="60"
       y2="40"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="IcecapTip"
       xlink:href="#WhiteTransparent"
       x1="60"
       y1="20"
       x2="90"
       y2="50"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="shinySpecular"
       xlink:href="#WhiteTransparent"
       x1="33"
       y1="35"
       x2="58"
       y2="60"
       gradientUnits="userSpaceOnUse" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipoutline1">
      <path
         id="outline1"
         d="M 54.1,12.5 L 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 C 36.6,77.7 18.5,81.3 22.2,85 C 25.8,88.7 43.9,92.1 47.5,95.7 C 51.1,99.4 40.2,103.3 43.8,107 C 47.3,110.7 55.7,107.2 57.2,115.6 C 58.3,121.8 72.6,118.7 79,113.4 C 83,110 72.1,110 75.7,106.3 C 84.7,97.2 92.7,102.2 96,93.8 C 97.8,89.3 82.4,86.1 86.5,83.2 C 96.3,76.3 132.3,72.8 115.7,56.2 L 73,12.5 C 67.7,7.5 59,7.5 54.1,12.5 z M 44.2,77.2 C 45.1,77.2 75,81.2 63.5,84.3 C 59.1,85.5 38.9,77.2 44.2,77.2 z M 101.4,93.8 C 101.4,95.9 117.7,97.1 116.8,93.3 C 115.5,86.9 103.2,87.4 101.4,93.8 z M 31.9,104.9 C 35.6,108.1 41.2,104.2 43,99.7 C 39.4,95 26.1,100 31.9,104.9 z M 99.4,98.2 C 94.8,102.4 100.2,106.8 104.7,103.9 C 105.9,103.1 104.6,99.2 99.4,98.2 z " />
    </clipPath>
    <filter
       id="ShadowBlur"
       filterUnits="userSpaceOnUse"
       x="0"
       y="0">
      <feGaussianBlur
         in="SourceAlpha"
         stdDeviation="3"
         result="blur"
         id="feGaussianBlur24" />
    </filter>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter6017">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.80546496"
         id="feGaussianBlur6019" />
    </filter>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter6031">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.4903482"
         id="feGaussianBlur6033" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5785"
       id="linearGradient9175"
       gradientUnits="userSpaceOnUse"
       x1="82.11859"
       y1="20"
       x2="60"
       y2="40" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient5785">
      <stop
         id="stop5787"
         offset="0"
         style="stop-color:#c0cdf9;stop-opacity:1" />
      <stop
         id="stop5789"
         offset="1"
         style="stop-color:#07092d;stop-opacity:0.28804347" />
    </linearGradient>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath9086">
      <use
         id="use9088"
         xlink:href="#outline1"
         class="low-specularity"
         style="fill:#ffffff;fill-opacity:1"
         x="0"
         y="0"
         width="400"
         height="300"
         transform="translate(1.009546e-6,0)" />
    </clipPath>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter8490">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="2.4163949"
         id="feGaussianBlur8492" />
    </filter>
    <linearGradient
       gradientUnits="userSpaceOnUse"
       y2="60"
       x2="58"
       y1="35"
       x1="33"
       xlink:href="#WhiteTransparent-4"
       id="shinySpecular-4"
       gradientTransform="matrix(1.009184,0,0,1.009184,-0.3890738,-0.3831933)" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="WhiteTransparent-4">
      <stop
         id="stop7606-4"
         offset="0"
         style="stop-color:white;stop-opacity:1" />
      <stop
         id="stop7608-7"
         offset="1"
         style="stop-color:white;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       gradientUnits="userSpaceOnUse"
       y2="50"
       x2="90"
       y1="20"
       x1="60"
       xlink:href="#WhiteTransparent-4"
       id="IcecapTip-6" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8568"
       id="radialGradient9177"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.570052,0,0,1.05093,-75.50011,-22.09591)"
       cx="116.3104"
       cy="250.8974"
       fx="116.3104"
       fy="250.8974"
       r="30.59958" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient8568">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop8570" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop8572" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8568"
       id="radialGradient8574"
       cx="132.4443"
       cy="251.994"
       fx="132.4443"
       fy="251.994"
       r="30.59958"
       gradientTransform="matrix(2.003253,0,0,1.340898,-132.8752,-95.16607)"
       gradientUnits="userSpaceOnUse" />
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter8732"
       x="-0.07807916"
       width="1.156158"
       y="-0.1142206"
       height="1.228441">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.9579068"
         id="feGaussianBlur8734" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8738"
       id="radialGradient8744"
       cx="210.25"
       cy="168.5"
       fx="210.25"
       fy="168.5"
       r="34.25"
       gradientTransform="matrix(1,0,0,0.4233577,0,97.16423)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient8738">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop8740" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop8742" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8738"
       id="radialGradient8768"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.4233577,0,97.16423)"
       cx="217.5"
       cy="182.0819"
       fx="217.5"
       fy="182.0819"
       r="34.25" />
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter8764"
       x="-0.07426214"
       width="1.148524"
       y="-0.1754123"
       height="1.350825">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="2.1195652"
         id="feGaussianBlur8766" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8866"
       id="linearGradient8912"
       x1="231.625"
       y1="195.1875"
       x2="231.75"
       y2="201.5"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient8866">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop8868" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop8870" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8866"
       id="linearGradient8910"
       x1="231.3765"
       y1="195.6213"
       x2="231.3765"
       y2="200.0714"
       gradientUnits="userSpaceOnUse" />
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter8906"
       x="-0.08544133"
       width="1.170883"
       y="-0.278232"
       height="1.556464">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.56515877"
         id="feGaussianBlur8908" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8916"
       id="radialGradient8922"
       cx="228.2188"
       cy="204.8323"
       fx="228.2188"
       fy="204.8323"
       r="14.09375"
       gradientTransform="matrix(1,0,0,0.1477455,0,174.5692)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient8916">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop8918" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop8920" />
    </linearGradient>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter8980"
       x="-0.06986277"
       width="1.139725"
       y="-0.4728589"
       height="1.945718">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.82052366"
         id="feGaussianBlur8982" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8866"
       id="linearGradient8990"
       gradientUnits="userSpaceOnUse"
       x1="231.625"
       y1="195.1875"
       x2="231.75"
       y2="201.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8866"
       id="linearGradient8992"
       gradientUnits="userSpaceOnUse"
       x1="231.3765"
       y1="195.6213"
       x2="231.3765"
       y2="200.0714" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8916"
       id="radialGradient8994"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.1477455,0,174.5692)"
       cx="228.2188"
       cy="204.8323"
       fx="228.2188"
       fy="204.8323"
       r="14.09375" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8998"
       id="radialGradient9004"
       cx="89.875"
       cy="187.8694"
       fx="89.875"
       fy="187.8694"
       r="22.75"
       gradientTransform="matrix(1,0,0,0.4070844,0,115.7601)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient8998">
      <stop
         style="stop-color:#ffffff;stop-opacity:0.33004926"
         offset="0"
         id="stop9000" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop9002" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8866"
       id="linearGradient9023"
       gradientUnits="userSpaceOnUse"
       x1="231.625"
       y1="195.1875"
       x2="231.75"
       y2="201.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8866"
       id="linearGradient9025"
       gradientUnits="userSpaceOnUse"
       x1="231.3765"
       y1="195.6213"
       x2="231.3765"
       y2="200.0714" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9040"
       id="radialGradient9046"
       cx="90.28125"
       cy="230.8363"
       fx="90.28125"
       fy="230.8363"
       r="10.46875"
       gradientTransform="matrix(1.185075,-0.3283582,0.1228557,0.4433973,-45.06831,152.9216)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient9040">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop9042" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop9044" />
    </linearGradient>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter9068"
       x="-0.07617928"
       width="1.152359"
       y="-0.1655701"
       height="1.33114">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.66458488"
         id="feGaussianBlur9070" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9286"
       id="radialGradient11553"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.722153,0,0,1.694977,-49.39526,-14.07806)"
       cx="68.39994"
       cy="21.22575"
       fx="68.39994"
       fy="21.22575"
       r="54.7834" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient9286">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop9288" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop9290" />
    </linearGradient>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter9298">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.32610678"
         id="feGaussianBlur9300" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5899-3"
       id="linearGradient5905"
       x1="95.5"
       y1="208.1644"
       x2="153.5"
       y2="223.5"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5899-3">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop5901-1" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop5903-7" />
    </linearGradient>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter5983-5"
       x="-0.08250898"
       width="1.165018"
       y="-0.1223357"
       height="1.244671">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.6868363"
         id="feGaussianBlur5985-9" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5793-6"
       id="linearGradient5801"
       x1="57.2252"
       y1="76.24634"
       x2="53.63158"
       y2="84.48032"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8852575,0,0,0.8852575,5.177215,9.229337)" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5793-6">
      <stop
         style="stop-color:#eeeeec;stop-opacity:1;"
         offset="0"
         id="stop5795-2" />
      <stop
         style="stop-color:#eeeeec;stop-opacity:0;"
         offset="1"
         id="stop5797-1" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5805"
       id="radialGradient5811"
       cx="181.2273"
       cy="214.5512"
       fx="181.2273"
       fy="214.5512"
       r="22.4664"
       gradientTransform="matrix(1.351523,0,0,1.717571,-63.70565,-153.9557)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5805">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop5807" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop5809" />
    </linearGradient>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter5845">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.2409356"
         id="feGaussianBlur5847" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#WhiteTransparent-4"
       id="linearGradient5822"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4927913,0,0,0.4927913,-6.000388,-9.722518)"
       x1="73.7121"
       y1="180.4757"
       x2="82.75407"
       y2="187.6597" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient10981-3">
      <stop
         style="stop-color:#729fcf;stop-opacity:1;"
         offset="0"
         id="stop10983-2" />
      <stop
         style="stop-color:#729fcf;stop-opacity:0;"
         offset="1"
         id="stop10985-3" />
    </linearGradient>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter10997-7">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="2.7696726"
         id="feGaussianBlur10999-0" />
    </filter>
    <linearGradient
       y2="144.5"
       x2="153.7005"
       y1="217.5"
       x1="180.8129"
       gradientTransform="translate(-130.1657,-83.35279)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient1030"
       xlink:href="#linearGradient10981-3"
       inkscape:collect="always" />
  </defs>
  <style
     type="text/css"
     id="style26">
	.specularity {opacity:0.5;}
	.low-specularity {opacity:0.25;}
	.full-specularity {opacity:1;}
	.black {fill:#000000;}
	.white {fill:#ffffff;}
	.outline-big {stroke-width:16;stroke:none;opacity:0.1;fill:none;}
	.outline-small {stroke-width:8;stroke:none;opacity:0.2;fill:none;}
	.stroke-highlight {fill:none;stroke:none;opacity:0.2;}
       	.base-shadow 	{fill:black;opacity:75;}
	</style>
  <!-- Copyright License -->
  <metadata
     id="metadata49">
    <rdf:RDF>
      <cc:Work
         rdf:about="etiquette-icon">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:creator>
          <cc:Agent>
            <dc:title>Andy Fitzsimon</dc:title>
          </cc:Agent>
        </dc:creator>
        <dc:rights>
          <cc:Agent>
            <dc:title>Andrew Michael Fitzsimon</dc:title>
          </cc:Agent>
        </dc:rights>
        <dc:publisher>
          <cc:Agent>
            <dc:title>Fitzsimon IT Consulting Pty Ltd</dc:title>
          </cc:Agent>
        </dc:publisher>
        <dc:identifier>http://andy.fitzsimon.com.au</dc:identifier>
        <dc:date>2006</dc:date>
        <cc:license
           rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
        <dc:title>Inkscape Logo</dc:title>
      </cc:Work>
      <cc:License
         rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
        <cc:permits
           rdf:resource="http://creativecommons.org/ns#Reproduction" />
        <cc:permits
           rdf:resource="http://creativecommons.org/ns#Distribution" />
        <cc:requires
           rdf:resource="http://creativecommons.org/ns#Notice" />
        <cc:requires
           rdf:resource="http://creativecommons.org/ns#Attribution" />
        <cc:permits
           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
        <cc:requires
           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
      </cc:License>
    </rdf:RDF>
  </metadata>
  <g
     style="display:inline;enable-background:new"
     transform="matrix(0.9965784,0,0,0.9962666,0.2205497,-1.598221)"
     id="g9139">
    <g
       style="opacity:0.7832512"
       transform="translate(3.68968e-7,0.4883067)"
       id="g6035">
      <path
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccccccccccccccccccccccc"
         style="fill:#000000;fill-opacity:1;filter:url(#filter6017)"
         d="m 54.1,12.98831 -41.2,42.2 c -15.6,15.6 10.1,14.3 19.4,20.2 4.3,2.8 -13.8,6.4 -10.1,10.1 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.69999 -7.3,7.59999 -3.7,11.29999 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.09999 17,-4.1 20.3,-12.49999 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 l -42.7,-43.7 c -5.3,-5.000003 -14,-5.000003 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z M 31.9,105.3883 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.69999 -16.9,0.3 -11.1,5.2 z m 67.5,-6.69999 c -4.6,4.19999 0.8,8.59999 5.3,5.69999 1.2,-0.8 -0.1,-4.7 -5.3,-5.69999 z"
         id="path5987" />
      <path
         inkscape:connector-curvature="0"
         id="path6021"
         d="m 54.1,13.96492 -41.2,42.2 c -15.6,15.6 10.1,14.3 19.4,20.2 4.3,2.8 -13.8,6.4 -10.1,10.1 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.69998 -7.3,7.59998 -3.7,11.29998 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.09998 17,-4.1 20.3,-12.49998 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 l -42.7,-43.7 c -5.3,-5 -14,-5 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z M 31.9,106.3649 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.69998 -16.9,0.3 -11.1,5.2 z m 67.5,-6.69998 c -4.6,4.19998 0.8,8.59998 5.3,5.69998 1.2,-0.8 -0.1,-4.7 -5.3,-5.69998 z"
         style="opacity:0.5763547;fill:#000000;fill-opacity:1;filter:url(#filter6031)"
         sodipodi:nodetypes="ccccccccccccccccccccccc" />
    </g>
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccccccccccccccccccccccc"
       style="fill:#000000;fill-opacity:1"
       d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
       id="use7631" />
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccccccccccccccccccccccc"
       style="fill:none"
       d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
       id="use7639" />
    <use
       inkscape:label="blue_cast"
       id="use7641"
       xlink:href="#outline1"
       class="low-specularity"
       style="opacity:0.6699507;fill:url(#linearGradient9175);filter:url(#filter8490)"
       x="0"
       y="0"
       width="400"
       height="300"
       transform="matrix(0.9905442,0,0,0.9905442,0.6051535,0.604136)"
       clip-path="url(#clipPath9086)" />
    <path
       inkscape:connector-curvature="0"
       id="path7643"
       d="m 16.56522,57.03937 c -11.201945,11.10103 8.47714,7.97256 23.6149,13.92674 l 31.2847,-55.00052 c -4.74316,-4.84409 -10.79826,-4.44041 -15.13776,0 L 16.56522,57.03937 z"
       style="opacity:0.5052631;fill:url(#shinySpecular-4);stroke:none"
       class="specularity" />
    <path
       inkscape:connector-curvature="0"
       d="m 70.5,15.5 16.3,16.6 c 1.5,1.5 1.5,4.6 0.6,5.5 L 79.3,31 77.7,40.7 71,37.1 60.1,44 56.5,29.5 50.7,42.1 36.2,42 c -2.8,0 -2.4,-2.9 0.5,-5.8 5.7,-6.3 16.8,-17 20.3,-20.7 3.6,-3.7 9.9,-3.6 13.5,0 z"
       style="fill:url(#IcecapTip-6)"
       class="full-specularity"
       id="icecap-7" />
    <path
       inkscape:connector-curvature="0"
       style="opacity:0.2167488;fill:url(#radialGradient9177);fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 113,203.5 c 0,0 3.3405,5.1007 3,7.5 -0.6682,4.7087 -10.8094,7.0584 -8.5625,11.25 2.2199,4.1411 10.2214,1.794 16.9375,6.125 6.6875,4.3125 4.8895,13.1015 9.75,15.3125 9.4792,4.312 34.375,-7.4375 33.125,-7.1875 -1.25,0.25 -24.5701,5.0954 -29.8201,0.8454 -5.986,-4.8457 -7.7022,-8.2302 -12.1174,-11.0954 -4.1375,-2.685 -9.9497,-3.7804 -11.3025,-5.9787 -1.3528,-2.1982 2.7092,-5.0346 2.99,-9.2713 0.1686,-2.5444 -4,-7.5 -4,-7.5 z"
       id="path8566"
       transform="matrix(0.5296484,0,0,0.5296484,-11.72226,-13.86416)"
       sodipodi:nodetypes="csszsszszsc" />
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="csszscssc"
       transform="matrix(0.5296484,0,0,0.5296484,-11.72226,-13.86416)"
       id="path8718"
       d="m 113,203.5 c 0,0 3.3405,5.1007 3,7.5 -0.6682,4.7087 -10.8094,7.0584 -8.5625,11.25 2.2199,4.1411 10.2214,1.794 16.9375,6.125 6.6875,4.3125 4.8895,13.1015 9.75,15.3125 9.4792,4.312 34.375,-7.4375 33.125,-7.1875 -41.3396,0.1574 -33.6249,-10.4946 -49.5625,-17.5 -2.303,-1.0123 -0.9683,-3.7633 -0.6875,-8 0.1686,-2.5444 -4,-7.5 -4,-7.5 z"
       style="opacity:0.2758621;fill:url(#radialGradient8574);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter8732)" />
    <path
       inkscape:connector-curvature="0"
       style="opacity:0.453202;fill:url(#radialGradient8744);fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 183.25,181.75 c 37.1037,-13.6546 49.0236,-15.5306 61.25,-27.75 -14.1607,11.9537 -44.0985,18.3658 -68.5,29 l 7.25,-1.25 z"
       id="path8736"
       transform="matrix(0.5296484,0,0,0.5296484,-11.72226,-13.86416)"
       sodipodi:nodetypes="cccc" />
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cccc"
       transform="matrix(0.5296484,0,0,0.5296484,-11.72226,-14.79104)"
       id="path8746"
       d="m 183.25,181.75 c 61.1037,-21.6546 50.7736,-21.5306 61.25,-27.75 -19.4277,7.4367 -55.7345,8.2298 -68.5,29 l 7.25,-1.25 z"
       style="opacity:0.5123153;fill:url(#radialGradient8768);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter8764)" />
    <path
       sodipodi:type="arc"
       style="opacity:0.2857143;fill:url(#linearGradient8912);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       id="path8864"
       sodipodi:cx="229.9375"
       sodipodi:cy="199.0625"
       sodipodi:rx="7.9375"
       sodipodi:ry="2.4375"
       d="m 237.875,199.0625 c 0,1.34619 -3.55374,2.4375 -7.9375,2.4375 -4.38376,0 -7.9375,-1.09131 -7.9375,-2.4375 0,-1.34619 3.55374,-2.4375 7.9375,-2.4375 4.38376,0 7.9375,1.09131 7.9375,2.4375 z"
       transform="matrix(0.5296484,0,0,0.5296484,-12.38432,-14.79104)" />
    <path
       transform="matrix(0.7131486,0,0,1.140781,-54.5779,-134.955)"
       d="m 237.875,199.0625 c 0,1.34619 -3.55374,2.4375 -7.9375,2.4375 -4.38376,0 -7.9375,-1.09131 -7.9375,-2.4375 0,-1.34619 3.55374,-2.4375 7.9375,-2.4375 4.38376,0 7.9375,1.09131 7.9375,2.4375 z"
       sodipodi:ry="2.4375"
       sodipodi:rx="7.9375"
       sodipodi:cy="199.0625"
       sodipodi:cx="229.9375"
       id="path8874"
       style="opacity:0.6206894;fill:url(#linearGradient8910);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8906);enable-background:accumulate"
       sodipodi:type="arc" />
    <path
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient8922);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter8980)"
       d="m 214.125,203.75 c 3.7695,3.4842 24.7558,5.2722 28.1875,-1 -6.7366,4.7839 -21.7168,3.1026 -28.1875,1 z"
       id="path8914"
       transform="matrix(0.5296484,0,0,0.5296484,-11.72226,-14.23868)"
       sodipodi:nodetypes="ccc" />
    <path
       transform="matrix(0.2042516,-0.1035605,0.2395168,0.4723972,5.754795,30.28656)"
       d="m 236.44594,199.0625 c 0,1.70219 -2.91393,3.08208 -6.50844,3.08208 -3.59451,0 -6.50844,-1.37989 -6.50844,-3.08208 0,-1.70219 2.91393,-3.08208 6.50844,-3.08208 3.59451,0 6.50844,1.37989 6.50844,3.08208 z"
       sodipodi:ry="3.082082"
       sodipodi:rx="6.508443"
       sodipodi:cy="199.0625"
       sodipodi:cx="229.9375"
       id="path8984"
       style="opacity:0.2857143;fill:url(#linearGradient8990);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       sodipodi:type="arc" />
    <path
       sodipodi:type="arc"
       style="opacity:0.6206894;fill:url(#linearGradient8992);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8906);enable-background:accumulate"
       id="path8986"
       sodipodi:cx="229.9375"
       sodipodi:cy="199.0625"
       sodipodi:rx="7.055552"
       sodipodi:ry="2.140048"
       d="m 236.99305,199.0625 c 0,1.18192 -3.15888,2.14005 -7.05555,2.14005 -3.89667,0 -7.05555,-0.95813 -7.05555,-2.14005 0,-1.18192 3.15888,-2.14005 7.05555,-2.14005 3.89667,0 7.05555,0.95813 7.05555,2.14005 z"
       transform="matrix(0.2750159,-0.1394397,0.5158824,1.017471,-65.3535,-69.30064)" />
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccc"
       transform="matrix(0.2042516,-0.1035605,0.2395168,0.4723972,6.259901,30.64976)"
       id="path8988"
       d="m 217.0575,201.9403 c 3.7695,3.4842 26.9713,8.9112 25.255,0.8097 -3.3174,5.3233 -18.7842,1.2929 -25.255,-0.8097 z"
       style="fill:url(#radialGradient8994);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter8980)" />
    <path
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient9004);fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 68.25,186 c 0,-0.6206 38.8462,11.8385 45.5,18.5 -5.4712,-5.3385 -33.15971,-17.6161 -37.375,-17.75 -4.21529,-0.1339 -7.625,-0.5 -8.125,-0.75 z"
       id="path8996"
       transform="matrix(0.5296484,0,0,0.5296484,-11.72226,-13.86416)"
       sodipodi:nodetypes="cczc" />
    <g
       id="g9018"
       transform="matrix(0.8790148,-0.1929959,0.2338341,0.6959295,-20.20953,36.72556)">
      <path
         sodipodi:type="arc"
         style="opacity:0.2857143;fill:url(#linearGradient9023);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="path9006"
         sodipodi:cx="229.9375"
         sodipodi:cy="199.0625"
         sodipodi:rx="7.9375"
         sodipodi:ry="2.4375"
         d="m 237.875,199.0625 c 0,1.34619 -3.55374,2.4375 -7.9375,2.4375 -4.38376,0 -7.9375,-1.09131 -7.9375,-2.4375 0,-1.34619 3.55374,-2.4375 7.9375,-2.4375 4.38376,0 7.9375,1.09131 7.9375,2.4375 z"
         transform="matrix(0.5296484,0,0,0.5296484,-84.4165,-4.727724)" />
      <path
         transform="matrix(0.7131486,0,0,1.140781,-126.6101,-124.8917)"
         d="m 237.875,199.0625 c 0,1.34619 -3.55374,2.4375 -7.9375,2.4375 -4.38376,0 -7.9375,-1.09131 -7.9375,-2.4375 0,-1.34619 3.55374,-2.4375 7.9375,-2.4375 4.38376,0 7.9375,1.09131 7.9375,2.4375 z"
         sodipodi:ry="2.4375"
         sodipodi:rx="7.9375"
         sodipodi:cy="199.0625"
         sodipodi:cx="229.9375"
         id="path9008"
         style="opacity:0.6206894;fill:url(#linearGradient9025);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8906);enable-background:accumulate"
         sodipodi:type="arc" />
    </g>
    <path
       inkscape:connector-curvature="0"
       style="opacity:0.6157635;fill:url(#radialGradient9046);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter9068)"
       d="m 80.5,220.0625 c 0,0 2.10339,5.6508 7.875,5.9375 5.83887,0.2901 12.5032,-7.007 13.0625,-9.625 -1,2.25 -6.59033,9.0333 -13.8125,8.9375 -4.09986,-0.054 -7.125,-5.25 -7.125,-5.25 z"
       id="path9038"
       transform="matrix(0.5296484,0,0,0.5296484,-11.62295,-14.42691)"
       sodipodi:nodetypes="czczc" />
    <path
       inkscape:label="top_inner_highlight"
       d="m 63.40625,10.21875 c -3.09818,0 -6.1346,1.12204 -8.28125,3.3125 l -41.1875,42.1875 c -3.76562,3.76562 -4.670241,6.23069 -4.4375,7.625 0.116371,0.69716 0.458599,1.30303 1.1875,1.9375 0.7289,0.63447 1.83149,1.25639 3.15625,1.8125 2.64951,1.11222 6.21796,2.00808 9.71875,2.96875 3.50079,0.96067 6.92981,1.97463 9.53125,3.625 0.39662,0.25827 0.76909,0.57647 1.03125,1.03125 0.26216,0.45478 0.35422,1.05609 0.25,1.5625 -0.20843,1.01282 -0.83202,1.54698 -1.46875,2.03125 -1.27346,0.96853 -3.02326,1.77323 -4.78125,2.625 -1.75799,0.85177 -3.52492,1.72324 -4.40625,2.4375 -0.44066,0.35713 -0.60011,0.67813 -0.59375,0.65625 0.006,-0.0219 -0.11685,-0.2731 0.0937,-0.0625 0.55176,0.56709 2.27408,1.53816 4.46875,2.40625 2.19467,0.86809 4.88065,1.74562 7.59375,2.625 2.7131,0.87938 5.4575,1.74996 7.78125,2.65625 2.32375,0.90629 4.21769,1.74894 5.46875,3 0.62268,0.63998 1.06263,1.43596 1.15625,2.25 0.0936,0.81404 -0.12681,1.57803 -0.4375,2.21875 -0.62138,1.2814 -1.62031,2.2672 -2.53125,3.2188 -0.91094,0.9515 -1.73623,1.8603 -2.03125,2.4687 -0.14751,0.3042 -0.17035,0.5024 -0.15625,0.625 0.0141,0.1226 0.0352,0.2462 0.3125,0.5313 A 1.456677,1.456677 0 0 1 44.875,106 c 1.1936,1.2618 3.787,1.4392 6.71875,2.125 1.46587,0.3429 2.99891,0.862 4.3125,2 1.31359,1.138 2.29944,2.8706 2.71875,5.2188 0.17646,0.9945 0.70272,1.4788 1.96875,1.875 1.26603,0.3961 3.19435,0.4655 5.3125,0.1562 4.2363,-0.6186 9.26003,-2.6953 12.15625,-5.0938 0.17999,-0.1529 0.12996,-0.1125 0.1875,-0.1874 -0.1948,-0.1394 -0.65164,-0.4366 -1.40625,-0.8126 -0.89153,-0.4441 -1.9447,-0.8595 -2.75,-1.875 -0.40265,-0.5077 -0.67988,-1.3093 -0.5625,-2.0937 0.11738,-0.7844 0.54683,-1.437 1.125,-2.0313 4.74575,-4.7984 9.42194,-5.94409 12.9375,-6.87495 1.75778,-0.46543 3.22929,-0.89123 4.34375,-1.59375 1.11446,-0.70252 1.98508,-1.66373 2.71875,-3.53125 0.0809,-0.20217 0.0786,-0.26085 -0.0312,-0.5 C 94.5152,92.5421 94.22054,92.15952 93.75,91.75 92.80892,90.93096 91.23958,90.0508 89.6875,89.1875 88.13542,88.3242 86.62703,87.51926 85.53125,86.5 c -0.54789,-0.50963 -1.12202,-1.15163 -1.1875,-2.125 -0.0655,-0.97337 0.57257,-1.85163 1.3125,-2.375 2.74572,-1.93321 6.89628,-3.40491 11.40625,-4.96875 4.51,-1.56384 9.3611,-3.18213 13.3125,-5.03125 3.9514,-1.84912 6.8573,-3.97867 7.7812,-6.125 0.462,-1.07317 0.5467,-2.15861 0.063,-3.5625 -0.4842,-1.40389 -1.5896,-3.12083 -3.5626,-5.09375 L 72,13.5625 c -0.0107,-0.0101 -0.0205,-0.0212 -0.0312,-0.0312 -2.35772,-2.20774 -5.47837,-3.3125 -8.5625,-3.3125 z m 45.93755,80 c -2.6352,0.0951 -5.0596,1.30141 -6.0938,3.1875 0.2938,0.11052 0.5584,0.23497 1.0312,0.34375 1.3757,0.31646 3.2955,0.52074 5.1876,0.5625 1.892,0.0418 3.7841,-0.11747 4.9374,-0.4375 0.5049,-0.14009 0.7724,-0.28178 0.9063,-0.375 -0.2558,-1.09109 -0.8649,-1.86212 -1.9063,-2.4375 -1.0786,-0.59595 -2.5566,-0.89811 -4.0624,-0.84375 z m -70.50005,9.0625 c -2.08988,-0.14535 -4.71655,0.68656 -6,1.71875 -0.64172,0.5161 -0.91327,0.9944 -0.9375,1.3125 -0.0242,0.3181 0.0773,0.742 0.9375,1.4687 a 1.456677,1.456677 0 0 1 0,0.031 c 1.35282,1.17 2.88226,1.048 4.625,0.094 1.46095,-0.7999 2.7572,-2.3007 3.625,-3.875 -0.58503,-0.37729 -1.28454,-0.68281 -2.25,-0.74995 z m 61,0.625 c -0.4473,0.56855 -0.6909,1.09795 -0.71875,1.46875 -0.0384,0.5117 0.10661,0.9072 0.5,1.2812 0.7373,0.701 2.3391,1.0028 3.9688,0.125 -0.032,-0.189 -0.093,-0.4759 -0.3438,-0.8437 -0.4999,-0.7341 -1.6686,-1.5251 -3.40625,-2.03125 z"
       inkscape:href="#use7639"
       id="87235"
       style="fill:none;stroke:url(#radialGradient11553);stroke-width:1.0035907;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter9298)"
       xlink:href="#use7639"
       inkscape:original="M 63.40625 8.75 C 59.95625 8.75 56.54375 10 54.09375 12.5 L 12.90625 54.6875 C -2.69375 70.2875 23.0125 69.00625 32.3125 74.90625 C 36.6125 77.70625 18.4875 81.3 22.1875 85 C 25.7875 88.7 43.9 92.0875 47.5 95.6875 C 51.1 99.3875 40.2125 103.3 43.8125 107 C 47.3125 110.7 55.6875 107.19375 57.1875 115.59375 C 58.2875 121.79375 72.6 118.70625 79 113.40625 C 83 110.00625 72.0875 110.0125 75.6875 106.3125 C 84.6875 97.2125 92.7 102.2125 96 93.8125 C 97.8 89.3125 82.4 86.0875 86.5 83.1875 C 96.3 76.2875 132.2875 72.7875 115.6875 56.1875 L 73 12.5 C 70.35 10 66.85625 8.75 63.40625 8.75 z M 109.28125 88.75 C 105.81875 88.875 102.30625 90.6125 101.40625 93.8125 C 101.40625 95.9125 117.7125 97.1125 116.8125 93.3125 C 116.1625 90.1125 112.74375 88.625 109.28125 88.75 z M 38.9375 97.84375 C 33.95 97.496875 27.55625 101.23125 31.90625 104.90625 C 35.60625 108.10625 41.2 104.1875 43 99.6875 C 42.1 98.5125 40.6 97.959375 38.9375 97.84375 z M 99.40625 98.1875 C 94.80625 102.3875 100.1875 106.80625 104.6875 103.90625 C 105.8875 103.10625 104.60625 99.1875 99.40625 98.1875 z "
       inkscape:radius="-1.456531"
       sodipodi:type="inkscape:offset" />
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="csssssscs"
       transform="matrix(0.4883067,0,0,0.4883067,-5.810401,-7.704252)"
       id="path5897"
       d="m 95.5,172 c -5.09061,1.5019 -21.59202,7.7371 -19.25,12.5 2.2436,4.5627 40.6114,6.4013 46.5,20 2.5679,5.9301 -5.8924,10.4033 -3.75,16.5 1.6497,4.6948 14.412,16.4908 22.486,22.0678 6.333,4.3744 14.651,-3.5224 11.264,-10.0678 -5.3959,-10.4276 18.4427,-23.1991 29.25,-29 6.3052,-3.3844 -13,-20 -13,-20 0,0 -73.5,-12 -73.5,-12 z"
       style="opacity:0.3251231;fill:url(#linearGradient5905);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5983-5)" />
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cssssssssss"
       id="path5783"
       d="m 41.74217,78.53304 c 2.23193,1.63922 6.63675,0.65053 9.28212,1.84176 6.34952,2.85921 14.15494,6.04542 12.71857,0.40455 0,0 -1.61577,1.34204 -1.61577,1.34204 0,0 -0.0315,-2.55754 -0.0315,-2.55754 0,0 -3.75198,0.91629 -3.75198,0.91629 0,0 -2.90617,-2.33276 -4.23852,-3.10199 -0.27829,-0.16067 -1.7077,1.29281 -1.7077,1.29281 0,0 -0.25697,-1.5438 -0.25697,-1.5438 -1.85737,-0.19764 -3.69616,-0.28481 -5.31515,-0.27182 -3.88094,0.0311 -6.49906,0.63774 -5.08307,1.6777 z"
       style="fill:url(#linearGradient5801);fill-opacity:1;fill-rule:evenodd;stroke:none" />
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="csssssc"
       transform="matrix(0.4883067,0,0,0.4883067,-5.810401,-7.704252)"
       id="path5803"
       d="m 182.75,187.25 c -1.7598,6.4783 21.6278,15.2799 19.875,19.75 -3.859,9.8416 -24.976,3.1375 -41.125,23.75 -2.3132,2.9525 3.25,13.5 2.5,12.25 -0.75,-1.25 -6.4649,-9.9629 -5,-14.25 4.5942,-13.4452 49.0128,-18.4575 40.875,-24.875 -4.6799,-3.6906 -21.5055,-13.8872 -17.125,-16.625 z"
       style="opacity:0.4778325;fill:url(#radialGradient5811);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5845)" />
    <path
       transform="matrix(0.4883067,0,0,0.4883067,-6.359746,-8.009444)"
       d="m 236.5,201.1875 c 0,0.5868 -1.14727,1.0625 -2.5625,1.0625 -1.41523,0 -2.5625,-0.4757 -2.5625,-1.0625 0,-0.5868 1.14727,-1.0625 2.5625,-1.0625 1.41523,0 2.5625,0.4757 2.5625,1.0625 z"
       sodipodi:ry="1.0625"
       sodipodi:rx="2.5625"
       sodipodi:cy="201.1875"
       sodipodi:cx="233.9375"
       id="path6041"
       style="opacity:0.5862069;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       sodipodi:type="arc" />
    <path
       sodipodi:type="arc"
       style="opacity:0.5862069;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       id="path6043"
       sodipodi:cx="233.9375"
       sodipodi:cy="201.1875"
       sodipodi:rx="2.5625"
       sodipodi:ry="1.0625"
       d="m 236.5,201.1875 c 0,0.5868 -1.14727,1.0625 -2.5625,1.0625 -1.41523,0 -2.5625,-0.4757 -2.5625,-1.0625 0,-0.5868 1.14727,-1.0625 2.5625,-1.0625 1.41523,0 2.5625,0.4757 2.5625,1.0625 z"
       transform="matrix(0.3096579,0,0,0.4883067,27.52844,1.573576)" />
    <path
       sodipodi:type="arc"
       style="opacity:0.5862069;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       id="path6045"
       sodipodi:cx="233.9375"
       sodipodi:cy="201.1875"
       sodipodi:rx="2.5625"
       sodipodi:ry="1.0625"
       d="m 236.5,201.1875 c 0,0.5868 -1.14727,1.0625 -2.5625,1.0625 -1.41523,0 -2.5625,-0.4757 -2.5625,-1.0625 0,-0.5868 1.14727,-1.0625 2.5625,-1.0625 1.41523,0 2.5625,0.4757 2.5625,1.0625 z"
       transform="matrix(0.5478563,0,0,0.4883067,-92.10223,1.115795)" />
    <path
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccc"
       id="path5049"
       d="m 36.67228,76.52865 c -7.15299,4.42411 -18.27403,6.03423 -6.10383,8.97264 -1.44971,-3.2281 3.13858,-2.87202 6.10383,-8.97264 z"
       style="opacity:0.2512315;fill:url(#linearGradient5822);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.0478933;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
    <path
       inkscape:connector-curvature="0"
       style="opacity:0.3631579;color:#000000;fill:url(#linearGradient1030);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter10997-7);enable-background:accumulate"
       d="m 8.83428,171.6472 c 0,0 22.59178,-2.1279 27.81802,-8.6464 3.05755,-3.8136 -12.15146,-8.2638 -8.86827,-12 12.35008,-14.0541 22.73076,-13.4673 37.05025,-19.3536 14.31949,-5.8862 9.03544,-8.769 4.40381,-11.3535 -7.9325,-4.4264 -25.58722,-9.1424 -19.74696,-19.6465 5.87688,-10.56993 57.34317,-25.24999 57.34317,-25.24999 15.5962,-5.32843 13.6391,-14.96447 6,-23 L 66.83428,6.647214 c 0,0 2.28296,43.388646 -7,61.999996 -11.4715,22.99914 -72.54408,48.66179 -47,51.49999 9,1 13.32065,4.0705 17,11 7.57631,14.2688 -21,40.5 -21,40.5 z"
       id="path10207"
       sodipodi:nodetypes="csszsscccsssc"
       transform="matrix(0.4883067,0,0,0.4883067,57.7504,32.99748)" />
  </g>
</svg>