gtk3 3.0.8-x64-mingw32 → 3.0.9-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/gtk3/rb-gtk3.c +17 -0
- data/lib/2.2/gtk3.so +0 -0
- data/lib/2.3/gtk3.so +0 -0
- data/lib/gtk3/container.rb +0 -7
- data/lib/gtk3/deprecated.rb +3 -3
- data/lib/gtk3/image.rb +7 -7
- data/lib/gtk3/loader.rb +11 -5
- data/lib/gtk3/text-buffer.rb +33 -12
- data/lib/gtk3/text-view.rb +53 -0
- data/lib/gtk3/tree-model.rb +5 -0
- data/lib/gtk3/tree-view.rb +25 -0
- data/lib/gtk3/widget.rb +0 -5
- data/sample/gtk-demo/TODO +10 -6
- data/sample/gtk-demo/application.ui +93 -70
- data/sample/gtk-demo/appmenu.ui +19 -0
- data/sample/gtk-demo/assistant.rb +1 -0
- data/sample/gtk-demo/css_accordion.css +8 -8
- data/sample/gtk-demo/css_accordion.rb +2 -2
- data/sample/gtk-demo/css_basics.css +1 -1
- data/sample/gtk-demo/css_basics.rb +2 -2
- data/sample/gtk-demo/css_multiplebgs.rb +2 -2
- data/sample/gtk-demo/css_pixbufs.css +2 -2
- data/sample/gtk-demo/css_pixbufs.rb +2 -2
- data/sample/gtk-demo/css_shadows.css +5 -5
- data/sample/gtk-demo/css_shadows.rb +2 -2
- data/sample/gtk-demo/cssview.css +5 -5
- data/sample/gtk-demo/data/16x16/gtk3-demo-symbolic.symbolic.png +0 -0
- data/sample/gtk-demo/data/16x16/gtk3-demo.png +0 -0
- data/sample/gtk-demo/data/22x22/gtk3-demo-symbolic.symbolic.png +0 -0
- data/sample/gtk-demo/data/22x22/gtk3-demo.png +0 -0
- data/sample/gtk-demo/data/24x24/gtk3-demo-symbolic.symbolic.png +0 -0
- data/sample/gtk-demo/data/24x24/gtk3-demo.png +0 -0
- data/sample/gtk-demo/data/256x256/gtk3-demo-symbolic.symbolic.png +0 -0
- data/sample/gtk-demo/data/256x256/gtk3-demo.png +0 -0
- data/sample/gtk-demo/data/32x32/gtk3-demo-symbolic.symbolic.png +0 -0
- data/sample/gtk-demo/data/32x32/gtk3-demo.png +0 -0
- data/sample/gtk-demo/data/48x48/gtk3-demo-symbolic.symbolic.png +0 -0
- data/sample/gtk-demo/data/48x48/gtk3-demo.png +0 -0
- data/sample/gtk-demo/data/512x512/gtk3-demo-symbolic.symbolic.png +0 -0
- data/sample/gtk-demo/data/512x512/gtk3-demo.png +0 -0
- data/sample/gtk-demo/data/source.svg +2886 -0
- data/sample/gtk-demo/data/symbolic-source.svg +29 -0
- data/sample/gtk-demo/demo.gresource.xml +16 -5
- data/sample/gtk-demo/demo.ui +1 -0
- data/sample/gtk-demo/font_features.rb +1 -1
- data/sample/gtk-demo/main.rb +2 -2
- data/sample/gtk-demo/main.ui +18 -36
- data/sample/gtk-demo/markup.rb +53 -8
- data/sample/gtk-demo/markup.txt +2 -2
- data/sample/gtk-demo/org.gtk.Demo.gschema.xml +9 -0
- data/sample/gtk-demo/pixbufs.rb +105 -145
- data/sample/gtk-demo/reset.css +1 -58
- data/sample/gtk-demo/rotated_text.rb +119 -55
- data/sample/gtk-demo/shortcuts-boxes.ui +167 -0
- data/sample/gtk-demo/shortcuts-builder.ui +547 -0
- data/sample/gtk-demo/shortcuts-clocks.ui +166 -0
- data/sample/gtk-demo/shortcuts-gedit.ui +172 -0
- data/sample/gtk-demo/shortcuts.ui +65 -0
- data/sample/gtk-demo/stack.ui +5 -5
- data/sample/gtk-demo/textscroll.rb +106 -0
- data/sample/gtk-demo/theming.ui +58 -22
- data/sample/gtk-demo/theming_style_classes.rb +5 -4
- data/sample/gtk-demo/transparent.rb +143 -0
- data/sample/misc/aboutdialog.rb +1 -1
- data/sample/misc/bindings.rb +36 -15
- data/sample/misc/combobox.rb +1 -1
- data/sample/misc/dnd.rb +3 -3
- data/sample/misc/icons-theme-viewer.rb +1 -1
- data/sample/misc/iconview.rb +2 -2
- data/sample/misc/textbuffer-serialize.rb +18 -14
- data/sample/misc/to-drawable.rb +2 -2
- data/sample/misc/tooltips.rb +1 -0
- data/sample/misc/treeview.rb +1 -1
- data/sample/tutorial/README.md +18 -18
- data/test/test-gtk-clipboard.rb +1 -1
- data/test/test-gtk-combo-box.rb +2 -2
- data/test/test-gtk-icon-view.rb +2 -2
- data/test/test-gtk-image.rb +1 -1
- data/test/test-gtk-list-store.rb +9 -3
- data/test/test-gtk-text-view.rb +64 -0
- data/test/test-gtk-tree-path.rb +1 -3
- data/test/test-gtk-tree-view.rb +97 -0
- data/test/test-gtk-window.rb +2 -2
- data/test/test-pango-context.rb +56 -0
- metadata +46 -19
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<interface>
|
3
|
+
<!-- interface-requires gtk+ 3.10 -->
|
4
|
+
<menu id="appmenu">
|
5
|
+
<section>
|
6
|
+
<item>
|
7
|
+
<attribute name="label" translatable="yes">About</attribute>
|
8
|
+
<attribute name="action">app.about</attribute>
|
9
|
+
</item>
|
10
|
+
</section>
|
11
|
+
<section>
|
12
|
+
<item>
|
13
|
+
<attribute name="label" translatable="yes">_Quit</attribute>
|
14
|
+
<attribute name="action">app.quit</attribute>
|
15
|
+
<attribute name="accel"><Primary>q</attribute>
|
16
|
+
</item>
|
17
|
+
</section>
|
18
|
+
</menu>
|
19
|
+
</interface>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
font: Cantarell 20px;
|
8
8
|
}
|
9
9
|
|
10
|
-
|
10
|
+
window {
|
11
11
|
background: linear-gradient(153deg, #151515, #151515 5px, transparent 5px) 0 0,
|
12
12
|
linear-gradient(333deg, #151515, #151515 5px, transparent 5px) 10px 5px,
|
13
13
|
linear-gradient(153deg, #222, #222 5px, transparent 5px) 0 5px,
|
@@ -18,7 +18,7 @@ GtkWindow {
|
|
18
18
|
background-size: 20px 20px;
|
19
19
|
}
|
20
20
|
|
21
|
-
|
21
|
+
button {
|
22
22
|
color: black;
|
23
23
|
background-color: #bbb;
|
24
24
|
border-style: solid;
|
@@ -28,25 +28,25 @@ GtkWindow {
|
|
28
28
|
padding: 12px 4px;
|
29
29
|
}
|
30
30
|
|
31
|
-
|
31
|
+
button:first-child {
|
32
32
|
border-radius: 5px 0 0 5px;
|
33
33
|
}
|
34
34
|
|
35
|
-
|
35
|
+
button:last-child {
|
36
36
|
border-radius: 0 5px 5px 0;
|
37
37
|
border-width: 2px;
|
38
38
|
}
|
39
39
|
|
40
|
-
|
40
|
+
button:hover {
|
41
41
|
padding: 12px 48px;
|
42
42
|
background-color: #4870bc;
|
43
43
|
}
|
44
44
|
|
45
|
-
|
45
|
+
button *:hover {
|
46
46
|
color: white;
|
47
47
|
}
|
48
48
|
|
49
|
-
|
50
|
-
|
49
|
+
button:hover:active,
|
50
|
+
button:active {
|
51
51
|
background-color: #993401;
|
52
52
|
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
# Copyright (c) 2015 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (c) 2015-2016 Ruby-GNOME2 Project Team
|
2
2
|
# This program is licenced under the same licence as Ruby-GNOME2.
|
3
3
|
#
|
4
4
|
=begin
|
5
|
-
=
|
5
|
+
= Theming/CSS Accordion
|
6
6
|
|
7
7
|
A simple accordion demo written using CSS transitions and multiple backgrounds
|
8
8
|
=end
|
@@ -1,8 +1,8 @@
|
|
1
|
-
# Copyright (c) 2015 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (c) 2015-2016 Ruby-GNOME2 Project Team
|
2
2
|
# This program is licenced under the same licence as Ruby-GNOME2.
|
3
3
|
#
|
4
4
|
=begin
|
5
|
-
=
|
5
|
+
= Theming/CSS Basics
|
6
6
|
|
7
7
|
Gtk themes are written using CSS. Every widget is build of multiple items
|
8
8
|
that you can style very similarly to a regular website.
|
@@ -1,8 +1,8 @@
|
|
1
|
-
# Copyright (c) 2015 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (c) 2015-2016 Ruby-GNOME2 Project Team
|
2
2
|
# This program is licenced under the same licence as Ruby-GNOME2.
|
3
3
|
#
|
4
4
|
=begin
|
5
|
-
=
|
5
|
+
= Theming/Multiple Backgrounds
|
6
6
|
|
7
7
|
Gtk themes are written using CSS. Every widget is build of multiple items
|
8
8
|
that you can style very similarly to a regular website.
|
@@ -50,7 +50,7 @@
|
|
50
50
|
100% { background-size: 12px, 96px, 12px, 96px, 12px, 96px, 12px, 96px, auto }
|
51
51
|
}
|
52
52
|
|
53
|
-
|
53
|
+
window {
|
54
54
|
background-image: url("resource://css_pixbufs/apple-red.png"),
|
55
55
|
url("resource://css_pixbufs/gnome-applets.png"),
|
56
56
|
url("resource://css_pixbufs/gnome-calendar.png"),
|
@@ -66,7 +66,7 @@ GtkWindow {
|
|
66
66
|
}
|
67
67
|
|
68
68
|
/* Make the text editor has a nice style */
|
69
|
-
.view,
|
69
|
+
.view, scrollbar, separator {
|
70
70
|
color: black;
|
71
71
|
background-color: rgba(255,255,255,0.5);
|
72
72
|
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
# Copyright (c) 2015 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (c) 2015-2016 Ruby-GNOME2 Project Team
|
2
2
|
# This program is licenced under the same licence as Ruby-GNOME2.
|
3
3
|
#
|
4
4
|
=begin
|
5
|
-
=
|
5
|
+
= Theming/Animated Backgrounds
|
6
6
|
|
7
7
|
This demo is done in honour of the Pixbufs demo further down.
|
8
8
|
It is done exclusively with CSS as the background of the window.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
background-size: 29px, 59px, 73px, 109px;
|
20
20
|
}
|
21
21
|
|
22
|
-
|
22
|
+
button {
|
23
23
|
color: black;
|
24
24
|
padding: 10px;
|
25
25
|
border-radius: 5px;
|
@@ -27,17 +27,17 @@
|
|
27
27
|
border: 1px transparent solid;
|
28
28
|
}
|
29
29
|
|
30
|
-
|
30
|
+
button:hover {
|
31
31
|
text-shadow: 3px 3px 5px alpha(black, 0.75);
|
32
|
-
icon-shadow: 3px 3px 5px alpha(black, 0.75);
|
32
|
+
-gtk-icon-shadow: 3px 3px 5px alpha(black, 0.75);
|
33
33
|
box-shadow: 3px 3px 5px alpha(black, 0.5) inset;
|
34
34
|
border: solid 1px alpha(black, 0.75);
|
35
35
|
}
|
36
36
|
|
37
|
-
|
37
|
+
button:active {
|
38
38
|
padding: 11px 9px 9px 11px;
|
39
39
|
text-shadow: 1px 1px 2.5px alpha(black, 0.6);
|
40
|
-
icon-shadow: 1px 1px 2.5px alpha(black, 0.6);
|
40
|
+
-gtk-icon-shadow: 1px 1px 2.5px alpha(black, 0.6);
|
41
41
|
}
|
42
42
|
|
43
43
|
|
@@ -1,8 +1,8 @@
|
|
1
|
-
# Copyright (c) 2015 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (c) 2015-2016 Ruby-GNOME2 Project Team
|
2
2
|
# This program is licenced under the same licence as Ruby-GNOME2.
|
3
3
|
#
|
4
4
|
=begin
|
5
|
-
=
|
5
|
+
= Theming/Shadows
|
6
6
|
|
7
7
|
This demo shows how to use CSS shadows.
|
8
8
|
=end
|
data/sample/gtk-demo/cssview.css
CHANGED
@@ -10,12 +10,12 @@
|
|
10
10
|
background-color: #4a90d9;
|
11
11
|
}
|
12
12
|
|
13
|
-
|
13
|
+
scrollbar trough,
|
14
14
|
.scrollbars-junction {
|
15
15
|
background-color: alpha(white, 0.80);
|
16
16
|
}
|
17
17
|
|
18
|
-
|
18
|
+
scrollbar slider {
|
19
19
|
border-width: 3px;
|
20
20
|
border-style: solid;
|
21
21
|
border-radius: 10px;
|
@@ -24,11 +24,11 @@
|
|
24
24
|
background-color: #999;
|
25
25
|
}
|
26
26
|
|
27
|
-
|
27
|
+
scrollbar slider:hover {
|
28
28
|
background-color: #555;
|
29
29
|
}
|
30
30
|
|
31
|
-
|
31
|
+
paned separator {
|
32
32
|
background-color: alpha(white, 0.80);
|
33
33
|
background-image: linear-gradient(transparent, transparent 1px, #999 1px, #999 4px, transparent 4px);
|
34
34
|
background-size: 40px auto;
|
@@ -36,6 +36,6 @@
|
|
36
36
|
background-position: center;
|
37
37
|
}
|
38
38
|
|
39
|
-
|
39
|
+
paned separator:hover {
|
40
40
|
background-image: linear-gradient(transparent, transparent 1px, #555 1px, #555 4px, transparent 4px);
|
41
41
|
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,2886 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
height="300"
|
14
|
+
id="svg11300"
|
15
|
+
inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
|
16
|
+
inkscape:export-xdpi="90.000000"
|
17
|
+
inkscape:export-ydpi="90.000000"
|
18
|
+
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
19
|
+
inkscape:version="0.48.4 r9939"
|
20
|
+
sodipodi:docname="gtk3-demo.svg"
|
21
|
+
sodipodi:version="0.32"
|
22
|
+
style="display:inline;enable-background:new"
|
23
|
+
version="1.0"
|
24
|
+
width="400">
|
25
|
+
<metadata
|
26
|
+
id="metadata150">
|
27
|
+
<rdf:RDF>
|
28
|
+
<cc:Work
|
29
|
+
rdf:about="">
|
30
|
+
<dc:format>image/svg+xml</dc:format>
|
31
|
+
<dc:type
|
32
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
33
|
+
<dc:creator>
|
34
|
+
<cc:Agent>
|
35
|
+
<dc:title>Jakub Steiner</dc:title>
|
36
|
+
</cc:Agent>
|
37
|
+
</dc:creator>
|
38
|
+
<dc:title />
|
39
|
+
<dc:contributor>
|
40
|
+
<cc:Agent>
|
41
|
+
<dc:title>Lapo Calamandrei</dc:title>
|
42
|
+
</cc:Agent>
|
43
|
+
</dc:contributor>
|
44
|
+
<dc:subject>
|
45
|
+
<rdf:Bag>
|
46
|
+
<rdf:li>optical</rdf:li>
|
47
|
+
<rdf:li>media</rdf:li>
|
48
|
+
<rdf:li>cd</rdf:li>
|
49
|
+
<rdf:li>dvd</rdf:li>
|
50
|
+
</rdf:Bag>
|
51
|
+
</dc:subject>
|
52
|
+
</cc:Work>
|
53
|
+
</rdf:RDF>
|
54
|
+
</metadata>
|
55
|
+
<sodipodi:namedview
|
56
|
+
bordercolor="#666666"
|
57
|
+
borderopacity="0.25490196"
|
58
|
+
fill="#f57900"
|
59
|
+
gridtolerance="12"
|
60
|
+
guidetolerance="13"
|
61
|
+
height="300px"
|
62
|
+
id="base"
|
63
|
+
inkscape:current-layer="layer6"
|
64
|
+
inkscape:cx="-181.38052"
|
65
|
+
inkscape:cy="86.438237"
|
66
|
+
inkscape:document-units="px"
|
67
|
+
inkscape:grid-bbox="true"
|
68
|
+
inkscape:pageopacity="0.0"
|
69
|
+
inkscape:pageshadow="2"
|
70
|
+
inkscape:showpageshadow="false"
|
71
|
+
inkscape:snap-bbox="true"
|
72
|
+
inkscape:snap-nodes="false"
|
73
|
+
inkscape:window-height="1374"
|
74
|
+
inkscape:window-width="2560"
|
75
|
+
inkscape:window-x="0"
|
76
|
+
inkscape:window-y="27"
|
77
|
+
inkscape:zoom="1"
|
78
|
+
objecttolerance="7"
|
79
|
+
pagecolor="#ffffff"
|
80
|
+
showgrid="false"
|
81
|
+
stroke="#ef2929"
|
82
|
+
width="400px"
|
83
|
+
showguides="true"
|
84
|
+
inkscape:guide-bbox="true"
|
85
|
+
inkscape:window-maximized="1">
|
86
|
+
<inkscape:grid
|
87
|
+
enabled="true"
|
88
|
+
id="grid5883"
|
89
|
+
spacingx="1px"
|
90
|
+
spacingy="1px"
|
91
|
+
type="xygrid"
|
92
|
+
visible="true"
|
93
|
+
empspacing="4" />
|
94
|
+
</sodipodi:namedview>
|
95
|
+
<defs
|
96
|
+
id="defs3">
|
97
|
+
<inkscape:path-effect
|
98
|
+
is_visible="true"
|
99
|
+
id="path-effect13049"
|
100
|
+
effect="spiro" />
|
101
|
+
<inkscape:path-effect
|
102
|
+
effect="spiro"
|
103
|
+
id="path-effect13045"
|
104
|
+
is_visible="true" />
|
105
|
+
<inkscape:path-effect
|
106
|
+
is_visible="true"
|
107
|
+
id="path-effect13041"
|
108
|
+
effect="spiro" />
|
109
|
+
<inkscape:path-effect
|
110
|
+
effect="spiro"
|
111
|
+
id="path-effect13037"
|
112
|
+
is_visible="true" />
|
113
|
+
<inkscape:path-effect
|
114
|
+
effect="spiro"
|
115
|
+
id="path-effect13033"
|
116
|
+
is_visible="true" />
|
117
|
+
<inkscape:path-effect
|
118
|
+
is_visible="true"
|
119
|
+
id="path-effect13029"
|
120
|
+
effect="spiro" />
|
121
|
+
<inkscape:path-effect
|
122
|
+
effect="spiro"
|
123
|
+
id="path-effect13025"
|
124
|
+
is_visible="true" />
|
125
|
+
<inkscape:path-effect
|
126
|
+
is_visible="true"
|
127
|
+
id="path-effect13021"
|
128
|
+
effect="spiro" />
|
129
|
+
<inkscape:path-effect
|
130
|
+
effect="spiro"
|
131
|
+
id="path-effect13017"
|
132
|
+
is_visible="true" />
|
133
|
+
<inkscape:path-effect
|
134
|
+
effect="spiro"
|
135
|
+
id="path-effect12179"
|
136
|
+
is_visible="true" />
|
137
|
+
<inkscape:path-effect
|
138
|
+
effect="spiro"
|
139
|
+
id="path-effect12082"
|
140
|
+
is_visible="true" />
|
141
|
+
<inkscape:path-effect
|
142
|
+
effect="spiro"
|
143
|
+
id="path-effect12062"
|
144
|
+
is_visible="true" />
|
145
|
+
<inkscape:path-effect
|
146
|
+
effect="spiro"
|
147
|
+
id="path-effect12058"
|
148
|
+
is_visible="true" />
|
149
|
+
<inkscape:path-effect
|
150
|
+
effect="spiro"
|
151
|
+
id="path-effect11284"
|
152
|
+
is_visible="true" />
|
153
|
+
<inkscape:path-effect
|
154
|
+
effect="spiro"
|
155
|
+
id="path-effect10766"
|
156
|
+
is_visible="true" />
|
157
|
+
<inkscape:path-effect
|
158
|
+
effect="spiro"
|
159
|
+
id="path-effect1920"
|
160
|
+
is_visible="true" />
|
161
|
+
<inkscape:path-effect
|
162
|
+
effect="spiro"
|
163
|
+
id="path-effect22436"
|
164
|
+
is_visible="true" />
|
165
|
+
<linearGradient
|
166
|
+
inkscape:collect="always"
|
167
|
+
id="linearGradient22426">
|
168
|
+
<stop
|
169
|
+
style="stop-color:#000000;stop-opacity:1;"
|
170
|
+
offset="0"
|
171
|
+
id="stop22428" />
|
172
|
+
<stop
|
173
|
+
style="stop-color:#000000;stop-opacity:0;"
|
174
|
+
offset="1"
|
175
|
+
id="stop22430" />
|
176
|
+
</linearGradient>
|
177
|
+
<inkscape:path-effect
|
178
|
+
effect="spiro"
|
179
|
+
id="path-effect22396"
|
180
|
+
is_visible="true" />
|
181
|
+
<linearGradient
|
182
|
+
inkscape:collect="always"
|
183
|
+
id="linearGradient3448">
|
184
|
+
<stop
|
185
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
186
|
+
offset="0"
|
187
|
+
id="stop3450" />
|
188
|
+
<stop
|
189
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
190
|
+
offset="1"
|
191
|
+
id="stop3452" />
|
192
|
+
</linearGradient>
|
193
|
+
<inkscape:path-effect
|
194
|
+
effect="spiro"
|
195
|
+
id="path-effect3446"
|
196
|
+
is_visible="true" />
|
197
|
+
<linearGradient
|
198
|
+
inkscape:collect="always"
|
199
|
+
id="linearGradient3436">
|
200
|
+
<stop
|
201
|
+
style="stop-color:#fcaf3e;stop-opacity:1;"
|
202
|
+
offset="0"
|
203
|
+
id="stop3438" />
|
204
|
+
<stop
|
205
|
+
style="stop-color:#df8604;stop-opacity:1"
|
206
|
+
offset="1"
|
207
|
+
id="stop3440" />
|
208
|
+
</linearGradient>
|
209
|
+
<linearGradient
|
210
|
+
inkscape:collect="always"
|
211
|
+
id="linearGradient2952">
|
212
|
+
<stop
|
213
|
+
style="stop-color:#c3571f;stop-opacity:1"
|
214
|
+
offset="0"
|
215
|
+
id="stop2954" />
|
216
|
+
<stop
|
217
|
+
style="stop-color:#e17843;stop-opacity:0;"
|
218
|
+
offset="1"
|
219
|
+
id="stop2956" />
|
220
|
+
</linearGradient>
|
221
|
+
<linearGradient
|
222
|
+
inkscape:collect="always"
|
223
|
+
id="linearGradient2762">
|
224
|
+
<stop
|
225
|
+
style="stop-color:#000000;stop-opacity:1;"
|
226
|
+
offset="0"
|
227
|
+
id="stop2764" />
|
228
|
+
<stop
|
229
|
+
style="stop-color:#ffffff;stop-opacity:1"
|
230
|
+
offset="1"
|
231
|
+
id="stop2766" />
|
232
|
+
</linearGradient>
|
233
|
+
<linearGradient
|
234
|
+
inkscape:collect="always"
|
235
|
+
id="linearGradient2646">
|
236
|
+
<stop
|
237
|
+
style="stop-color:#000000;stop-opacity:1;"
|
238
|
+
offset="0"
|
239
|
+
id="stop2648" />
|
240
|
+
<stop
|
241
|
+
style="stop-color:#000000;stop-opacity:0;"
|
242
|
+
offset="1"
|
243
|
+
id="stop2650" />
|
244
|
+
</linearGradient>
|
245
|
+
<inkscape:path-effect
|
246
|
+
effect="spiro"
|
247
|
+
id="path-effect2620"
|
248
|
+
is_visible="true" />
|
249
|
+
<linearGradient
|
250
|
+
inkscape:collect="always"
|
251
|
+
id="linearGradient5679">
|
252
|
+
<stop
|
253
|
+
style="stop-color:#ff7215;stop-opacity:1"
|
254
|
+
offset="0"
|
255
|
+
id="stop5681" />
|
256
|
+
<stop
|
257
|
+
style="stop-color: rgb(252, 175, 62); stop-opacity: 0;"
|
258
|
+
offset="1"
|
259
|
+
id="stop5683" />
|
260
|
+
</linearGradient>
|
261
|
+
<linearGradient
|
262
|
+
inkscape:collect="always"
|
263
|
+
id="linearGradient5669">
|
264
|
+
<stop
|
265
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
266
|
+
offset="0"
|
267
|
+
id="stop5671" />
|
268
|
+
<stop
|
269
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
270
|
+
offset="1"
|
271
|
+
id="stop5673" />
|
272
|
+
</linearGradient>
|
273
|
+
<linearGradient
|
274
|
+
inkscape:collect="always"
|
275
|
+
id="linearGradient5625">
|
276
|
+
<stop
|
277
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
278
|
+
offset="0"
|
279
|
+
id="stop5627" />
|
280
|
+
<stop
|
281
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
282
|
+
offset="1"
|
283
|
+
id="stop5629" />
|
284
|
+
</linearGradient>
|
285
|
+
<linearGradient
|
286
|
+
id="linearGradient5505">
|
287
|
+
<stop
|
288
|
+
id="stop5507"
|
289
|
+
offset="0"
|
290
|
+
style="stop-color:#ffffff;stop-opacity:1" />
|
291
|
+
<stop
|
292
|
+
style="stop-color:#ffffff;stop-opacity:1"
|
293
|
+
offset="0.5"
|
294
|
+
id="stop5509" />
|
295
|
+
<stop
|
296
|
+
id="stop5511"
|
297
|
+
offset="1"
|
298
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" />
|
299
|
+
</linearGradient>
|
300
|
+
<linearGradient
|
301
|
+
id="linearGradient5495">
|
302
|
+
<stop
|
303
|
+
style="stop-color:#ffffff;stop-opacity:0.21327014"
|
304
|
+
offset="0"
|
305
|
+
id="stop5497" />
|
306
|
+
<stop
|
307
|
+
id="stop5499"
|
308
|
+
offset="0.5"
|
309
|
+
style="stop-color:#ffffff;stop-opacity:0.49803922;" />
|
310
|
+
<stop
|
311
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"
|
312
|
+
offset="1"
|
313
|
+
id="stop5501" />
|
314
|
+
</linearGradient>
|
315
|
+
<linearGradient
|
316
|
+
id="linearGradient5110">
|
317
|
+
<stop
|
318
|
+
style="stop-color:#000000;stop-opacity:0.4"
|
319
|
+
offset="0"
|
320
|
+
id="stop5112" />
|
321
|
+
<stop
|
322
|
+
style="stop-color:#ffffff;stop-opacity:1"
|
323
|
+
offset="1"
|
324
|
+
id="stop5114" />
|
325
|
+
</linearGradient>
|
326
|
+
<linearGradient
|
327
|
+
y2="14.2033"
|
328
|
+
x2="35.391201"
|
329
|
+
y1="32.4165"
|
330
|
+
x1="12.2744"
|
331
|
+
gradientUnits="userSpaceOnUse"
|
332
|
+
id="linearGradient4573">
|
333
|
+
<stop
|
334
|
+
id="stop4575"
|
335
|
+
style="stop-color:#babdb6;stop-opacity:1"
|
336
|
+
offset="0" />
|
337
|
+
<stop
|
338
|
+
offset="0.25"
|
339
|
+
style="stop-color:#d9d9d9;stop-opacity:1;"
|
340
|
+
id="stop4577" />
|
341
|
+
<stop
|
342
|
+
id="stop4579"
|
343
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
344
|
+
offset="0.5" />
|
345
|
+
<stop
|
346
|
+
offset="1"
|
347
|
+
style="stop-color:#888a85;stop-opacity:1"
|
348
|
+
id="stop4581" />
|
349
|
+
</linearGradient>
|
350
|
+
<linearGradient
|
351
|
+
y2="14.2033"
|
352
|
+
y1="32.4165"
|
353
|
+
x2="35.391201"
|
354
|
+
x1="12.2744"
|
355
|
+
id="linearGradient4237"
|
356
|
+
gradientUnits="userSpaceOnUse">
|
357
|
+
<stop
|
358
|
+
style="stop-color:#FBFBFB"
|
359
|
+
offset="0"
|
360
|
+
id="stop4239" />
|
361
|
+
<stop
|
362
|
+
style="stop-color:#B6B6B6"
|
363
|
+
offset="0.5"
|
364
|
+
id="stop4241" />
|
365
|
+
<stop
|
366
|
+
style="stop-color:#eeeeec;stop-opacity:1"
|
367
|
+
offset="1"
|
368
|
+
id="stop4243" />
|
369
|
+
</linearGradient>
|
370
|
+
<linearGradient
|
371
|
+
gradientUnits="userSpaceOnUse"
|
372
|
+
id="linearGradient3435"
|
373
|
+
x1="12.2744"
|
374
|
+
x2="35.391201"
|
375
|
+
y1="32.4165"
|
376
|
+
y2="14.2033">
|
377
|
+
<stop
|
378
|
+
id="stop3437"
|
379
|
+
offset="0.0000000"
|
380
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
381
|
+
<stop
|
382
|
+
id="stop3439"
|
383
|
+
offset="1.0000000"
|
384
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
385
|
+
</linearGradient>
|
386
|
+
<linearGradient
|
387
|
+
gradientUnits="userSpaceOnUse"
|
388
|
+
id="linearGradient3394"
|
389
|
+
x1="12.2744"
|
390
|
+
x2="35.391201"
|
391
|
+
y1="32.4165"
|
392
|
+
y2="14.2033">
|
393
|
+
<stop
|
394
|
+
id="stop3396"
|
395
|
+
offset="0.0000000"
|
396
|
+
style="stop-color:#fff307;stop-opacity:1.0000000;" />
|
397
|
+
<stop
|
398
|
+
id="stop3398"
|
399
|
+
offset="0.50000000"
|
400
|
+
style="stop-color:#166eff;stop-opacity:1.0000000;" />
|
401
|
+
<stop
|
402
|
+
id="stop3400"
|
403
|
+
offset="1.0000000"
|
404
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
405
|
+
</linearGradient>
|
406
|
+
<linearGradient
|
407
|
+
gradientUnits="userSpaceOnUse"
|
408
|
+
id="linearGradient3406"
|
409
|
+
x1="12.2744"
|
410
|
+
x2="35.391201"
|
411
|
+
y1="32.4165"
|
412
|
+
y2="14.2033">
|
413
|
+
<stop
|
414
|
+
id="stop3408"
|
415
|
+
offset="0.0000000"
|
416
|
+
style="stop-color:#b307ff;stop-opacity:0.82178217;" />
|
417
|
+
<stop
|
418
|
+
id="stop3410"
|
419
|
+
offset="1.0000000"
|
420
|
+
style="stop-color:#f0ff8b;stop-opacity:0.64356434;" />
|
421
|
+
<stop
|
422
|
+
id="stop3412"
|
423
|
+
offset="1.0000000"
|
424
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
425
|
+
</linearGradient>
|
426
|
+
<linearGradient
|
427
|
+
id="linearGradient5844"
|
428
|
+
gradientUnits="userSpaceOnUse"
|
429
|
+
x1="12.2744"
|
430
|
+
y1="32.4165"
|
431
|
+
x2="35.391201"
|
432
|
+
y2="14.2033">
|
433
|
+
<stop
|
434
|
+
offset="0"
|
435
|
+
style="stop-color:#fbfbfb;stop-opacity:0;"
|
436
|
+
id="stop5846" />
|
437
|
+
<stop
|
438
|
+
id="stop5848"
|
439
|
+
style="stop-color:#e8e8e8;stop-opacity:0;"
|
440
|
+
offset="0.30952382" />
|
441
|
+
<stop
|
442
|
+
offset="0.46209913"
|
443
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
444
|
+
id="stop5850" />
|
445
|
+
<stop
|
446
|
+
id="stop5859"
|
447
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
448
|
+
offset="0.54616135" />
|
449
|
+
<stop
|
450
|
+
id="stop5852"
|
451
|
+
style="stop-color:#e3e3e3;stop-opacity:0;"
|
452
|
+
offset="0.71428573" />
|
453
|
+
<stop
|
454
|
+
offset="1"
|
455
|
+
style="stop-color:#d1d1d1;stop-opacity:0;"
|
456
|
+
id="stop5854" />
|
457
|
+
</linearGradient>
|
458
|
+
<linearGradient
|
459
|
+
id="linearGradient5956">
|
460
|
+
<stop
|
461
|
+
id="stop5958"
|
462
|
+
offset="0"
|
463
|
+
style="stop-color:#e6e6e6;stop-opacity:1;" />
|
464
|
+
<stop
|
465
|
+
style="stop-color:#404040;stop-opacity:0.52525252;"
|
466
|
+
offset="0.5"
|
467
|
+
id="stop5964" />
|
468
|
+
<stop
|
469
|
+
id="stop5960"
|
470
|
+
offset="1"
|
471
|
+
style="stop-color:#ededed;stop-opacity:0.78823531;" />
|
472
|
+
</linearGradient>
|
473
|
+
<linearGradient
|
474
|
+
id="linearGradient6117">
|
475
|
+
<stop
|
476
|
+
id="stop6119"
|
477
|
+
offset="0"
|
478
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
479
|
+
<stop
|
480
|
+
id="stop6121"
|
481
|
+
offset="1"
|
482
|
+
style="stop-color:#333333;stop-opacity:0.26262626;" />
|
483
|
+
</linearGradient>
|
484
|
+
<linearGradient
|
485
|
+
y2="14.2033"
|
486
|
+
x2="35.391201"
|
487
|
+
y1="32.4165"
|
488
|
+
x1="12.2744"
|
489
|
+
gradientUnits="userSpaceOnUse"
|
490
|
+
id="linearGradient5724">
|
491
|
+
<stop
|
492
|
+
id="stop5726"
|
493
|
+
style="stop-color:#f5f5f5;stop-opacity:1;"
|
494
|
+
offset="0" />
|
495
|
+
<stop
|
496
|
+
offset="0.5"
|
497
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
498
|
+
id="stop5728" />
|
499
|
+
<stop
|
500
|
+
id="stop5730"
|
501
|
+
style="stop-color:#d9d9d9;stop-opacity:1;"
|
502
|
+
offset="0.75" />
|
503
|
+
<stop
|
504
|
+
offset="1"
|
505
|
+
style="stop-color:#e8e8e8;stop-opacity:0;"
|
506
|
+
id="stop5732" />
|
507
|
+
</linearGradient>
|
508
|
+
<linearGradient
|
509
|
+
id="linearGradient5753">
|
510
|
+
<stop
|
511
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
512
|
+
offset="0"
|
513
|
+
id="stop5755" />
|
514
|
+
<stop
|
515
|
+
id="stop5761"
|
516
|
+
offset="0.5"
|
517
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
518
|
+
<stop
|
519
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
520
|
+
offset="0.75"
|
521
|
+
id="stop5763" />
|
522
|
+
<stop
|
523
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
524
|
+
offset="1"
|
525
|
+
id="stop5757" />
|
526
|
+
</linearGradient>
|
527
|
+
<clipPath
|
528
|
+
clipPathUnits="userSpaceOnUse"
|
529
|
+
id="clipPath4359">
|
530
|
+
<path
|
531
|
+
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
532
|
+
d="M 383.15625,310 C 380.25513,310.02465 377.31331,310.15721 374.375,310.40625 C 311.69083,315.7191 265.09339,370.94084 270.40625,433.625 C 275.71911,496.3092 330.94082,542.90663 393.625,537.59375 C 456.30917,532.28089 502.90662,477.05917 497.59375,414.375 C 492.52994,354.62912 442.14563,309.49854 383.15625,310 z M 384,388 C 403.872,388.00001 420,404.128 420,424 C 420,443.872 403.872,460 384,460 C 364.12801,460 348,443.872 348,424 C 348,404.128 364.128,388 384,388 z"
|
533
|
+
id="path4361" />
|
534
|
+
</clipPath>
|
535
|
+
<clipPath
|
536
|
+
clipPathUnits="userSpaceOnUse"
|
537
|
+
id="clipPath5197">
|
538
|
+
<g
|
539
|
+
transform="matrix(-4.519923e-2,-0.998978,0.998978,-4.519923e-2,316.33904,0.34975)"
|
540
|
+
id="g5199">
|
541
|
+
<text
|
542
|
+
xml:space="preserve"
|
543
|
+
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Impact;-inkscape-font-specification:Impact Bold"
|
544
|
+
id="text5201"
|
545
|
+
sodipodi:linespacing="125%"
|
546
|
+
transform="translate(0,-330)"
|
547
|
+
x="88.68774"
|
548
|
+
y="-177.16786">Tango Media. Only capable of holding freely licensed content. Explodes in hard drives when trying to store proprietary software.</text>
|
549
|
+
<path
|
550
|
+
style="fill:#000000;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new"
|
551
|
+
d="M 144,-279 C 81.365681,-279 31,-228.63428 31,-166 C 31,-103.3657 81.365691,-53 144,-53 C 206.63423,-53.00001 257,-103.36571 257,-166 C 257,-228.63427 206.63424,-279 144,-279 z M 144,-214 C 170.496,-214 192,-192.496 192,-166 C 192,-139.504 170.496,-118 144,-118 C 117.504,-118.00001 95.999996,-139.504 95.999996,-166 C 96.000006,-192.496 117.504,-214 144,-214 z"
|
552
|
+
id="path5205" />
|
553
|
+
</g>
|
554
|
+
</clipPath>
|
555
|
+
<linearGradient
|
556
|
+
y2="42.813938"
|
557
|
+
x2="32.309113"
|
558
|
+
y1="46.229389"
|
559
|
+
x1="32.556377"
|
560
|
+
gradientUnits="userSpaceOnUse"
|
561
|
+
id="linearGradient1469"
|
562
|
+
xlink:href="#linearGradient2498"
|
563
|
+
inkscape:collect="always" />
|
564
|
+
<linearGradient
|
565
|
+
y2="34.307499"
|
566
|
+
x2="32.511002"
|
567
|
+
y1="11.1885"
|
568
|
+
x1="14.9966"
|
569
|
+
gradientUnits="userSpaceOnUse"
|
570
|
+
id="aigrd1-6">
|
571
|
+
<stop
|
572
|
+
id="stop3034-6"
|
573
|
+
style="stop-color: rgb(235, 235, 235);"
|
574
|
+
offset="0" />
|
575
|
+
<stop
|
576
|
+
id="stop3036-4"
|
577
|
+
style="stop-color: rgb(255, 255, 255);"
|
578
|
+
offset="0.5" />
|
579
|
+
<stop
|
580
|
+
id="stop3038-9"
|
581
|
+
style="stop-color: rgb(235, 235, 235);"
|
582
|
+
offset="1" />
|
583
|
+
</linearGradient>
|
584
|
+
<linearGradient
|
585
|
+
y2="14.2033"
|
586
|
+
x2="35.391201"
|
587
|
+
y1="32.4165"
|
588
|
+
x1="12.2744"
|
589
|
+
gradientUnits="userSpaceOnUse"
|
590
|
+
id="aigrd2-6">
|
591
|
+
<stop
|
592
|
+
id="stop3043-8"
|
593
|
+
style="stop-color: rgb(251, 251, 251);"
|
594
|
+
offset="0" />
|
595
|
+
<stop
|
596
|
+
id="stop3045-9"
|
597
|
+
style="stop-color: rgb(182, 182, 182);"
|
598
|
+
offset="0.5" />
|
599
|
+
<stop
|
600
|
+
id="stop3047-2"
|
601
|
+
style="stop-color: rgb(228, 228, 228);"
|
602
|
+
offset="1" />
|
603
|
+
</linearGradient>
|
604
|
+
<linearGradient
|
605
|
+
id="linearGradient4236-9">
|
606
|
+
<stop
|
607
|
+
id="stop4238-2"
|
608
|
+
offset="0"
|
609
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" />
|
610
|
+
<stop
|
611
|
+
id="stop4240-0"
|
612
|
+
offset="1.0000000"
|
613
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0.60396;" />
|
614
|
+
</linearGradient>
|
615
|
+
<linearGradient
|
616
|
+
id="linearGradient2421">
|
617
|
+
<stop
|
618
|
+
id="stop2423"
|
619
|
+
offset="0"
|
620
|
+
style="stop-color: rgb(245, 121, 0); stop-opacity: 1;" />
|
621
|
+
<stop
|
622
|
+
style="stop-color: rgb(245, 121, 0); stop-opacity: 1;"
|
623
|
+
offset="0.33333334"
|
624
|
+
id="stop2437" />
|
625
|
+
<stop
|
626
|
+
id="stop2425"
|
627
|
+
offset="1"
|
628
|
+
style="stop-color: rgb(206, 92, 0); stop-opacity: 1;" />
|
629
|
+
</linearGradient>
|
630
|
+
<linearGradient
|
631
|
+
id="linearGradient2490">
|
632
|
+
<stop
|
633
|
+
id="stop2492"
|
634
|
+
offset="0"
|
635
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0.738281;" />
|
636
|
+
<stop
|
637
|
+
id="stop2494"
|
638
|
+
offset="1"
|
639
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" />
|
640
|
+
</linearGradient>
|
641
|
+
<linearGradient
|
642
|
+
id="linearGradient2498"
|
643
|
+
inkscape:collect="always">
|
644
|
+
<stop
|
645
|
+
id="stop2500"
|
646
|
+
offset="0"
|
647
|
+
style="stop-color: rgb(206, 92, 0);" />
|
648
|
+
<stop
|
649
|
+
id="stop2502"
|
650
|
+
offset="1"
|
651
|
+
style="stop-color: rgb(245, 121, 0);" />
|
652
|
+
</linearGradient>
|
653
|
+
<linearGradient
|
654
|
+
id="linearGradient5821">
|
655
|
+
<stop
|
656
|
+
style="stop-color:#f3d09c;stop-opacity:1"
|
657
|
+
offset="0"
|
658
|
+
id="stop5823" />
|
659
|
+
<stop
|
660
|
+
style="stop-color:#e78221;stop-opacity:1"
|
661
|
+
offset="1"
|
662
|
+
id="stop5825" />
|
663
|
+
</linearGradient>
|
664
|
+
<radialGradient
|
665
|
+
inkscape:collect="always"
|
666
|
+
xlink:href="#linearGradient6016"
|
667
|
+
id="radialGradient6317"
|
668
|
+
gradientUnits="userSpaceOnUse"
|
669
|
+
gradientTransform="matrix(1.1273876,-0.07262356,0.03283417,0.5061061,-15.126596,94.990248)"
|
670
|
+
cx="67.131371"
|
671
|
+
cy="199.40643"
|
672
|
+
fx="67.131371"
|
673
|
+
fy="199.40643"
|
674
|
+
r="55.921093" />
|
675
|
+
<linearGradient
|
676
|
+
id="linearGradient6016">
|
677
|
+
<stop
|
678
|
+
id="stop6020"
|
679
|
+
offset="0"
|
680
|
+
style="stop-color:#000000;stop-opacity:0;" />
|
681
|
+
<stop
|
682
|
+
style="stop-color:#000000;stop-opacity:0;"
|
683
|
+
offset="0.5"
|
684
|
+
id="stop6054" />
|
685
|
+
<stop
|
686
|
+
id="stop6018"
|
687
|
+
offset="1"
|
688
|
+
style="stop-color:#000000;stop-opacity:1;" />
|
689
|
+
</linearGradient>
|
690
|
+
<clipPath
|
691
|
+
clipPathUnits="userSpaceOnUse"
|
692
|
+
id="clipPath6069">
|
693
|
+
<path
|
694
|
+
style="fill:#9db029;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block"
|
695
|
+
d="m 273.29692,48.665497 c 0,0 -130.66434,-9.858649 -130.66434,-9.858649 L 116.21736,169.22225 c -9.23859,-5.31235 -33.790951,-9.59854 -49.480102,-9.50756 -27.276396,0.15818 -48.916422,10.81607 -48.475101,23.6374 0.441322,12.82132 22.873124,23.18139 50.149525,23.02322 25.77572,-0.14948 49.845828,-9.00109 51.691458,-20.85605 L 143.69896,71.672145 c 0,0 116.86507,5.728523 116.86507,5.728523 L 240.66029,177.58293 c -59.8807,-21.26165 -95.64677,2.00187 -95.20544,14.82319 0.44132,12.82132 22.87313,23.1814 50.14953,23.02322 24.20246,-0.14035 43.19158,-8.61511 47.05544,-19.44294 l 30.6371,-147.320903 z"
|
696
|
+
id="path6071"
|
697
|
+
sodipodi:nodetypes="cccccccccccccc" />
|
698
|
+
</clipPath>
|
699
|
+
<clipPath
|
700
|
+
clipPathUnits="userSpaceOnUse"
|
701
|
+
id="clipPath4933">
|
702
|
+
<path
|
703
|
+
style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2674925;marker:none;visibility:visible;display:inline;overflow:visible"
|
704
|
+
d="m 23.461731,22.506139 c 0,1.644577 -0.551831,3.034662 -2.902033,2.973157 -2.28621,-0.05983 -2.998404,-1.416364 -3.047314,-2.979308 -0.0282,-0.924199 -0.448771,-4.4116 4.03064,-6.925454 -1.479411,2.513854 1.918707,5.287026 1.918707,6.931605 z"
|
705
|
+
id="path4935"
|
706
|
+
sodipodi:nodetypes="czscc" />
|
707
|
+
</clipPath>
|
708
|
+
<clipPath
|
709
|
+
clipPathUnits="userSpaceOnUse"
|
710
|
+
id="clipPath5024">
|
711
|
+
<path
|
712
|
+
style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block"
|
713
|
+
d="m 105.34425,31.00775 -0.5,134.89807 c -10.19391,-3.45371 -35.35077,-2.85656 -50.86945,0.33875 -26.98001,5.55521 -46.31271,20.43475 -43.35318,33.09551 2.95954,12.66076 27.21146,18.52246 54.19148,12.96725 25.49564,-5.24958 47.59017,-18.81406 47.08547,-30.96656 l 0.96771,-117.86646 c 47.00266,0 34.49688,35.56847 74.85559,35.56847 -30.26906,1.828 -20.58605,-67.806 -82.37762,-68.03503 z"
|
714
|
+
id="path5026"
|
715
|
+
sodipodi:nodetypes="ccccccccc" />
|
716
|
+
</clipPath>
|
717
|
+
<linearGradient
|
718
|
+
id="linearGradient2522-7">
|
719
|
+
<stop
|
720
|
+
id="stop2524-2"
|
721
|
+
offset="0"
|
722
|
+
style="stop-color: rgb(187, 83, 0); stop-opacity: 1;" />
|
723
|
+
<stop
|
724
|
+
id="stop2526-4"
|
725
|
+
offset="1"
|
726
|
+
style="stop-color: rgb(206, 92, 0); stop-opacity: 0;" />
|
727
|
+
</linearGradient>
|
728
|
+
<linearGradient
|
729
|
+
id="linearGradient2773-5">
|
730
|
+
<stop
|
731
|
+
id="stop2775-8"
|
732
|
+
offset="0"
|
733
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" />
|
734
|
+
<stop
|
735
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"
|
736
|
+
offset="0.83333331"
|
737
|
+
id="stop1465-9" />
|
738
|
+
<stop
|
739
|
+
id="stop2777-5"
|
740
|
+
offset="1"
|
741
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" />
|
742
|
+
</linearGradient>
|
743
|
+
<linearGradient
|
744
|
+
inkscape:collect="always"
|
745
|
+
xlink:href="#linearGradient5625"
|
746
|
+
id="linearGradient5631"
|
747
|
+
x1="159.00543"
|
748
|
+
y1="216.25502"
|
749
|
+
x2="157.50327"
|
750
|
+
y2="198.58092"
|
751
|
+
gradientUnits="userSpaceOnUse" />
|
752
|
+
<clipPath
|
753
|
+
clipPathUnits="userSpaceOnUse"
|
754
|
+
id="clipPath5645">
|
755
|
+
<path
|
756
|
+
d="m -70,190.5 a 106.5,82.5 0 1 1 -213,0 106.5,82.5 0 1 1 213,0 z"
|
757
|
+
sodipodi:ry="82.5"
|
758
|
+
sodipodi:rx="106.5"
|
759
|
+
sodipodi:cy="190.5"
|
760
|
+
sodipodi:cx="-176.5"
|
761
|
+
id="path5647"
|
762
|
+
style="color:#000000;fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#f54d00;stroke-width:1.04322076;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
|
763
|
+
sodipodi:type="arc" />
|
764
|
+
</clipPath>
|
765
|
+
<radialGradient
|
766
|
+
inkscape:collect="always"
|
767
|
+
xlink:href="#linearGradient5669"
|
768
|
+
id="radialGradient5675"
|
769
|
+
cx="-108"
|
770
|
+
cy="182.35294"
|
771
|
+
fx="-108"
|
772
|
+
fy="182.35294"
|
773
|
+
r="13"
|
774
|
+
gradientTransform="matrix(1,0,0,0.46153846,0,102.30769)"
|
775
|
+
gradientUnits="userSpaceOnUse" />
|
776
|
+
<inkscape:perspective
|
777
|
+
id="perspective6244"
|
778
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
779
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
780
|
+
inkscape:vp_y="0 : 1000 : 0"
|
781
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
782
|
+
sodipodi:type="inkscape:persp3d" />
|
783
|
+
<inkscape:perspective
|
784
|
+
id="perspective6266"
|
785
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
786
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
787
|
+
inkscape:vp_y="0 : 1000 : 0"
|
788
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
789
|
+
sodipodi:type="inkscape:persp3d" />
|
790
|
+
<inkscape:perspective
|
791
|
+
id="perspective6288"
|
792
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
793
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
794
|
+
inkscape:vp_y="0 : 1000 : 0"
|
795
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
796
|
+
sodipodi:type="inkscape:persp3d" />
|
797
|
+
<inkscape:perspective
|
798
|
+
id="perspective6310"
|
799
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
800
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
801
|
+
inkscape:vp_y="0 : 1000 : 0"
|
802
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
803
|
+
sodipodi:type="inkscape:persp3d" />
|
804
|
+
<inkscape:perspective
|
805
|
+
id="perspective6332"
|
806
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
807
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
808
|
+
inkscape:vp_y="0 : 1000 : 0"
|
809
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
810
|
+
sodipodi:type="inkscape:persp3d" />
|
811
|
+
<inkscape:perspective
|
812
|
+
id="perspective6354"
|
813
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
814
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
815
|
+
inkscape:vp_y="0 : 1000 : 0"
|
816
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
817
|
+
sodipodi:type="inkscape:persp3d" />
|
818
|
+
<linearGradient
|
819
|
+
id="linearGradient5956-1">
|
820
|
+
<stop
|
821
|
+
id="stop5958-9"
|
822
|
+
offset="0"
|
823
|
+
style="stop-color:#e6e6e6;stop-opacity:1;" />
|
824
|
+
<stop
|
825
|
+
style="stop-color:#404040;stop-opacity:0.52525252;"
|
826
|
+
offset="0.5"
|
827
|
+
id="stop5964-6" />
|
828
|
+
<stop
|
829
|
+
id="stop5960-4"
|
830
|
+
offset="1"
|
831
|
+
style="stop-color:#ededed;stop-opacity:0.78823531;" />
|
832
|
+
</linearGradient>
|
833
|
+
<clipPath
|
834
|
+
clipPathUnits="userSpaceOnUse"
|
835
|
+
id="clipPath4359-8">
|
836
|
+
<path
|
837
|
+
inkscape:connector-curvature="0"
|
838
|
+
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
839
|
+
d="m 383.15625,310 c -2.90112,0.0247 -5.84294,0.15721 -8.78125,0.40625 C 311.69083,315.7191 265.09339,370.94084 270.40625,433.625 275.71911,496.3092 330.94082,542.90663 393.625,537.59375 456.30917,532.28089 502.90662,477.05917 497.59375,414.375 492.52994,354.62912 442.14563,309.49854 383.15625,310 z M 384,388 c 19.872,10e-6 36,16.128 36,36 0,19.872 -16.128,36 -36,36 -19.87199,0 -36,-16.128 -36,-36 0,-19.872 16.128,-36 36,-36 z"
|
840
|
+
id="path4361-0" />
|
841
|
+
</clipPath>
|
842
|
+
<linearGradient
|
843
|
+
y2="14.2033"
|
844
|
+
x2="35.391201"
|
845
|
+
y1="32.4165"
|
846
|
+
x1="12.2744"
|
847
|
+
gradientUnits="userSpaceOnUse"
|
848
|
+
id="linearGradient4573-8">
|
849
|
+
<stop
|
850
|
+
id="stop4575-1"
|
851
|
+
style="stop-color:#babdb6;stop-opacity:1"
|
852
|
+
offset="0" />
|
853
|
+
<stop
|
854
|
+
offset="0.25"
|
855
|
+
style="stop-color:#d9d9d9;stop-opacity:1;"
|
856
|
+
id="stop4577-0" />
|
857
|
+
<stop
|
858
|
+
id="stop4579-2"
|
859
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
860
|
+
offset="0.5" />
|
861
|
+
<stop
|
862
|
+
offset="1"
|
863
|
+
style="stop-color:#888a85;stop-opacity:1"
|
864
|
+
id="stop4581-2" />
|
865
|
+
</linearGradient>
|
866
|
+
<linearGradient
|
867
|
+
y2="14.2033"
|
868
|
+
x2="35.391201"
|
869
|
+
y1="32.4165"
|
870
|
+
x1="12.2744"
|
871
|
+
gradientUnits="userSpaceOnUse"
|
872
|
+
id="linearGradient5724-9">
|
873
|
+
<stop
|
874
|
+
id="stop5726-7"
|
875
|
+
style="stop-color:#f5f5f5;stop-opacity:1;"
|
876
|
+
offset="0" />
|
877
|
+
<stop
|
878
|
+
offset="0.5"
|
879
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
880
|
+
id="stop5728-5" />
|
881
|
+
<stop
|
882
|
+
id="stop5730-6"
|
883
|
+
style="stop-color:#d9d9d9;stop-opacity:1;"
|
884
|
+
offset="0.75" />
|
885
|
+
<stop
|
886
|
+
offset="1"
|
887
|
+
style="stop-color:#e8e8e8;stop-opacity:0;"
|
888
|
+
id="stop5732-4" />
|
889
|
+
</linearGradient>
|
890
|
+
<linearGradient
|
891
|
+
id="linearGradient6117-6">
|
892
|
+
<stop
|
893
|
+
id="stop6119-3"
|
894
|
+
offset="0"
|
895
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
896
|
+
<stop
|
897
|
+
id="stop6121-7"
|
898
|
+
offset="1"
|
899
|
+
style="stop-color:#333333;stop-opacity:0.26262626;" />
|
900
|
+
</linearGradient>
|
901
|
+
<linearGradient
|
902
|
+
id="linearGradient1081">
|
903
|
+
<stop
|
904
|
+
id="stop1083"
|
905
|
+
offset="0"
|
906
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
907
|
+
<stop
|
908
|
+
id="stop1085"
|
909
|
+
offset="1"
|
910
|
+
style="stop-color:#333333;stop-opacity:0.26262626;" />
|
911
|
+
</linearGradient>
|
912
|
+
<linearGradient
|
913
|
+
id="linearGradient1088">
|
914
|
+
<stop
|
915
|
+
id="stop1090"
|
916
|
+
offset="0"
|
917
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
918
|
+
<stop
|
919
|
+
id="stop1092"
|
920
|
+
offset="1"
|
921
|
+
style="stop-color:#333333;stop-opacity:0.26262626;" />
|
922
|
+
</linearGradient>
|
923
|
+
<linearGradient
|
924
|
+
id="linearGradient1095">
|
925
|
+
<stop
|
926
|
+
id="stop1097"
|
927
|
+
offset="0"
|
928
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
929
|
+
<stop
|
930
|
+
id="stop1099"
|
931
|
+
offset="1"
|
932
|
+
style="stop-color:#333333;stop-opacity:0.26262626;" />
|
933
|
+
</linearGradient>
|
934
|
+
<linearGradient
|
935
|
+
id="linearGradient5753-9">
|
936
|
+
<stop
|
937
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
938
|
+
offset="0"
|
939
|
+
id="stop5755-7" />
|
940
|
+
<stop
|
941
|
+
id="stop5761-4"
|
942
|
+
offset="0.5"
|
943
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
944
|
+
<stop
|
945
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
946
|
+
offset="0.75"
|
947
|
+
id="stop5763-9" />
|
948
|
+
<stop
|
949
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
950
|
+
offset="1"
|
951
|
+
id="stop5757-1" />
|
952
|
+
</linearGradient>
|
953
|
+
<linearGradient
|
954
|
+
id="linearGradient1118">
|
955
|
+
<stop
|
956
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
957
|
+
offset="0"
|
958
|
+
id="stop1120" />
|
959
|
+
<stop
|
960
|
+
id="stop1122"
|
961
|
+
offset="0.5"
|
962
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
963
|
+
<stop
|
964
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
965
|
+
offset="0.75"
|
966
|
+
id="stop1124" />
|
967
|
+
<stop
|
968
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
969
|
+
offset="1"
|
970
|
+
id="stop1126" />
|
971
|
+
</linearGradient>
|
972
|
+
<linearGradient
|
973
|
+
id="linearGradient5110-7">
|
974
|
+
<stop
|
975
|
+
style="stop-color:#000000;stop-opacity:0.4"
|
976
|
+
offset="0"
|
977
|
+
id="stop5112-0" />
|
978
|
+
<stop
|
979
|
+
style="stop-color:#ffffff;stop-opacity:1"
|
980
|
+
offset="1"
|
981
|
+
id="stop5114-6" />
|
982
|
+
</linearGradient>
|
983
|
+
<clipPath
|
984
|
+
clipPathUnits="userSpaceOnUse"
|
985
|
+
id="clipPath5197-0">
|
986
|
+
<g
|
987
|
+
transform="matrix(-0.04519923,-0.998978,0.998978,-0.04519923,316.33904,0.34975)"
|
988
|
+
id="g5199-8">
|
989
|
+
<text
|
990
|
+
xml:space="preserve"
|
991
|
+
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;font-family:Impact;-inkscape-font-specification:Impact Bold"
|
992
|
+
id="text5201-5"
|
993
|
+
sodipodi:linespacing="125%"
|
994
|
+
transform="translate(0,-330)"
|
995
|
+
x="106.65373"
|
996
|
+
y="-177.97882">Tango Media. Only capable of holding freely licensed content. Explodes in hard drives when trying to store proprietary software.</text>
|
997
|
+
<path
|
998
|
+
inkscape:connector-curvature="0"
|
999
|
+
style="fill:#000000;fill-rule:nonzero;stroke:none;display:inline;enable-background:new"
|
1000
|
+
d="m 144,-279 c -62.634319,0 -113,50.36572 -113,113 0,62.6343 50.365691,113 113,113 62.63423,-1e-5 113,-50.36571 113,-113 0,-62.63427 -50.36576,-113 -113,-113 z m 0,65 c 26.496,0 48,21.504 48,48 0,26.496 -21.504,48 -48,48 -26.496,-1e-5 -48.000004,-21.504 -48.000004,-48 1e-5,-26.496 21.504004,-48 48.000004,-48 z"
|
1001
|
+
id="path5205-3" />
|
1002
|
+
</g>
|
1003
|
+
</clipPath>
|
1004
|
+
<filter
|
1005
|
+
color-interpolation-filters="sRGB"
|
1006
|
+
inkscape:collect="always"
|
1007
|
+
id="filter3474-9">
|
1008
|
+
<feGaussianBlur
|
1009
|
+
inkscape:collect="always"
|
1010
|
+
stdDeviation="2.2600695"
|
1011
|
+
id="feGaussianBlur3476-4" />
|
1012
|
+
</filter>
|
1013
|
+
<linearGradient
|
1014
|
+
y2="14.2033"
|
1015
|
+
y1="32.4165"
|
1016
|
+
x2="35.391201"
|
1017
|
+
x1="12.2744"
|
1018
|
+
id="linearGradient4237-1"
|
1019
|
+
gradientUnits="userSpaceOnUse">
|
1020
|
+
<stop
|
1021
|
+
style="stop-color:#FBFBFB"
|
1022
|
+
offset="0"
|
1023
|
+
id="stop4239-5" />
|
1024
|
+
<stop
|
1025
|
+
style="stop-color:#B6B6B6"
|
1026
|
+
offset="0.5"
|
1027
|
+
id="stop4241-4" />
|
1028
|
+
<stop
|
1029
|
+
style="stop-color:#eeeeec;stop-opacity:1"
|
1030
|
+
offset="1"
|
1031
|
+
id="stop4243-1" />
|
1032
|
+
</linearGradient>
|
1033
|
+
<linearGradient
|
1034
|
+
id="linearGradient5844-5"
|
1035
|
+
gradientUnits="userSpaceOnUse"
|
1036
|
+
x1="12.2744"
|
1037
|
+
y1="32.4165"
|
1038
|
+
x2="35.391201"
|
1039
|
+
y2="14.2033">
|
1040
|
+
<stop
|
1041
|
+
offset="0"
|
1042
|
+
style="stop-color:#fbfbfb;stop-opacity:0;"
|
1043
|
+
id="stop5846-5" />
|
1044
|
+
<stop
|
1045
|
+
id="stop5848-4"
|
1046
|
+
style="stop-color:#e8e8e8;stop-opacity:0;"
|
1047
|
+
offset="0.30952382" />
|
1048
|
+
<stop
|
1049
|
+
offset="0.46209913"
|
1050
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
1051
|
+
id="stop5850-9" />
|
1052
|
+
<stop
|
1053
|
+
id="stop5859-8"
|
1054
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
1055
|
+
offset="0.54616135" />
|
1056
|
+
<stop
|
1057
|
+
id="stop5852-3"
|
1058
|
+
style="stop-color:#e3e3e3;stop-opacity:0;"
|
1059
|
+
offset="0.71428573" />
|
1060
|
+
<stop
|
1061
|
+
offset="1"
|
1062
|
+
style="stop-color:#d1d1d1;stop-opacity:0;"
|
1063
|
+
id="stop5854-8" />
|
1064
|
+
</linearGradient>
|
1065
|
+
<linearGradient
|
1066
|
+
gradientUnits="userSpaceOnUse"
|
1067
|
+
id="linearGradient3394-5"
|
1068
|
+
x1="12.2744"
|
1069
|
+
x2="35.391201"
|
1070
|
+
y1="32.4165"
|
1071
|
+
y2="14.2033">
|
1072
|
+
<stop
|
1073
|
+
id="stop3396-2"
|
1074
|
+
offset="0.0000000"
|
1075
|
+
style="stop-color:#fff307;stop-opacity:1.0000000;" />
|
1076
|
+
<stop
|
1077
|
+
id="stop3398-2"
|
1078
|
+
offset="0.50000000"
|
1079
|
+
style="stop-color:#166eff;stop-opacity:1.0000000;" />
|
1080
|
+
<stop
|
1081
|
+
id="stop3400-2"
|
1082
|
+
offset="1.0000000"
|
1083
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
1084
|
+
</linearGradient>
|
1085
|
+
<linearGradient
|
1086
|
+
gradientUnits="userSpaceOnUse"
|
1087
|
+
id="linearGradient3406-7"
|
1088
|
+
x1="12.2744"
|
1089
|
+
x2="35.391201"
|
1090
|
+
y1="32.4165"
|
1091
|
+
y2="14.2033">
|
1092
|
+
<stop
|
1093
|
+
id="stop3408-0"
|
1094
|
+
offset="0.0000000"
|
1095
|
+
style="stop-color:#b307ff;stop-opacity:0.82178217;" />
|
1096
|
+
<stop
|
1097
|
+
id="stop3410-3"
|
1098
|
+
offset="1.0000000"
|
1099
|
+
style="stop-color:#f0ff8b;stop-opacity:0.64356434;" />
|
1100
|
+
<stop
|
1101
|
+
id="stop3412-4"
|
1102
|
+
offset="1.0000000"
|
1103
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
1104
|
+
</linearGradient>
|
1105
|
+
<linearGradient
|
1106
|
+
gradientUnits="userSpaceOnUse"
|
1107
|
+
id="linearGradient3435-6"
|
1108
|
+
x1="12.2744"
|
1109
|
+
x2="35.391201"
|
1110
|
+
y1="32.4165"
|
1111
|
+
y2="14.2033">
|
1112
|
+
<stop
|
1113
|
+
id="stop3437-3"
|
1114
|
+
offset="0.0000000"
|
1115
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
1116
|
+
<stop
|
1117
|
+
id="stop3439-6"
|
1118
|
+
offset="1.0000000"
|
1119
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
1120
|
+
</linearGradient>
|
1121
|
+
<linearGradient
|
1122
|
+
gradientUnits="userSpaceOnUse"
|
1123
|
+
id="linearGradient1167"
|
1124
|
+
x1="12.2744"
|
1125
|
+
x2="35.391201"
|
1126
|
+
y1="32.4165"
|
1127
|
+
y2="14.2033">
|
1128
|
+
<stop
|
1129
|
+
id="stop1169"
|
1130
|
+
offset="0.0000000"
|
1131
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
1132
|
+
<stop
|
1133
|
+
id="stop1171"
|
1134
|
+
offset="1.0000000"
|
1135
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
1136
|
+
</linearGradient>
|
1137
|
+
<linearGradient
|
1138
|
+
gradientUnits="userSpaceOnUse"
|
1139
|
+
id="linearGradient1174"
|
1140
|
+
x1="12.2744"
|
1141
|
+
x2="35.391201"
|
1142
|
+
y1="32.4165"
|
1143
|
+
y2="14.2033">
|
1144
|
+
<stop
|
1145
|
+
id="stop1176"
|
1146
|
+
offset="0.0000000"
|
1147
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
1148
|
+
<stop
|
1149
|
+
id="stop1178"
|
1150
|
+
offset="1.0000000"
|
1151
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
1152
|
+
</linearGradient>
|
1153
|
+
<linearGradient
|
1154
|
+
inkscape:collect="always"
|
1155
|
+
id="linearGradient2730">
|
1156
|
+
<stop
|
1157
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
1158
|
+
offset="0"
|
1159
|
+
id="stop2732" />
|
1160
|
+
<stop
|
1161
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
1162
|
+
offset="1"
|
1163
|
+
id="stop2734" />
|
1164
|
+
</linearGradient>
|
1165
|
+
<linearGradient
|
1166
|
+
inkscape:collect="always"
|
1167
|
+
xlink:href="#linearGradient2730"
|
1168
|
+
id="linearGradient3510"
|
1169
|
+
gradientUnits="userSpaceOnUse"
|
1170
|
+
x1="163.4375"
|
1171
|
+
y1="148.21875"
|
1172
|
+
x2="179"
|
1173
|
+
y2="77" />
|
1174
|
+
<linearGradient
|
1175
|
+
inkscape:collect="always"
|
1176
|
+
xlink:href="#linearGradient5625"
|
1177
|
+
id="linearGradient1704"
|
1178
|
+
gradientUnits="userSpaceOnUse"
|
1179
|
+
x1="159.00543"
|
1180
|
+
y1="216.25502"
|
1181
|
+
x2="157.50327"
|
1182
|
+
y2="198.58092" />
|
1183
|
+
<linearGradient
|
1184
|
+
inkscape:collect="always"
|
1185
|
+
xlink:href="#linearGradient5625"
|
1186
|
+
id="linearGradient1714"
|
1187
|
+
gradientUnits="userSpaceOnUse"
|
1188
|
+
x1="159.00543"
|
1189
|
+
y1="216.25502"
|
1190
|
+
x2="157.50327"
|
1191
|
+
y2="198.58092" />
|
1192
|
+
<radialGradient
|
1193
|
+
inkscape:collect="always"
|
1194
|
+
xlink:href="#linearGradient6016"
|
1195
|
+
id="radialGradient1736"
|
1196
|
+
gradientUnits="userSpaceOnUse"
|
1197
|
+
gradientTransform="matrix(1.1273876,-0.07262356,0.03283417,0.5061061,-15.126596,94.990248)"
|
1198
|
+
cx="67.131371"
|
1199
|
+
cy="199.40643"
|
1200
|
+
fx="67.131371"
|
1201
|
+
fy="199.40643"
|
1202
|
+
r="55.921093" />
|
1203
|
+
<clipPath
|
1204
|
+
clipPathUnits="userSpaceOnUse"
|
1205
|
+
id="clipPath2510">
|
1206
|
+
<path
|
1207
|
+
sodipodi:nodetypes="ccssscccc"
|
1208
|
+
id="path2512"
|
1209
|
+
d="m 201.09656,416.5043 -0.5,134.89807 c -10.19391,-3.45371 -21.0687,-2.87794 -30.24939,-1.69678 -19.48847,2.50733 -36.39656,11.71607 -33.39087,22.93345 2.73921,10.22288 21.25214,14.56977 48.04719,8.18172 8.93827,-2.13092 21.73788,-7.66457 22.64739,-13.98344 l 0.96771,-117.86646 c 47.00266,0 34.49688,35.56847 74.85559,35.56847 -30.26906,1.828 -20.58605,-67.806 -82.37762,-68.03503 z"
|
1210
|
+
style="fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block"
|
1211
|
+
inkscape:connector-curvature="0" />
|
1212
|
+
</clipPath>
|
1213
|
+
<filter
|
1214
|
+
inkscape:collect="always"
|
1215
|
+
id="filter2530">
|
1216
|
+
<feGaussianBlur
|
1217
|
+
inkscape:collect="always"
|
1218
|
+
stdDeviation="1.3145457"
|
1219
|
+
id="feGaussianBlur2532" />
|
1220
|
+
</filter>
|
1221
|
+
<radialGradient
|
1222
|
+
inkscape:collect="always"
|
1223
|
+
xlink:href="#linearGradient5314-4"
|
1224
|
+
id="radialGradient5320-7"
|
1225
|
+
cx="156.5"
|
1226
|
+
cy="258"
|
1227
|
+
fx="156.5"
|
1228
|
+
fy="258"
|
1229
|
+
r="89.5"
|
1230
|
+
gradientTransform="matrix(1,0,0,0.2122905,0,203.22905)"
|
1231
|
+
gradientUnits="userSpaceOnUse" />
|
1232
|
+
<linearGradient
|
1233
|
+
inkscape:collect="always"
|
1234
|
+
id="linearGradient5314-4">
|
1235
|
+
<stop
|
1236
|
+
style="stop-color:#2e3436;stop-opacity:1;"
|
1237
|
+
offset="0"
|
1238
|
+
id="stop5316-1" />
|
1239
|
+
<stop
|
1240
|
+
style="stop-color:#2e3436;stop-opacity:0;"
|
1241
|
+
offset="1"
|
1242
|
+
id="stop5318-6" />
|
1243
|
+
</linearGradient>
|
1244
|
+
<clipPath
|
1245
|
+
clipPathUnits="userSpaceOnUse"
|
1246
|
+
id="clipPath2626">
|
1247
|
+
<path
|
1248
|
+
sodipodi:nodetypes="ccczzs"
|
1249
|
+
id="path2628"
|
1250
|
+
d="m 13.438424,13.355863 c 1.530009,2.06226 7.728822,7.396424 10.988415,10.988743 l 0.02709,-16.5291315 c 1.3e-5,-1.3112616 -1.574459,-1.6407193 -4.128882,-1.6406941 -2.467865,2.43e-5 -3.679033,0.6281048 -5.886798,2.6042469 -1.999519,1.7897437 -2.269426,2.8655817 -0.999831,4.5768357 z"
|
1251
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:0.34132761;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
1252
|
+
inkscape:connector-curvature="0" />
|
1253
|
+
</clipPath>
|
1254
|
+
<filter
|
1255
|
+
inkscape:collect="always"
|
1256
|
+
id="filter2642">
|
1257
|
+
<feGaussianBlur
|
1258
|
+
inkscape:collect="always"
|
1259
|
+
stdDeviation="0.59907852"
|
1260
|
+
id="feGaussianBlur2644" />
|
1261
|
+
</filter>
|
1262
|
+
<radialGradient
|
1263
|
+
inkscape:collect="always"
|
1264
|
+
xlink:href="#linearGradient2762"
|
1265
|
+
id="radialGradient2774"
|
1266
|
+
gradientUnits="userSpaceOnUse"
|
1267
|
+
gradientTransform="matrix(2.1889619,9.5604788e-8,-7.7861589e-8,1.7827147,8.3227222,119.87469)"
|
1268
|
+
cx="-4.7158127"
|
1269
|
+
cy="-152.43588"
|
1270
|
+
fx="-4.7158127"
|
1271
|
+
fy="-152.43588"
|
1272
|
+
r="51.25" />
|
1273
|
+
<mask
|
1274
|
+
maskUnits="userSpaceOnUse"
|
1275
|
+
id="mask2770">
|
1276
|
+
<rect
|
1277
|
+
style="color:#000000;fill:url(#radialGradient2774);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
1278
|
+
id="rect2772"
|
1279
|
+
width="102.5"
|
1280
|
+
height="137.25"
|
1281
|
+
x="-120.25"
|
1282
|
+
y="-224" />
|
1283
|
+
</mask>
|
1284
|
+
<linearGradient
|
1285
|
+
inkscape:collect="always"
|
1286
|
+
id="linearGradient2762-8">
|
1287
|
+
<stop
|
1288
|
+
style="stop-color:#000000;stop-opacity:1;"
|
1289
|
+
offset="0"
|
1290
|
+
id="stop2764-2" />
|
1291
|
+
<stop
|
1292
|
+
style="stop-color:#ffffff;stop-opacity:1"
|
1293
|
+
offset="1"
|
1294
|
+
id="stop2766-0" />
|
1295
|
+
</linearGradient>
|
1296
|
+
<clipPath
|
1297
|
+
clipPathUnits="userSpaceOnUse"
|
1298
|
+
id="clipPath2940">
|
1299
|
+
<path
|
1300
|
+
style="color:#000000;fill:none;stroke:#e17843;stroke-width:0.54435194;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
1301
|
+
d="M 45.485011,24.650406 C 45.489502,36.169162 36.087252,45.514052 24.497845,45.509535 12.908437,45.505018 3.4988962,36.152795 3.4944046,24.634039 3.489913,13.115282 12.892164,3.770392 24.481571,3.7749093 c 11.589407,0.00452 20.998948,9.3567397 21.00344,20.8754967 z"
|
1302
|
+
id="path2942"
|
1303
|
+
inkscape:connector-curvature="0" />
|
1304
|
+
</clipPath>
|
1305
|
+
<filter
|
1306
|
+
inkscape:collect="always"
|
1307
|
+
id="filter2964">
|
1308
|
+
<feGaussianBlur
|
1309
|
+
inkscape:collect="always"
|
1310
|
+
stdDeviation="0.52548081"
|
1311
|
+
id="feGaussianBlur2966" />
|
1312
|
+
</filter>
|
1313
|
+
<radialGradient
|
1314
|
+
inkscape:collect="always"
|
1315
|
+
xlink:href="#linearGradient3436"
|
1316
|
+
id="radialGradient3442"
|
1317
|
+
cx="-157.99718"
|
1318
|
+
cy="189.70802"
|
1319
|
+
fx="-157.99718"
|
1320
|
+
fy="189.70802"
|
1321
|
+
r="11.162659"
|
1322
|
+
gradientTransform="matrix(1,0,0,1.6589031,0,-120.43148)"
|
1323
|
+
gradientUnits="userSpaceOnUse" />
|
1324
|
+
<radialGradient
|
1325
|
+
inkscape:collect="always"
|
1326
|
+
xlink:href="#linearGradient3448"
|
1327
|
+
id="radialGradient3454"
|
1328
|
+
cx="-169.79938"
|
1329
|
+
cy="186.50612"
|
1330
|
+
fx="-169.79938"
|
1331
|
+
fy="186.50612"
|
1332
|
+
r="4.866712"
|
1333
|
+
gradientTransform="matrix(2.7798583,0,0,8.3915425,302.21884,-1371.4749)"
|
1334
|
+
gradientUnits="userSpaceOnUse" />
|
1335
|
+
<clipPath
|
1336
|
+
clipPathUnits="userSpaceOnUse"
|
1337
|
+
id="clipPath6015">
|
1338
|
+
<path
|
1339
|
+
sodipodi:nodetypes="ccczzs"
|
1340
|
+
id="path6017"
|
1341
|
+
d="m 24.58135,8.5262881 0,15.7773249 11.19494,-11.15627 C 36.717617,12.206016 36.012089,10.650914 34.178268,8.8170923 32.406587,7.0454117 31.086217,6.626796 28.082662,6.46047 25.362414,6.3098322 24.58135,6.9905478 24.58135,8.5262881 z"
|
1342
|
+
style="color:#000000;fill:none;stroke:#ae561c;stroke-width:0.34849483;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
1343
|
+
inkscape:connector-curvature="0" />
|
1344
|
+
</clipPath>
|
1345
|
+
<linearGradient
|
1346
|
+
inkscape:collect="always"
|
1347
|
+
id="linearGradient2646-60">
|
1348
|
+
<stop
|
1349
|
+
style="stop-color:#000000;stop-opacity:1;"
|
1350
|
+
offset="0"
|
1351
|
+
id="stop2648-6" />
|
1352
|
+
<stop
|
1353
|
+
style="stop-color:#000000;stop-opacity:0;"
|
1354
|
+
offset="1"
|
1355
|
+
id="stop2650-6" />
|
1356
|
+
</linearGradient>
|
1357
|
+
<clipPath
|
1358
|
+
clipPathUnits="userSpaceOnUse"
|
1359
|
+
id="clipPath2626-7">
|
1360
|
+
<path
|
1361
|
+
sodipodi:nodetypes="ccczzs"
|
1362
|
+
id="path2628-7"
|
1363
|
+
d="m 13.438424,13.355863 c 1.530009,2.06226 7.728822,7.396424 10.988415,10.988743 l 0.02709,-16.5291315 c 1.3e-5,-1.3112616 -1.574459,-1.6407193 -4.128882,-1.6406941 -2.467865,2.43e-5 -3.679033,0.6281048 -5.886798,2.6042469 -1.999519,1.7897437 -2.269426,2.8655817 -0.999831,4.5768357 z"
|
1364
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:0.34132761;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
1365
|
+
inkscape:connector-curvature="0" />
|
1366
|
+
</clipPath>
|
1367
|
+
<filter
|
1368
|
+
color-interpolation-filters="sRGB"
|
1369
|
+
inkscape:collect="always"
|
1370
|
+
id="filter2642-1">
|
1371
|
+
<feGaussianBlur
|
1372
|
+
inkscape:collect="always"
|
1373
|
+
stdDeviation="0.59907852"
|
1374
|
+
id="feGaussianBlur2644-6" />
|
1375
|
+
</filter>
|
1376
|
+
<radialGradient
|
1377
|
+
r="5.8939619"
|
1378
|
+
fy="9.6037779"
|
1379
|
+
fx="17.519264"
|
1380
|
+
cy="9.6037779"
|
1381
|
+
cx="17.519264"
|
1382
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1383
|
+
gradientUnits="userSpaceOnUse"
|
1384
|
+
id="radialGradient6038"
|
1385
|
+
xlink:href="#linearGradient2646-60"
|
1386
|
+
inkscape:collect="always" />
|
1387
|
+
<clipPath
|
1388
|
+
clipPathUnits="userSpaceOnUse"
|
1389
|
+
id="clipPath6449">
|
1390
|
+
<path
|
1391
|
+
style="color:#000000;fill:none;stroke:#ae561c;stroke-width:0.34849483;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
1392
|
+
d="m 8.8040241,24.696408 c 2.5788719,0.382055 10.8583649,-0.238784 15.7773249,0 L 12.734773,12.811161 c -0.941327,-0.941326 -2.308165,-0.04753 -4.1419858,1.786288 -1.7716806,1.771681 -2.1902964,3.09205 -2.3566221,6.095606 -0.1506379,2.720248 0.4279227,3.686326 2.567859,4.003353 z"
|
1393
|
+
id="path6451"
|
1394
|
+
sodipodi:nodetypes="ccczzs"
|
1395
|
+
inkscape:connector-curvature="0" />
|
1396
|
+
</clipPath>
|
1397
|
+
<linearGradient
|
1398
|
+
inkscape:collect="always"
|
1399
|
+
id="linearGradient2646-4">
|
1400
|
+
<stop
|
1401
|
+
style="stop-color:#000000;stop-opacity:1;"
|
1402
|
+
offset="0"
|
1403
|
+
id="stop2648-7" />
|
1404
|
+
<stop
|
1405
|
+
style="stop-color:#000000;stop-opacity:0;"
|
1406
|
+
offset="1"
|
1407
|
+
id="stop2650-79" />
|
1408
|
+
</linearGradient>
|
1409
|
+
<clipPath
|
1410
|
+
clipPathUnits="userSpaceOnUse"
|
1411
|
+
id="clipPath2626-9">
|
1412
|
+
<path
|
1413
|
+
sodipodi:nodetypes="ccczzs"
|
1414
|
+
id="path2628-1"
|
1415
|
+
d="m 13.438424,13.355863 c 1.530009,2.06226 7.728822,7.396424 10.988415,10.988743 l 0.02709,-16.5291315 c 1.3e-5,-1.3112616 -1.574459,-1.6407193 -4.128882,-1.6406941 -2.467865,2.43e-5 -3.679033,0.6281048 -5.886798,2.6042469 -1.999519,1.7897437 -2.269426,2.8655817 -0.999831,4.5768357 z"
|
1416
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:0.34132761;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
1417
|
+
inkscape:connector-curvature="0" />
|
1418
|
+
</clipPath>
|
1419
|
+
<filter
|
1420
|
+
color-interpolation-filters="sRGB"
|
1421
|
+
inkscape:collect="always"
|
1422
|
+
id="filter2642-4">
|
1423
|
+
<feGaussianBlur
|
1424
|
+
inkscape:collect="always"
|
1425
|
+
stdDeviation="0.59907852"
|
1426
|
+
id="feGaussianBlur2644-63" />
|
1427
|
+
</filter>
|
1428
|
+
<radialGradient
|
1429
|
+
r="5.8939619"
|
1430
|
+
fy="9.6037779"
|
1431
|
+
fx="17.519264"
|
1432
|
+
cy="9.6037779"
|
1433
|
+
cx="17.519264"
|
1434
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1435
|
+
gradientUnits="userSpaceOnUse"
|
1436
|
+
id="radialGradient6472"
|
1437
|
+
xlink:href="#linearGradient2646-4"
|
1438
|
+
inkscape:collect="always" />
|
1439
|
+
<radialGradient
|
1440
|
+
inkscape:collect="always"
|
1441
|
+
xlink:href="#linearGradient2762-8"
|
1442
|
+
id="radialGradient6587"
|
1443
|
+
gradientUnits="userSpaceOnUse"
|
1444
|
+
gradientTransform="matrix(2.0101777,-0.18624006,0.18650749,2.149352,61.479867,166.11438)"
|
1445
|
+
cx="-29.586737"
|
1446
|
+
cy="-167.494"
|
1447
|
+
fx="-29.586737"
|
1448
|
+
fy="-167.494"
|
1449
|
+
r="51.25" />
|
1450
|
+
<mask
|
1451
|
+
maskUnits="userSpaceOnUse"
|
1452
|
+
id="mask6583">
|
1453
|
+
<rect
|
1454
|
+
transform="matrix(0.99990965,0.01344185,0.01330504,0.99991148,0,0)"
|
1455
|
+
style="color:#000000;fill:url(#radialGradient6587);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
1456
|
+
id="rect6585"
|
1457
|
+
width="133.43913"
|
1458
|
+
height="180.5154"
|
1459
|
+
x="-126.05099"
|
1460
|
+
y="-252.44954" />
|
1461
|
+
</mask>
|
1462
|
+
<radialGradient
|
1463
|
+
inkscape:collect="always"
|
1464
|
+
xlink:href="#linearGradient2646"
|
1465
|
+
id="radialGradient6729"
|
1466
|
+
gradientUnits="userSpaceOnUse"
|
1467
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1468
|
+
cx="17.519264"
|
1469
|
+
cy="9.6037779"
|
1470
|
+
fx="17.519264"
|
1471
|
+
fy="9.6037779"
|
1472
|
+
r="5.8939618" />
|
1473
|
+
<radialGradient
|
1474
|
+
inkscape:collect="always"
|
1475
|
+
xlink:href="#linearGradient2646-60"
|
1476
|
+
id="radialGradient6731"
|
1477
|
+
gradientUnits="userSpaceOnUse"
|
1478
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1479
|
+
cx="22.352484"
|
1480
|
+
cy="10.509538"
|
1481
|
+
fx="22.352484"
|
1482
|
+
fy="10.509538"
|
1483
|
+
r="5.8939619" />
|
1484
|
+
<radialGradient
|
1485
|
+
inkscape:collect="always"
|
1486
|
+
xlink:href="#linearGradient2646-4"
|
1487
|
+
id="radialGradient6733"
|
1488
|
+
gradientUnits="userSpaceOnUse"
|
1489
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1490
|
+
cx="14.04755"
|
1491
|
+
cy="17.795752"
|
1492
|
+
fx="14.04755"
|
1493
|
+
fy="17.795752"
|
1494
|
+
r="5.8939619" />
|
1495
|
+
<linearGradient
|
1496
|
+
inkscape:collect="always"
|
1497
|
+
xlink:href="#linearGradient5679"
|
1498
|
+
id="linearGradient6735"
|
1499
|
+
gradientUnits="userSpaceOnUse"
|
1500
|
+
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.53158,7.18046)"
|
1501
|
+
x1="21.436686"
|
1502
|
+
y1="13.453218"
|
1503
|
+
x2="21.436686"
|
1504
|
+
y2="25.460827" />
|
1505
|
+
<linearGradient
|
1506
|
+
inkscape:collect="always"
|
1507
|
+
xlink:href="#linearGradient5495"
|
1508
|
+
id="linearGradient6737"
|
1509
|
+
gradientUnits="userSpaceOnUse"
|
1510
|
+
x1="24.061403"
|
1511
|
+
y1="14.889434"
|
1512
|
+
x2="25.633825"
|
1513
|
+
y2="25.486128" />
|
1514
|
+
<radialGradient
|
1515
|
+
inkscape:collect="always"
|
1516
|
+
xlink:href="#linearGradient2952"
|
1517
|
+
id="radialGradient6741"
|
1518
|
+
gradientUnits="userSpaceOnUse"
|
1519
|
+
gradientTransform="matrix(1.5567194,0.04900204,-0.04885231,1.5469314,-12.675068,-3.4935024)"
|
1520
|
+
cx="17.013964"
|
1521
|
+
cy="7.9955516"
|
1522
|
+
fx="17.013964"
|
1523
|
+
fy="7.9955516"
|
1524
|
+
r="20.995305" />
|
1525
|
+
<radialGradient
|
1526
|
+
inkscape:collect="always"
|
1527
|
+
xlink:href="#linearGradient2952"
|
1528
|
+
id="radialGradient6743"
|
1529
|
+
gradientUnits="userSpaceOnUse"
|
1530
|
+
gradientTransform="matrix(1.5567194,0.04900204,-0.04885231,1.5469314,-12.675068,-3.4935024)"
|
1531
|
+
cx="28.948936"
|
1532
|
+
cy="5.7242703"
|
1533
|
+
fx="28.948936"
|
1534
|
+
fy="5.7242703"
|
1535
|
+
r="20.995305" />
|
1536
|
+
<linearGradient
|
1537
|
+
gradientUnits="userSpaceOnUse"
|
1538
|
+
id="aigrd2"
|
1539
|
+
x1="12.2744"
|
1540
|
+
x2="35.391201"
|
1541
|
+
y1="32.4165"
|
1542
|
+
y2="14.2033">
|
1543
|
+
<stop
|
1544
|
+
id="stop3043"
|
1545
|
+
offset="0"
|
1546
|
+
style="stop-color:#FBFBFB" />
|
1547
|
+
<stop
|
1548
|
+
id="stop3045"
|
1549
|
+
offset="0.5"
|
1550
|
+
style="stop-color:#B6B6B6" />
|
1551
|
+
<stop
|
1552
|
+
id="stop3047"
|
1553
|
+
offset="1"
|
1554
|
+
style="stop-color:#E4E4E4" />
|
1555
|
+
</linearGradient>
|
1556
|
+
<linearGradient
|
1557
|
+
id="linearGradient4236">
|
1558
|
+
<stop
|
1559
|
+
id="stop4238"
|
1560
|
+
offset="0.0000000"
|
1561
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;" />
|
1562
|
+
<stop
|
1563
|
+
id="stop4240"
|
1564
|
+
offset="1.0000000"
|
1565
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;" />
|
1566
|
+
</linearGradient>
|
1567
|
+
<linearGradient
|
1568
|
+
id="linearGradient7295">
|
1569
|
+
<stop
|
1570
|
+
id="stop7297"
|
1571
|
+
offset="0.0000000"
|
1572
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;" />
|
1573
|
+
<stop
|
1574
|
+
id="stop7299"
|
1575
|
+
offset="1.0000000"
|
1576
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;" />
|
1577
|
+
</linearGradient>
|
1578
|
+
<linearGradient
|
1579
|
+
gradientUnits="userSpaceOnUse"
|
1580
|
+
id="linearGradient3394-56"
|
1581
|
+
x1="12.2744"
|
1582
|
+
x2="35.391201"
|
1583
|
+
y1="32.4165"
|
1584
|
+
y2="14.2033">
|
1585
|
+
<stop
|
1586
|
+
id="stop3396-9"
|
1587
|
+
offset="0.0000000"
|
1588
|
+
style="stop-color:#fff307;stop-opacity:1.0000000;" />
|
1589
|
+
<stop
|
1590
|
+
id="stop3398-6"
|
1591
|
+
offset="0.50000000"
|
1592
|
+
style="stop-color:#166eff;stop-opacity:1.0000000;" />
|
1593
|
+
<stop
|
1594
|
+
id="stop3400-3"
|
1595
|
+
offset="1.0000000"
|
1596
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
1597
|
+
</linearGradient>
|
1598
|
+
<linearGradient
|
1599
|
+
gradientUnits="userSpaceOnUse"
|
1600
|
+
id="linearGradient3406-71"
|
1601
|
+
x1="12.2744"
|
1602
|
+
x2="35.391201"
|
1603
|
+
y1="32.4165"
|
1604
|
+
y2="14.2033">
|
1605
|
+
<stop
|
1606
|
+
id="stop3408-8"
|
1607
|
+
offset="0.0000000"
|
1608
|
+
style="stop-color:#b307ff;stop-opacity:0.82178217;" />
|
1609
|
+
<stop
|
1610
|
+
id="stop3410-8"
|
1611
|
+
offset="1.0000000"
|
1612
|
+
style="stop-color:#f0ff8b;stop-opacity:0.64356434;" />
|
1613
|
+
<stop
|
1614
|
+
id="stop3412-9"
|
1615
|
+
offset="1.0000000"
|
1616
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
1617
|
+
</linearGradient>
|
1618
|
+
<linearGradient
|
1619
|
+
gradientUnits="userSpaceOnUse"
|
1620
|
+
id="linearGradient3421"
|
1621
|
+
x1="12.2744"
|
1622
|
+
x2="35.391201"
|
1623
|
+
y1="32.4165"
|
1624
|
+
y2="14.2033">
|
1625
|
+
<stop
|
1626
|
+
id="stop3423"
|
1627
|
+
offset="0.0000000"
|
1628
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
1629
|
+
<stop
|
1630
|
+
id="stop3427"
|
1631
|
+
offset="1.0000000"
|
1632
|
+
style="stop-color:#b8c04c;stop-opacity:0.0000000;" />
|
1633
|
+
</linearGradient>
|
1634
|
+
<linearGradient
|
1635
|
+
gradientUnits="userSpaceOnUse"
|
1636
|
+
id="linearGradient3435-7"
|
1637
|
+
x1="12.2744"
|
1638
|
+
x2="35.391201"
|
1639
|
+
y1="32.4165"
|
1640
|
+
y2="14.2033">
|
1641
|
+
<stop
|
1642
|
+
id="stop3437-2"
|
1643
|
+
offset="0.0000000"
|
1644
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
1645
|
+
<stop
|
1646
|
+
id="stop3439-7"
|
1647
|
+
offset="1.0000000"
|
1648
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
1649
|
+
</linearGradient>
|
1650
|
+
<linearGradient
|
1651
|
+
gradientUnits="userSpaceOnUse"
|
1652
|
+
id="linearGradient7320"
|
1653
|
+
x1="12.2744"
|
1654
|
+
x2="35.391201"
|
1655
|
+
y1="32.4165"
|
1656
|
+
y2="14.2033">
|
1657
|
+
<stop
|
1658
|
+
id="stop7322"
|
1659
|
+
offset="0.0000000"
|
1660
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
1661
|
+
<stop
|
1662
|
+
id="stop7324"
|
1663
|
+
offset="1.0000000"
|
1664
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
1665
|
+
</linearGradient>
|
1666
|
+
<linearGradient
|
1667
|
+
gradientUnits="userSpaceOnUse"
|
1668
|
+
id="linearGradient7327"
|
1669
|
+
x1="12.2744"
|
1670
|
+
x2="35.391201"
|
1671
|
+
y1="32.4165"
|
1672
|
+
y2="14.2033">
|
1673
|
+
<stop
|
1674
|
+
id="stop7329"
|
1675
|
+
offset="0.0000000"
|
1676
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
1677
|
+
<stop
|
1678
|
+
id="stop7331"
|
1679
|
+
offset="1.0000000"
|
1680
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
1681
|
+
</linearGradient>
|
1682
|
+
<radialGradient
|
1683
|
+
inkscape:collect="always"
|
1684
|
+
xlink:href="#linearGradient2646"
|
1685
|
+
id="radialGradient7707"
|
1686
|
+
gradientUnits="userSpaceOnUse"
|
1687
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1688
|
+
cx="17.519264"
|
1689
|
+
cy="9.6037779"
|
1690
|
+
fx="17.519264"
|
1691
|
+
fy="9.6037779"
|
1692
|
+
r="5.8939618" />
|
1693
|
+
<radialGradient
|
1694
|
+
inkscape:collect="always"
|
1695
|
+
xlink:href="#linearGradient2646-60"
|
1696
|
+
id="radialGradient7709"
|
1697
|
+
gradientUnits="userSpaceOnUse"
|
1698
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1699
|
+
cx="22.352484"
|
1700
|
+
cy="10.509538"
|
1701
|
+
fx="22.352484"
|
1702
|
+
fy="10.509538"
|
1703
|
+
r="5.8939619" />
|
1704
|
+
<radialGradient
|
1705
|
+
inkscape:collect="always"
|
1706
|
+
xlink:href="#linearGradient2646-4"
|
1707
|
+
id="radialGradient7711"
|
1708
|
+
gradientUnits="userSpaceOnUse"
|
1709
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1710
|
+
cx="14.04755"
|
1711
|
+
cy="17.795752"
|
1712
|
+
fx="14.04755"
|
1713
|
+
fy="17.795752"
|
1714
|
+
r="5.8939619" />
|
1715
|
+
<linearGradient
|
1716
|
+
inkscape:collect="always"
|
1717
|
+
xlink:href="#linearGradient5679"
|
1718
|
+
id="linearGradient7713"
|
1719
|
+
gradientUnits="userSpaceOnUse"
|
1720
|
+
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.53158,7.18046)"
|
1721
|
+
x1="21.436686"
|
1722
|
+
y1="13.453218"
|
1723
|
+
x2="21.436686"
|
1724
|
+
y2="25.460827" />
|
1725
|
+
<linearGradient
|
1726
|
+
inkscape:collect="always"
|
1727
|
+
xlink:href="#linearGradient5495"
|
1728
|
+
id="linearGradient7715"
|
1729
|
+
gradientUnits="userSpaceOnUse"
|
1730
|
+
x1="24.061403"
|
1731
|
+
y1="14.889434"
|
1732
|
+
x2="25.633825"
|
1733
|
+
y2="25.486128" />
|
1734
|
+
<radialGradient
|
1735
|
+
inkscape:collect="always"
|
1736
|
+
xlink:href="#linearGradient2952"
|
1737
|
+
id="radialGradient7721"
|
1738
|
+
gradientUnits="userSpaceOnUse"
|
1739
|
+
gradientTransform="matrix(1.5567194,0.04900204,-0.04885231,1.5469314,-12.675068,-3.4935024)"
|
1740
|
+
cx="28.948936"
|
1741
|
+
cy="5.7242703"
|
1742
|
+
fx="28.948936"
|
1743
|
+
fy="5.7242703"
|
1744
|
+
r="20.995305" />
|
1745
|
+
<radialGradient
|
1746
|
+
inkscape:collect="always"
|
1747
|
+
xlink:href="#linearGradient2646"
|
1748
|
+
id="radialGradient7761"
|
1749
|
+
gradientUnits="userSpaceOnUse"
|
1750
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1751
|
+
cx="17.519264"
|
1752
|
+
cy="9.6037779"
|
1753
|
+
fx="17.519264"
|
1754
|
+
fy="9.6037779"
|
1755
|
+
r="5.8939618" />
|
1756
|
+
<radialGradient
|
1757
|
+
inkscape:collect="always"
|
1758
|
+
xlink:href="#linearGradient2646-60"
|
1759
|
+
id="radialGradient7763"
|
1760
|
+
gradientUnits="userSpaceOnUse"
|
1761
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1762
|
+
cx="22.352484"
|
1763
|
+
cy="10.509538"
|
1764
|
+
fx="22.352484"
|
1765
|
+
fy="10.509538"
|
1766
|
+
r="5.8939619" />
|
1767
|
+
<radialGradient
|
1768
|
+
inkscape:collect="always"
|
1769
|
+
xlink:href="#linearGradient2646-4"
|
1770
|
+
id="radialGradient7765"
|
1771
|
+
gradientUnits="userSpaceOnUse"
|
1772
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1773
|
+
cx="14.04755"
|
1774
|
+
cy="17.795752"
|
1775
|
+
fx="14.04755"
|
1776
|
+
fy="17.795752"
|
1777
|
+
r="5.8939619" />
|
1778
|
+
<linearGradient
|
1779
|
+
inkscape:collect="always"
|
1780
|
+
xlink:href="#linearGradient5679"
|
1781
|
+
id="linearGradient7767"
|
1782
|
+
gradientUnits="userSpaceOnUse"
|
1783
|
+
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.53158,7.18046)"
|
1784
|
+
x1="21.436686"
|
1785
|
+
y1="13.453218"
|
1786
|
+
x2="21.436686"
|
1787
|
+
y2="25.460827" />
|
1788
|
+
<linearGradient
|
1789
|
+
inkscape:collect="always"
|
1790
|
+
xlink:href="#linearGradient5495"
|
1791
|
+
id="linearGradient7769"
|
1792
|
+
gradientUnits="userSpaceOnUse"
|
1793
|
+
x1="24.061403"
|
1794
|
+
y1="14.889434"
|
1795
|
+
x2="25.633825"
|
1796
|
+
y2="25.486128" />
|
1797
|
+
<linearGradient
|
1798
|
+
id="linearGradient2421-6">
|
1799
|
+
<stop
|
1800
|
+
id="stop2423-1"
|
1801
|
+
offset="0"
|
1802
|
+
style="stop-color: rgb(245, 121, 0); stop-opacity: 1;" />
|
1803
|
+
<stop
|
1804
|
+
style="stop-color: rgb(245, 121, 0); stop-opacity: 1;"
|
1805
|
+
offset="0.33333334"
|
1806
|
+
id="stop2437-3" />
|
1807
|
+
<stop
|
1808
|
+
id="stop2425-6"
|
1809
|
+
offset="1"
|
1810
|
+
style="stop-color: rgb(206, 92, 0); stop-opacity: 1;" />
|
1811
|
+
</linearGradient>
|
1812
|
+
<linearGradient
|
1813
|
+
id="linearGradient2490-1">
|
1814
|
+
<stop
|
1815
|
+
id="stop2492-0"
|
1816
|
+
offset="0"
|
1817
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0.738281;" />
|
1818
|
+
<stop
|
1819
|
+
id="stop2494-7"
|
1820
|
+
offset="1"
|
1821
|
+
style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" />
|
1822
|
+
</linearGradient>
|
1823
|
+
<radialGradient
|
1824
|
+
inkscape:collect="always"
|
1825
|
+
xlink:href="#linearGradient2646"
|
1826
|
+
id="radialGradient22335"
|
1827
|
+
gradientUnits="userSpaceOnUse"
|
1828
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1829
|
+
cx="17.519264"
|
1830
|
+
cy="9.6037779"
|
1831
|
+
fx="17.519264"
|
1832
|
+
fy="9.6037779"
|
1833
|
+
r="5.8939618" />
|
1834
|
+
<radialGradient
|
1835
|
+
inkscape:collect="always"
|
1836
|
+
xlink:href="#linearGradient2646-60"
|
1837
|
+
id="radialGradient22337"
|
1838
|
+
gradientUnits="userSpaceOnUse"
|
1839
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1840
|
+
cx="22.352484"
|
1841
|
+
cy="10.509538"
|
1842
|
+
fx="22.352484"
|
1843
|
+
fy="10.509538"
|
1844
|
+
r="5.8939619" />
|
1845
|
+
<radialGradient
|
1846
|
+
inkscape:collect="always"
|
1847
|
+
xlink:href="#linearGradient2646-4"
|
1848
|
+
id="radialGradient22339"
|
1849
|
+
gradientUnits="userSpaceOnUse"
|
1850
|
+
gradientTransform="matrix(2.9512095,0.13333868,-0.07565088,1.5394254,-33.45722,-10.578592)"
|
1851
|
+
cx="14.04755"
|
1852
|
+
cy="17.795752"
|
1853
|
+
fx="14.04755"
|
1854
|
+
fy="17.795752"
|
1855
|
+
r="5.8939619" />
|
1856
|
+
<linearGradient
|
1857
|
+
inkscape:collect="always"
|
1858
|
+
xlink:href="#linearGradient5679"
|
1859
|
+
id="linearGradient22341"
|
1860
|
+
gradientUnits="userSpaceOnUse"
|
1861
|
+
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.53158,7.18046)"
|
1862
|
+
x1="21.436686"
|
1863
|
+
y1="13.453218"
|
1864
|
+
x2="21.436686"
|
1865
|
+
y2="25.460827" />
|
1866
|
+
<linearGradient
|
1867
|
+
inkscape:collect="always"
|
1868
|
+
xlink:href="#linearGradient5495"
|
1869
|
+
id="linearGradient22343"
|
1870
|
+
gradientUnits="userSpaceOnUse"
|
1871
|
+
x1="24.061403"
|
1872
|
+
y1="14.889434"
|
1873
|
+
x2="25.633825"
|
1874
|
+
y2="25.486128" />
|
1875
|
+
<radialGradient
|
1876
|
+
inkscape:collect="always"
|
1877
|
+
xlink:href="#linearGradient2952"
|
1878
|
+
id="radialGradient22347"
|
1879
|
+
gradientUnits="userSpaceOnUse"
|
1880
|
+
gradientTransform="matrix(1.5567194,0.04900204,-0.04885231,1.5469314,-12.675068,-3.4935024)"
|
1881
|
+
cx="17.013964"
|
1882
|
+
cy="7.9955516"
|
1883
|
+
fx="17.013964"
|
1884
|
+
fy="7.9955516"
|
1885
|
+
r="20.995305" />
|
1886
|
+
<radialGradient
|
1887
|
+
inkscape:collect="always"
|
1888
|
+
xlink:href="#linearGradient2952"
|
1889
|
+
id="radialGradient22349"
|
1890
|
+
gradientUnits="userSpaceOnUse"
|
1891
|
+
gradientTransform="matrix(1.5567194,0.04900204,-0.04885231,1.5469314,-12.675068,-3.4935024)"
|
1892
|
+
cx="28.948936"
|
1893
|
+
cy="5.7242703"
|
1894
|
+
fx="28.948936"
|
1895
|
+
fy="5.7242703"
|
1896
|
+
r="20.995305" />
|
1897
|
+
<clipPath
|
1898
|
+
clipPathUnits="userSpaceOnUse"
|
1899
|
+
id="clipPath22418">
|
1900
|
+
<path
|
1901
|
+
d="m -157.5,164.25 c -6.39361,3.53188 -11.46767,9.39092 -14.0625,16.21875 -1.42692,3.75469 -2.1098,7.95217 -1,11.8125 0.73069,2.54163 2.23501,4.86361 4.3125,6.5 2.0775,1.6364 4.69966,2.5506 7.34375,2.5 3.05625,-0.0585 6.08319,-1.45178 8.0625,-3.78125 1.97931,-2.32948 2.88713,-5.55437 2.34375,-8.5625 -0.37317,-2.06583 -1.38717,-3.96997 -2.5,-5.75 -1.11283,-1.78003 -2.34656,-3.49531 -3.28125,-5.375 -2.06881,-4.16042 -2.51197,-9.09969 -1.21875,-13.5625 z"
|
1902
|
+
inkscape:href="#path2453-1"
|
1903
|
+
id="path22420"
|
1904
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:0.8175624;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible"
|
1905
|
+
xlink:href="#path2453-1"
|
1906
|
+
inkscape:original="M -157.5 164.25 C -163.89361 167.78188 -168.96767 173.64092 -171.5625 180.46875 C -172.98942 184.22344 -173.6723 188.42092 -172.5625 192.28125 C -171.83181 194.82288 -170.32749 197.14486 -168.25 198.78125 C -166.17251 200.41764 -163.55034 201.33186 -160.90625 201.28125 C -157.85 201.22275 -154.82306 199.82948 -152.84375 197.5 C -150.86444 195.17052 -149.95662 191.94563 -150.5 188.9375 C -150.87317 186.87167 -151.88717 184.96753 -153 183.1875 C -154.11283 181.40747 -155.34656 179.69219 -156.28125 177.8125 C -158.35006 173.65208 -158.79322 168.71281 -157.5 164.25 z "
|
1907
|
+
inkscape:radius="0"
|
1908
|
+
sodipodi:type="inkscape:offset" />
|
1909
|
+
</clipPath>
|
1910
|
+
<filter
|
1911
|
+
inkscape:collect="always"
|
1912
|
+
id="filter22422"
|
1913
|
+
x="-0.11209149"
|
1914
|
+
width="1.224183"
|
1915
|
+
y="-0.068917568"
|
1916
|
+
height="1.1378351">
|
1917
|
+
<feGaussianBlur
|
1918
|
+
inkscape:collect="always"
|
1919
|
+
stdDeviation="1.0634338"
|
1920
|
+
id="feGaussianBlur22424" />
|
1921
|
+
</filter>
|
1922
|
+
<radialGradient
|
1923
|
+
inkscape:collect="always"
|
1924
|
+
xlink:href="#linearGradient22426"
|
1925
|
+
id="radialGradient22432"
|
1926
|
+
cx="-160.5031"
|
1927
|
+
cy="192.8199"
|
1928
|
+
fx="-160.5031"
|
1929
|
+
fy="192.8199"
|
1930
|
+
r="11.384634"
|
1931
|
+
gradientTransform="matrix(4.4078935,4.3997187e-7,-2.6986351e-7,2.7036492,546.97752,-322.19946)"
|
1932
|
+
gradientUnits="userSpaceOnUse" />
|
1933
|
+
<inkscape:perspective
|
1934
|
+
id="perspective12277"
|
1935
|
+
inkscape:persp3d-origin="14.502729 : 10.331991 : 1"
|
1936
|
+
inkscape:vp_z="29.005459 : 15.497986 : 1"
|
1937
|
+
inkscape:vp_y="0 : 1000 : 0"
|
1938
|
+
inkscape:vp_x="0 : 15.497986 : 1"
|
1939
|
+
sodipodi:type="inkscape:persp3d" />
|
1940
|
+
<linearGradient
|
1941
|
+
gradientUnits="userSpaceOnUse"
|
1942
|
+
id="aigrd1"
|
1943
|
+
x1="14.9966"
|
1944
|
+
x2="32.511002"
|
1945
|
+
y1="11.1885"
|
1946
|
+
y2="34.307499">
|
1947
|
+
<stop
|
1948
|
+
id="stop3034"
|
1949
|
+
offset="0"
|
1950
|
+
style="stop-color:#EBEBEB" />
|
1951
|
+
<stop
|
1952
|
+
id="stop3036"
|
1953
|
+
offset="0.5"
|
1954
|
+
style="stop-color:#FFFFFF" />
|
1955
|
+
<stop
|
1956
|
+
id="stop3038"
|
1957
|
+
offset="1"
|
1958
|
+
style="stop-color:#EBEBEB" />
|
1959
|
+
</linearGradient>
|
1960
|
+
<linearGradient
|
1961
|
+
gradientUnits="userSpaceOnUse"
|
1962
|
+
id="aigrd2-2"
|
1963
|
+
x1="12.2744"
|
1964
|
+
x2="35.391201"
|
1965
|
+
y1="32.4165"
|
1966
|
+
y2="14.2033">
|
1967
|
+
<stop
|
1968
|
+
id="stop3043-1"
|
1969
|
+
offset="0"
|
1970
|
+
style="stop-color:#FBFBFB" />
|
1971
|
+
<stop
|
1972
|
+
id="stop3045-3"
|
1973
|
+
offset="0.5"
|
1974
|
+
style="stop-color:#B6B6B6" />
|
1975
|
+
<stop
|
1976
|
+
id="stop3047-3"
|
1977
|
+
offset="1"
|
1978
|
+
style="stop-color:#E4E4E4" />
|
1979
|
+
</linearGradient>
|
1980
|
+
<linearGradient
|
1981
|
+
id="linearGradient4236-95">
|
1982
|
+
<stop
|
1983
|
+
id="stop4238-3"
|
1984
|
+
offset="0.0000000"
|
1985
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;" />
|
1986
|
+
<stop
|
1987
|
+
id="stop4240-2"
|
1988
|
+
offset="1.0000000"
|
1989
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;" />
|
1990
|
+
</linearGradient>
|
1991
|
+
<linearGradient
|
1992
|
+
id="linearGradient23325">
|
1993
|
+
<stop
|
1994
|
+
id="stop23327"
|
1995
|
+
offset="0.0000000"
|
1996
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;" />
|
1997
|
+
<stop
|
1998
|
+
id="stop23329"
|
1999
|
+
offset="1.0000000"
|
2000
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;" />
|
2001
|
+
</linearGradient>
|
2002
|
+
<linearGradient
|
2003
|
+
gradientUnits="userSpaceOnUse"
|
2004
|
+
id="linearGradient3394-59"
|
2005
|
+
x1="12.2744"
|
2006
|
+
x2="35.391201"
|
2007
|
+
y1="32.4165"
|
2008
|
+
y2="14.2033">
|
2009
|
+
<stop
|
2010
|
+
id="stop3396-26"
|
2011
|
+
offset="0.0000000"
|
2012
|
+
style="stop-color:#fff307;stop-opacity:1.0000000;" />
|
2013
|
+
<stop
|
2014
|
+
id="stop3398-7"
|
2015
|
+
offset="0.50000000"
|
2016
|
+
style="stop-color:#166eff;stop-opacity:1.0000000;" />
|
2017
|
+
<stop
|
2018
|
+
id="stop3400-5"
|
2019
|
+
offset="1.0000000"
|
2020
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
2021
|
+
</linearGradient>
|
2022
|
+
<linearGradient
|
2023
|
+
gradientUnits="userSpaceOnUse"
|
2024
|
+
id="linearGradient3406-6"
|
2025
|
+
x1="12.2744"
|
2026
|
+
x2="35.391201"
|
2027
|
+
y1="32.4165"
|
2028
|
+
y2="14.2033">
|
2029
|
+
<stop
|
2030
|
+
id="stop3408-3"
|
2031
|
+
offset="0.0000000"
|
2032
|
+
style="stop-color:#b307ff;stop-opacity:0.82178217;" />
|
2033
|
+
<stop
|
2034
|
+
id="stop3410-1"
|
2035
|
+
offset="1.0000000"
|
2036
|
+
style="stop-color:#f0ff8b;stop-opacity:0.64356434;" />
|
2037
|
+
<stop
|
2038
|
+
id="stop3412-7"
|
2039
|
+
offset="1.0000000"
|
2040
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
2041
|
+
</linearGradient>
|
2042
|
+
<linearGradient
|
2043
|
+
gradientUnits="userSpaceOnUse"
|
2044
|
+
id="linearGradient3421-9"
|
2045
|
+
x1="12.2744"
|
2046
|
+
x2="35.391201"
|
2047
|
+
y1="32.4165"
|
2048
|
+
y2="14.2033">
|
2049
|
+
<stop
|
2050
|
+
id="stop3423-5"
|
2051
|
+
offset="0.0000000"
|
2052
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
2053
|
+
<stop
|
2054
|
+
id="stop3427-2"
|
2055
|
+
offset="1.0000000"
|
2056
|
+
style="stop-color:#b8c04c;stop-opacity:0.0000000;" />
|
2057
|
+
</linearGradient>
|
2058
|
+
<linearGradient
|
2059
|
+
gradientUnits="userSpaceOnUse"
|
2060
|
+
id="linearGradient3435-8"
|
2061
|
+
x1="12.2744"
|
2062
|
+
x2="35.391201"
|
2063
|
+
y1="32.4165"
|
2064
|
+
y2="14.2033">
|
2065
|
+
<stop
|
2066
|
+
id="stop3437-9"
|
2067
|
+
offset="0.0000000"
|
2068
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
2069
|
+
<stop
|
2070
|
+
id="stop3439-2"
|
2071
|
+
offset="1.0000000"
|
2072
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
2073
|
+
</linearGradient>
|
2074
|
+
<linearGradient
|
2075
|
+
gradientUnits="userSpaceOnUse"
|
2076
|
+
id="linearGradient23354"
|
2077
|
+
x1="12.2744"
|
2078
|
+
x2="35.391201"
|
2079
|
+
y1="32.4165"
|
2080
|
+
y2="14.2033">
|
2081
|
+
<stop
|
2082
|
+
id="stop23356"
|
2083
|
+
offset="0.0000000"
|
2084
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
2085
|
+
<stop
|
2086
|
+
id="stop23358"
|
2087
|
+
offset="1.0000000"
|
2088
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
2089
|
+
</linearGradient>
|
2090
|
+
<linearGradient
|
2091
|
+
gradientUnits="userSpaceOnUse"
|
2092
|
+
id="linearGradient23361"
|
2093
|
+
x1="12.2744"
|
2094
|
+
x2="35.391201"
|
2095
|
+
y1="32.4165"
|
2096
|
+
y2="14.2033">
|
2097
|
+
<stop
|
2098
|
+
id="stop23363"
|
2099
|
+
offset="0.0000000"
|
2100
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
2101
|
+
<stop
|
2102
|
+
id="stop23365"
|
2103
|
+
offset="1.0000000"
|
2104
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
2105
|
+
</linearGradient>
|
2106
|
+
<inkscape:perspective
|
2107
|
+
id="perspective12483"
|
2108
|
+
inkscape:persp3d-origin="10.999997 : 18.969167 : 1"
|
2109
|
+
inkscape:vp_z="21.999994 : 28.453751 : 1"
|
2110
|
+
inkscape:vp_y="0 : 1000 : 0"
|
2111
|
+
inkscape:vp_x="0 : 28.453751 : 1"
|
2112
|
+
sodipodi:type="inkscape:persp3d" />
|
2113
|
+
<linearGradient
|
2114
|
+
gradientUnits="userSpaceOnUse"
|
2115
|
+
id="aigrd2-64"
|
2116
|
+
x1="12.2744"
|
2117
|
+
x2="35.391201"
|
2118
|
+
y1="32.4165"
|
2119
|
+
y2="14.2033">
|
2120
|
+
<stop
|
2121
|
+
id="stop3043-7"
|
2122
|
+
offset="0"
|
2123
|
+
style="stop-color:#FBFBFB" />
|
2124
|
+
<stop
|
2125
|
+
id="stop3045-6"
|
2126
|
+
offset="0.5"
|
2127
|
+
style="stop-color:#B6B6B6" />
|
2128
|
+
<stop
|
2129
|
+
id="stop3047-4"
|
2130
|
+
offset="1"
|
2131
|
+
style="stop-color:#E4E4E4" />
|
2132
|
+
</linearGradient>
|
2133
|
+
<linearGradient
|
2134
|
+
id="linearGradient4236-2">
|
2135
|
+
<stop
|
2136
|
+
id="stop4238-37"
|
2137
|
+
offset="0.0000000"
|
2138
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;" />
|
2139
|
+
<stop
|
2140
|
+
id="stop4240-00"
|
2141
|
+
offset="1.0000000"
|
2142
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;" />
|
2143
|
+
</linearGradient>
|
2144
|
+
<linearGradient
|
2145
|
+
id="linearGradient23440">
|
2146
|
+
<stop
|
2147
|
+
id="stop23442"
|
2148
|
+
offset="0.0000000"
|
2149
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;" />
|
2150
|
+
<stop
|
2151
|
+
id="stop23444"
|
2152
|
+
offset="1.0000000"
|
2153
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;" />
|
2154
|
+
</linearGradient>
|
2155
|
+
<linearGradient
|
2156
|
+
gradientUnits="userSpaceOnUse"
|
2157
|
+
id="linearGradient3394-7"
|
2158
|
+
x1="12.2744"
|
2159
|
+
x2="35.391201"
|
2160
|
+
y1="32.4165"
|
2161
|
+
y2="14.2033">
|
2162
|
+
<stop
|
2163
|
+
id="stop3396-0"
|
2164
|
+
offset="0.0000000"
|
2165
|
+
style="stop-color:#fff307;stop-opacity:1.0000000;" />
|
2166
|
+
<stop
|
2167
|
+
id="stop3398-66"
|
2168
|
+
offset="0.50000000"
|
2169
|
+
style="stop-color:#166eff;stop-opacity:1.0000000;" />
|
2170
|
+
<stop
|
2171
|
+
id="stop3400-38"
|
2172
|
+
offset="1.0000000"
|
2173
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
2174
|
+
</linearGradient>
|
2175
|
+
<linearGradient
|
2176
|
+
gradientUnits="userSpaceOnUse"
|
2177
|
+
id="linearGradient3406-1"
|
2178
|
+
x1="12.2744"
|
2179
|
+
x2="35.391201"
|
2180
|
+
y1="32.4165"
|
2181
|
+
y2="14.2033">
|
2182
|
+
<stop
|
2183
|
+
id="stop3408-34"
|
2184
|
+
offset="0.0000000"
|
2185
|
+
style="stop-color:#b307ff;stop-opacity:0.82178217;" />
|
2186
|
+
<stop
|
2187
|
+
id="stop3410-14"
|
2188
|
+
offset="1.0000000"
|
2189
|
+
style="stop-color:#f0ff8b;stop-opacity:0.64356434;" />
|
2190
|
+
<stop
|
2191
|
+
id="stop3412-8"
|
2192
|
+
offset="1.0000000"
|
2193
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
2194
|
+
</linearGradient>
|
2195
|
+
<linearGradient
|
2196
|
+
gradientUnits="userSpaceOnUse"
|
2197
|
+
id="linearGradient3421-6"
|
2198
|
+
x1="12.2744"
|
2199
|
+
x2="35.391201"
|
2200
|
+
y1="32.4165"
|
2201
|
+
y2="14.2033">
|
2202
|
+
<stop
|
2203
|
+
id="stop3423-8"
|
2204
|
+
offset="0.0000000"
|
2205
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
2206
|
+
<stop
|
2207
|
+
id="stop3427-7"
|
2208
|
+
offset="1.0000000"
|
2209
|
+
style="stop-color:#b8c04c;stop-opacity:0.0000000;" />
|
2210
|
+
</linearGradient>
|
2211
|
+
<linearGradient
|
2212
|
+
gradientUnits="userSpaceOnUse"
|
2213
|
+
id="linearGradient3435-5"
|
2214
|
+
x1="12.2744"
|
2215
|
+
x2="35.391201"
|
2216
|
+
y1="32.4165"
|
2217
|
+
y2="14.2033">
|
2218
|
+
<stop
|
2219
|
+
id="stop3437-1"
|
2220
|
+
offset="0.0000000"
|
2221
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
2222
|
+
<stop
|
2223
|
+
id="stop3439-9"
|
2224
|
+
offset="1.0000000"
|
2225
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
2226
|
+
</linearGradient>
|
2227
|
+
<linearGradient
|
2228
|
+
gradientUnits="userSpaceOnUse"
|
2229
|
+
id="linearGradient23473"
|
2230
|
+
x1="12.2744"
|
2231
|
+
x2="35.391201"
|
2232
|
+
y1="32.4165"
|
2233
|
+
y2="14.2033">
|
2234
|
+
<stop
|
2235
|
+
id="stop23475"
|
2236
|
+
offset="0"
|
2237
|
+
style="stop-color:#FBFBFB" />
|
2238
|
+
<stop
|
2239
|
+
id="stop23477"
|
2240
|
+
offset="0.5"
|
2241
|
+
style="stop-color:#B6B6B6" />
|
2242
|
+
<stop
|
2243
|
+
id="stop23479"
|
2244
|
+
offset="1"
|
2245
|
+
style="stop-color:#E4E4E4" />
|
2246
|
+
</linearGradient>
|
2247
|
+
<linearGradient
|
2248
|
+
gradientUnits="userSpaceOnUse"
|
2249
|
+
id="linearGradient23482"
|
2250
|
+
x1="12.2744"
|
2251
|
+
x2="35.391201"
|
2252
|
+
y1="32.4165"
|
2253
|
+
y2="14.2033">
|
2254
|
+
<stop
|
2255
|
+
id="stop23484"
|
2256
|
+
offset="0.0000000"
|
2257
|
+
style="stop-color:#fff307;stop-opacity:1.0000000;" />
|
2258
|
+
<stop
|
2259
|
+
id="stop23486"
|
2260
|
+
offset="0.50000000"
|
2261
|
+
style="stop-color:#166eff;stop-opacity:1.0000000;" />
|
2262
|
+
<stop
|
2263
|
+
id="stop23488"
|
2264
|
+
offset="1.0000000"
|
2265
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
2266
|
+
</linearGradient>
|
2267
|
+
<linearGradient
|
2268
|
+
gradientUnits="userSpaceOnUse"
|
2269
|
+
id="linearGradient23491"
|
2270
|
+
x1="12.2744"
|
2271
|
+
x2="35.391201"
|
2272
|
+
y1="32.4165"
|
2273
|
+
y2="14.2033">
|
2274
|
+
<stop
|
2275
|
+
id="stop23493"
|
2276
|
+
offset="0.0000000"
|
2277
|
+
style="stop-color:#b307ff;stop-opacity:0.82178217;" />
|
2278
|
+
<stop
|
2279
|
+
id="stop23495"
|
2280
|
+
offset="1.0000000"
|
2281
|
+
style="stop-color:#f0ff8b;stop-opacity:0.64356434;" />
|
2282
|
+
<stop
|
2283
|
+
id="stop23497"
|
2284
|
+
offset="1.0000000"
|
2285
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
2286
|
+
</linearGradient>
|
2287
|
+
<linearGradient
|
2288
|
+
gradientUnits="userSpaceOnUse"
|
2289
|
+
id="linearGradient23500"
|
2290
|
+
x1="12.2744"
|
2291
|
+
x2="35.391201"
|
2292
|
+
y1="32.4165"
|
2293
|
+
y2="14.2033">
|
2294
|
+
<stop
|
2295
|
+
id="stop23502"
|
2296
|
+
offset="0.0000000"
|
2297
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
2298
|
+
<stop
|
2299
|
+
id="stop23504"
|
2300
|
+
offset="1.0000000"
|
2301
|
+
style="stop-color:#b8c04c;stop-opacity:0.0000000;" />
|
2302
|
+
</linearGradient>
|
2303
|
+
<linearGradient
|
2304
|
+
gradientUnits="userSpaceOnUse"
|
2305
|
+
id="linearGradient23507"
|
2306
|
+
x1="12.2744"
|
2307
|
+
x2="35.391201"
|
2308
|
+
y1="32.4165"
|
2309
|
+
y2="14.2033">
|
2310
|
+
<stop
|
2311
|
+
id="stop23509"
|
2312
|
+
offset="0.0000000"
|
2313
|
+
style="stop-color:#ffffc8;stop-opacity:1.0000000;" />
|
2314
|
+
<stop
|
2315
|
+
id="stop23511"
|
2316
|
+
offset="1.0000000"
|
2317
|
+
style="stop-color:#9a91ef;stop-opacity:0.0000000;" />
|
2318
|
+
</linearGradient>
|
2319
|
+
<linearGradient
|
2320
|
+
id="linearGradient23522">
|
2321
|
+
<stop
|
2322
|
+
id="stop23524"
|
2323
|
+
offset="0.0000000"
|
2324
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;" />
|
2325
|
+
<stop
|
2326
|
+
id="stop23526"
|
2327
|
+
offset="1.0000000"
|
2328
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;" />
|
2329
|
+
</linearGradient>
|
2330
|
+
<linearGradient
|
2331
|
+
id="linearGradient23529">
|
2332
|
+
<stop
|
2333
|
+
id="stop23531"
|
2334
|
+
offset="0.0000000"
|
2335
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;" />
|
2336
|
+
<stop
|
2337
|
+
id="stop23533"
|
2338
|
+
offset="1.0000000"
|
2339
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;" />
|
2340
|
+
</linearGradient>
|
2341
|
+
<linearGradient
|
2342
|
+
inkscape:collect="always"
|
2343
|
+
xlink:href="#linearGradient5679"
|
2344
|
+
id="linearGradient12741"
|
2345
|
+
gradientUnits="userSpaceOnUse"
|
2346
|
+
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.53158,7.18046)"
|
2347
|
+
x1="21.436686"
|
2348
|
+
y1="13.453218"
|
2349
|
+
x2="21.436686"
|
2350
|
+
y2="25.460827" />
|
2351
|
+
<linearGradient
|
2352
|
+
inkscape:collect="always"
|
2353
|
+
xlink:href="#linearGradient5495"
|
2354
|
+
id="linearGradient12743"
|
2355
|
+
gradientUnits="userSpaceOnUse"
|
2356
|
+
x1="24.061403"
|
2357
|
+
y1="14.889434"
|
2358
|
+
x2="25.633825"
|
2359
|
+
y2="25.486128" />
|
2360
|
+
<inkscape:perspective
|
2361
|
+
id="perspective12757"
|
2362
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
2363
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
2364
|
+
inkscape:vp_y="0 : 1000 : 0"
|
2365
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
2366
|
+
sodipodi:type="inkscape:persp3d" />
|
2367
|
+
<radialGradient
|
2368
|
+
inkscape:collect="always"
|
2369
|
+
xlink:href="#linearGradient12181-5"
|
2370
|
+
id="radialGradient12187-8"
|
2371
|
+
cx="326.8168"
|
2372
|
+
cy="85.207542"
|
2373
|
+
fx="326.8168"
|
2374
|
+
fy="85.207542"
|
2375
|
+
r="1.63605"
|
2376
|
+
gradientTransform="matrix(3.0221026,-0.84080995,1.7034055,6.1225092,-806.00011,-158.76002)"
|
2377
|
+
gradientUnits="userSpaceOnUse" />
|
2378
|
+
<linearGradient
|
2379
|
+
inkscape:collect="always"
|
2380
|
+
id="linearGradient12181-5">
|
2381
|
+
<stop
|
2382
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
2383
|
+
offset="0"
|
2384
|
+
id="stop12183-3" />
|
2385
|
+
<stop
|
2386
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
2387
|
+
offset="1"
|
2388
|
+
id="stop12185-2" />
|
2389
|
+
</linearGradient>
|
2390
|
+
<linearGradient
|
2391
|
+
inkscape:collect="always"
|
2392
|
+
xlink:href="#linearGradient5679"
|
2393
|
+
id="linearGradient13007"
|
2394
|
+
gradientUnits="userSpaceOnUse"
|
2395
|
+
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.53158,7.18046)"
|
2396
|
+
x1="21.436686"
|
2397
|
+
y1="13.453218"
|
2398
|
+
x2="21.436686"
|
2399
|
+
y2="25.460827" />
|
2400
|
+
<linearGradient
|
2401
|
+
inkscape:collect="always"
|
2402
|
+
xlink:href="#linearGradient5495"
|
2403
|
+
id="linearGradient13009"
|
2404
|
+
gradientUnits="userSpaceOnUse"
|
2405
|
+
x1="24.061403"
|
2406
|
+
y1="14.889434"
|
2407
|
+
x2="25.633825"
|
2408
|
+
y2="25.486128" />
|
2409
|
+
<linearGradient
|
2410
|
+
inkscape:collect="always"
|
2411
|
+
xlink:href="#linearGradient5679"
|
2412
|
+
id="linearGradient13217"
|
2413
|
+
gradientUnits="userSpaceOnUse"
|
2414
|
+
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.53158,7.18046)"
|
2415
|
+
x1="21.436686"
|
2416
|
+
y1="13.453218"
|
2417
|
+
x2="21.436686"
|
2418
|
+
y2="25.460827" />
|
2419
|
+
<linearGradient
|
2420
|
+
inkscape:collect="always"
|
2421
|
+
xlink:href="#linearGradient5495"
|
2422
|
+
id="linearGradient13219"
|
2423
|
+
gradientUnits="userSpaceOnUse"
|
2424
|
+
x1="24.061403"
|
2425
|
+
y1="14.889434"
|
2426
|
+
x2="25.633825"
|
2427
|
+
y2="25.486128" />
|
2428
|
+
<inkscape:perspective
|
2429
|
+
id="perspective13291"
|
2430
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
2431
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
2432
|
+
inkscape:vp_y="0 : 1000 : 0"
|
2433
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
2434
|
+
sodipodi:type="inkscape:persp3d" />
|
2435
|
+
<inkscape:perspective
|
2436
|
+
id="perspective13357"
|
2437
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
2438
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
2439
|
+
inkscape:vp_y="0 : 1000 : 0"
|
2440
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
2441
|
+
sodipodi:type="inkscape:persp3d" />
|
2442
|
+
<inkscape:perspective
|
2443
|
+
id="perspective13357-6"
|
2444
|
+
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
2445
|
+
inkscape:vp_z="1 : 0.5 : 1"
|
2446
|
+
inkscape:vp_y="0 : 1000 : 0"
|
2447
|
+
inkscape:vp_x="0 : 0.5 : 1"
|
2448
|
+
sodipodi:type="inkscape:persp3d" />
|
2449
|
+
<filter
|
2450
|
+
inkscape:collect="always"
|
2451
|
+
id="filter8384">
|
2452
|
+
<feGaussianBlur
|
2453
|
+
inkscape:collect="always"
|
2454
|
+
stdDeviation="2.9447791"
|
2455
|
+
id="feGaussianBlur8386" />
|
2456
|
+
</filter>
|
2457
|
+
<filter
|
2458
|
+
inkscape:collect="always"
|
2459
|
+
id="filter8402"
|
2460
|
+
x="-0.10574768"
|
2461
|
+
width="1.2114954"
|
2462
|
+
y="-0.0970362"
|
2463
|
+
height="1.1940724">
|
2464
|
+
<feGaussianBlur
|
2465
|
+
inkscape:collect="always"
|
2466
|
+
stdDeviation="8.8343373"
|
2467
|
+
id="feGaussianBlur8404" />
|
2468
|
+
</filter>
|
2469
|
+
<filter
|
2470
|
+
inkscape:collect="always"
|
2471
|
+
id="filter17718">
|
2472
|
+
<feGaussianBlur
|
2473
|
+
inkscape:collect="always"
|
2474
|
+
stdDeviation="0.98945784"
|
2475
|
+
id="feGaussianBlur17720" />
|
2476
|
+
</filter>
|
2477
|
+
<filter
|
2478
|
+
inkscape:collect="always"
|
2479
|
+
id="filter17771">
|
2480
|
+
<feGaussianBlur
|
2481
|
+
inkscape:collect="always"
|
2482
|
+
stdDeviation="1.623996"
|
2483
|
+
id="feGaussianBlur17773" />
|
2484
|
+
</filter>
|
2485
|
+
<filter
|
2486
|
+
inkscape:collect="always"
|
2487
|
+
id="filter17787">
|
2488
|
+
<feGaussianBlur
|
2489
|
+
inkscape:collect="always"
|
2490
|
+
stdDeviation="1.2991968"
|
2491
|
+
id="feGaussianBlur17789" />
|
2492
|
+
</filter>
|
2493
|
+
</defs>
|
2494
|
+
<g
|
2495
|
+
id="layer1"
|
2496
|
+
inkscape:groupmode="layer"
|
2497
|
+
inkscape:label="artwork:media-optical"
|
2498
|
+
style="display:inline">
|
2499
|
+
<g
|
2500
|
+
id="layer6"
|
2501
|
+
inkscape:groupmode="layer"
|
2502
|
+
inkscape:label="baseplate"
|
2503
|
+
style="display:none">
|
2504
|
+
<rect
|
2505
|
+
height="48"
|
2506
|
+
id="rect6284"
|
2507
|
+
inkscape:label="48x48"
|
2508
|
+
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2509
|
+
width="48"
|
2510
|
+
x="296"
|
2511
|
+
y="50" />
|
2512
|
+
<rect
|
2513
|
+
height="32"
|
2514
|
+
id="rect6592"
|
2515
|
+
inkscape:label="32x32"
|
2516
|
+
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2517
|
+
width="32"
|
2518
|
+
x="303"
|
2519
|
+
y="126" />
|
2520
|
+
<rect
|
2521
|
+
height="22"
|
2522
|
+
id="rect6749"
|
2523
|
+
inkscape:label="22x22"
|
2524
|
+
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2525
|
+
width="22"
|
2526
|
+
x="303"
|
2527
|
+
y="177" />
|
2528
|
+
<rect
|
2529
|
+
height="16"
|
2530
|
+
id="rect6833"
|
2531
|
+
inkscape:label="16x16"
|
2532
|
+
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2533
|
+
width="16"
|
2534
|
+
x="303"
|
2535
|
+
y="219" />
|
2536
|
+
<rect
|
2537
|
+
height="24"
|
2538
|
+
id="rect8104"
|
2539
|
+
inkscape:label="24x24"
|
2540
|
+
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2541
|
+
width="24"
|
2542
|
+
x="302"
|
2543
|
+
y="176" />
|
2544
|
+
<rect
|
2545
|
+
height="256"
|
2546
|
+
id="rect6282"
|
2547
|
+
inkscape:label="256x256"
|
2548
|
+
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2549
|
+
width="256"
|
2550
|
+
x="16"
|
2551
|
+
y="36"
|
2552
|
+
inkscape:export-filename="/home/lapo/Scrivania/cd.png"
|
2553
|
+
inkscape:export-xdpi="90"
|
2554
|
+
inkscape:export-ydpi="90" />
|
2555
|
+
<text
|
2556
|
+
id="context"
|
2557
|
+
inkscape:label="context"
|
2558
|
+
style="font-size:18.30070686px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Bitstream Vera Sans"
|
2559
|
+
x="20.970737"
|
2560
|
+
xml:space="preserve"
|
2561
|
+
y="21.513618"><tspan
|
2562
|
+
id="tspan2716"
|
2563
|
+
sodipodi:role="line"
|
2564
|
+
x="20.970737"
|
2565
|
+
y="21.513618">apps</tspan></text>
|
2566
|
+
<text
|
2567
|
+
id="icon-name"
|
2568
|
+
inkscape:label="icon-name"
|
2569
|
+
sodipodi:linespacing="125%"
|
2570
|
+
style="font-size:18.30070686px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
|
2571
|
+
x="191.97073"
|
2572
|
+
xml:space="preserve"
|
2573
|
+
y="21.513618"><tspan
|
2574
|
+
id="tspan3023"
|
2575
|
+
sodipodi:role="line"
|
2576
|
+
x="191.97073"
|
2577
|
+
y="21.513618">gtk3-demo</tspan></text>
|
2578
|
+
<path
|
2579
|
+
style="opacity:0.4510002;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2580
|
+
d="m 16,36 0,256 18,0 220,0 18,0 0,-18 0,-238 -18,0 0,238 -220,0 0,-238 -18,0 z"
|
2581
|
+
id="rect10603"
|
2582
|
+
inkscape:connector-curvature="0" />
|
2583
|
+
<rect
|
2584
|
+
inkscape:export-ydpi="90"
|
2585
|
+
inkscape:export-xdpi="90"
|
2586
|
+
inkscape:export-filename="/home/lapo/Scrivania/cd.png"
|
2587
|
+
y="38.816284"
|
2588
|
+
x="-538"
|
2589
|
+
width="512"
|
2590
|
+
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2591
|
+
inkscape:label="256x256"
|
2592
|
+
id="rect17807"
|
2593
|
+
height="512" />
|
2594
|
+
</g>
|
2595
|
+
<g
|
2596
|
+
inkscape:groupmode="layer"
|
2597
|
+
id="layer2"
|
2598
|
+
inkscape:label="hires">
|
2599
|
+
<g
|
2600
|
+
id="g17679"
|
2601
|
+
transform="matrix(1.011355,0,0,1.011355,0.4017933,-4.910467)">
|
2602
|
+
<path
|
2603
|
+
style="opacity:0.53469388;fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8402);enable-background:new"
|
2604
|
+
d="m 40.5,90 5,119.5 72,68 115,-48 L 241,109 155.5,59 z"
|
2605
|
+
id="path8388"
|
2606
|
+
inkscape:connector-curvature="0" />
|
2607
|
+
<path
|
2608
|
+
inkscape:connector-curvature="0"
|
2609
|
+
id="path7588"
|
2610
|
+
d="m 40.5,89 5,119.5 72,68 115,-48 L 241,108 155.5,58 z"
|
2611
|
+
style="opacity:0.53469388;fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8384);enable-background:new" />
|
2612
|
+
<g
|
2613
|
+
transform="matrix(2.270162,0,0,2.270162,-4.2860217,19.388834)"
|
2614
|
+
id="layer1-2"
|
2615
|
+
style="display:inline;enable-background:new">
|
2616
|
+
<path
|
2617
|
+
inkscape:connector-curvature="0"
|
2618
|
+
d="M 20.88413,30.82696 53.816977,55.527708 107.33282,39.060543 70.587303,17.177763 20.88413,30.82696 z"
|
2619
|
+
id="path6976"
|
2620
|
+
style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2621
|
+
<path
|
2622
|
+
inkscape:connector-curvature="0"
|
2623
|
+
d="m 22.94243,82.287118 -2.0583,-51.460158 32.932847,24.700748 0,55.577152 L 22.94243,82.287118 z"
|
2624
|
+
id="path6978"
|
2625
|
+
style="fill:#e40000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2626
|
+
<path
|
2627
|
+
inkscape:connector-curvature="0"
|
2628
|
+
d="m 53.816977,111.10486 49.399213,-20.58416 4.11663,-51.460157 -53.515843,16.467165 0,55.577152 z"
|
2629
|
+
id="path6980"
|
2630
|
+
style="fill:#7fe719;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2631
|
+
<path
|
2632
|
+
inkscape:connector-curvature="0"
|
2633
|
+
d="M 23.216626,81.319479 70.48573,67.361442 103.38422,90.444516"
|
2634
|
+
id="path6982"
|
2635
|
+
style="fill:none;stroke:#ffffff;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
2636
|
+
<path
|
2637
|
+
inkscape:connector-curvature="0"
|
2638
|
+
d="m 70.434539,17.875593 0,49.109284"
|
2639
|
+
id="path6984"
|
2640
|
+
style="fill:#babdb6;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
2641
|
+
</g>
|
2642
|
+
</g>
|
2643
|
+
<g
|
2644
|
+
transform="matrix(2.02271,0,0,2.02271,-569.19642,-43.00464)"
|
2645
|
+
id="g17809">
|
2646
|
+
<path
|
2647
|
+
inkscape:connector-curvature="0"
|
2648
|
+
id="path17811"
|
2649
|
+
d="m 40.5,90 5,119.5 72,68 115,-48 L 241,109 155.5,59 z"
|
2650
|
+
style="opacity:0.53469388;fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8402);enable-background:new" />
|
2651
|
+
<path
|
2652
|
+
style="opacity:0.53469388;fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8384);enable-background:new"
|
2653
|
+
d="m 40.5,89 5,119.5 72,68 115,-48 L 241,108 155.5,58 z"
|
2654
|
+
id="path17813"
|
2655
|
+
inkscape:connector-curvature="0" />
|
2656
|
+
<g
|
2657
|
+
style="display:inline;enable-background:new"
|
2658
|
+
id="g17815"
|
2659
|
+
transform="matrix(2.270162,0,0,2.270162,-4.2860217,19.388834)">
|
2660
|
+
<path
|
2661
|
+
style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2662
|
+
id="path17817"
|
2663
|
+
d="M 20.88413,30.82696 53.816977,55.527708 107.33282,39.060543 70.587303,17.177763 20.88413,30.82696 z"
|
2664
|
+
inkscape:connector-curvature="0" />
|
2665
|
+
<path
|
2666
|
+
style="fill:#e40000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2667
|
+
id="path17819"
|
2668
|
+
d="m 22.94243,82.287118 -2.0583,-51.460158 32.932847,24.700748 0,55.577152 L 22.94243,82.287118 z"
|
2669
|
+
inkscape:connector-curvature="0" />
|
2670
|
+
<path
|
2671
|
+
style="fill:#7fe719;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2672
|
+
id="path17821"
|
2673
|
+
d="m 53.816977,111.10486 49.399213,-20.58416 4.11663,-51.460157 -53.515843,16.467165 0,55.577152 z"
|
2674
|
+
inkscape:connector-curvature="0" />
|
2675
|
+
<path
|
2676
|
+
style="fill:none;stroke:#ffffff;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
2677
|
+
id="path17823"
|
2678
|
+
d="M 23.216626,81.319479 70.48573,67.361442 103.38422,90.444516"
|
2679
|
+
inkscape:connector-curvature="0" />
|
2680
|
+
<path
|
2681
|
+
style="fill:#babdb6;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
2682
|
+
id="path17825"
|
2683
|
+
d="m 70.434539,17.875593 0,49.109284"
|
2684
|
+
inkscape:connector-curvature="0" />
|
2685
|
+
</g>
|
2686
|
+
</g>
|
2687
|
+
</g>
|
2688
|
+
<g
|
2689
|
+
inkscape:groupmode="layer"
|
2690
|
+
id="layer3"
|
2691
|
+
inkscape:label="lowres">
|
2692
|
+
<g
|
2693
|
+
id="g17722">
|
2694
|
+
<path
|
2695
|
+
sodipodi:nodetypes="ccccccc"
|
2696
|
+
inkscape:connector-curvature="0"
|
2697
|
+
id="path17708"
|
2698
|
+
d="m 300,59.999999 0.0625,22.437501 15.5,13.3125 23.5,-8.875 L 339,63.999999 322.75,53.937499 z"
|
2699
|
+
style="opacity:0.47346939;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter17718)" />
|
2700
|
+
<g
|
2701
|
+
transform="matrix(0.45064623,0,0,0.45064623,290.98476,45.227875)"
|
2702
|
+
id="layer1-2-2"
|
2703
|
+
style="display:inline;enable-background:new">
|
2704
|
+
<path
|
2705
|
+
sodipodi:nodetypes="ccccc"
|
2706
|
+
inkscape:connector-curvature="0"
|
2707
|
+
d="M 20.88413,30.82696 54.307319,56.487484 105.37145,40.041227 67.841387,18.256516 z"
|
2708
|
+
id="path6976-8"
|
2709
|
+
style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2710
|
+
<path
|
2711
|
+
sodipodi:nodetypes="ccccc"
|
2712
|
+
inkscape:connector-curvature="0"
|
2713
|
+
d="M 21.177198,81.306434 20.88413,30.82696 l 33.487606,26.019146 0.03365,52.905504 z"
|
2714
|
+
id="path6978-0"
|
2715
|
+
style="fill:#e40000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2716
|
+
<path
|
2717
|
+
sodipodi:nodetypes="ccccc"
|
2718
|
+
inkscape:connector-curvature="0"
|
2719
|
+
d="M 54.510426,109.71796 105.3737,89.932289 105.37145,39.845091 54.510426,56.250725 z"
|
2720
|
+
id="path6980-8"
|
2721
|
+
style="fill:#7fe719;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.12364459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2722
|
+
<path
|
2723
|
+
sodipodi:nodetypes="ccc"
|
2724
|
+
inkscape:connector-curvature="0"
|
2725
|
+
d="M 23.216626,81.319479 67.249471,66.8711 103.38422,90.444516"
|
2726
|
+
id="path6982-2"
|
2727
|
+
style="fill:none;stroke:#ffffff;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
2728
|
+
<path
|
2729
|
+
inkscape:connector-curvature="0"
|
2730
|
+
d="m 67.198295,17.973661 0,49.109284"
|
2731
|
+
id="path6984-5"
|
2732
|
+
style="fill:#babdb6;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
2733
|
+
</g>
|
2734
|
+
</g>
|
2735
|
+
<g
|
2736
|
+
id="g17731"
|
2737
|
+
transform="matrix(0.6583064,0,0,0.6583064,108.76773,93.275532)">
|
2738
|
+
<path
|
2739
|
+
style="opacity:0.55510203999999996;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter17787)"
|
2740
|
+
d="m 300,60.805598 0.0625,22.437501 15.5,13.3125 23.5,-8.875 L 339,64.805598 322.75,54.743098 z"
|
2741
|
+
id="path17733"
|
2742
|
+
inkscape:connector-curvature="0"
|
2743
|
+
sodipodi:nodetypes="ccccccc" />
|
2744
|
+
<g
|
2745
|
+
style="display:inline;enable-background:new"
|
2746
|
+
id="g17735"
|
2747
|
+
transform="matrix(0.45064623,0,0,0.45064623,290.98476,45.227875)">
|
2748
|
+
<path
|
2749
|
+
style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.22592115;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2750
|
+
id="path17737"
|
2751
|
+
d="M 20.88413,30.82696 54.307319,56.487484 105.37145,40.041227 67.841387,18.256516 z"
|
2752
|
+
inkscape:connector-curvature="0"
|
2753
|
+
sodipodi:nodetypes="ccccc" />
|
2754
|
+
<path
|
2755
|
+
style="fill:#e40000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.22592115;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2756
|
+
id="path17739"
|
2757
|
+
d="M 21.177198,81.306434 20.88413,30.82696 l 33.487606,26.019146 0.03365,52.905504 z"
|
2758
|
+
inkscape:connector-curvature="0"
|
2759
|
+
sodipodi:nodetypes="ccccc" />
|
2760
|
+
<path
|
2761
|
+
style="fill:#7fe719;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.22592115;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2762
|
+
id="path17741"
|
2763
|
+
d="M 54.510426,109.71796 105.3737,89.932289 105.37145,39.845091 54.510426,56.250725 z"
|
2764
|
+
inkscape:connector-curvature="0"
|
2765
|
+
sodipodi:nodetypes="ccccc" />
|
2766
|
+
<path
|
2767
|
+
style="fill:none;stroke:#ffffff;stroke-width:1.89881182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
2768
|
+
id="path17743"
|
2769
|
+
d="M 23.216626,81.319479 67.249471,66.8711 103.38422,90.444516"
|
2770
|
+
inkscape:connector-curvature="0"
|
2771
|
+
sodipodi:nodetypes="ccc" />
|
2772
|
+
<path
|
2773
|
+
style="fill:#babdb6;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.89881182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
2774
|
+
id="path17745"
|
2775
|
+
d="m 67.198295,17.973661 0,49.109284"
|
2776
|
+
inkscape:connector-curvature="0" />
|
2777
|
+
</g>
|
2778
|
+
</g>
|
2779
|
+
<g
|
2780
|
+
transform="matrix(0.52497154,0,0,0.5249716,146.75519,148.48904)"
|
2781
|
+
id="g17747">
|
2782
|
+
<path
|
2783
|
+
sodipodi:nodetypes="ccccccc"
|
2784
|
+
inkscape:connector-curvature="0"
|
2785
|
+
id="path17749"
|
2786
|
+
d="m 300,60.336735 0.0625,22.437501 15.5,13.3125 23.5,-8.875 L 339,64.336735 322.75,54.274235 z"
|
2787
|
+
style="opacity:0.61632649;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter17771)" />
|
2788
|
+
<g
|
2789
|
+
transform="matrix(0.45064623,0,0,0.45064623,290.98476,45.227875)"
|
2790
|
+
id="g17751"
|
2791
|
+
style="display:inline;enable-background:new">
|
2792
|
+
<path
|
2793
|
+
sodipodi:nodetypes="ccccc"
|
2794
|
+
inkscape:connector-curvature="0"
|
2795
|
+
d="M 20.88413,30.82696 54.307319,56.487484 105.37145,40.041227 67.841387,18.256516 z"
|
2796
|
+
id="path17753"
|
2797
|
+
style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.04525661;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2798
|
+
<path
|
2799
|
+
sodipodi:nodetypes="ccccc"
|
2800
|
+
inkscape:connector-curvature="0"
|
2801
|
+
d="M 21.177198,81.306434 20.88413,30.82696 l 33.487606,26.019146 0.03365,52.905504 z"
|
2802
|
+
id="path17755"
|
2803
|
+
style="fill:#e40000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.04525661;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2804
|
+
<path
|
2805
|
+
sodipodi:nodetypes="ccccc"
|
2806
|
+
inkscape:connector-curvature="0"
|
2807
|
+
d="M 54.510426,109.71796 105.3737,89.932289 105.37145,39.845091 54.510426,56.250725 z"
|
2808
|
+
id="path17757"
|
2809
|
+
style="fill:#7fe719;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.04525661;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
2810
|
+
<path
|
2811
|
+
sodipodi:nodetypes="ccc"
|
2812
|
+
inkscape:connector-curvature="0"
|
2813
|
+
d="M 23.216626,81.319479 67.249471,66.8711 103.38422,90.444516"
|
2814
|
+
id="path17759"
|
2815
|
+
style="fill:none;stroke:#ffffff;stroke-width:2.3810811;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
2816
|
+
<path
|
2817
|
+
inkscape:connector-curvature="0"
|
2818
|
+
d="m 67.198295,17.973661 0,49.109284"
|
2819
|
+
id="path17761"
|
2820
|
+
style="fill:#babdb6;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.3810811;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
2821
|
+
</g>
|
2822
|
+
</g>
|
2823
|
+
<g
|
2824
|
+
id="g17791"
|
2825
|
+
transform="matrix(0.34145959,0,0,0.34145962,201.89299,201.3414)">
|
2826
|
+
<path
|
2827
|
+
style="opacity:0.61632649;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter17771)"
|
2828
|
+
d="m 300,60.336735 0.0625,22.437501 15.5,13.3125 23.5,-8.875 L 339,64.336735 322.75,54.274235 z"
|
2829
|
+
id="path17793"
|
2830
|
+
inkscape:connector-curvature="0"
|
2831
|
+
sodipodi:nodetypes="ccccccc" />
|
2832
|
+
<g
|
2833
|
+
style="display:inline;enable-background:new"
|
2834
|
+
id="g17795"
|
2835
|
+
transform="matrix(0.45064623,0,0,0.45064623,290.98476,45.227875)">
|
2836
|
+
<path
|
2837
|
+
style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:6.21931458;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2838
|
+
id="path17797"
|
2839
|
+
d="M 20.88413,30.82696 54.307319,56.487484 105.37145,40.041227 67.841387,18.256516 z"
|
2840
|
+
inkscape:connector-curvature="0"
|
2841
|
+
sodipodi:nodetypes="ccccc" />
|
2842
|
+
<path
|
2843
|
+
style="fill:#e40000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:6.21931458;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2844
|
+
id="path17799"
|
2845
|
+
d="M 21.177198,81.306434 20.88413,30.82696 l 33.487606,26.019146 0.03365,52.905504 z"
|
2846
|
+
inkscape:connector-curvature="0"
|
2847
|
+
sodipodi:nodetypes="ccccc" />
|
2848
|
+
<path
|
2849
|
+
style="fill:#7fe719;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:6.21931458;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
2850
|
+
id="path17801"
|
2851
|
+
d="M 54.510426,109.71796 105.3737,89.932289 105.37145,39.845091 54.510426,56.250725 z"
|
2852
|
+
inkscape:connector-curvature="0"
|
2853
|
+
sodipodi:nodetypes="ccccc" />
|
2854
|
+
<path
|
2855
|
+
style="fill:none;stroke:#ffffff;stroke-width:3.66075492;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
2856
|
+
id="path17803"
|
2857
|
+
d="M 23.216626,81.319479 67.249471,66.8711 103.38422,90.444516"
|
2858
|
+
inkscape:connector-curvature="0"
|
2859
|
+
sodipodi:nodetypes="ccc" />
|
2860
|
+
<path
|
2861
|
+
style="fill:#babdb6;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.66075492;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
2862
|
+
id="path17805"
|
2863
|
+
d="m 67.198295,17.973661 0,49.109284"
|
2864
|
+
inkscape:connector-curvature="0" />
|
2865
|
+
</g>
|
2866
|
+
</g>
|
2867
|
+
</g>
|
2868
|
+
</g>
|
2869
|
+
<g
|
2870
|
+
inkscape:groupmode="layer"
|
2871
|
+
id="layer4"
|
2872
|
+
inkscape:label="clipshadow"
|
2873
|
+
style="display:none">
|
2874
|
+
<rect
|
2875
|
+
height="256"
|
2876
|
+
id="rect6282-0"
|
2877
|
+
inkscape:label="256x256"
|
2878
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
2879
|
+
width="256"
|
2880
|
+
x="16"
|
2881
|
+
y="36"
|
2882
|
+
inkscape:export-filename="/home/lapo/Scrivania/cd.png"
|
2883
|
+
inkscape:export-xdpi="90"
|
2884
|
+
inkscape:export-ydpi="90" />
|
2885
|
+
</g>
|
2886
|
+
</svg>
|