zik 0.16.2 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data.tar.gz.sig +0 -0
- data/ChangeLog +22 -0
- data/Makefile.in +18 -11
- data/README +4 -0
- data/ZiK.rb +45 -21
- data/doc/ChangeLog +22 -0
- data/gui/assistant.rb +31 -16
- data/gui/common.rb +4 -2
- data/gui/config.rb +1 -1
- data/gui/gui.rb +77 -38
- data/gui/preference.rb +51 -14
- data/gui/socket.rb +5 -1
- data/mod/brainz.rb +4 -1
- data/mod/brainz/functions.rb +4 -4
- data/mod/hotkeys.rb +21 -14
- data/mod/hotkeys/config.rb +4 -2
- data/mod/hotkeys/configwidget.rb +18 -3
- data/mod/trayicon.rb +15 -1
- data/mod/trayicon/config.rb +2 -1
- data/mod/trayicon/configwidget.rb +11 -4
- data/player/cdplayer.rb +3 -3
- data/player/player.rb +5 -5
- data/player/radioplayer.rb +6 -6
- data/po/ZiK.pot +151 -99
- data/po/fr/ZiK.po +130 -98
- data/theme/dark/all.png +0 -0
- data/theme/dark/browser.png +0 -0
- data/theme/dark/cd.png +0 -0
- data/theme/dark/compact.png +0 -0
- data/theme/dark/copyright +10 -0
- data/theme/dark/playlist.png +0 -0
- data/theme/dark/radio.png +0 -0
- data/theme/ligth/all.png +0 -0
- data/theme/ligth/browser.png +0 -0
- data/theme/ligth/cd.png +0 -0
- data/theme/ligth/compact.png +0 -0
- data/theme/ligth/copyright +10 -0
- data/theme/ligth/playlist.png +0 -0
- data/theme/ligth/radio.png +0 -0
- data/zik +49 -25
- metadata +32 -10
- metadata.gz.sig +0 -0
- data/pix/gtk-directory.svg +0 -287
- data/pix/media-cdrom.svg +0 -292
- data/pix/network-wireless.svg +0 -429
- data/pix/player_play.svg +0 -286
- data/pix/sound.svg +0 -244
- data/pix/sound_directory.svg +0 -464
data/theme/dark/all.png
ADDED
Binary file
|
Binary file
|
data/theme/dark/cd.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/theme/ligth/all.png
ADDED
Binary file
|
Binary file
|
data/theme/ligth/cd.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/zik
CHANGED
@@ -23,7 +23,7 @@ This file is part of ZiK.
|
|
23
23
|
=end
|
24
24
|
|
25
25
|
$name='ZiK'
|
26
|
-
Version='0.
|
26
|
+
Version='0.17.0+gitv0.17'
|
27
27
|
|
28
28
|
#Usage
|
29
29
|
def usage
|
@@ -99,10 +99,11 @@ while arg=ARGV.shift
|
|
99
99
|
end
|
100
100
|
end
|
101
101
|
|
102
|
-
Data_dir='/usr/share/ZiK'
|
102
|
+
Data_dir='/usr/local/share/ZiK'
|
103
103
|
Pix_dir=File.join(Data_dir,'pix')
|
104
|
-
|
105
|
-
|
104
|
+
Theme_dir=File.join(Data_dir, 'theme')
|
105
|
+
Doc_dir='/usr/local/share/doc/ZiK'
|
106
|
+
Locale_dir='/usr/local/share/locale'
|
106
107
|
|
107
108
|
require 'gettext'
|
108
109
|
include GetText
|
@@ -111,18 +112,38 @@ require File.join(Data_dir, 'gui/error')
|
|
111
112
|
estock=ErrorsStock.new
|
112
113
|
|
113
114
|
ErrorInfo.new("Hi! This is #{$name} (#{Version}). Enjoy your music.")
|
114
|
-
ErrorWarning.new("ZiK is deprecated. You should call ZiK by zik") if __FILE__=~/ZiK$/
|
115
115
|
|
116
116
|
#Global configuration
|
117
117
|
$border=5
|
118
118
|
|
119
119
|
#Configuration
|
120
120
|
require File.join(Data_dir, 'gui/config')
|
121
|
-
|
121
|
+
if (defined? User_dir)
|
122
|
+
Cache_dir=File.join('User_dir', 'cache')
|
123
|
+
Runtime_dir=File.join('User_dir', 'runtime')
|
124
|
+
else
|
125
|
+
User_dir= ENV['XDG_CONFIG_HOME'] ? File.join(ENV['XDG_CONFIG_HOME'], 'ZiK') :
|
126
|
+
File.join(ENV['HOME'], '.config', 'ZiK')
|
127
|
+
unless File.exist?(User_dir)#Check for deprecated location of User_dir
|
128
|
+
old_user_dir=File.join(ENV['HOME'],'.ZiK')
|
129
|
+
File.rename(old_user_dir, User_dir) if File.directory?(old_user_dir)
|
130
|
+
end
|
131
|
+
Cache_dir= ENV['XDG_CACHE_HOME'] ? File.join(ENV['XDG_CACHE_HOME'], 'ZiK') :
|
132
|
+
File.join(ENV['HOME'], '.cache', 'ZiK')
|
133
|
+
if ENV['XDG_RUNTIME_DIR']
|
134
|
+
Runtime_dir=File.join(ENV['XDG_RUNTIME_DIR'], 'ZiK')
|
135
|
+
else
|
136
|
+
require 'tempfile'
|
137
|
+
Runtime_dir=File.join(Dir.tmpdir, 'ZiK-'+ENV['USER'])
|
138
|
+
ErrorWarning.new("XDG_RUNTIME_DIR is not set. #{Runtime_dir} is used instead.")
|
139
|
+
end
|
140
|
+
end
|
122
141
|
unless File.exist?(User_dir)
|
123
142
|
Dir.mkdir(User_dir)
|
124
143
|
config_new=true
|
125
144
|
end
|
145
|
+
Dir.mkdir(Cache_dir) unless File.exist?(Cache_dir)
|
146
|
+
Dir.mkdir(Runtime_dir, 0700) unless File.exist?(Runtime_dir)
|
126
147
|
if File.directory?(User_dir)
|
127
148
|
configuration_file=File.join(User_dir,'ZiKrc')
|
128
149
|
config=Configuration.new(configuration_file)
|
@@ -137,26 +158,23 @@ config['view']=view if view
|
|
137
158
|
|
138
159
|
#Socket (client part)
|
139
160
|
module ZiKSocket
|
140
|
-
Address=File.join(
|
161
|
+
Address=File.join(Runtime_dir, 'socket')
|
141
162
|
end
|
142
|
-
if
|
143
|
-
require 'socket'
|
163
|
+
if File.socket?(ZiKSocket::Address)
|
144
164
|
require File.join(Data_dir, 'gui/socket')
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
File.delete(ZiKSocket::Address)
|
159
|
-
end
|
165
|
+
begin
|
166
|
+
client=ZiKSocket::Client.new
|
167
|
+
ErrorInfo.new(_("Multisession : server already exists."))
|
168
|
+
playfiles.each{|file|
|
169
|
+
file=File.join(Dir.pwd, file) unless file =~ /^\//#absolute path
|
170
|
+
p client.command("add #{file}")
|
171
|
+
}
|
172
|
+
client.command("show")
|
173
|
+
client.close
|
174
|
+
exit 0
|
175
|
+
rescue Errno::ECONNREFUSED
|
176
|
+
ErrorError.new(_("Multissession: socket exists but server does not respond."))
|
177
|
+
File.delete(ZiKSocket::Address)
|
160
178
|
end
|
161
179
|
end
|
162
180
|
|
@@ -310,7 +328,8 @@ module ZiKSocket
|
|
310
328
|
end
|
311
329
|
end
|
312
330
|
if config['socket']
|
313
|
-
|
331
|
+
require File.join(Data_dir, 'gui/socket')
|
332
|
+
ZiKSocket.start_server(gui, config, playlist)
|
314
333
|
end
|
315
334
|
|
316
335
|
#Modules
|
@@ -372,6 +391,11 @@ ensure
|
|
372
391
|
cdplayer.stop if $cd
|
373
392
|
radioplayer.stop if $radio
|
374
393
|
ZiKSocket.clean
|
394
|
+
begin
|
395
|
+
Dir.rmdir(Runtime_dir) if File.directory?(Runtime_dir)
|
396
|
+
rescue Errno::ENOTEMPTY
|
397
|
+
ErrorError.new("Cannot delete #{Runtime_dir}.")
|
398
|
+
end
|
375
399
|
end
|
376
400
|
|
377
401
|
ErrorInfo.new("Bye.")
|
metadata
CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 17
|
9
|
+
- 0
|
10
|
+
version: 0.17.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Vincent Carmona
|
@@ -36,7 +36,7 @@ cert_chain:
|
|
36
36
|
oxzIRXlS
|
37
37
|
-----END CERTIFICATE-----
|
38
38
|
|
39
|
-
date: 2011-
|
39
|
+
date: 2011-04-15 00:00:00 +02:00
|
40
40
|
default_executable:
|
41
41
|
dependencies:
|
42
42
|
- !ruby/object:Gem::Dependency
|
@@ -137,6 +137,20 @@ dependencies:
|
|
137
137
|
version: "0"
|
138
138
|
type: :runtime
|
139
139
|
version_requirements: *id007
|
140
|
+
- !ruby/object:Gem::Dependency
|
141
|
+
name: globalhotkeys
|
142
|
+
prerelease: false
|
143
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
144
|
+
none: false
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
hash: 3
|
149
|
+
segments:
|
150
|
+
- 0
|
151
|
+
version: "0"
|
152
|
+
type: :runtime
|
153
|
+
version_requirements: *id008
|
140
154
|
description:
|
141
155
|
email: vinc4mai@gmail.com
|
142
156
|
executables:
|
@@ -178,14 +192,22 @@ files:
|
|
178
192
|
- playlist/radiolist.rb
|
179
193
|
- playlist/export.rb
|
180
194
|
- pix/ZiK.svg
|
181
|
-
- pix/sound.svg
|
182
|
-
- pix/sound_directory.svg
|
183
|
-
- pix/media-cdrom.svg
|
184
|
-
- pix/gtk-directory.svg
|
185
|
-
- pix/player_play.svg
|
186
|
-
- pix/network-wireless.svg
|
187
195
|
- pix/ZiK3.png
|
188
196
|
- pix/assistant/capture.png
|
197
|
+
- theme/dark/cd.png
|
198
|
+
- theme/dark/compact.png
|
199
|
+
- theme/dark/all.png
|
200
|
+
- theme/dark/browser.png
|
201
|
+
- theme/dark/playlist.png
|
202
|
+
- theme/dark/radio.png
|
203
|
+
- theme/dark/copyright
|
204
|
+
- theme/ligth/cd.png
|
205
|
+
- theme/ligth/compact.png
|
206
|
+
- theme/ligth/all.png
|
207
|
+
- theme/ligth/browser.png
|
208
|
+
- theme/ligth/playlist.png
|
209
|
+
- theme/ligth/radio.png
|
210
|
+
- theme/ligth/copyright
|
189
211
|
- po/ZiK.pot
|
190
212
|
- po/fr/ZiK.po
|
191
213
|
- mod/trayicon.rb
|
metadata.gz.sig
CHANGED
Binary file
|
data/pix/gtk-directory.svg
DELETED
@@ -1,287 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
-
<svg
|
4
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
5
|
-
xmlns:cc="http://web.resource.org/cc/"
|
6
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
7
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
xmlns:xlink="http://www.w3.org/1999/xlink"
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
-
version="1.0"
|
13
|
-
x="0.0000000"
|
14
|
-
y="0.0000000"
|
15
|
-
width="48.000000px"
|
16
|
-
height="48.000000px"
|
17
|
-
id="svg1"
|
18
|
-
sodipodi:version="0.32"
|
19
|
-
inkscape:version="0.45"
|
20
|
-
sodipodi:docname="folder.svg"
|
21
|
-
sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/places"
|
22
|
-
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
23
|
-
<metadata
|
24
|
-
id="metadata162">
|
25
|
-
<rdf:RDF>
|
26
|
-
<cc:Work
|
27
|
-
rdf:about="">
|
28
|
-
<dc:format>image/svg+xml</dc:format>
|
29
|
-
<dc:type
|
30
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
31
|
-
<dc:title>Folder</dc:title>
|
32
|
-
<dc:creator>
|
33
|
-
<cc:Agent>
|
34
|
-
<dc:title>Jakub Steiner</dc:title>
|
35
|
-
</cc:Agent>
|
36
|
-
</dc:creator>
|
37
|
-
<dc:date>2005-02-01</dc:date>
|
38
|
-
<cc:license
|
39
|
-
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
40
|
-
<dc:identifier>http://jimmac.musichall.cz/</dc:identifier>
|
41
|
-
<dc:subject>
|
42
|
-
<rdf:Bag>
|
43
|
-
<rdf:li>folder</rdf:li>
|
44
|
-
<rdf:li>directory</rdf:li>
|
45
|
-
<rdf:li>storage</rdf:li>
|
46
|
-
</rdf:Bag>
|
47
|
-
</dc:subject>
|
48
|
-
</cc:Work>
|
49
|
-
<cc:License
|
50
|
-
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
51
|
-
<cc:permits
|
52
|
-
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
53
|
-
<cc:permits
|
54
|
-
rdf:resource="http://web.resource.org/cc/Distribution" />
|
55
|
-
<cc:requires
|
56
|
-
rdf:resource="http://web.resource.org/cc/Notice" />
|
57
|
-
<cc:permits
|
58
|
-
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
59
|
-
<cc:requires
|
60
|
-
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
61
|
-
<cc:requires
|
62
|
-
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
63
|
-
</cc:License>
|
64
|
-
</rdf:RDF>
|
65
|
-
</metadata>
|
66
|
-
<sodipodi:namedview
|
67
|
-
id="base"
|
68
|
-
pagecolor="#ffffff"
|
69
|
-
bordercolor="#666666"
|
70
|
-
borderopacity="0.14901961"
|
71
|
-
inkscape:pageopacity="0.0"
|
72
|
-
inkscape:pageshadow="2"
|
73
|
-
inkscape:window-width="922"
|
74
|
-
inkscape:window-height="655"
|
75
|
-
inkscape:cy="50.536684"
|
76
|
-
inkscape:cx="30.884152"
|
77
|
-
inkscape:zoom="1"
|
78
|
-
inkscape:document-units="px"
|
79
|
-
showgrid="false"
|
80
|
-
inkscape:window-x="515"
|
81
|
-
inkscape:window-y="365"
|
82
|
-
inkscape:current-layer="layer2"
|
83
|
-
inkscape:showpageshadow="false" />
|
84
|
-
<defs
|
85
|
-
id="defs3">
|
86
|
-
<linearGradient
|
87
|
-
id="linearGradient4734">
|
88
|
-
<stop
|
89
|
-
style="stop-color:#cccdbc;stop-opacity:1;"
|
90
|
-
offset="0"
|
91
|
-
id="stop4736" />
|
92
|
-
<stop
|
93
|
-
style="stop-color:#b9baa4;stop-opacity:1;"
|
94
|
-
offset="1"
|
95
|
-
id="stop4738" />
|
96
|
-
</linearGradient>
|
97
|
-
<linearGradient
|
98
|
-
inkscape:collect="always"
|
99
|
-
id="linearGradient2339">
|
100
|
-
<stop
|
101
|
-
style="stop-color:#ffffff;stop-opacity:1;"
|
102
|
-
offset="0"
|
103
|
-
id="stop2341" />
|
104
|
-
<stop
|
105
|
-
style="stop-color:#ffffff;stop-opacity:0;"
|
106
|
-
offset="1"
|
107
|
-
id="stop2343" />
|
108
|
-
</linearGradient>
|
109
|
-
<linearGradient
|
110
|
-
inkscape:collect="always"
|
111
|
-
xlink:href="#linearGradient2339"
|
112
|
-
id="linearGradient2345"
|
113
|
-
x1="25.850664"
|
114
|
-
y1="37.625"
|
115
|
-
x2="24.996323"
|
116
|
-
y2="25.25"
|
117
|
-
gradientUnits="userSpaceOnUse" />
|
118
|
-
<linearGradient
|
119
|
-
id="linearGradient356">
|
120
|
-
<stop
|
121
|
-
style="stop-color:#fffff3;stop-opacity:1.0000000;"
|
122
|
-
offset="0.0000000"
|
123
|
-
id="stop357" />
|
124
|
-
<stop
|
125
|
-
style="stop-color:#fffff3;stop-opacity:0.0000000;"
|
126
|
-
offset="1.0000000"
|
127
|
-
id="stop358" />
|
128
|
-
</linearGradient>
|
129
|
-
<linearGradient
|
130
|
-
id="linearGradient311">
|
131
|
-
<stop
|
132
|
-
style="stop-color:#cfcfc4;stop-opacity:1.0000000;"
|
133
|
-
offset="0.0000000"
|
134
|
-
id="stop312" />
|
135
|
-
<stop
|
136
|
-
style="stop-color:#cfcfc4;stop-opacity:1.0000000;"
|
137
|
-
offset="0.32673267"
|
138
|
-
id="stop335" />
|
139
|
-
<stop
|
140
|
-
style="stop-color:#cfcfc4;stop-opacity:0;"
|
141
|
-
offset="1"
|
142
|
-
id="stop313" />
|
143
|
-
</linearGradient>
|
144
|
-
<linearGradient
|
145
|
-
id="linearGradient235">
|
146
|
-
<stop
|
147
|
-
style="stop-color:#59594a;stop-opacity:1.0000000;"
|
148
|
-
offset="0.0000000"
|
149
|
-
id="stop236" />
|
150
|
-
<stop
|
151
|
-
style="stop-color:#a2a491;stop-opacity:1.0000000;"
|
152
|
-
offset="1.0000000"
|
153
|
-
id="stop237" />
|
154
|
-
</linearGradient>
|
155
|
-
<linearGradient
|
156
|
-
inkscape:collect="always"
|
157
|
-
xlink:href="#linearGradient235"
|
158
|
-
id="linearGradient253"
|
159
|
-
gradientTransform="scale(1.068312,0.936056)"
|
160
|
-
x1="24.983023"
|
161
|
-
y1="22.828066"
|
162
|
-
x2="24.983023"
|
163
|
-
y2="8.3744106"
|
164
|
-
gradientUnits="userSpaceOnUse" />
|
165
|
-
<linearGradient
|
166
|
-
inkscape:collect="always"
|
167
|
-
xlink:href="#linearGradient311"
|
168
|
-
id="linearGradient320"
|
169
|
-
gradientUnits="userSpaceOnUse"
|
170
|
-
gradientTransform="scale(0.750458,1.332520)"
|
171
|
-
x1="32.827568"
|
172
|
-
y1="7.9206076"
|
173
|
-
x2="60.071049"
|
174
|
-
y2="7.8678756" />
|
175
|
-
<linearGradient
|
176
|
-
inkscape:collect="always"
|
177
|
-
xlink:href="#linearGradient356"
|
178
|
-
id="linearGradient355"
|
179
|
-
gradientUnits="userSpaceOnUse"
|
180
|
-
gradientTransform="scale(0.806859,1.239374)"
|
181
|
-
x1="23.643002"
|
182
|
-
y1="12.818464"
|
183
|
-
x2="28.443289"
|
184
|
-
y2="25.232374" />
|
185
|
-
<linearGradient
|
186
|
-
inkscape:collect="always"
|
187
|
-
xlink:href="#linearGradient4734"
|
188
|
-
id="linearGradient4740"
|
189
|
-
x1="24.588383"
|
190
|
-
y1="1.8991361"
|
191
|
-
x2="24.588383"
|
192
|
-
y2="40.858932"
|
193
|
-
gradientUnits="userSpaceOnUse" />
|
194
|
-
</defs>
|
195
|
-
<g
|
196
|
-
inkscape:groupmode="layer"
|
197
|
-
id="layer1"
|
198
|
-
inkscape:label="pixmap"
|
199
|
-
style="display:inline" />
|
200
|
-
<g
|
201
|
-
inkscape:groupmode="layer"
|
202
|
-
id="layer2"
|
203
|
-
inkscape:label="vectors"
|
204
|
-
style="display:inline">
|
205
|
-
<g
|
206
|
-
transform="matrix(0.216083,0.000000,0.000000,0.263095,-0.893233,-10.24236)"
|
207
|
-
id="g1197">
|
208
|
-
<path
|
209
|
-
d="M 32.706693,164.36026 C 22.319193,164.36026 13.956693,172.72276 13.956693,183.11026 C 13.956693,193.49776 22.319193,201.86026 32.706693,201.86026 L 205.20669,201.86026 C 215.59419,201.86026 223.95669,193.49776 223.95669,183.11026 C 223.95669,172.72276 215.59419,164.36026 205.20669,164.36026 L 32.706693,164.36026 z "
|
210
|
-
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
211
|
-
id="path1196" />
|
212
|
-
<path
|
213
|
-
d="M 32.706693,165.61026 C 23.011693,165.61026 15.206693,173.41526 15.206693,183.11026 C 15.206693,192.80526 23.011693,200.61026 32.706693,200.61026 L 205.20669,200.61026 C 214.90169,200.61026 222.70669,192.80526 222.70669,183.11026 C 222.70669,173.41526 214.90169,165.61026 205.20669,165.61026 L 32.706693,165.61026 z "
|
214
|
-
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
215
|
-
id="path1195" />
|
216
|
-
<path
|
217
|
-
d="M 32.706694,166.86026 C 23.704194,166.86026 16.456694,174.10776 16.456694,183.11026 C 16.456694,192.11276 23.704194,199.36026 32.706694,199.36026 L 205.20669,199.36026 C 214.20919,199.36026 221.45669,192.11276 221.45669,183.11026 C 221.45669,174.10776 214.20919,166.86026 205.20669,166.86026 L 32.706694,166.86026 z "
|
218
|
-
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
219
|
-
id="path1194" />
|
220
|
-
<path
|
221
|
-
d="M 32.706694,168.11026 C 24.396694,168.11026 17.706694,174.80026 17.706694,183.11026 C 17.706694,191.42026 24.396694,198.11026 32.706694,198.11026 L 205.20669,198.11026 C 213.51669,198.11026 220.20669,191.42026 220.20669,183.11026 C 220.20669,174.80026 213.51669,168.11026 205.20669,168.11026 L 32.706694,168.11026 z "
|
222
|
-
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
223
|
-
id="path1193" />
|
224
|
-
<path
|
225
|
-
d="M 32.707764,169.36026 C 25.090264,169.36026 18.957764,175.49276 18.957764,183.11026 C 18.957764,190.72776 25.090264,196.86026 32.707764,196.86026 L 205.20618,196.86026 C 212.82368,196.86026 218.95618,190.72776 218.95618,183.11026 C 218.95618,175.49276 212.82368,169.36026 205.20618,169.36026 L 32.707764,169.36026 z "
|
226
|
-
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
227
|
-
id="path1192" />
|
228
|
-
<path
|
229
|
-
d="M 32.706694,170.61026 C 25.781694,170.61026 20.206694,176.18526 20.206694,183.11026 C 20.206694,190.03526 25.781694,195.61026 32.706694,195.61026 L 205.20669,195.61026 C 212.13169,195.61026 217.70669,190.03526 217.70669,183.11026 C 217.70669,176.18526 212.13169,170.61026 205.20669,170.61026 L 32.706694,170.61026 z "
|
230
|
-
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
231
|
-
id="path1191" />
|
232
|
-
<path
|
233
|
-
d="M 32.706694,171.86026 C 26.474194,171.86026 21.456694,176.87776 21.456694,183.11026 C 21.456694,189.34276 26.474194,194.36026 32.706694,194.36026 L 205.20669,194.36026 C 211.43919,194.36026 216.45669,189.34276 216.45669,183.11026 C 216.45669,176.87776 211.43919,171.86026 205.20669,171.86026 L 32.706694,171.86026 z "
|
234
|
-
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
235
|
-
id="path1190" />
|
236
|
-
<path
|
237
|
-
d="M 32.706694,173.11026 C 27.166694,173.11026 22.706694,177.57026 22.706694,183.11026 C 22.706694,188.65026 27.166694,193.11026 32.706694,193.11026 L 205.20669,193.11026 C 210.74669,193.11026 215.20669,188.65026 215.20669,183.11026 C 215.20669,177.57026 210.74669,173.11026 205.20669,173.11026 L 32.706694,173.11026 z "
|
238
|
-
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
239
|
-
id="path1189" />
|
240
|
-
</g>
|
241
|
-
<path
|
242
|
-
d="M 5.4186638,5.4561100 C 4.9536872,5.4561100 4.6035534,5.6913368 4.6035534,6.1828330 L 4.6035534,39.203794 C 4.6035534,39.930940 5.0906584,40.415354 5.7526104,40.415354 L 43.489564,40.415354 C 44.155366,40.415354 44.419872,39.962588 44.419872,39.328794 L 44.419872,10.425912 C 44.419872,9.8829469 44.019585,9.5893540 43.520814,9.5893540 L 24.411490,9.5893540 C 24.074477,9.5893540 23.714810,9.3909280 23.517009,9.1180670 L 20.914778,5.9180580 C 20.696913,5.6175190 20.272703,5.4561250 19.901500,5.4561250 L 5.4186638,5.4561100 z "
|
243
|
-
style="fill:url(#linearGradient253);fill-opacity:1.0;fill-rule:evenodd;stroke:#555753;stroke-width:1.0000000;stroke-miterlimit:4.0000000;stroke-opacity:1"
|
244
|
-
id="path895"
|
245
|
-
sodipodi:nodetypes="ccccccccccccc" />
|
246
|
-
<g
|
247
|
-
id="g891"
|
248
|
-
transform="matrix(0.186703,0.000000,0.000000,0.186703,-21.10730,57.62299)" />
|
249
|
-
<path
|
250
|
-
style="fill:url(#linearGradient320);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:0.25000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;opacity:1.0000000;color:#000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
|
251
|
-
d="M 5.0625000,7.9062500 L 5.0625000,36.156250 L 6.0312500,31.781250 L 6.2500000,9.1562500 C 6.2500000,8.4058274 6.7614657,8.0312500 7.4869586,8.0312500 L 19.093750,8.0312500 C 20.655346,8.0312500 22.108598,11.218750 24.411417,11.218750 C 30.383036,11.218750 43.749813,11.306338 43.750000,11.218750 L 43.750000,10.187500 L 24.218750,10.062500 C 22.362615,10.050621 21.088324,6.9062500 19.656250,6.9062500 L 6.2838336,6.9062500 C 5.4685048,6.9062500 5.0625000,7.2604161 5.0625000,7.9062500 z "
|
252
|
-
id="path315"
|
253
|
-
sodipodi:nodetypes="ccccczscczzcc" />
|
254
|
-
<path
|
255
|
-
style="color:#000000;fill:url(#linearGradient4740);fill-opacity:1.0;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
256
|
-
d="M 7.6864537,16.296282 L 15.619799,16.296282 C 16.361533,16.296282 16.987769,15.915471 17.306966,15.414278 C 17.443709,15.199569 18.574948,13.28855 18.66464,13.158052 C 18.963427,12.723328 19.437557,12.399136 20.006622,12.399136 L 43.048855,12.399136 C 43.851692,12.399136 44.498018,13.042925 44.498018,13.84261 L 44.498018,38.915459 C 44.498018,39.715143 43.851692,40.358932 43.048855,40.358932 L 6.1279084,40.358932 C 5.3250725,40.358932 4.6787461,39.715143 4.6787461,38.915459 L 4.6787461,19.481904 C 4.6787461,17.507539 5.8190623,16.296282 7.6864537,16.296282 z "
|
257
|
-
id="rect337"
|
258
|
-
sodipodi:nodetypes="czzszcccccccc"
|
259
|
-
inkscape:r_cx="true"
|
260
|
-
inkscape:r_cy="true" />
|
261
|
-
<path
|
262
|
-
style="fill:url(#linearGradient355);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:0.25000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000;opacity:1.0000000;color:#000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
|
263
|
-
d="M 20.500000,13.750000 C 19.853581,13.750000 19.490960,14.031698 19.125000,14.500000 C 18.759040,14.968302 18.343502,15.671815 18.062500,16.218750 C 17.781498,16.765685 17.493409,17.272919 17.218750,17.625000 C 16.944091,17.977081 16.729167,18.125000 16.500000,18.125000 C 15.250000,18.125000 7.3428301,18.125000 6.8428301,18.125000 C 6.3844968,18.125000 6.0073599,18.355519 5.6865801,18.656250 C 5.3658003,18.956981 5.0928301,19.362500 5.0928301,19.875000 C 5.0928302,20.499998 5.0928301,39.250000 5.0928301,39.250000 L 6.0928301,39.250000 C 6.0928301,39.250000 6.0928302,20.500002 6.0928301,19.875000 C 6.0928301,19.762500 6.1948599,19.543019 6.3740801,19.375000 C 6.5533003,19.206981 6.8011635,19.125000 6.8428301,19.125000 C 7.3428301,19.125000 15.250000,19.125000 16.500000,19.125000 C 17.145833,19.125000 17.634731,18.718232 18.000000,18.250000 C 18.365269,17.781768 18.656559,17.203065 18.937500,16.656250 C 19.218441,16.109435 19.568667,15.477011 19.843750,15.125000 C 20.118833,14.772989 20.269189,14.750000 20.500000,14.750000 C 21.716667,14.750000 43.750000,14.875000 43.750000,14.875000 L 43.750000,13.875000 C 43.750000,13.875000 21.783333,13.750000 20.500000,13.750000 z "
|
264
|
-
id="path349"
|
265
|
-
sodipodi:nodetypes="ccccccccccccccccccccc" />
|
266
|
-
<rect
|
267
|
-
style="color:#000000;fill:#fffffd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.25000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
|
268
|
-
id="rect459"
|
269
|
-
width="1.2500000"
|
270
|
-
height="1.2500000"
|
271
|
-
x="5.5290294"
|
272
|
-
y="7.3598347"
|
273
|
-
rx="1.4434735"
|
274
|
-
ry="1.2500000" />
|
275
|
-
<rect
|
276
|
-
style="opacity:0.28571429;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2345);stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:round;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"
|
277
|
-
id="rect2337"
|
278
|
-
width="37.95816"
|
279
|
-
height="23.625"
|
280
|
-
x="5.5381637"
|
281
|
-
y="15.75"
|
282
|
-
inkscape:r_cx="true"
|
283
|
-
inkscape:r_cy="true"
|
284
|
-
rx="0.43750021"
|
285
|
-
ry="0.4375" />
|
286
|
-
</g>
|
287
|
-
</svg>
|