ippa-chingu 0.5 → 0.5.1

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.
Files changed (72) hide show
  1. data/Manifest.txt +69 -0
  2. data/benchmarks/README.txt +1 -0
  3. data/benchmarks/benchmark.rb +6 -0
  4. data/benchmarks/benchmark3.rb +23 -0
  5. data/benchmarks/benchmark4.rb +71 -0
  6. data/benchmarks/meta_benchmark.rb +67 -0
  7. data/benchmarks/meta_benchmark2.rb +39 -0
  8. data/chingu.gemspec +3 -3
  9. data/games/triangle_wars/NOT_DONE_YET.txt +1 -0
  10. data/games/triangle_wars/media/1up.png +0 -0
  11. data/games/triangle_wars/media/33487__CosmicD__006.wav +0 -0
  12. data/games/triangle_wars/media/Thumbs.db +0 -0
  13. data/games/triangle_wars/media/autofire.png +0 -0
  14. data/games/triangle_wars/media/backgrounds/GPN-2000-000933.jpg +0 -0
  15. data/games/triangle_wars/media/backgrounds/Thumbs.db +0 -0
  16. data/games/triangle_wars/media/backgrounds/background10.png +0 -0
  17. data/games/triangle_wars/media/backgrounds/background10.svg +94 -0
  18. data/games/triangle_wars/media/backgrounds/background2.jpg +0 -0
  19. data/games/triangle_wars/media/backgrounds/background2.png +0 -0
  20. data/games/triangle_wars/media/backgrounds/hubble_deep_field.jpg +0 -0
  21. data/games/triangle_wars/media/backgrounds/hubble_deep_field.png +0 -0
  22. data/games/triangle_wars/media/backgrounds/intro_bg.png +0 -0
  23. data/games/triangle_wars/media/backgrounds/star_4.jpg +0 -0
  24. data/games/triangle_wars/media/backgrounds/star_5.jpg +0 -0
  25. data/games/triangle_wars/media/backgrounds/star_6.jpg +0 -0
  26. data/games/triangle_wars/media/backgrounds/supernova_1.jpg +0 -0
  27. data/games/triangle_wars/media/bigbomb.png +0 -0
  28. data/games/triangle_wars/media/bullets.svg +223 -0
  29. data/games/triangle_wars/media/enemy.png +0 -0
  30. data/games/triangle_wars/media/enemy.svg +194 -0
  31. data/games/triangle_wars/media/enemy_dying.png +0 -0
  32. data/games/triangle_wars/media/enemy_small.svg +195 -0
  33. data/games/triangle_wars/media/explosion.wav +0 -0
  34. data/games/triangle_wars/media/hit.wav +0 -0
  35. data/games/triangle_wars/media/hit2.wav +0 -0
  36. data/games/triangle_wars/media/hit3.wav +0 -0
  37. data/games/triangle_wars/media/laser.png +0 -0
  38. data/games/triangle_wars/media/laser.svg +166 -0
  39. data/games/triangle_wars/media/laser_up.png +0 -0
  40. data/games/triangle_wars/media/plasma.png +0 -0
  41. data/games/triangle_wars/media/plasma.wav +0 -0
  42. data/games/triangle_wars/media/plasma_up.png +0 -0
  43. data/games/triangle_wars/media/powerup_bg.png +0 -0
  44. data/games/triangle_wars/media/powerups.svg +885 -0
  45. data/games/triangle_wars/media/rocket_up.png +0 -0
  46. data/games/triangle_wars/media/spaceship.png +0 -0
  47. data/games/triangle_wars/media/spaceship.svg +318 -0
  48. data/games/triangle_wars/media/triangle_logo.svg +335 -0
  49. data/games/triangle_wars/media/triangle_wars.png +0 -0
  50. data/games/triangle_wars/media/triangle_wars_intro.mp3 +0 -0
  51. data/games/triangle_wars/media/triangle_wars_intro.ogg +0 -0
  52. data/games/triangle_wars/src/enemy.rb +117 -0
  53. data/games/triangle_wars/src/game_over_state.rb +18 -0
  54. data/games/triangle_wars/src/level_state.rb +114 -0
  55. data/games/triangle_wars/src/menu_state.rb +67 -0
  56. data/games/triangle_wars/src/my_game_object.rb +46 -0
  57. data/games/triangle_wars/src/pause_state.rb +16 -0
  58. data/games/triangle_wars/src/player.rb +136 -0
  59. data/games/triangle_wars/src/power_up.rb +67 -0
  60. data/games/triangle_wars/triangle_wars.rb +69 -0
  61. data/lib/chingu.rb +2 -2
  62. data/lib/chingu/actor.rb +8 -8
  63. data/lib/chingu/animation.rb +2 -2
  64. data/lib/chingu/basic_game_object.rb +36 -29
  65. data/lib/chingu/particle.rb +5 -8
  66. data/lib/chingu/traits/collision_detection.rb +1 -1
  67. data/lib/chingu/traits/deprecated_module_visual.rb +1 -1
  68. data/lib/chingu/traits/deprecated_visual.rb +1 -1
  69. data/lib/chingu/traits/effect.rb +1 -1
  70. data/lib/chingu/traits/input.rb +1 -1
  71. data/lib/chingu/traits/velocity.rb +1 -1
  72. metadata +62 -3
@@ -0,0 +1,318 @@
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
+ width="744.09448819"
13
+ height="1052.3622047"
14
+ id="svg2"
15
+ sodipodi:version="0.32"
16
+ inkscape:version="0.46"
17
+ sodipodi:docname="spaceship.svg"
18
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
19
+ inkscape:export-filename="C:\Dev\projects\enemies at the surface\media\spaceship.png"
20
+ inkscape:export-xdpi="14.550418"
21
+ inkscape:export-ydpi="14.550418">
22
+ <defs
23
+ id="defs4">
24
+ <linearGradient
25
+ id="linearGradient3205"
26
+ inkscape:collect="always">
27
+ <stop
28
+ id="stop3207"
29
+ offset="0"
30
+ style="stop-color:#b7b7b7;stop-opacity:1" />
31
+ <stop
32
+ id="stop3209"
33
+ offset="1"
34
+ style="stop-color:#101010;stop-opacity:1" />
35
+ </linearGradient>
36
+ <linearGradient
37
+ inkscape:collect="always"
38
+ id="linearGradient3193">
39
+ <stop
40
+ style="stop-color:#000000;stop-opacity:1;"
41
+ offset="0"
42
+ id="stop3195" />
43
+ <stop
44
+ style="stop-color:#a4a4a4;stop-opacity:1"
45
+ offset="1"
46
+ id="stop3197" />
47
+ </linearGradient>
48
+ <linearGradient
49
+ inkscape:collect="always"
50
+ id="linearGradient3181">
51
+ <stop
52
+ style="stop-color:#000000;stop-opacity:1;"
53
+ offset="0"
54
+ id="stop3183" />
55
+ <stop
56
+ style="stop-color:#a0a0a0;stop-opacity:1"
57
+ offset="1"
58
+ id="stop3185" />
59
+ </linearGradient>
60
+ <linearGradient
61
+ id="linearGradient4931"
62
+ inkscape:collect="always">
63
+ <stop
64
+ id="stop4933"
65
+ offset="0"
66
+ style="stop-color:#000080;stop-opacity:1" />
67
+ <stop
68
+ id="stop4935"
69
+ offset="1"
70
+ style="stop-color:#0000ff;stop-opacity:1" />
71
+ </linearGradient>
72
+ <linearGradient
73
+ inkscape:collect="always"
74
+ id="linearGradient4905">
75
+ <stop
76
+ style="stop-color:#cccccc;stop-opacity:1"
77
+ offset="0"
78
+ id="stop4907" />
79
+ <stop
80
+ style="stop-color:#4d4d4d;stop-opacity:1"
81
+ offset="1"
82
+ id="stop4909" />
83
+ </linearGradient>
84
+ <inkscape:perspective
85
+ sodipodi:type="inkscape:persp3d"
86
+ inkscape:vp_x="0 : 526.18109 : 1"
87
+ inkscape:vp_y="0 : 1000 : 0"
88
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
89
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
90
+ id="perspective10" />
91
+ <filter
92
+ inkscape:collect="always"
93
+ id="filter4901">
94
+ <feGaussianBlur
95
+ inkscape:collect="always"
96
+ stdDeviation="2.5856297"
97
+ id="feGaussianBlur4903" />
98
+ </filter>
99
+ <linearGradient
100
+ inkscape:collect="always"
101
+ xlink:href="#linearGradient4905"
102
+ id="linearGradient4911"
103
+ x1="272.89514"
104
+ y1="269.62695"
105
+ x2="142.16695"
106
+ y2="511.47418"
107
+ gradientUnits="userSpaceOnUse" />
108
+ <linearGradient
109
+ inkscape:collect="always"
110
+ xlink:href="#linearGradient4931"
111
+ id="linearGradient4929"
112
+ x1="174.59357"
113
+ y1="362.77084"
114
+ x2="214.32291"
115
+ y2="208.38751"
116
+ gradientUnits="userSpaceOnUse" />
117
+ <filter
118
+ inkscape:collect="always"
119
+ id="filter5247"
120
+ x="-0.64571741"
121
+ width="2.2914348"
122
+ y="-0.28974296"
123
+ height="1.5794859">
124
+ <feGaussianBlur
125
+ inkscape:collect="always"
126
+ stdDeviation="6.4336567"
127
+ id="feGaussianBlur5249" />
128
+ </filter>
129
+ <linearGradient
130
+ inkscape:collect="always"
131
+ xlink:href="#linearGradient3193"
132
+ id="linearGradient3199"
133
+ x1="115.45385"
134
+ y1="305.63297"
135
+ x2="115.45385"
136
+ y2="351.19241"
137
+ gradientUnits="userSpaceOnUse"
138
+ gradientTransform="translate(0,-11)" />
139
+ <linearGradient
140
+ inkscape:collect="always"
141
+ xlink:href="#linearGradient3205"
142
+ id="linearGradient3201"
143
+ x1="114.54282"
144
+ y1="352.29755"
145
+ x2="114.54282"
146
+ y2="303.16479"
147
+ gradientUnits="userSpaceOnUse"
148
+ gradientTransform="translate(-1,-13)" />
149
+ <linearGradient
150
+ inkscape:collect="always"
151
+ xlink:href="#linearGradient3181"
152
+ id="linearGradient3203"
153
+ x1="114.54282"
154
+ y1="302.05966"
155
+ x2="114.54282"
156
+ y2="351.19241"
157
+ gradientUnits="userSpaceOnUse"
158
+ gradientTransform="translate(1,-12)" />
159
+ </defs>
160
+ <sodipodi:namedview
161
+ id="base"
162
+ pagecolor="#ffffff"
163
+ bordercolor="#666666"
164
+ borderopacity="1.0"
165
+ gridtolerance="10000"
166
+ guidetolerance="10"
167
+ objecttolerance="10"
168
+ inkscape:pageopacity="0.0"
169
+ inkscape:pageshadow="2"
170
+ inkscape:zoom="0.558743"
171
+ inkscape:cx="372.04724"
172
+ inkscape:cy="526.18109"
173
+ inkscape:document-units="px"
174
+ inkscape:current-layer="layer1"
175
+ showgrid="false"
176
+ inkscape:window-width="1048"
177
+ inkscape:window-height="793"
178
+ inkscape:window-x="42"
179
+ inkscape:window-y="79" />
180
+ <metadata
181
+ id="metadata7">
182
+ <rdf:RDF>
183
+ <cc:Work
184
+ rdf:about="">
185
+ <dc:format>image/svg+xml</dc:format>
186
+ <dc:type
187
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
188
+ </cc:Work>
189
+ </rdf:RDF>
190
+ </metadata>
191
+ <g
192
+ inkscape:label="Layer 1"
193
+ inkscape:groupmode="layer"
194
+ id="layer1">
195
+ <path
196
+ sodipodi:type="star"
197
+ style="opacity:0.52479338;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4901)"
198
+ id="path4883"
199
+ sodipodi:sides="3"
200
+ sodipodi:cx="205.89696"
201
+ sodipodi:cy="442.84186"
202
+ sodipodi:r1="196.79916"
203
+ sodipodi:r2="98.399582"
204
+ sodipodi:arg1="0.52359878"
205
+ sodipodi:arg2="1.5707963"
206
+ inkscape:flatsided="true"
207
+ inkscape:rounded="0"
208
+ inkscape:randomized="0"
209
+ d="M 376.33003,541.24144 L 35.463882,541.24144 L 205.89696,246.04269 L 376.33003,541.24144 z"
210
+ transform="matrix(1.4556754,0,0,1.4038715,58.966423,136.15931)"
211
+ inkscape:export-filename="C:\Dev\projects\lib\chingu\games\triangle_wars\media\spaceship.png"
212
+ inkscape:export-xdpi="14.510556"
213
+ inkscape:export-ydpi="14.510556" />
214
+ <path
215
+ sodipodi:type="star"
216
+ style="opacity:1;fill:url(#linearGradient4911);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
217
+ id="path2405"
218
+ sodipodi:sides="3"
219
+ sodipodi:cx="205.89696"
220
+ sodipodi:cy="442.84186"
221
+ sodipodi:r1="196.79916"
222
+ sodipodi:r2="98.399582"
223
+ sodipodi:arg1="0.52359878"
224
+ sodipodi:arg2="1.5707963"
225
+ inkscape:flatsided="true"
226
+ inkscape:rounded="0"
227
+ inkscape:randomized="0"
228
+ d="M 376.33003,541.24144 L 35.463882,541.24144 L 205.89696,246.04269 L 376.33003,541.24144 z"
229
+ transform="matrix(1.3346799,0,0,1.3096921,84.184695,176.20083)"
230
+ inkscape:export-filename="C:\Dev\projects\lib\chingu\games\triangle_wars\media\spaceship.png"
231
+ inkscape:export-xdpi="14.510556"
232
+ inkscape:export-ydpi="14.510556" />
233
+ <path
234
+ sodipodi:type="star"
235
+ style="opacity:1;fill:url(#linearGradient4929);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.15117538;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
236
+ id="path2407"
237
+ sodipodi:sides="3"
238
+ sodipodi:cx="199.36053"
239
+ sodipodi:cy="285.96799"
240
+ sodipodi:r1="77.080475"
241
+ sodipodi:r2="38.540237"
242
+ sodipodi:arg1="0.52359878"
243
+ sodipodi:arg2="1.5707963"
244
+ inkscape:flatsided="true"
245
+ inkscape:rounded="0"
246
+ inkscape:randomized="0"
247
+ d="M 266.11418,324.50822 L 132.60689,324.50822 L 199.36054,208.88751 L 266.11418,324.50822 z"
248
+ transform="matrix(1.415695,0,0,1.3891904,77.309442,257.07654)"
249
+ inkscape:export-xdpi="14.510556"
250
+ inkscape:export-ydpi="14.510556"
251
+ inkscape:export-filename="C:\Dev\projects\lib\chingu\games\triangle_wars\media\spaceship.png" />
252
+ <path
253
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5247)"
254
+ d="M 194.45823,616.05674 C 191.65465,611.93819 192.50504,598.71979 196.09233,591.5452 C 199.99038,583.74912 204.25512,576.84858 209.16515,570.30187 C 211.57583,567.08763 213.60071,565.86631 215.70157,563.76545"
255
+ id="path4957"
256
+ inkscape:export-filename="C:\Dev\projects\lib\chingu\games\triangle_wars\media\spaceship.png"
257
+ inkscape:export-xdpi="14.510556"
258
+ inkscape:export-ydpi="14.510556"
259
+ transform="matrix(1.8066622,0,0,1.5266148,-27.369729,-267.81344)" />
260
+ <path
261
+ sodipodi:type="star"
262
+ style="opacity:0.66804983;fill:url(#linearGradient3201);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.4, 0.2, 0.1, 0.2;stroke-dashoffset:0;stroke-opacity:1"
263
+ id="path2395"
264
+ sodipodi:sides="3"
265
+ sodipodi:cx="114.54282"
266
+ sodipodi:cy="318.57224"
267
+ sodipodi:r1="32.215168"
268
+ sodipodi:r2="16.107584"
269
+ sodipodi:arg1="1.5707963"
270
+ sodipodi:arg2="2.6179939"
271
+ inkscape:flatsided="false"
272
+ inkscape:rounded="0"
273
+ inkscape:randomized="0"
274
+ d="M 114.54282,350.7874 L 100.59325,326.62603 L 86.643669,302.46465 L 114.54282,302.46465 L 142.44198,302.46465 L 128.4924,326.62603 L 114.54282,350.7874 z"
275
+ transform="translate(217.76779,428.11504)"
276
+ inkscape:export-filename="C:\Dev\projects\lib\chingu\games\triangle_wars\media\spaceship.png"
277
+ inkscape:export-xdpi="14.510556"
278
+ inkscape:export-ydpi="14.510556" />
279
+ <path
280
+ sodipodi:type="star"
281
+ style="opacity:0.66804983;fill:url(#linearGradient3203);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.4, 0.2, 0.1, 0.2;stroke-dashoffset:0;stroke-opacity:1"
282
+ id="path2397"
283
+ sodipodi:sides="3"
284
+ sodipodi:cx="114.54282"
285
+ sodipodi:cy="318.57224"
286
+ sodipodi:r1="32.215168"
287
+ sodipodi:r2="16.107584"
288
+ sodipodi:arg1="1.5707963"
289
+ sodipodi:arg2="2.6179939"
290
+ inkscape:flatsided="false"
291
+ inkscape:rounded="0"
292
+ inkscape:randomized="0"
293
+ d="M 114.54282,350.7874 L 100.59325,326.62603 L 86.643669,302.46465 L 114.54282,302.46465 L 142.44198,302.46465 L 128.4924,326.62603 L 114.54282,350.7874 z"
294
+ transform="translate(273.98787,428.22017)"
295
+ inkscape:export-filename="C:\Dev\projects\lib\chingu\games\triangle_wars\media\spaceship.png"
296
+ inkscape:export-xdpi="14.510556"
297
+ inkscape:export-ydpi="14.510556" />
298
+ <path
299
+ sodipodi:type="star"
300
+ style="opacity:0.66804983;fill:url(#linearGradient3199);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.4, 0.2, 0.1, 0.2;stroke-dashoffset:0;stroke-opacity:1"
301
+ id="path2399"
302
+ sodipodi:sides="3"
303
+ sodipodi:cx="114.54282"
304
+ sodipodi:cy="318.57224"
305
+ sodipodi:r1="32.215168"
306
+ sodipodi:r2="16.107584"
307
+ sodipodi:arg1="1.5707963"
308
+ sodipodi:arg2="2.6179939"
309
+ inkscape:flatsided="false"
310
+ inkscape:rounded="0"
311
+ inkscape:randomized="0"
312
+ d="M 114.54282,350.7874 L 100.59325,326.62603 L 86.643669,302.46465 L 114.54282,302.46465 L 142.44198,302.46465 L 128.4924,326.62603 L 114.54282,350.7874 z"
313
+ transform="translate(245.77269,476.91212)"
314
+ inkscape:export-filename="C:\Dev\projects\lib\chingu\games\triangle_wars\media\spaceship.png"
315
+ inkscape:export-xdpi="14.510556"
316
+ inkscape:export-ydpi="14.510556" />
317
+ </g>
318
+ </svg>
@@ -0,0 +1,335 @@
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="297mm"
13
+ height="210mm"
14
+ id="svg16"
15
+ sodipodi:version="0.32"
16
+ inkscape:version="0.46+devel r21323"
17
+ sodipodi:docname="Nytt dokument 2"
18
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
19
+ <defs
20
+ id="defs18">
21
+ <inkscape:perspective
22
+ sodipodi:type="inkscape:persp3d"
23
+ inkscape:vp_x="0 : 372.04724 : 1"
24
+ inkscape:vp_y="0 : 1000 : 0"
25
+ inkscape:vp_z="1052.3622 : 372.04724 : 1"
26
+ inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
27
+ id="perspective25" />
28
+ <inkscape:perspective
29
+ id="perspective39"
30
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
31
+ inkscape:vp_z="1 : 0.5 : 1"
32
+ inkscape:vp_y="0 : 1000 : 0"
33
+ inkscape:vp_x="0 : 0.5 : 1"
34
+ sodipodi:type="inkscape:persp3d" />
35
+ <inkscape:perspective
36
+ id="perspective61"
37
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
38
+ inkscape:vp_z="1 : 0.5 : 1"
39
+ inkscape:vp_y="0 : 1000 : 0"
40
+ inkscape:vp_x="0 : 0.5 : 1"
41
+ sodipodi:type="inkscape:persp3d" />
42
+ <inkscape:perspective
43
+ id="perspective83"
44
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
45
+ inkscape:vp_z="1 : 0.5 : 1"
46
+ inkscape:vp_y="0 : 1000 : 0"
47
+ inkscape:vp_x="0 : 0.5 : 1"
48
+ sodipodi:type="inkscape:persp3d" />
49
+ <inkscape:perspective
50
+ id="perspective105"
51
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
52
+ inkscape:vp_z="1 : 0.5 : 1"
53
+ inkscape:vp_y="0 : 1000 : 0"
54
+ inkscape:vp_x="0 : 0.5 : 1"
55
+ sodipodi:type="inkscape:persp3d" />
56
+ <inkscape:perspective
57
+ id="perspective127"
58
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
59
+ inkscape:vp_z="1 : 0.5 : 1"
60
+ inkscape:vp_y="0 : 1000 : 0"
61
+ inkscape:vp_x="0 : 0.5 : 1"
62
+ sodipodi:type="inkscape:persp3d" />
63
+ <inkscape:perspective
64
+ id="perspective127-4"
65
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
66
+ inkscape:vp_z="1 : 0.5 : 1"
67
+ inkscape:vp_y="0 : 1000 : 0"
68
+ inkscape:vp_x="0 : 0.5 : 1"
69
+ sodipodi:type="inkscape:persp3d" />
70
+ <inkscape:perspective
71
+ id="perspective158"
72
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
73
+ inkscape:vp_z="1 : 0.5 : 1"
74
+ inkscape:vp_y="0 : 1000 : 0"
75
+ inkscape:vp_x="0 : 0.5 : 1"
76
+ sodipodi:type="inkscape:persp3d" />
77
+ <inkscape:perspective
78
+ id="perspective158-2"
79
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
80
+ inkscape:vp_z="1 : 0.5 : 1"
81
+ inkscape:vp_y="0 : 1000 : 0"
82
+ inkscape:vp_x="0 : 0.5 : 1"
83
+ sodipodi:type="inkscape:persp3d" />
84
+ <inkscape:perspective
85
+ id="perspective189"
86
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
87
+ inkscape:vp_z="1 : 0.5 : 1"
88
+ inkscape:vp_y="0 : 1000 : 0"
89
+ inkscape:vp_x="0 : 0.5 : 1"
90
+ sodipodi:type="inkscape:persp3d" />
91
+ <inkscape:perspective
92
+ id="perspective211"
93
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
94
+ inkscape:vp_z="1 : 0.5 : 1"
95
+ inkscape:vp_y="0 : 1000 : 0"
96
+ inkscape:vp_x="0 : 0.5 : 1"
97
+ sodipodi:type="inkscape:persp3d" />
98
+ <inkscape:perspective
99
+ id="perspective233"
100
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
101
+ inkscape:vp_z="1 : 0.5 : 1"
102
+ inkscape:vp_y="0 : 1000 : 0"
103
+ inkscape:vp_x="0 : 0.5 : 1"
104
+ sodipodi:type="inkscape:persp3d" />
105
+ <inkscape:perspective
106
+ id="perspective255"
107
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
108
+ inkscape:vp_z="1 : 0.5 : 1"
109
+ inkscape:vp_y="0 : 1000 : 0"
110
+ inkscape:vp_x="0 : 0.5 : 1"
111
+ sodipodi:type="inkscape:persp3d" />
112
+ </defs>
113
+ <sodipodi:namedview
114
+ inkscape:document-units="mm"
115
+ pagecolor="#ffffff"
116
+ bordercolor="#666666"
117
+ borderopacity="1.0"
118
+ inkscape:pageopacity="0.0"
119
+ inkscape:pageshadow="2"
120
+ inkscape:zoom="0.99180953"
121
+ inkscape:cx="526.18109"
122
+ inkscape:cy="372.04724"
123
+ inkscape:current-layer="layer1"
124
+ id="namedview20"
125
+ showgrid="false"
126
+ inkscape:window-width="1280"
127
+ inkscape:window-height="952"
128
+ inkscape:window-x="-4"
129
+ inkscape:window-y="-4" />
130
+ <metadata
131
+ id="metadata22">
132
+ <rdf:RDF>
133
+ <cc:Work
134
+ rdf:about="">
135
+ <dc:format>image/svg+xml</dc:format>
136
+ <dc:type
137
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
138
+ <dc:title></dc:title>
139
+ </cc:Work>
140
+ </rdf:RDF>
141
+ </metadata>
142
+ <g
143
+ inkscape:label="Layer 1"
144
+ inkscape:groupmode="layer"
145
+ id="layer1">
146
+ <path
147
+ sodipodi:type="star"
148
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.81;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.62, 0.81, 0.405, 0.81;stroke-dashoffset:0"
149
+ id="path29"
150
+ sodipodi:sides="3"
151
+ sodipodi:cx="57.470711"
152
+ sodipodi:cy="199.63512"
153
+ sodipodi:r1="104.0999"
154
+ sodipodi:r2="52.04995"
155
+ sodipodi:arg1="0.52359878"
156
+ sodipodi:arg2="1.5707963"
157
+ inkscape:flatsided="false"
158
+ inkscape:rounded="0"
159
+ inkscape:randomized="0"
160
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
161
+ transform="translate(473.88131,51.421161)" />
162
+ <path
163
+ sodipodi:type="star"
164
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.81;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.62, 0.81, 0.405, 0.81;stroke-dashoffset:0"
165
+ id="path29-1"
166
+ sodipodi:sides="3"
167
+ sodipodi:cx="57.470711"
168
+ sodipodi:cy="199.63512"
169
+ sodipodi:r1="104.0999"
170
+ sodipodi:r2="52.04995"
171
+ sodipodi:arg1="0.52359878"
172
+ sodipodi:arg2="1.5707963"
173
+ inkscape:flatsided="false"
174
+ inkscape:rounded="0"
175
+ inkscape:randomized="0"
176
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
177
+ transform="matrix(-1,0,0,-1,215.25446,401.47647)" />
178
+ <path
179
+ sodipodi:type="star"
180
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.81;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.62, 0.81, 0.405, 0.81;stroke-dashoffset:0"
181
+ id="path29-1-7"
182
+ sodipodi:sides="3"
183
+ sodipodi:cx="57.470711"
184
+ sodipodi:cy="199.63512"
185
+ sodipodi:r1="104.0999"
186
+ sodipodi:r2="52.04995"
187
+ sodipodi:arg1="0.52359878"
188
+ sodipodi:arg2="1.5707963"
189
+ inkscape:flatsided="false"
190
+ inkscape:rounded="0"
191
+ inkscape:randomized="0"
192
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
193
+ transform="matrix(-1,0,0,-1,453.71615,765.45765)" />
194
+ <path
195
+ sodipodi:type="star"
196
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.81;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.62, 0.81, 0.405, 0.81;stroke-dashoffset:0"
197
+ id="path29-4"
198
+ sodipodi:sides="3"
199
+ sodipodi:cx="57.470711"
200
+ sodipodi:cy="199.63512"
201
+ sodipodi:r1="104.0999"
202
+ sodipodi:r2="52.04995"
203
+ sodipodi:arg1="0.52359878"
204
+ sodipodi:arg2="1.5707963"
205
+ inkscape:flatsided="false"
206
+ inkscape:rounded="0"
207
+ inkscape:randomized="0"
208
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
209
+ transform="translate(210.74246,53.231421)" />
210
+ <path
211
+ sodipodi:type="star"
212
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.59729075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.19458135, 1.59729068, 0.79864533, 1.59729068;stroke-dashoffset:0"
213
+ id="path29-4-0"
214
+ sodipodi:sides="3"
215
+ sodipodi:cx="57.470711"
216
+ sodipodi:cy="199.63512"
217
+ sodipodi:r1="104.0999"
218
+ sodipodi:r2="52.04995"
219
+ sodipodi:arg1="0.52359878"
220
+ sodipodi:arg2="1.5707963"
221
+ inkscape:flatsided="false"
222
+ inkscape:rounded="0"
223
+ inkscape:randomized="0"
224
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
225
+ transform="matrix(0.25172847,-0.43600829,0.44235266,0.25539348,220.89535,150.15717)"
226
+ inkscape:transform-center-x="-20.225196"
227
+ inkscape:transform-center-y="16.180225" />
228
+ <path
229
+ sodipodi:type="star"
230
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.59729075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.19458135, 1.59729068, 0.79864533, 1.59729068;stroke-dashoffset:0"
231
+ id="path29-4-0-8"
232
+ sodipodi:sides="3"
233
+ sodipodi:cx="57.470711"
234
+ sodipodi:cy="199.63512"
235
+ sodipodi:r1="104.0999"
236
+ sodipodi:r2="52.04995"
237
+ sodipodi:arg1="0.52359878"
238
+ sodipodi:arg2="1.5707963"
239
+ inkscape:flatsided="false"
240
+ inkscape:rounded="0"
241
+ inkscape:randomized="0"
242
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
243
+ transform="matrix(0.25172847,-0.43600829,0.44235266,0.25539348,321.86568,151.62582)"
244
+ inkscape:transform-center-x="-20.225196"
245
+ inkscape:transform-center-y="16.180225" />
246
+ <path
247
+ sodipodi:type="star"
248
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.59729075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.19458135, 1.59729068, 0.79864533, 1.59729068;stroke-dashoffset:0"
249
+ id="path29-4-0-4"
250
+ sodipodi:sides="3"
251
+ sodipodi:cx="57.470711"
252
+ sodipodi:cy="199.63512"
253
+ sodipodi:r1="104.0999"
254
+ sodipodi:r2="52.04995"
255
+ sodipodi:arg1="0.52359878"
256
+ sodipodi:arg2="1.5707963"
257
+ inkscape:flatsided="false"
258
+ inkscape:rounded="0"
259
+ inkscape:randomized="0"
260
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
261
+ transform="matrix(0.25172847,-0.43600829,0.44235266,0.25539348,320.85743,226.23693)"
262
+ inkscape:transform-center-x="-20.225196"
263
+ inkscape:transform-center-y="16.180225" />
264
+ <path
265
+ sodipodi:type="star"
266
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.81;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.62, 0.81, 0.405, 0.81;stroke-dashoffset:0"
267
+ id="path29-1-5"
268
+ sodipodi:sides="3"
269
+ sodipodi:cx="57.470711"
270
+ sodipodi:cy="199.63512"
271
+ sodipodi:r1="104.0999"
272
+ sodipodi:r2="52.04995"
273
+ sodipodi:arg1="0.52359878"
274
+ sodipodi:arg2="1.5707963"
275
+ inkscape:flatsided="false"
276
+ inkscape:rounded="0"
277
+ inkscape:randomized="0"
278
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
279
+ transform="matrix(-1,0,0,-1,772.32571,638.41713)" />
280
+ <path
281
+ sodipodi:type="star"
282
+ style="fill:#6b6b6b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.59729075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.19458135, 1.59729068, 0.79864533, 1.59729068;stroke-dashoffset:0"
283
+ id="path29-4-0-5"
284
+ sodipodi:sides="3"
285
+ sodipodi:cx="57.470711"
286
+ sodipodi:cy="199.63512"
287
+ sodipodi:r1="104.0999"
288
+ sodipodi:r2="52.04995"
289
+ sodipodi:arg1="0.52359878"
290
+ sodipodi:arg2="1.5707963"
291
+ inkscape:flatsided="false"
292
+ inkscape:rounded="0"
293
+ inkscape:randomized="0"
294
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
295
+ transform="matrix(-0.25173002,-0.43600739,0.44235357,-0.2553919,728.507,535.82054)"
296
+ inkscape:transform-center-x="-12.778026"
297
+ inkscape:transform-center-y="-29.079179" />
298
+ <path
299
+ sodipodi:type="star"
300
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.59729075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.19458135, 1.59729068, 0.79864533, 1.59729068;stroke-dashoffset:0"
301
+ id="path29-4-0-1"
302
+ sodipodi:sides="3"
303
+ sodipodi:cx="57.470711"
304
+ sodipodi:cy="199.63512"
305
+ sodipodi:r1="104.0999"
306
+ sodipodi:r2="52.04995"
307
+ sodipodi:arg1="0.52359878"
308
+ sodipodi:arg2="1.5707963"
309
+ inkscape:flatsided="false"
310
+ inkscape:rounded="0"
311
+ inkscape:randomized="0"
312
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
313
+ transform="matrix(-0.50345849,8.9721516e-7,9.1167923e-7,-0.51078538,699.00091,515.25322)"
314
+ inkscape:transform-center-x="7.4471634"
315
+ inkscape:transform-center-y="-5.9519599" />
316
+ <path
317
+ sodipodi:type="star"
318
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.59729075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.19458135, 1.59729068, 0.79864533, 1.59729068;stroke-dashoffset:0"
319
+ id="path29-4-0-1-7"
320
+ sodipodi:sides="3"
321
+ sodipodi:cx="57.470711"
322
+ sodipodi:cy="199.63512"
323
+ sodipodi:r1="104.0999"
324
+ sodipodi:r2="52.04995"
325
+ sodipodi:arg1="0.52359878"
326
+ sodipodi:arg2="1.5707963"
327
+ inkscape:flatsided="false"
328
+ inkscape:rounded="0"
329
+ inkscape:randomized="0"
330
+ d="m 147.62387,251.68507 -90.153158,0 -90.153159,0 45.076578,-78.07493 45.07658,-78.074923 45.076579,78.074923 45.07658,78.07493 z"
331
+ transform="matrix(-0.25172847,0.43600829,-0.44235266,-0.25539348,918.62112,492.50542)"
332
+ inkscape:transform-center-x="20.225186"
333
+ inkscape:transform-center-y="-16.180223" />
334
+ </g>
335
+ </svg>