test-unit 2.0.9 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/COPYING +56 -0
  2. data/GPL +340 -0
  3. data/History.txt +7 -3
  4. data/Manifest.txt +27 -2
  5. data/PSFL +271 -0
  6. data/README.txt +18 -0
  7. data/Rakefile +18 -5
  8. data/html/bar.png +0 -0
  9. data/html/bar.svg +153 -0
  10. data/html/developer.png +0 -0
  11. data/html/developer.svg +469 -0
  12. data/html/famfamfam-logo.png +0 -0
  13. data/html/favicon.ico +0 -0
  14. data/html/favicon.png +0 -0
  15. data/html/favicon.svg +82 -0
  16. data/html/heading-mark.png +0 -0
  17. data/html/heading-mark.svg +393 -0
  18. data/html/index.html +235 -13
  19. data/html/index.html.ja +258 -15
  20. data/html/install.png +0 -0
  21. data/html/install.svg +636 -0
  22. data/html/jp.png +0 -0
  23. data/html/kinotan-failure.png +0 -0
  24. data/html/kinotan-pass.png +0 -0
  25. data/html/logo.png +0 -0
  26. data/html/logo.svg +483 -0
  27. data/html/reference.png +0 -0
  28. data/html/rubyforge.png +0 -0
  29. data/html/tango-logo.png +0 -0
  30. data/html/test-unit.css +339 -0
  31. data/html/tutorial.png +0 -0
  32. data/html/tutorial.svg +559 -0
  33. data/html/us.png +0 -0
  34. data/lib/test/unit.rb +6 -1
  35. data/lib/test/unit/assertions.rb +36 -0
  36. data/lib/test/unit/autorunner.rb +5 -2
  37. data/lib/test/unit/collector/load.rb +1 -1
  38. data/lib/test/unit/color-scheme.rb +1 -1
  39. data/lib/test/unit/diff.rb +7 -0
  40. data/lib/test/unit/testcase.rb +5 -0
  41. data/lib/test/unit/testresult.rb +34 -2
  42. data/lib/test/unit/ui/console/testrunner.rb +9 -45
  43. data/lib/test/unit/ui/tap/testrunner.rb +0 -9
  44. data/lib/test/unit/ui/testrunner.rb +25 -0
  45. data/lib/test/unit/version.rb +1 -1
  46. data/test/test-color-scheme.rb +1 -1
  47. data/test/test_assertions.rb +27 -3
  48. metadata +53 -14
  49. data/html/classic.html +0 -15
  50. data/html/test-unit-classic.png +0 -0
Binary file
Binary file
Binary file
@@ -0,0 +1,339 @@
1
+ html,
2
+ body
3
+ {
4
+ margin: 0px;
5
+ padding: 0px;
6
+ color: black !important;
7
+ background-color: white !important;
8
+ }
9
+
10
+ a:link
11
+ {
12
+ color: #f57900;
13
+ }
14
+
15
+ a:visited
16
+ {
17
+ color: #ce5c00;
18
+ }
19
+
20
+ div.header
21
+ {
22
+ position: relative;
23
+ margin: 0px;
24
+ padding: 0px;
25
+ }
26
+
27
+ div.header div.title
28
+ {
29
+ background: url(logo.png) no-repeat;
30
+ font-family: sans-serif;
31
+ font-size: 12px;
32
+ font-weight: bold;
33
+ text-shadow: 0.1em 0.1em 0.1em rgb(200, 200, 200);
34
+ margin-top: 20px;
35
+ margin-left: 50px;
36
+ margin-right: 180px;
37
+ height: 65px;
38
+ }
39
+
40
+ div.header div.title a,
41
+ div.header div.title a:link,
42
+ div.header div.title a:visited
43
+ {
44
+ color: black;
45
+ text-decoration: none;
46
+ }
47
+
48
+ div.header div.title span
49
+ {
50
+ display: block;
51
+ padding-left: 180px;
52
+ margin-bottom: 2px;
53
+ }
54
+
55
+ div.header div.title span.title
56
+ {
57
+ padding-top: 20px;
58
+ }
59
+
60
+ div.header div.title span.title-separator
61
+ {
62
+ display: none;
63
+ }
64
+
65
+ div.header div.title span.title-project
66
+ {
67
+ padding-bottom: 20px;
68
+ }
69
+
70
+ ul.other-languages
71
+ {
72
+ position: absolute;
73
+ top: 0px;
74
+ right: 50px;
75
+ padding: 0px;
76
+ margin: 0px;
77
+ }
78
+
79
+ ul.other-languages li
80
+ {
81
+ display: block;
82
+ float: left;
83
+ margin-left: 10px;
84
+ }
85
+
86
+ ul.other-languages li a
87
+ {
88
+ display: block;
89
+ height: 11px;
90
+ width: 16px;
91
+ text-indent: -100000px;
92
+ outline: none;
93
+ }
94
+
95
+ ul.other-languages li#other-language-english
96
+ {
97
+ background: url(us.png) no-repeat;
98
+ }
99
+
100
+ ul.other-languages li#other-language-japanese
101
+ {
102
+ background: url(jp.png) no-repeat;
103
+ }
104
+
105
+ ul.menu
106
+ {
107
+ background: url(bar.png) repeat-x;
108
+ height: 38px;
109
+ padding: 0;
110
+ margin: 0;
111
+ padding-top: 12px;
112
+ padding-left: 50px;
113
+ padding-bottom: 0px;
114
+ margin-top: 16px;
115
+ margin-left: 0px;
116
+ margin-bottom: 0px;
117
+ font-family: sans;
118
+ font-weight: bold;
119
+ font-size: 16px;
120
+ line-height: 100% !important;
121
+ }
122
+
123
+ ul.menu li
124
+ {
125
+ display: inline;
126
+ padding: 0;
127
+ margin: 0;
128
+ margin-right: 10px;
129
+ padding-left: 0px;
130
+ }
131
+
132
+ ul.menu li a
133
+ {
134
+ color: #fed08e;
135
+ text-decoration: none;
136
+ padding-left: 20px;
137
+ }
138
+
139
+ ul.menu li a:hover
140
+ {
141
+ text-decoration: underline;
142
+ }
143
+
144
+ ul.menu li a:visited
145
+ {
146
+ color: #ffb84f;
147
+ }
148
+
149
+ ul.menu li#menu-reference
150
+ {
151
+ background: url(reference.png) no-repeat;
152
+ }
153
+
154
+ ul.menu li#menu-tutorial
155
+ {
156
+ background: url(tutorial.png) no-repeat;
157
+ }
158
+
159
+ ul.menu li#menu-install
160
+ {
161
+ background: url(install.png) no-repeat;
162
+ }
163
+
164
+ ul.menu li#menu-developer
165
+ {
166
+ background: url(developer.png) no-repeat;
167
+ }
168
+
169
+ div.content
170
+ {
171
+ position: relative;
172
+ margin-left: 50px;
173
+ margin-right: 50px;
174
+ }
175
+
176
+ div.main
177
+ {
178
+ margin-right: 170px;
179
+ }
180
+
181
+ div.main p
182
+ {
183
+ line-height: 150%;
184
+ }
185
+
186
+ div.main h2,
187
+ div.day h3
188
+ {
189
+ margin-left: -45px;
190
+ text-indent: 45px;
191
+ height: 36px;
192
+ background: url(heading-mark.png) no-repeat;
193
+ clear: both;
194
+ }
195
+
196
+ div.sidebar
197
+ {
198
+ clear: both;
199
+ position: absolute;
200
+ top: 0px;
201
+ right: 0px;
202
+ width: 150px;
203
+ background-color: white;
204
+ padding-left: 10px;
205
+ border-left: solid 1px black;
206
+ height: 100%;
207
+ }
208
+
209
+ div.sidebar h2
210
+ {
211
+ font-size: 1em;
212
+ margin: 0px;
213
+ padding: 0px;
214
+ padding-bottom: 5px;
215
+ }
216
+
217
+ div.sidebar ul
218
+ {
219
+ margin: 0px;
220
+ padding: 0px;
221
+ }
222
+
223
+ div.sidebar ul li
224
+ {
225
+ list-style-type: none;
226
+ margin-bottom: 5px;
227
+ }
228
+
229
+ div.sponsors
230
+ {
231
+ border-top: solid black 1px;
232
+ position: relative;
233
+ }
234
+
235
+ div.sponsors p
236
+ {
237
+ margin: 0px;
238
+ }
239
+
240
+ div.sponsors p#sponsor-rubyforge
241
+ {
242
+ position: absolute;
243
+ top: 15px;
244
+ right: 50px;
245
+ }
246
+
247
+ div.sponsors p#sponsor-tango
248
+ {
249
+ position: absolute;
250
+ top: 50px;
251
+ right: 50px;
252
+ }
253
+
254
+ div.sponsors p#sponsor-famfamfam
255
+ {
256
+ position: absolute;
257
+ top: 118px;
258
+ right: 50px;
259
+ padding-bottom: 50px;
260
+ }
261
+
262
+ dt
263
+ {
264
+ margin-bottom: 0.25em;
265
+ }
266
+
267
+ dd
268
+ {
269
+ margin-bottom: 0.5em;
270
+ }
271
+
272
+ pre
273
+ {
274
+ overflow: auto;
275
+ }
276
+
277
+ pre.command,
278
+ pre.code,
279
+ dd
280
+ {
281
+ -moz-border-radius: 5px;
282
+ -webkit-border-radius: 5px;
283
+ border-radius: 5px;
284
+ -moz-box-shadow: 0.2em 0.2em 0.5em rgb(100, 100, 100);
285
+ -webkit-box-shadow: 0.2em 0.2em 0.5em rgb(100, 100, 100);
286
+ box-shadow: 0.2em 0.2em 0.5em rgb(100, 100, 100);
287
+ }
288
+
289
+ pre.command
290
+ {
291
+ color: white;
292
+ background-color: black;
293
+ padding: 5px 10px;
294
+ }
295
+
296
+ pre.code
297
+ {
298
+ border: solid 1px #abf562;
299
+ background: #d8ffb2;
300
+ padding: 5px 10px;
301
+ }
302
+
303
+ img.eye-catch
304
+ {
305
+ float: right;
306
+ }
307
+
308
+ dl.feature-list
309
+ {
310
+ clear: both;
311
+ }
312
+
313
+ dl.feature-list dd
314
+ {
315
+ border: solid 1px #729fcf;
316
+ background: #e6f3ff;
317
+ padding: 5px 10px;
318
+ }
319
+
320
+ /* for RDoc */
321
+ body.indexpage,
322
+ body.class,
323
+ body.module,
324
+ body.file
325
+ {
326
+ margin: 0 !important;
327
+ }
328
+
329
+ body.indexpage div.content
330
+ {
331
+ margin: 1em 3em !important;
332
+ }
333
+
334
+ body.class div.content,
335
+ body.module div.content,
336
+ body.file div.content
337
+ {
338
+ margin: 40px !important;
339
+ }
Binary file
@@ -0,0 +1,559 @@
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://creativecommons.org/ns#"
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
+ inkscape:export-ydpi="90.000000"
13
+ inkscape:export-xdpi="90.000000"
14
+ inkscape:export-filename="/home/kou/work/ruby/groonga/html/tutorial.png"
15
+ width="18"
16
+ height="18"
17
+ id="svg11300"
18
+ sodipodi:version="0.32"
19
+ inkscape:version="0.46"
20
+ sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/apps"
21
+ sodipodi:docname="tutorial.svg"
22
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
23
+ version="1.0">
24
+ <defs
25
+ id="defs3">
26
+ <inkscape:perspective
27
+ sodipodi:type="inkscape:persp3d"
28
+ inkscape:vp_x="0 : 24 : 1"
29
+ inkscape:vp_y="0 : 1000 : 0"
30
+ inkscape:vp_z="48 : 24 : 1"
31
+ inkscape:persp3d-origin="24 : 16 : 1"
32
+ id="perspective85" />
33
+ <linearGradient
34
+ inkscape:collect="always"
35
+ id="linearGradient5060">
36
+ <stop
37
+ style="stop-color:black;stop-opacity:1;"
38
+ offset="0"
39
+ id="stop5062" />
40
+ <stop
41
+ style="stop-color:black;stop-opacity:0;"
42
+ offset="1"
43
+ id="stop5064" />
44
+ </linearGradient>
45
+ <linearGradient
46
+ id="linearGradient5048">
47
+ <stop
48
+ style="stop-color:black;stop-opacity:0;"
49
+ offset="0"
50
+ id="stop5050" />
51
+ <stop
52
+ id="stop5056"
53
+ offset="0.5"
54
+ style="stop-color:black;stop-opacity:1;" />
55
+ <stop
56
+ style="stop-color:black;stop-opacity:0;"
57
+ offset="1"
58
+ id="stop5052" />
59
+ </linearGradient>
60
+ <linearGradient
61
+ id="linearGradient2994">
62
+ <stop
63
+ style="stop-color:#000000;stop-opacity:1;"
64
+ offset="0"
65
+ id="stop2996" />
66
+ <stop
67
+ style="stop-color:#c9c9c9;stop-opacity:1;"
68
+ offset="1"
69
+ id="stop2998" />
70
+ </linearGradient>
71
+ <linearGradient
72
+ inkscape:collect="always"
73
+ id="linearGradient2984">
74
+ <stop
75
+ style="stop-color:#e7e2b8;stop-opacity:1;"
76
+ offset="0"
77
+ id="stop2986" />
78
+ <stop
79
+ style="stop-color:#e7e2b8;stop-opacity:0;"
80
+ offset="1"
81
+ id="stop2988" />
82
+ </linearGradient>
83
+ <linearGradient
84
+ id="linearGradient2974">
85
+ <stop
86
+ style="stop-color:#c1c1c1;stop-opacity:1;"
87
+ offset="0"
88
+ id="stop2976" />
89
+ <stop
90
+ style="stop-color:#acacac;stop-opacity:1;"
91
+ offset="1"
92
+ id="stop2978" />
93
+ </linearGradient>
94
+ <linearGradient
95
+ id="linearGradient2966">
96
+ <stop
97
+ style="stop-color:#ffd1d1;stop-opacity:1;"
98
+ offset="0"
99
+ id="stop2968" />
100
+ <stop
101
+ id="stop3006"
102
+ offset="0.5"
103
+ style="stop-color:#ff1d1d;stop-opacity:1;" />
104
+ <stop
105
+ style="stop-color:#6f0000;stop-opacity:1;"
106
+ offset="1"
107
+ id="stop2970" />
108
+ </linearGradient>
109
+ <linearGradient
110
+ id="linearGradient2919">
111
+ <stop
112
+ style="stop-color:#a3a4a0;stop-opacity:1;"
113
+ offset="0"
114
+ id="stop2921" />
115
+ <stop
116
+ style="stop-color:#888a85;stop-opacity:1;"
117
+ offset="1"
118
+ id="stop2923" />
119
+ </linearGradient>
120
+ <linearGradient
121
+ id="linearGradient2873">
122
+ <stop
123
+ style="stop-color:#939393;stop-opacity:1;"
124
+ offset="0"
125
+ id="stop2875" />
126
+ <stop
127
+ style="stop-color:#424242;stop-opacity:1;"
128
+ offset="1"
129
+ id="stop2877" />
130
+ </linearGradient>
131
+ <linearGradient
132
+ inkscape:collect="always"
133
+ id="linearGradient2865">
134
+ <stop
135
+ style="stop-color:#000000;stop-opacity:1;"
136
+ offset="0"
137
+ id="stop2867" />
138
+ <stop
139
+ style="stop-color:#000000;stop-opacity:0;"
140
+ offset="1"
141
+ id="stop2869" />
142
+ </linearGradient>
143
+ <linearGradient
144
+ id="linearGradient2855">
145
+ <stop
146
+ style="stop-color:#dfdfdf;stop-opacity:1;"
147
+ offset="0"
148
+ id="stop2857" />
149
+ <stop
150
+ style="stop-color:#ffffff;stop-opacity:1;"
151
+ offset="1"
152
+ id="stop2859" />
153
+ </linearGradient>
154
+ <radialGradient
155
+ inkscape:collect="always"
156
+ xlink:href="#linearGradient2865"
157
+ id="radialGradient2871"
158
+ cx="23.5625"
159
+ cy="40.4375"
160
+ fx="23.5625"
161
+ fy="40.4375"
162
+ r="19.5625"
163
+ gradientTransform="matrix(1,0,0,0.348243,0,26.35543)"
164
+ gradientUnits="userSpaceOnUse" />
165
+ <linearGradient
166
+ inkscape:collect="always"
167
+ xlink:href="#linearGradient5048"
168
+ id="linearGradient2493"
169
+ gradientUnits="userSpaceOnUse"
170
+ gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
171
+ x1="302.85715"
172
+ y1="366.64789"
173
+ x2="302.85715"
174
+ y2="609.50507" />
175
+ <radialGradient
176
+ inkscape:collect="always"
177
+ xlink:href="#linearGradient5060"
178
+ id="radialGradient2495"
179
+ gradientUnits="userSpaceOnUse"
180
+ gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
181
+ cx="605.71429"
182
+ cy="486.64789"
183
+ fx="605.71429"
184
+ fy="486.64789"
185
+ r="117.14286" />
186
+ <radialGradient
187
+ inkscape:collect="always"
188
+ xlink:href="#linearGradient5060"
189
+ id="radialGradient2497"
190
+ gradientUnits="userSpaceOnUse"
191
+ gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
192
+ cx="605.71429"
193
+ cy="486.64789"
194
+ fx="605.71429"
195
+ fy="486.64789"
196
+ r="117.14286" />
197
+ <linearGradient
198
+ inkscape:collect="always"
199
+ xlink:href="#linearGradient2855"
200
+ id="linearGradient2499"
201
+ gradientUnits="userSpaceOnUse"
202
+ gradientTransform="matrix(1.137871,0,0,1,-2.660884,0)"
203
+ x1="21.043484"
204
+ y1="42.83337"
205
+ x2="14.283642"
206
+ y2="6.8333683" />
207
+ <linearGradient
208
+ inkscape:collect="always"
209
+ xlink:href="#linearGradient2873"
210
+ id="linearGradient2501"
211
+ gradientUnits="userSpaceOnUse"
212
+ x1="26.612417"
213
+ y1="28.083368"
214
+ x2="26.228401"
215
+ y2="42.83337" />
216
+ <radialGradient
217
+ inkscape:collect="always"
218
+ xlink:href="#linearGradient2865"
219
+ id="radialGradient2503"
220
+ gradientUnits="userSpaceOnUse"
221
+ gradientTransform="matrix(1,0,0,0.348243,0,26.35543)"
222
+ cx="23.5625"
223
+ cy="40.4375"
224
+ fx="23.5625"
225
+ fy="40.4375"
226
+ r="19.5625" />
227
+ <linearGradient
228
+ inkscape:collect="always"
229
+ xlink:href="#linearGradient2919"
230
+ id="linearGradient2505"
231
+ gradientUnits="userSpaceOnUse"
232
+ x1="6"
233
+ y1="7.5625"
234
+ x2="40.984375"
235
+ y2="7.5625" />
236
+ <linearGradient
237
+ inkscape:collect="always"
238
+ xlink:href="#linearGradient2966"
239
+ id="linearGradient2507"
240
+ gradientUnits="userSpaceOnUse"
241
+ gradientTransform="translate(-5.669292,0)"
242
+ x1="48.90625"
243
+ y1="17.376184"
244
+ x2="50.988335"
245
+ y2="22.250591" />
246
+ <linearGradient
247
+ inkscape:collect="always"
248
+ xlink:href="#linearGradient2974"
249
+ id="linearGradient2509"
250
+ gradientUnits="userSpaceOnUse"
251
+ gradientTransform="translate(-5.669292,0)"
252
+ x1="46"
253
+ y1="19.8125"
254
+ x2="47.6875"
255
+ y2="22.625" />
256
+ <radialGradient
257
+ inkscape:collect="always"
258
+ xlink:href="#linearGradient2984"
259
+ id="radialGradient2511"
260
+ gradientUnits="userSpaceOnUse"
261
+ gradientTransform="matrix(2.923565,0,0,2.029717,-61.55532,-27.88417)"
262
+ cx="29.053354"
263
+ cy="27.640751"
264
+ fx="29.053354"
265
+ fy="27.640751"
266
+ r="3.2408545" />
267
+ <linearGradient
268
+ inkscape:collect="always"
269
+ xlink:href="#linearGradient2994"
270
+ id="linearGradient2513"
271
+ gradientUnits="userSpaceOnUse"
272
+ gradientTransform="translate(-5.825542,0.125)"
273
+ x1="25.71875"
274
+ y1="31.046875"
275
+ x2="25.514589"
276
+ y2="30.703125" />
277
+ </defs>
278
+ <sodipodi:namedview
279
+ stroke="#c4a000"
280
+ fill="#edd400"
281
+ id="base"
282
+ pagecolor="#ffffff"
283
+ bordercolor="#666666"
284
+ borderopacity="0.25490196"
285
+ inkscape:pageopacity="0.0"
286
+ inkscape:pageshadow="2"
287
+ inkscape:zoom="11.313708"
288
+ inkscape:cx="25.931398"
289
+ inkscape:cy="4.2459867"
290
+ inkscape:current-layer="layer1"
291
+ showgrid="false"
292
+ inkscape:grid-bbox="true"
293
+ inkscape:document-units="px"
294
+ inkscape:showpageshadow="false"
295
+ inkscape:window-width="1016"
296
+ inkscape:window-height="688"
297
+ inkscape:window-x="249"
298
+ inkscape:window-y="25" />
299
+ <metadata
300
+ id="metadata4">
301
+ <rdf:RDF>
302
+ <cc:Work
303
+ rdf:about="">
304
+ <dc:format>image/svg+xml</dc:format>
305
+ <dc:type
306
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
307
+ <dc:creator>
308
+ <cc:Agent>
309
+ <dc:title>Jakub Steiner</dc:title>
310
+ </cc:Agent>
311
+ </dc:creator>
312
+ <dc:source>http://jimmac.musichall.cz</dc:source>
313
+ <cc:license
314
+ rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
315
+ <dc:title>Text Editor</dc:title>
316
+ </cc:Work>
317
+ <cc:License
318
+ rdf:about="http://creativecommons.org/licenses/publicdomain/">
319
+ <cc:permits
320
+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
321
+ <cc:permits
322
+ rdf:resource="http://creativecommons.org/ns#Distribution" />
323
+ <cc:permits
324
+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
325
+ </cc:License>
326
+ </rdf:RDF>
327
+ </metadata>
328
+ <g
329
+ id="layer1"
330
+ inkscape:label="Layer 1"
331
+ inkscape:groupmode="layer">
332
+ <g
333
+ id="g2457"
334
+ transform="matrix(0.3256121,0,0,0.3256121,1.3074132,1.0239561)">
335
+ <g
336
+ id="g6707"
337
+ transform="matrix(2.417561e-2,0,0,2.086758e-2,45.12765,40.1536)">
338
+ <rect
339
+ y="-150.69685"
340
+ x="-1559.2523"
341
+ height="478.35718"
342
+ width="1339.6335"
343
+ id="rect6709"
344
+ style="opacity:0.40206185;fill:url(#linearGradient2493);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;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" />
345
+ <path
346
+ sodipodi:nodetypes="cccc"
347
+ id="path6711"
348
+ d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z"
349
+ style="opacity:0.40206185;fill:url(#radialGradient2495);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;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" />
350
+ <path
351
+ style="opacity:0.40206185;fill:url(#radialGradient2497);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;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"
352
+ d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z"
353
+ id="path6713"
354
+ sodipodi:nodetypes="cccc" />
355
+ </g>
356
+ <path
357
+ sodipodi:nodetypes="ccccccccccc"
358
+ id="rect1975"
359
+ d="M 7.1638699,4.5063726 L 39.813122,4.5063726 C 40.575699,4.5063726 41.189615,5.0388241 41.189615,5.7002099 C 41.189615,5.7002099 43.590945,39.868907 43.590945,39.868907 C 43.590945,39.868907 43.603403,42.216529 43.603403,42.216529 C 43.603403,42.877915 42.989488,43.410366 42.226911,43.410366 L 4.750081,43.410366 C 3.9875042,43.410366 3.3735887,42.877915 3.3735887,42.216529 L 3.3624173,40.049613 L 5.7873775,5.7002099 C 5.7873775,5.0388241 6.4012931,4.5063726 7.1638699,4.5063726 z"
360
+ style="fill:url(#linearGradient2499);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2501);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;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" />
361
+ <path
362
+ sodipodi:type="arc"
363
+ style="opacity:0.31578944;fill:url(#radialGradient2503);fill-opacity:1;fill-rule:evenodd;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"
364
+ id="path3008"
365
+ sodipodi:cx="23.5625"
366
+ sodipodi:cy="40.4375"
367
+ sodipodi:rx="19.5625"
368
+ sodipodi:ry="6.8125"
369
+ d="M 43.125,40.4375 A 19.5625,6.8125 0 1 1 4,40.4375 A 19.5625,6.8125 0 1 1 43.125,40.4375 z"
370
+ transform="matrix(0.616613,0,0,0.440367,10.61425,13.94266)" />
371
+ <rect
372
+ ry="0.67937863"
373
+ rx="0.67937863"
374
+ y="39.868271"
375
+ x="3.9770372"
376
+ height="3.0714951"
377
+ width="39.048077"
378
+ id="rect2851"
379
+ style="opacity:1;fill:#a4a4a4;fill-opacity:1;fill-rule:evenodd;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" />
380
+ <path
381
+ sodipodi:nodetypes="ccccccc"
382
+ id="path2853"
383
+ d="M 3.9267507,40.442796 C 3.9267507,40.442796 4.0776125,39.912466 4.6307727,39.868272 L 42.195375,39.868272 C 42.949684,39.868272 42.999971,40.619573 42.999971,40.619573 C 42.999971,40.619573 43.02357,39 41.7161,39 L 5.3042159,39 C 4.2984702,39.088388 3.9267507,39.779883 3.9267507,40.442796 z"
384
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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" />
385
+ <path
386
+ sodipodi:nodetypes="ccccccccc"
387
+ id="path2915"
388
+ d="M 6.25,5.7343749 L 6,10.125 C 6,10.125 6.3125,8.9999999 7,8.9999999 L 40.125,8.9999999 C 40.828125,8.9843749 40.859375,9.3124999 40.984375,9.8281249 C 40.984375,9.8281249 40.734375,5.9531249 40.734375,5.9531249 C 40.703125,5.4062499 40.515625,4.9999999 39.953125,4.9999999 L 7.0625,4.9999999 C 6.609375,4.9999999 6.296875,5.3437499 6.25,5.7343749 z"
389
+ style="opacity:1;fill:url(#linearGradient2505);fill-opacity:1;fill-rule:evenodd;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" />
390
+ <path
391
+ style="opacity:0.43859648;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999946;stroke-linecap:butt;stroke-linejoin:miter;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"
392
+ d="M 7.8126474,5.5404503 L 38.944983,5.5404503 C 39.66702,5.5404503 40.2483,5.3883462 40.2483,6.014572 C 40.2483,6.014572 42.521973,39.023077 42.521973,39.023077 C 42.521973,39.023077 42.622156,41.732033 42.622156,41.732033 C 42.622156,42.358259 42.48282,42.376269 41.760782,42.376269 L 4.8620444,42.376269 C 4.4493662,42.376269 4.4426114,42.269871 4.4426114,41.864615 L 4.4320338,39.194177 L 6.7280807,6.045822 C 6.7280807,5.4195962 7.09061,5.5404503 7.8126474,5.5404503 z"
393
+ id="path2917"
394
+ sodipodi:nodetypes="ccccccccccc" />
395
+ <g
396
+ id="g2950">
397
+ <rect
398
+ style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#886f00;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"
399
+ id="rect2899"
400
+ width="2"
401
+ height="5"
402
+ x="8.5"
403
+ y="2.5"
404
+ rx="1"
405
+ ry="1" />
406
+ <rect
407
+ ry="1"
408
+ rx="1"
409
+ y="2.5"
410
+ x="12.5"
411
+ height="5"
412
+ width="2"
413
+ id="rect2901"
414
+ style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#886f00;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" />
415
+ <rect
416
+ style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#886f00;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"
417
+ id="rect2903"
418
+ width="2"
419
+ height="5"
420
+ x="16.5"
421
+ y="2.5"
422
+ rx="1"
423
+ ry="1" />
424
+ <rect
425
+ ry="1"
426
+ rx="1"
427
+ y="2.5"
428
+ x="20.5"
429
+ height="5"
430
+ width="2"
431
+ id="rect2905"
432
+ style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#886f00;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" />
433
+ <rect
434
+ style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#886f00;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"
435
+ id="rect2907"
436
+ width="2"
437
+ height="5"
438
+ x="24.5"
439
+ y="2.5"
440
+ rx="1"
441
+ ry="1" />
442
+ <rect
443
+ ry="1"
444
+ rx="1"
445
+ y="2.5"
446
+ x="28.5"
447
+ height="5"
448
+ width="2"
449
+ id="rect2909"
450
+ style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#886f00;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" />
451
+ <rect
452
+ style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#886f00;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"
453
+ id="rect2911"
454
+ width="2"
455
+ height="5"
456
+ x="32.5"
457
+ y="2.5"
458
+ rx="1"
459
+ ry="1" />
460
+ <rect
461
+ ry="1"
462
+ rx="1"
463
+ y="2.5"
464
+ x="36.5"
465
+ height="5"
466
+ width="2"
467
+ id="rect2913"
468
+ style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:evenodd;stroke:#886f00;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" />
469
+ </g>
470
+ <g
471
+ id="g2941">
472
+ <rect
473
+ style="opacity:0.28070176;fill:#000000;fill-opacity:1;fill-rule:evenodd;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"
474
+ id="rect2927"
475
+ width="29"
476
+ height="1"
477
+ x="9"
478
+ y="12" />
479
+ <rect
480
+ y="14.981792"
481
+ x="9"
482
+ height="1"
483
+ width="29"
484
+ id="rect2929"
485
+ style="opacity:0.28070176;fill:#000000;fill-opacity:1;fill-rule:evenodd;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" />
486
+ <rect
487
+ style="opacity:0.28070176;fill:#000000;fill-opacity:1;fill-rule:evenodd;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"
488
+ id="rect2931"
489
+ width="13"
490
+ height="1"
491
+ x="9"
492
+ y="18.003939" />
493
+ <rect
494
+ y="22.985731"
495
+ x="9"
496
+ height="1"
497
+ width="29"
498
+ id="rect2933"
499
+ style="opacity:0.28070176;fill:#000000;fill-opacity:1;fill-rule:evenodd;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" />
500
+ <rect
501
+ style="opacity:0.28070176;fill:#000000;fill-opacity:1;fill-rule:evenodd;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"
502
+ id="rect2935"
503
+ width="29"
504
+ height="1"
505
+ x="9"
506
+ y="26.007877" />
507
+ <rect
508
+ y="29.030024"
509
+ x="9"
510
+ height="1"
511
+ width="29"
512
+ id="rect2937"
513
+ style="opacity:0.28070176;fill:#000000;fill-opacity:1;fill-rule:evenodd;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" />
514
+ <rect
515
+ style="opacity:0.28070176;fill:#000000;fill-opacity:1;fill-rule:evenodd;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"
516
+ id="rect2939"
517
+ width="8"
518
+ height="1"
519
+ x="9"
520
+ y="32.05217" />
521
+ </g>
522
+ <path
523
+ sodipodi:nodetypes="cccccc"
524
+ id="path2960"
525
+ d="M 17.34116,32.5 L 22.96616,26.875 L 43.059909,17.125 C 46.309909,15.875 48.247409,20.5 45.372409,22.125 L 25.34116,31.5 L 17.34116,32.5 z"
526
+ style="opacity:1;fill:#cb9022;fill-opacity:1;fill-rule:evenodd;stroke:#5c410c;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" />
527
+ <path
528
+ style="opacity:1;fill:url(#linearGradient2507);fill-opacity:1;fill-rule:evenodd;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"
529
+ d="M 38.330708,20 C 38.330708,20 39.768208,20.09375 40.330708,21.34375 C 40.910201,22.631511 40.330708,24 40.330708,24 L 45.361958,21.53125 C 45.361958,21.53125 46.81399,20.649883 46.018208,18.6875 C 45.233296,16.751923 43.330708,17.53125 43.330708,17.53125 L 38.330708,20 z"
530
+ id="path2964"
531
+ sodipodi:nodetypes="czcczcc" />
532
+ <path
533
+ sodipodi:nodetypes="czcczcc"
534
+ id="path2962"
535
+ d="M 38.330708,20 C 38.330708,20 39.768208,20.09375 40.330708,21.34375 C 40.910201,22.631511 40.330708,24 40.330708,24 L 42.330708,23 C 42.330708,23 43.15774,21.681133 42.549458,20.3125 C 41.924458,18.90625 40.330708,19 40.330708,19 L 38.330708,20 z"
536
+ style="opacity:1;fill:url(#linearGradient2509);fill-opacity:1;fill-rule:evenodd;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" />
537
+ <path
538
+ sodipodi:nodetypes="cccc"
539
+ id="path2982"
540
+ d="M 18.768208,31.78125 L 23.268208,27.28125 C 24.768208,28.09375 25.549458,29.4375 25.143208,31 L 18.768208,31.78125 z"
541
+ style="opacity:1;fill:url(#radialGradient2511);fill-opacity:1;fill-rule:evenodd;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" />
542
+ <path
543
+ sodipodi:nodetypes="cccc"
544
+ id="path2992"
545
+ d="M 20.111958,30.375 L 18.486958,31.96875 L 20.830708,31.65625 C 21.049458,30.9375 20.643208,30.59375 20.111958,30.375 z"
546
+ style="opacity:1;fill:url(#linearGradient2513);fill-opacity:1;fill-rule:evenodd;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" />
547
+ <path
548
+ sodipodi:nodetypes="ccccc"
549
+ id="path3002"
550
+ d="M 23.268208,27.25 L 24.830708,28.5 L 40.218048,21.18133 C 39.773616,20.325286 38.976281,20.096733 38.314669,20.019068 L 23.268208,27.25 z"
551
+ style="opacity:1;fill:#ffffff;fill-opacity:0.36363639;fill-rule:evenodd;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" />
552
+ <path
553
+ sodipodi:nodetypes="ccccc"
554
+ id="path3004"
555
+ d="M 25.143208,31.0625 L 25.330708,30.3125 L 40.561798,23.1829 C 40.561798,23.1829 40.451638,23.796527 40.345919,23.93225 L 25.143208,31.0625 z"
556
+ style="opacity:1;fill:#000000;fill-opacity:0.36363639;fill-rule:evenodd;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" />
557
+ </g>
558
+ </g>
559
+ </svg>