red_bird-demo 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +21 -0
- data/LICENSE.txt +3 -0
- data/MIT.txt +21 -0
- data/README.md +25 -0
- data/Rakefile +2 -0
- data/SIL_CONNECTION.txt +94 -0
- data/bin/setup +8 -0
- data/data/red_bird-demo/font/connection.ttf +0 -0
- data/data/red_bird-demo/img/player.pgm +0 -0
- data/data/red_bird-demo/img/text_box.pgm +0 -0
- data/data/red_bird-demo/img/tileset.pgm +0 -0
- data/data/red_bird-demo/palette/palette.yml +1025 -0
- data/data/red_bird-demo/tile_map/move_on_tiles.yml +4 -0
- data/data/red_bird-demo/tile_set/move_on_tiles.yml +4 -0
- data/exe/red_bird-demo +5 -0
- data/lib/red_bird/demo.rb +36 -0
- data/lib/red_bird/demo/controller_move_on_tiles.rb +11 -0
- data/lib/red_bird/demo/entity_move_on_tiles.rb +131 -0
- data/lib/red_bird/demo/stage_main.rb +70 -0
- data/lib/red_bird/demo/stage_move_on_tiles.rb +34 -0
- data/lib/red_bird/demo/stage_resolution.rb +63 -0
- data/lib/red_bird/demo/tile_maps.rb +14 -0
- data/lib/red_bird/demo/tile_sets.rb +12 -0
- data/lib/red_bird/demo/version.rb +5 -0
- data/red_bird-demo.gemspec +30 -0
- metadata +73 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 282b4620e690c92eea2f3cef036fb136d1f3ec26485d337a0bef86d430d6ba2c
|
4
|
+
data.tar.gz: ccdd134022f9191411a81b797be3adc46cbf23f4fb72cca7f1dff885253a2df2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fe661fbeb5c6eec4fe7ef8902c7fd84a910f0ad9e99189a97a0e444b4681277abdf03f10f3c3140839091b31cb330e2f4ca66d2fbd0cc80023b1e64d4c70a13d
|
7
|
+
data.tar.gz: 662b07e909700e3174db0f641be6535d308a8e6ad9d4a14486000d061d849318e0b0a281dd4d19b218360031b6b514d5b31009fbf3be4ff84af967e4195f5f70
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
red_bird-demo (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
rake (12.3.3)
|
10
|
+
red_bird (0.1.1)
|
11
|
+
|
12
|
+
PLATFORMS
|
13
|
+
ruby
|
14
|
+
|
15
|
+
DEPENDENCIES
|
16
|
+
rake (~> 12.0)
|
17
|
+
red_bird (>= 0.1.1)
|
18
|
+
red_bird-demo!
|
19
|
+
|
20
|
+
BUNDLED WITH
|
21
|
+
2.1.4
|
data/LICENSE.txt
ADDED
data/MIT.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Frederico Linhares
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# RedBird::Demo
|
2
|
+
|
3
|
+
This gem is a practical example of how to use the RedBird game engine. It is also useful to test changes into the RedBird.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
You can install this gem through the `gem` command:
|
8
|
+
|
9
|
+
$ gem install red_bird-demo
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
After installing the gem, run `red_bird-demo`.
|
14
|
+
|
15
|
+
## Development
|
16
|
+
|
17
|
+
To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
18
|
+
|
19
|
+
## Contributing
|
20
|
+
|
21
|
+
Bug reports and pull requests are welcome on Bitbucket at https://bitbucket.org/fredlinhares/red_bird-demo.
|
22
|
+
|
23
|
+
## License
|
24
|
+
|
25
|
+
Read LICENSE.txt for information about licensing.
|
data/Rakefile
ADDED
data/SIL_CONNECTION.txt
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
Copyright (c) 2017, Jasper @ KineticPlasma Fonts (cannotintospacefonts@gmail.com),
|
2
|
+
with Reserved Font Name Connection.
|
3
|
+
|
4
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
5
|
+
This license is copied below, and is also available with a FAQ at:
|
6
|
+
http://scripts.sil.org/OFL
|
7
|
+
|
8
|
+
|
9
|
+
-----------------------------------------------------------
|
10
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
11
|
+
-----------------------------------------------------------
|
12
|
+
|
13
|
+
PREAMBLE
|
14
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
15
|
+
development of collaborative font projects, to support the font creation
|
16
|
+
efforts of academic and linguistic communities, and to provide a free and
|
17
|
+
open framework in which fonts may be shared and improved in partnership
|
18
|
+
with others.
|
19
|
+
|
20
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
21
|
+
redistributed freely as long as they are not sold by themselves. The
|
22
|
+
fonts, including any derivative works, can be bundled, embedded,
|
23
|
+
redistributed and/or sold with any software provided that any reserved
|
24
|
+
names are not used by derivative works. The fonts and derivatives,
|
25
|
+
however, cannot be released under any other type of license. The
|
26
|
+
requirement for fonts to remain under this license does not apply
|
27
|
+
to any document created using the fonts or their derivatives.
|
28
|
+
|
29
|
+
DEFINITIONS
|
30
|
+
"Font Software" refers to the set of files released by the Copyright
|
31
|
+
Holder(s) under this license and clearly marked as such. This may
|
32
|
+
include source files, build scripts and documentation.
|
33
|
+
|
34
|
+
"Reserved Font Name" refers to any names specified as such after the
|
35
|
+
copyright statement(s).
|
36
|
+
|
37
|
+
"Original Version" refers to the collection of Font Software components as
|
38
|
+
distributed by the Copyright Holder(s).
|
39
|
+
|
40
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
41
|
+
or substituting -- in part or in whole -- any of the components of the
|
42
|
+
Original Version, by changing formats or by porting the Font Software to a
|
43
|
+
new environment.
|
44
|
+
|
45
|
+
"Author" refers to any designer, engineer, programmer, technical
|
46
|
+
writer or other person who contributed to the Font Software.
|
47
|
+
|
48
|
+
PERMISSION & CONDITIONS
|
49
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
50
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
51
|
+
redistribute, and sell modified and unmodified copies of the Font
|
52
|
+
Software, subject to the following conditions:
|
53
|
+
|
54
|
+
1) Neither the Font Software nor any of its individual components,
|
55
|
+
in Original or Modified Versions, may be sold by itself.
|
56
|
+
|
57
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
58
|
+
redistributed and/or sold with any software, provided that each copy
|
59
|
+
contains the above copyright notice and this license. These can be
|
60
|
+
included either as stand-alone text files, human-readable headers or
|
61
|
+
in the appropriate machine-readable metadata fields within text or
|
62
|
+
binary files as long as those fields can be easily viewed by the user.
|
63
|
+
|
64
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
65
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
66
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
67
|
+
presented to the users.
|
68
|
+
|
69
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
70
|
+
Software shall not be used to promote, endorse or advertise any
|
71
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
72
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
73
|
+
permission.
|
74
|
+
|
75
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
76
|
+
must be distributed entirely under this license, and must not be
|
77
|
+
distributed under any other license. The requirement for fonts to
|
78
|
+
remain under this license does not apply to any document created
|
79
|
+
using the Font Software.
|
80
|
+
|
81
|
+
TERMINATION
|
82
|
+
This license becomes null and void if any of the above conditions are
|
83
|
+
not met.
|
84
|
+
|
85
|
+
DISCLAIMER
|
86
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
87
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
88
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
89
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
90
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
91
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
92
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
93
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
94
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
data/bin/setup
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,1025 @@
|
|
1
|
+
---
|
2
|
+
- - 0
|
3
|
+
- 0
|
4
|
+
- 0
|
5
|
+
- 255
|
6
|
+
- - 0
|
7
|
+
- 16
|
8
|
+
- 0
|
9
|
+
- 255
|
10
|
+
- - 0
|
11
|
+
- 32
|
12
|
+
- 0
|
13
|
+
- 255
|
14
|
+
- - 0
|
15
|
+
- 48
|
16
|
+
- 0
|
17
|
+
- 255
|
18
|
+
- - 0
|
19
|
+
- 0
|
20
|
+
- 64
|
21
|
+
- 255
|
22
|
+
- - 64
|
23
|
+
- 0
|
24
|
+
- 0
|
25
|
+
- 255
|
26
|
+
- - 0
|
27
|
+
- 64
|
28
|
+
- 0
|
29
|
+
- 255
|
30
|
+
- - 0
|
31
|
+
- 16
|
32
|
+
- 64
|
33
|
+
- 255
|
34
|
+
- - 64
|
35
|
+
- 16
|
36
|
+
- 0
|
37
|
+
- 255
|
38
|
+
- - 0
|
39
|
+
- 80
|
40
|
+
- 0
|
41
|
+
- 255
|
42
|
+
- - 0
|
43
|
+
- 32
|
44
|
+
- 64
|
45
|
+
- 255
|
46
|
+
- - 64
|
47
|
+
- 32
|
48
|
+
- 0
|
49
|
+
- 255
|
50
|
+
- - 0
|
51
|
+
- 96
|
52
|
+
- 0
|
53
|
+
- 255
|
54
|
+
- - 0
|
55
|
+
- 48
|
56
|
+
- 64
|
57
|
+
- 255
|
58
|
+
- - 64
|
59
|
+
- 48
|
60
|
+
- 0
|
61
|
+
- 255
|
62
|
+
- - 0
|
63
|
+
- 112
|
64
|
+
- 0
|
65
|
+
- 255
|
66
|
+
- - 0
|
67
|
+
- 0
|
68
|
+
- 128
|
69
|
+
- 255
|
70
|
+
- - 64
|
71
|
+
- 0
|
72
|
+
- 64
|
73
|
+
- 255
|
74
|
+
- - 128
|
75
|
+
- 0
|
76
|
+
- 0
|
77
|
+
- 255
|
78
|
+
- - 0
|
79
|
+
- 64
|
80
|
+
- 64
|
81
|
+
- 255
|
82
|
+
- - 64
|
83
|
+
- 64
|
84
|
+
- 0
|
85
|
+
- 255
|
86
|
+
- - 0
|
87
|
+
- 128
|
88
|
+
- 0
|
89
|
+
- 255
|
90
|
+
- - 0
|
91
|
+
- 16
|
92
|
+
- 128
|
93
|
+
- 255
|
94
|
+
- - 64
|
95
|
+
- 16
|
96
|
+
- 64
|
97
|
+
- 255
|
98
|
+
- - 128
|
99
|
+
- 16
|
100
|
+
- 0
|
101
|
+
- 255
|
102
|
+
- - 0
|
103
|
+
- 80
|
104
|
+
- 64
|
105
|
+
- 255
|
106
|
+
- - 64
|
107
|
+
- 80
|
108
|
+
- 0
|
109
|
+
- 255
|
110
|
+
- - 0
|
111
|
+
- 144
|
112
|
+
- 0
|
113
|
+
- 255
|
114
|
+
- - 0
|
115
|
+
- 32
|
116
|
+
- 128
|
117
|
+
- 255
|
118
|
+
- - 64
|
119
|
+
- 32
|
120
|
+
- 64
|
121
|
+
- 255
|
122
|
+
- - 128
|
123
|
+
- 32
|
124
|
+
- 0
|
125
|
+
- 255
|
126
|
+
- - 0
|
127
|
+
- 96
|
128
|
+
- 64
|
129
|
+
- 255
|
130
|
+
- - 64
|
131
|
+
- 96
|
132
|
+
- 0
|
133
|
+
- 255
|
134
|
+
- - 0
|
135
|
+
- 160
|
136
|
+
- 0
|
137
|
+
- 255
|
138
|
+
- - 0
|
139
|
+
- 48
|
140
|
+
- 128
|
141
|
+
- 255
|
142
|
+
- - 64
|
143
|
+
- 48
|
144
|
+
- 64
|
145
|
+
- 255
|
146
|
+
- - 128
|
147
|
+
- 48
|
148
|
+
- 0
|
149
|
+
- 255
|
150
|
+
- - 0
|
151
|
+
- 112
|
152
|
+
- 64
|
153
|
+
- 255
|
154
|
+
- - 64
|
155
|
+
- 112
|
156
|
+
- 0
|
157
|
+
- 255
|
158
|
+
- - 0
|
159
|
+
- 176
|
160
|
+
- 0
|
161
|
+
- 255
|
162
|
+
- - 0
|
163
|
+
- 0
|
164
|
+
- 192
|
165
|
+
- 255
|
166
|
+
- - 64
|
167
|
+
- 0
|
168
|
+
- 128
|
169
|
+
- 255
|
170
|
+
- - 128
|
171
|
+
- 0
|
172
|
+
- 64
|
173
|
+
- 255
|
174
|
+
- - 192
|
175
|
+
- 0
|
176
|
+
- 0
|
177
|
+
- 255
|
178
|
+
- - 0
|
179
|
+
- 64
|
180
|
+
- 128
|
181
|
+
- 255
|
182
|
+
- - 64
|
183
|
+
- 64
|
184
|
+
- 64
|
185
|
+
- 255
|
186
|
+
- - 128
|
187
|
+
- 64
|
188
|
+
- 0
|
189
|
+
- 255
|
190
|
+
- - 0
|
191
|
+
- 128
|
192
|
+
- 64
|
193
|
+
- 255
|
194
|
+
- - 64
|
195
|
+
- 128
|
196
|
+
- 0
|
197
|
+
- 255
|
198
|
+
- - 0
|
199
|
+
- 192
|
200
|
+
- 0
|
201
|
+
- 255
|
202
|
+
- - 0
|
203
|
+
- 16
|
204
|
+
- 192
|
205
|
+
- 255
|
206
|
+
- - 64
|
207
|
+
- 16
|
208
|
+
- 128
|
209
|
+
- 255
|
210
|
+
- - 128
|
211
|
+
- 16
|
212
|
+
- 64
|
213
|
+
- 255
|
214
|
+
- - 192
|
215
|
+
- 16
|
216
|
+
- 0
|
217
|
+
- 255
|
218
|
+
- - 0
|
219
|
+
- 80
|
220
|
+
- 128
|
221
|
+
- 255
|
222
|
+
- - 64
|
223
|
+
- 80
|
224
|
+
- 64
|
225
|
+
- 255
|
226
|
+
- - 128
|
227
|
+
- 80
|
228
|
+
- 0
|
229
|
+
- 255
|
230
|
+
- - 0
|
231
|
+
- 144
|
232
|
+
- 64
|
233
|
+
- 255
|
234
|
+
- - 64
|
235
|
+
- 144
|
236
|
+
- 0
|
237
|
+
- 255
|
238
|
+
- - 0
|
239
|
+
- 208
|
240
|
+
- 0
|
241
|
+
- 255
|
242
|
+
- - 0
|
243
|
+
- 32
|
244
|
+
- 192
|
245
|
+
- 255
|
246
|
+
- - 64
|
247
|
+
- 32
|
248
|
+
- 128
|
249
|
+
- 255
|
250
|
+
- - 128
|
251
|
+
- 32
|
252
|
+
- 64
|
253
|
+
- 255
|
254
|
+
- - 192
|
255
|
+
- 32
|
256
|
+
- 0
|
257
|
+
- 255
|
258
|
+
- - 0
|
259
|
+
- 96
|
260
|
+
- 128
|
261
|
+
- 255
|
262
|
+
- - 64
|
263
|
+
- 96
|
264
|
+
- 64
|
265
|
+
- 255
|
266
|
+
- - 128
|
267
|
+
- 96
|
268
|
+
- 0
|
269
|
+
- 255
|
270
|
+
- - 0
|
271
|
+
- 160
|
272
|
+
- 64
|
273
|
+
- 255
|
274
|
+
- - 64
|
275
|
+
- 160
|
276
|
+
- 0
|
277
|
+
- 255
|
278
|
+
- - 0
|
279
|
+
- 224
|
280
|
+
- 0
|
281
|
+
- 255
|
282
|
+
- - 0
|
283
|
+
- 48
|
284
|
+
- 192
|
285
|
+
- 255
|
286
|
+
- - 64
|
287
|
+
- 48
|
288
|
+
- 128
|
289
|
+
- 255
|
290
|
+
- - 128
|
291
|
+
- 48
|
292
|
+
- 64
|
293
|
+
- 255
|
294
|
+
- - 192
|
295
|
+
- 48
|
296
|
+
- 0
|
297
|
+
- 255
|
298
|
+
- - 0
|
299
|
+
- 112
|
300
|
+
- 128
|
301
|
+
- 255
|
302
|
+
- - 64
|
303
|
+
- 112
|
304
|
+
- 64
|
305
|
+
- 255
|
306
|
+
- - 128
|
307
|
+
- 112
|
308
|
+
- 0
|
309
|
+
- 255
|
310
|
+
- - 0
|
311
|
+
- 176
|
312
|
+
- 64
|
313
|
+
- 255
|
314
|
+
- - 64
|
315
|
+
- 176
|
316
|
+
- 0
|
317
|
+
- 255
|
318
|
+
- - 0
|
319
|
+
- 240
|
320
|
+
- 0
|
321
|
+
- 255
|
322
|
+
- - 64
|
323
|
+
- 0
|
324
|
+
- 192
|
325
|
+
- 255
|
326
|
+
- - 128
|
327
|
+
- 0
|
328
|
+
- 128
|
329
|
+
- 255
|
330
|
+
- - 192
|
331
|
+
- 0
|
332
|
+
- 64
|
333
|
+
- 255
|
334
|
+
- - 0
|
335
|
+
- 64
|
336
|
+
- 192
|
337
|
+
- 255
|
338
|
+
- - 64
|
339
|
+
- 64
|
340
|
+
- 128
|
341
|
+
- 255
|
342
|
+
- - 128
|
343
|
+
- 64
|
344
|
+
- 64
|
345
|
+
- 255
|
346
|
+
- - 192
|
347
|
+
- 64
|
348
|
+
- 0
|
349
|
+
- 255
|
350
|
+
- - 0
|
351
|
+
- 128
|
352
|
+
- 128
|
353
|
+
- 255
|
354
|
+
- - 64
|
355
|
+
- 128
|
356
|
+
- 64
|
357
|
+
- 255
|
358
|
+
- - 128
|
359
|
+
- 128
|
360
|
+
- 0
|
361
|
+
- 255
|
362
|
+
- - 0
|
363
|
+
- 192
|
364
|
+
- 64
|
365
|
+
- 255
|
366
|
+
- - 64
|
367
|
+
- 192
|
368
|
+
- 0
|
369
|
+
- 255
|
370
|
+
- - 64
|
371
|
+
- 16
|
372
|
+
- 192
|
373
|
+
- 255
|
374
|
+
- - 128
|
375
|
+
- 16
|
376
|
+
- 128
|
377
|
+
- 255
|
378
|
+
- - 192
|
379
|
+
- 16
|
380
|
+
- 64
|
381
|
+
- 255
|
382
|
+
- - 0
|
383
|
+
- 80
|
384
|
+
- 192
|
385
|
+
- 255
|
386
|
+
- - 64
|
387
|
+
- 80
|
388
|
+
- 128
|
389
|
+
- 255
|
390
|
+
- - 128
|
391
|
+
- 80
|
392
|
+
- 64
|
393
|
+
- 255
|
394
|
+
- - 192
|
395
|
+
- 80
|
396
|
+
- 0
|
397
|
+
- 255
|
398
|
+
- - 0
|
399
|
+
- 144
|
400
|
+
- 128
|
401
|
+
- 255
|
402
|
+
- - 64
|
403
|
+
- 144
|
404
|
+
- 64
|
405
|
+
- 255
|
406
|
+
- - 128
|
407
|
+
- 144
|
408
|
+
- 0
|
409
|
+
- 255
|
410
|
+
- - 0
|
411
|
+
- 208
|
412
|
+
- 64
|
413
|
+
- 255
|
414
|
+
- - 64
|
415
|
+
- 208
|
416
|
+
- 0
|
417
|
+
- 255
|
418
|
+
- - 64
|
419
|
+
- 32
|
420
|
+
- 192
|
421
|
+
- 255
|
422
|
+
- - 128
|
423
|
+
- 32
|
424
|
+
- 128
|
425
|
+
- 255
|
426
|
+
- - 192
|
427
|
+
- 32
|
428
|
+
- 64
|
429
|
+
- 255
|
430
|
+
- - 0
|
431
|
+
- 96
|
432
|
+
- 192
|
433
|
+
- 255
|
434
|
+
- - 64
|
435
|
+
- 96
|
436
|
+
- 128
|
437
|
+
- 255
|
438
|
+
- - 128
|
439
|
+
- 96
|
440
|
+
- 64
|
441
|
+
- 255
|
442
|
+
- - 192
|
443
|
+
- 96
|
444
|
+
- 0
|
445
|
+
- 255
|
446
|
+
- - 0
|
447
|
+
- 160
|
448
|
+
- 128
|
449
|
+
- 255
|
450
|
+
- - 64
|
451
|
+
- 160
|
452
|
+
- 64
|
453
|
+
- 255
|
454
|
+
- - 128
|
455
|
+
- 160
|
456
|
+
- 0
|
457
|
+
- 255
|
458
|
+
- - 0
|
459
|
+
- 224
|
460
|
+
- 64
|
461
|
+
- 255
|
462
|
+
- - 64
|
463
|
+
- 224
|
464
|
+
- 0
|
465
|
+
- 255
|
466
|
+
- - 64
|
467
|
+
- 48
|
468
|
+
- 192
|
469
|
+
- 255
|
470
|
+
- - 128
|
471
|
+
- 48
|
472
|
+
- 128
|
473
|
+
- 255
|
474
|
+
- - 192
|
475
|
+
- 48
|
476
|
+
- 64
|
477
|
+
- 255
|
478
|
+
- - 0
|
479
|
+
- 112
|
480
|
+
- 192
|
481
|
+
- 255
|
482
|
+
- - 64
|
483
|
+
- 112
|
484
|
+
- 128
|
485
|
+
- 255
|
486
|
+
- - 128
|
487
|
+
- 112
|
488
|
+
- 64
|
489
|
+
- 255
|
490
|
+
- - 192
|
491
|
+
- 112
|
492
|
+
- 0
|
493
|
+
- 255
|
494
|
+
- - 0
|
495
|
+
- 176
|
496
|
+
- 128
|
497
|
+
- 255
|
498
|
+
- - 64
|
499
|
+
- 176
|
500
|
+
- 64
|
501
|
+
- 255
|
502
|
+
- - 128
|
503
|
+
- 176
|
504
|
+
- 0
|
505
|
+
- 255
|
506
|
+
- - 0
|
507
|
+
- 240
|
508
|
+
- 64
|
509
|
+
- 255
|
510
|
+
- - 64
|
511
|
+
- 240
|
512
|
+
- 0
|
513
|
+
- 255
|
514
|
+
- - 128
|
515
|
+
- 0
|
516
|
+
- 192
|
517
|
+
- 255
|
518
|
+
- - 192
|
519
|
+
- 0
|
520
|
+
- 128
|
521
|
+
- 255
|
522
|
+
- - 64
|
523
|
+
- 64
|
524
|
+
- 192
|
525
|
+
- 255
|
526
|
+
- - 128
|
527
|
+
- 64
|
528
|
+
- 128
|
529
|
+
- 255
|
530
|
+
- - 192
|
531
|
+
- 64
|
532
|
+
- 64
|
533
|
+
- 255
|
534
|
+
- - 0
|
535
|
+
- 128
|
536
|
+
- 192
|
537
|
+
- 255
|
538
|
+
- - 64
|
539
|
+
- 128
|
540
|
+
- 128
|
541
|
+
- 255
|
542
|
+
- - 128
|
543
|
+
- 128
|
544
|
+
- 64
|
545
|
+
- 255
|
546
|
+
- - 192
|
547
|
+
- 128
|
548
|
+
- 0
|
549
|
+
- 255
|
550
|
+
- - 0
|
551
|
+
- 192
|
552
|
+
- 128
|
553
|
+
- 255
|
554
|
+
- - 64
|
555
|
+
- 192
|
556
|
+
- 64
|
557
|
+
- 255
|
558
|
+
- - 128
|
559
|
+
- 192
|
560
|
+
- 0
|
561
|
+
- 255
|
562
|
+
- - 128
|
563
|
+
- 16
|
564
|
+
- 192
|
565
|
+
- 255
|
566
|
+
- - 192
|
567
|
+
- 16
|
568
|
+
- 128
|
569
|
+
- 255
|
570
|
+
- - 64
|
571
|
+
- 80
|
572
|
+
- 192
|
573
|
+
- 255
|
574
|
+
- - 128
|
575
|
+
- 80
|
576
|
+
- 128
|
577
|
+
- 255
|
578
|
+
- - 192
|
579
|
+
- 80
|
580
|
+
- 64
|
581
|
+
- 255
|
582
|
+
- - 0
|
583
|
+
- 144
|
584
|
+
- 192
|
585
|
+
- 255
|
586
|
+
- - 64
|
587
|
+
- 144
|
588
|
+
- 128
|
589
|
+
- 255
|
590
|
+
- - 128
|
591
|
+
- 144
|
592
|
+
- 64
|
593
|
+
- 255
|
594
|
+
- - 192
|
595
|
+
- 144
|
596
|
+
- 0
|
597
|
+
- 255
|
598
|
+
- - 0
|
599
|
+
- 208
|
600
|
+
- 128
|
601
|
+
- 255
|
602
|
+
- - 64
|
603
|
+
- 208
|
604
|
+
- 64
|
605
|
+
- 255
|
606
|
+
- - 128
|
607
|
+
- 208
|
608
|
+
- 0
|
609
|
+
- 255
|
610
|
+
- - 128
|
611
|
+
- 32
|
612
|
+
- 192
|
613
|
+
- 255
|
614
|
+
- - 192
|
615
|
+
- 32
|
616
|
+
- 128
|
617
|
+
- 255
|
618
|
+
- - 64
|
619
|
+
- 96
|
620
|
+
- 192
|
621
|
+
- 255
|
622
|
+
- - 128
|
623
|
+
- 96
|
624
|
+
- 128
|
625
|
+
- 255
|
626
|
+
- - 192
|
627
|
+
- 96
|
628
|
+
- 64
|
629
|
+
- 255
|
630
|
+
- - 0
|
631
|
+
- 160
|
632
|
+
- 192
|
633
|
+
- 255
|
634
|
+
- - 64
|
635
|
+
- 160
|
636
|
+
- 128
|
637
|
+
- 255
|
638
|
+
- - 128
|
639
|
+
- 160
|
640
|
+
- 64
|
641
|
+
- 255
|
642
|
+
- - 192
|
643
|
+
- 160
|
644
|
+
- 0
|
645
|
+
- 255
|
646
|
+
- - 0
|
647
|
+
- 224
|
648
|
+
- 128
|
649
|
+
- 255
|
650
|
+
- - 64
|
651
|
+
- 224
|
652
|
+
- 64
|
653
|
+
- 255
|
654
|
+
- - 128
|
655
|
+
- 224
|
656
|
+
- 0
|
657
|
+
- 255
|
658
|
+
- - 128
|
659
|
+
- 48
|
660
|
+
- 192
|
661
|
+
- 255
|
662
|
+
- - 192
|
663
|
+
- 48
|
664
|
+
- 128
|
665
|
+
- 255
|
666
|
+
- - 64
|
667
|
+
- 112
|
668
|
+
- 192
|
669
|
+
- 255
|
670
|
+
- - 128
|
671
|
+
- 112
|
672
|
+
- 128
|
673
|
+
- 255
|
674
|
+
- - 192
|
675
|
+
- 112
|
676
|
+
- 64
|
677
|
+
- 255
|
678
|
+
- - 0
|
679
|
+
- 176
|
680
|
+
- 192
|
681
|
+
- 255
|
682
|
+
- - 64
|
683
|
+
- 176
|
684
|
+
- 128
|
685
|
+
- 255
|
686
|
+
- - 128
|
687
|
+
- 176
|
688
|
+
- 64
|
689
|
+
- 255
|
690
|
+
- - 192
|
691
|
+
- 176
|
692
|
+
- 0
|
693
|
+
- 255
|
694
|
+
- - 0
|
695
|
+
- 240
|
696
|
+
- 128
|
697
|
+
- 255
|
698
|
+
- - 64
|
699
|
+
- 240
|
700
|
+
- 64
|
701
|
+
- 255
|
702
|
+
- - 128
|
703
|
+
- 240
|
704
|
+
- 0
|
705
|
+
- 255
|
706
|
+
- - 192
|
707
|
+
- 0
|
708
|
+
- 192
|
709
|
+
- 255
|
710
|
+
- - 128
|
711
|
+
- 64
|
712
|
+
- 192
|
713
|
+
- 255
|
714
|
+
- - 192
|
715
|
+
- 64
|
716
|
+
- 128
|
717
|
+
- 255
|
718
|
+
- - 64
|
719
|
+
- 128
|
720
|
+
- 192
|
721
|
+
- 255
|
722
|
+
- - 128
|
723
|
+
- 128
|
724
|
+
- 128
|
725
|
+
- 255
|
726
|
+
- - 192
|
727
|
+
- 128
|
728
|
+
- 64
|
729
|
+
- 255
|
730
|
+
- - 0
|
731
|
+
- 192
|
732
|
+
- 192
|
733
|
+
- 255
|
734
|
+
- - 64
|
735
|
+
- 192
|
736
|
+
- 128
|
737
|
+
- 255
|
738
|
+
- - 128
|
739
|
+
- 192
|
740
|
+
- 64
|
741
|
+
- 255
|
742
|
+
- - 192
|
743
|
+
- 192
|
744
|
+
- 0
|
745
|
+
- 255
|
746
|
+
- - 192
|
747
|
+
- 16
|
748
|
+
- 192
|
749
|
+
- 255
|
750
|
+
- - 128
|
751
|
+
- 80
|
752
|
+
- 192
|
753
|
+
- 255
|
754
|
+
- - 192
|
755
|
+
- 80
|
756
|
+
- 128
|
757
|
+
- 255
|
758
|
+
- - 64
|
759
|
+
- 144
|
760
|
+
- 192
|
761
|
+
- 255
|
762
|
+
- - 128
|
763
|
+
- 144
|
764
|
+
- 128
|
765
|
+
- 255
|
766
|
+
- - 192
|
767
|
+
- 144
|
768
|
+
- 64
|
769
|
+
- 255
|
770
|
+
- - 0
|
771
|
+
- 208
|
772
|
+
- 192
|
773
|
+
- 255
|
774
|
+
- - 64
|
775
|
+
- 208
|
776
|
+
- 128
|
777
|
+
- 255
|
778
|
+
- - 128
|
779
|
+
- 208
|
780
|
+
- 64
|
781
|
+
- 255
|
782
|
+
- - 192
|
783
|
+
- 208
|
784
|
+
- 0
|
785
|
+
- 255
|
786
|
+
- - 192
|
787
|
+
- 32
|
788
|
+
- 192
|
789
|
+
- 255
|
790
|
+
- - 128
|
791
|
+
- 96
|
792
|
+
- 192
|
793
|
+
- 255
|
794
|
+
- - 192
|
795
|
+
- 96
|
796
|
+
- 128
|
797
|
+
- 255
|
798
|
+
- - 64
|
799
|
+
- 160
|
800
|
+
- 192
|
801
|
+
- 255
|
802
|
+
- - 128
|
803
|
+
- 160
|
804
|
+
- 128
|
805
|
+
- 255
|
806
|
+
- - 192
|
807
|
+
- 160
|
808
|
+
- 64
|
809
|
+
- 255
|
810
|
+
- - 0
|
811
|
+
- 224
|
812
|
+
- 192
|
813
|
+
- 255
|
814
|
+
- - 64
|
815
|
+
- 224
|
816
|
+
- 128
|
817
|
+
- 255
|
818
|
+
- - 128
|
819
|
+
- 224
|
820
|
+
- 64
|
821
|
+
- 255
|
822
|
+
- - 192
|
823
|
+
- 224
|
824
|
+
- 0
|
825
|
+
- 255
|
826
|
+
- - 192
|
827
|
+
- 48
|
828
|
+
- 192
|
829
|
+
- 255
|
830
|
+
- - 128
|
831
|
+
- 112
|
832
|
+
- 192
|
833
|
+
- 255
|
834
|
+
- - 192
|
835
|
+
- 112
|
836
|
+
- 128
|
837
|
+
- 255
|
838
|
+
- - 64
|
839
|
+
- 176
|
840
|
+
- 192
|
841
|
+
- 255
|
842
|
+
- - 128
|
843
|
+
- 176
|
844
|
+
- 128
|
845
|
+
- 255
|
846
|
+
- - 192
|
847
|
+
- 176
|
848
|
+
- 64
|
849
|
+
- 255
|
850
|
+
- - 0
|
851
|
+
- 240
|
852
|
+
- 192
|
853
|
+
- 255
|
854
|
+
- - 64
|
855
|
+
- 240
|
856
|
+
- 128
|
857
|
+
- 255
|
858
|
+
- - 128
|
859
|
+
- 240
|
860
|
+
- 64
|
861
|
+
- 255
|
862
|
+
- - 192
|
863
|
+
- 240
|
864
|
+
- 0
|
865
|
+
- 255
|
866
|
+
- - 192
|
867
|
+
- 64
|
868
|
+
- 192
|
869
|
+
- 255
|
870
|
+
- - 128
|
871
|
+
- 128
|
872
|
+
- 192
|
873
|
+
- 255
|
874
|
+
- - 192
|
875
|
+
- 128
|
876
|
+
- 128
|
877
|
+
- 255
|
878
|
+
- - 64
|
879
|
+
- 192
|
880
|
+
- 192
|
881
|
+
- 255
|
882
|
+
- - 128
|
883
|
+
- 192
|
884
|
+
- 128
|
885
|
+
- 255
|
886
|
+
- - 192
|
887
|
+
- 192
|
888
|
+
- 64
|
889
|
+
- 255
|
890
|
+
- - 192
|
891
|
+
- 80
|
892
|
+
- 192
|
893
|
+
- 255
|
894
|
+
- - 128
|
895
|
+
- 144
|
896
|
+
- 192
|
897
|
+
- 255
|
898
|
+
- - 192
|
899
|
+
- 144
|
900
|
+
- 128
|
901
|
+
- 255
|
902
|
+
- - 64
|
903
|
+
- 208
|
904
|
+
- 192
|
905
|
+
- 255
|
906
|
+
- - 128
|
907
|
+
- 208
|
908
|
+
- 128
|
909
|
+
- 255
|
910
|
+
- - 192
|
911
|
+
- 208
|
912
|
+
- 64
|
913
|
+
- 255
|
914
|
+
- - 192
|
915
|
+
- 96
|
916
|
+
- 192
|
917
|
+
- 255
|
918
|
+
- - 128
|
919
|
+
- 160
|
920
|
+
- 192
|
921
|
+
- 255
|
922
|
+
- - 192
|
923
|
+
- 160
|
924
|
+
- 128
|
925
|
+
- 255
|
926
|
+
- - 64
|
927
|
+
- 224
|
928
|
+
- 192
|
929
|
+
- 255
|
930
|
+
- - 128
|
931
|
+
- 224
|
932
|
+
- 128
|
933
|
+
- 255
|
934
|
+
- - 192
|
935
|
+
- 224
|
936
|
+
- 64
|
937
|
+
- 255
|
938
|
+
- - 192
|
939
|
+
- 112
|
940
|
+
- 192
|
941
|
+
- 255
|
942
|
+
- - 128
|
943
|
+
- 176
|
944
|
+
- 192
|
945
|
+
- 255
|
946
|
+
- - 192
|
947
|
+
- 176
|
948
|
+
- 128
|
949
|
+
- 255
|
950
|
+
- - 64
|
951
|
+
- 240
|
952
|
+
- 192
|
953
|
+
- 255
|
954
|
+
- - 128
|
955
|
+
- 240
|
956
|
+
- 128
|
957
|
+
- 255
|
958
|
+
- - 192
|
959
|
+
- 240
|
960
|
+
- 64
|
961
|
+
- 255
|
962
|
+
- - 192
|
963
|
+
- 128
|
964
|
+
- 192
|
965
|
+
- 255
|
966
|
+
- - 128
|
967
|
+
- 192
|
968
|
+
- 192
|
969
|
+
- 255
|
970
|
+
- - 192
|
971
|
+
- 192
|
972
|
+
- 128
|
973
|
+
- 255
|
974
|
+
- - 192
|
975
|
+
- 144
|
976
|
+
- 192
|
977
|
+
- 255
|
978
|
+
- - 128
|
979
|
+
- 208
|
980
|
+
- 192
|
981
|
+
- 255
|
982
|
+
- - 192
|
983
|
+
- 208
|
984
|
+
- 128
|
985
|
+
- 255
|
986
|
+
- - 192
|
987
|
+
- 160
|
988
|
+
- 192
|
989
|
+
- 255
|
990
|
+
- - 128
|
991
|
+
- 224
|
992
|
+
- 192
|
993
|
+
- 255
|
994
|
+
- - 192
|
995
|
+
- 224
|
996
|
+
- 128
|
997
|
+
- 255
|
998
|
+
- - 192
|
999
|
+
- 176
|
1000
|
+
- 192
|
1001
|
+
- 255
|
1002
|
+
- - 128
|
1003
|
+
- 240
|
1004
|
+
- 192
|
1005
|
+
- 255
|
1006
|
+
- - 192
|
1007
|
+
- 240
|
1008
|
+
- 128
|
1009
|
+
- 255
|
1010
|
+
- - 192
|
1011
|
+
- 192
|
1012
|
+
- 192
|
1013
|
+
- 255
|
1014
|
+
- - 192
|
1015
|
+
- 208
|
1016
|
+
- 192
|
1017
|
+
- 255
|
1018
|
+
- - 192
|
1019
|
+
- 224
|
1020
|
+
- 192
|
1021
|
+
- 255
|
1022
|
+
- - 192
|
1023
|
+
- 240
|
1024
|
+
- 192
|
1025
|
+
- 255
|