-
Notifications
You must be signed in to change notification settings - Fork 1
/
topdown2.p8
461 lines (422 loc) · 30.8 KB
/
topdown2.p8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
pico-8 cartridge // http://www.pico-8.com
version 27
__lua__
-- top-down adventure game
-- by apa64 from dylan's tutorial
-- game loop
function _init()
map_setup()
text_setup()
make_player()
game_win=false
game_over=false
end
function _update()
if (not game_over) then
if (not active_text) then
update_map()
move_player()
check_win_lose()
end
else
if (btnp(❎)) extcmd("reset")
end
end
function _draw()
cls()
if (not game_over) then
draw_map()
draw_player()
draw_text()
if (btn(❎)) show_inventory()
else
draw_win_lose()
end
end
-->8
-- map code
function map_setup()
-- timers
timer=0
anim_time=30 -- 30=1 sec
-- sprite number = type
-- not limited by flags
wall={3,17,18,19,35,37,38,56}
key={21}
gold={37}
door={53}
anim1={24}
anim2={25}
text={56}
lose={24}
win={8}
end
function update_map()
if (timer<0) then
-- animate tiles every timer cycle
toggle_tiles()
timer=anim_time
end
timer -= 1
end
function draw_map()
-- calculate the map coord of
-- the tile in left top of
-- current map screen
-- increases in steps of 16:
-- 0->16->32...
mapx=flr(p.x/16)*16
mapy=flr(p.y/16)*16
-- move camera to show the
-- section of map we want on
-- screen
camera(mapx*8, mapy*8)
map(0, 0, 0, 0, 128, 64)
end
-- returns whether map tile in x.y is of given type
function is_tile(tile_type, x, y)
tile = mget(x,y)
for i=1,#tile_type do
if (tile==tile_type[i]) return true
end
return false
end
function can_move(x,y)
return not is_tile(wall,x,y)
end
-- swap map tile with next sprite
function swap_tile(x,y)
tile=mget(x,y)
mset(x,y,tile+1)
end
-- animate to prev sprite
function unswap_tile(x,y)
tile=mget(x,y)
mset(x,y,tile-1)
end
-- pick up key at location
function get_key(x,y)
p.keys+=1
swap_tile(x,y)
sfx(1)
end
function open_door(x,y)
p.keys-=1
swap_tile(x,y)
sfx(2)
end
function get_gold(x,y)
p.gold+=5
swap_tile(x,y)
sfx(1)
end
-->8
-- player code
function make_player()
p = {}
-- x and y are map coordinates, not screen
p.x = 3
p.y = 2
p.sprite = 4
p.keys = 0
p.gold = 0
end
function draw_player()
spr(p.sprite, p.x*8, p.y*8)
end
function move_player()
newx=p.x
newy=p.y
if (btnp(⬅️)) newx-=1
if (btnp(➡️)) newx+=1
if (btnp(⬆️)) newy-=1
if (btnp(⬇️)) newy+=1
interact(newx,newy)
if (can_move(newx,newy)) then
-- x and y always between 0,127 and 0,63
p.x=mid(0,newx,127)
p.y=mid(0,newy,63)
else
sfx(0)
end
end
function interact(x,y)
if (is_tile(text,x,y)) then
active_text=get_text(x,y)
end
if(is_tile(key,x,y)) then
get_key(x,y)
elseif (is_tile(door,x,y) and p.keys > 0) then
open_door(x,y)
elseif (is_tile(gold,x,y)) then
get_gold(x,y)
end
end
-->8
-- inventory code
-- draw and print inv box
function show_inventory()
-- adapt to moving camera
-- with mapx,mapy
invx=mapx*8+40
invy=mapy*8+8
rectfill(invx,invy,invx+48,invy+30,0)
print("inventory",invx+7,invy+4,7)
print("keys "..p.keys,invx+12,invy+14,9)
print("gold "..p.gold,invx+12,invy+20,9)
end
-->8
-- animation code
function toggle_tiles()
-- toggle all visible map tiles
for x=mapx, mapx+15 do
for y=mapy, mapy+15 do
if (is_tile(anim1,x,y)) then
swap_tile(x,y)
sfx(3)
elseif (is_tile(anim2,x,y)) then
unswap_tile(x,y)
sfx(3)
end
end
end
end
-->8
-- win/lose code
function check_win_lose()
if (is_tile(win,p.x,p.y)) then
game_win=true
game_over=true
elseif (is_tile(lose,p.x,p.y)) then
game_win=false
game_over=true
end
end
function draw_win_lose()
camera()
if (game_win) then
print("★ you win! ★", 37,64,7)
else
print("game over! :(",38,64,7)
end
print("press ❎ to play again", 20,72,5)
end
-->8
-- text code
function text_setup()
-- texts map to all map tiles
-- map 0,0 = 1 2 3 4 5 6 7
-- map 0,1 = 8 91011121314
--...
-- texts[n] = x+y*map_width
texts={}
add_text(5,5,"first sign!")
add_text(12,5,"oh look!\na sign")
end
function add_text(x,y,message)
texts[x+y*128] = message
end
function get_text(x,y)
return texts[x+y*128]
end
function draw_text()
if (active_text) then
textx=mapx*8+4
texty=mapy*8+48
rectfill(textx,texty,textx+119,texty+31,7)
print(active_text,textx+4,texty+4,1)
print("🅾️ to close",textx+4,texty+23,6)
end
if (btnp(🅾️)) active_text=nil
end
__gfx__
00000000333333333333333333333333000999000000000000000000000000006666666600000000000000000000000000000000000000000000000000000000
0000000033333333333333b333111113009999900000000000000000000000006688886600000000000000000000000000000000000000000000000000000000
007007003333333333333b3331565551009191900000000000000000000000006866668600000000000000000000000000000000000000000000000000000000
000770003333333333333b3331555651009999900000000000000000000000006868868600000000000000000000000000000000000000000000000000000000
00077000333333333b33333331555613009999900000000000000000000000006868868600000000000000000000000000000000000000000000000000000000
00700700333333333bb3333331255513000aaa000000000000000000000000006866668600000000000000000000000000000000000000000000000000000000
000000003333333333b3333333125513002222200000000000000000000000006688886600000000000000000000000000000000000000000000000000000000
00000000333333333333333333311133004404400000000000000000000000006666666600000000000000000000000000000000000000000000000000000000
00000000111111111111111111111111000000003333333333333333000000003333333333333333000000000000000000000000000000000000000000000000
00000000111111111111111111115511000000009999333333333333000000003633363330333033000000000000000000000000000000000000000000000000
00000000111111111c1cc11111555551000000009aa9333333333333000000000603060305030503000000000000000000000000000000000000000000000000
00000000111111111111111115566551000000009339999933333333000000003033303330333033000000000000000000000000000000000000000000000000
0000000011111111111c111115555551000000009339a9a933333333000000003333333333333333000000000000000000000000000000000000000000000000
00000000111111111111c1c1c55556510000000099993a3a33333333000000003633363330333033000000000000000000000000000000000000000000000000
0000000011111111111111111cc555cc00000000aaaa333333333333000000000603060305030503000000000000000000000000000000000000000000000000
000000001111111111111111111ccc11000000003333333333333333000000003033303330333033000000000000000000000000000000000000000000000000
00000000666666666666666666566656000000004a4444a44a4aa4a4000000000000000000000000000000000000000000000000000000000000000000000000
00000000666666666666666655555555000000004a4444a415199151000000000000000000000000000000000000000000000000000000000000000000000000
00000000666666666666665656665666000000004a4444a411111111000000000000000000000000000000000000000000000000000000000000000000000000
0000000066666666656666665555555500000000aaa99aaa11111111000000000000000000000000000000000000000000000000000000000000000000000000
00000000666666666666666666566656000000001919919115111151000000000000000000000000000000000000000000000000000000000000000000000000
00000000666666666666566655555555000000004a4444a44a4444a4000000000000000000000000000000000000000000000000000000000000000000000000
00000000666666666666666656665666000000004a4444a44a4444a4000000000000000000000000000000000000000000000000000000000000000000000000
00000000666666666666666655555555000000004a4444a44a4444a4000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000005555555555555555000000004444444400000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000005544445555000055000000004f11fff100000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000005444444554000005000000004fff11f100000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000005114444554000005000000004ffffff100000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000005444444554000005000000004111111100000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000005444464551000005000000003334133300000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000005114444554000005000000003334100300000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000005444444554000005000000003333333300000000000000000000000000000000000000000000000000000000
__label__
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
333333333333333333333333333333333333333333333333333333333333333333333333333333b33333333333333333333333333333333333333333333333b3
33333333333333333333333333333333333333333333333333333333333333333333333333333b33333333333333333333333333333333333333333333333b33
33333333333333333333333333333333333333333333333333333333333333333333333333333b33333333333333333333333333333333333333333333333b33
3333333333333333333333333333333333333333333333333333333333333333333333333b33333333333333333333333333333333333333333333333b333333
3333333333333333333333333333333333333333333333333333333333333333333333333bb3333333333333333333333333333333333333333333333bb33333
33333333333333333333333333333333333333333333333333333333333333333333333333b33333333333333333333333333333333333333333333333b33333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333111113333333333333333333333333333333333333333333333333333333339999333333333333333333333311111333333333
33333333333333333333333331565551333333333333333333333333333333333333333333333333333333339aa9333333333333333333333156555133333333
33333333333333333333333331555651333333333333333333333333333333333333333333333333333333339339999933333333333333333155565133333333
33333333333333333333333331555613333333333333333333333333333333333333333333333333333333339339a9a933333333333333333155561333333333
333333333333333333333333312555133333333333333333333333333333333333333333333333333333333399993a3a33333333333333333125551333333333
3333333333333333333333333312551333333333333333333333333333333333333333333333333333333333aaaa333333333333333333333312551333333333
33333333333333333333333333311133333333333333333333333333333333333333333333333333333333333333333333333333333333333331113333333333
33333333333333333333333333333333333333333333333333333333333333333339993333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333399999333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333391919333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333399999333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333399999333333333333333333333333333333333333333333333333333333333
3333333333333333333333333333333333333333333333333333333333333333333aaa3333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333322222333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333344344333333333333333333333333333333333333333333333333333333333
3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333334a4444a4
3333333333333333333333333333333333333333333333333633363336333633363336333633363336333633363336333333333333333333333333334a4444a4
3333333333333333333333333333333333333333333333330603060306030603060306030603060306030603060306033333333333333333333333334a4444a4
333333333333333333333333333333333333333333333333303330333033303330333033303330333033303330333033333333333333333333333333aaa99aaa
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333319199191
3333333333333333333333333333333333333333333333333633363336333633363336333633363336333633363336333333333333333333333333334a4444a4
3333333333333333333333333333333333333333333333330603060306030603060306030603060306030603060306033333333333333333333333334a4444a4
3333333333333333333333333333333333333333333333333033303330333033303330333033303330333033303330333333333333333333333333334a4444a4
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333336333633333333333333333333333333333333333633363333333333333333333333333333333333
33333333333333333333333333333333333333333333333306030603333333333333333333333333333333330603060333333333333333333333333333333333
33333333333333333333333333333333333333333333333330333033333333333333333333333333333333333033303333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333336333633333333333333333333333333333333333633363333333333333333333333333333333333
33333333333333333333333333333333333333333333333306030603333333333333333333333333333333330603060333333333333333333333333333333333
33333333333333333333333333333333333333333333333330333033333333333333333333333333333333333033303333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333336333633333333333333333333333333333333333633363333333333333333333333333333333333
33333333333333333333333333333333333333333333333306030603333333333333333333333333333333330603060333333333333333333333333333333333
33333333333333333333333333333333333333333333333330333033333333333333333333333333333333333033303333333333333333333333333333333333
33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
33333333333333333333333333333333333333333333333336333633333333333333333333333333333333333633363333333333333333333333333333333333
33333333333333333333333333333333333333333333333306030603333333333333333333333333333333330603060333333333333333333333333333333333
33333333333333333333333333333333333333333333333330333033333333333333333333333333333333333033303333333333333333333333333333333333
11111111333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
11111111333333333333333333333333333333333333333336333633363336333033303330333033363336333633363333333333333333333333333333333333
11111111333333333333333333333333333333333333333306030603060306030503050305030503060306030603060333333333333333333333333333333333
11111111333333333333333333333333333333333333333330333033303330333033303330333033303330333033303333333333333333333333333333333333
11111111333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
11111111333333333333333333333333333333333333333336333633363336333033303330333033363336333633363333333333333333333333333333333333
11111111333333333333333333333333333333333333333306030603060306030503050305030503060306030603060333333333333333333333333333333333
11111111333333333333333333333333333333333333333330333033303330333033303330333033303330333033303333333333333333333333333333333333
11111111111111113333333333333333333333333333333333333333111111116666666666666666111111111111111111111111111111111111111111111111
11111111111111113333333333333333333333333333333333333333111111116666666666666666111111111111111111115511111111111111111111111111
11111111111111113333333333333333333333333333333333333333111111116666665666666656111111111111111111555551111111111111111111111111
11111111111111113333333333333333333333333333333333333333111111116566666665666666111111111111111115566551111111111111111111111111
11111111111111113333333333333333333333333333333333333333111111116666666666666666111111111111111115555551111111111111111111111111
111111111111111133333333333333333333333333333333333333331111111166665666666656661111111111111111c5555651111111111111111111111111
1111111111111111333333333333333333333333333333333333333311111111666666666666666611111111111111111cc555cc111111111111111111111111
111111111111111133333333333333333333333333333333333333331111111166666666666666661111111111111111111ccc11111111111111111111111111
11111111111111111111111111111111111111113333333333333333111111116666666666666666111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111113333333333333333111111116666666666666666111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111113333333333333333111111116666665666666656111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111113333333333333333111111116566666665666666111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111113333333333333333111111116666666666666666111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111113333333333333333111111116666566666665666111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111113333333333333333111111116666666666666666111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111113333333333333333111111116666666666666666111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111111111111111111111111111116666666666666666665666566656665666566656665666566656665666566656
11111111111111111111551111111111111111111111111111115511111111116666666666666666555555555555555555555555555555555555555555555555
11111111111111111155555111111111111111111111111111555551111111116666665666666656566656665666566656665666566656665666566656665666
11111111111111111556655111111111111111111111111115566551111111116566666665666666555555555555555555555555555555555555555555555555
11111111111111111555555111111111111111111111111115555551111111116666666666666666665666566656665666566656665666566656665666566656
1111111111111111c5555651111111111111111111111111c5555651111111116666566666665666555555555555555555555555555555555555555555555555
11111111111111111cc555cc1111111111111111111111111cc555cc111111116666666666666666566656665666566656665666566656665666566656665666
1111111111111111111ccc11111111111111111111111111111ccc11111111116666666666666666555555555555555555555555555555555555555555555555
33333333333333333333333333333333111111111111111111111111111111116666666666666666665666566666666666666666666666666666666666566656
33333333333333333333333333333333111111111111111111111111111111116666666666666666555555556666666666666666666666666688886655555555
333333333333333333333333333333331c1cc11111111111111111111c1cc1116666665666666656566656666666666666666666666666666866668656665666
33333333333333333333333333333333111111111111111111111111111111116566666665666666555555556666666666666666666666666868868655555555
33333333333333333333333333333333111c11111111111111111111111c11116666666666666666665666566666666666666666666666666868868666566656
333333333333333333333333333333331111c1c111111111111111111111c1c16666566666665666555555556666666666666666666666666866668655555555
33333333333333333333333333333333111111111111111111111111111111116666666666666666566656666666666666666666666666666688886656665666
33333333333333333333333333333333111111111111111111111111111111116666666666666666555555556666666666666666666666666666666655555555
33333333333333333333333333333333333333333333333333333333333333336666666666666666555555556666666666666666666666666666666666566656
33333333333333333333333333333333333333333333333333333333333333336666666666666666554444556666666666666666666666666666666655555555
33333333333333333333333333333333333333333333333333333333333333336666665666666656544444456666666666666666666666666666666656665666
33333333333333333333333333333333333333333333333333333333333333336566666665666666511444456666666666666666666666666666666655555555
33333333333333333333333333333333333333333333333333333333333333336666666666666666544444456666666666666666666666666666666666566656
33333333333333333333333333333333333333333333333333333333333333336666566666665666544446456666666666666666666666666666666655555555
33333333333333333333333333333333333333333333333333333333333333336666666666666666511444456666666666666666666666666666666656665666
33333333333333333333333333333333333333333333333333333333333333336666666666666666544444456666666666666666666666666666666655555555
33333333333333333333333333333333333333333333333333333333333333333333333333333333665666566656665666566656665666566656665666566656
33333333333333333333333333333333331111133333333333333333333333333333333333333333555555555555555555555555555555555555555555555555
33333333333333333333333333333333315655513333333333333333333333333333333333333333566656665666566656665666566656665666566656665666
33333333333333333333333333333333315556513333333333333333333333333333333333333333555555555555555555555555555555555555555555555555
33333333333333333333333333333333315556133333333333333333333333333333333333333333665666566656665666566656665666566656665666566656
33333333333333333333333333333333312555133333333333333333333333333333333333333333555555555555555555555555555555555555555555555555
33333333333333333333333333333333331255133333333333333333333333333333333333333333566656665666566656665666566656665666566656665666
33333333333333333333333333333333333111333333333333333333333333333333333333333333555555555555555555555555555555555555555555555555
__gff__
0000000100000000800000000000000000010101000200004810000000000000000000010003010000000000000000000000000000050000210000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
__map__
0101010101010101010101010101010101010101010101010101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101010101010101010101010101010101020202010101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101010101010101010101010101010102010101030101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101010101010201010101010201010101010101010101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010301010101010101150101030101010102010101010101010201010101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101380101010101013801010101010101010301010101010101011101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101011818181818180101012501010101010101010101010101011101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101011801010101180101010102010101010101010101010111111101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101011801010101180101010101010101010101010101011111121100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1101010101011818191918180101010101010101010101010111111311111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1111010101010111222211111311111111110101010111111111111211010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1111111111010111222211111111111111111112111111121311111101010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1111131111111311222223232323232311131111131111111101010101010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010112111112222223212121082312111111111111010101010101010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101010101222235212121212311111111111101010101010101020100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010103010101010123232323232301010101010102010101010103010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0101010101010201020101010101010101010101010101010101010103010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000010101010101010101010101010101010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000010101010101010101010101010101010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000010101010101010101010101010101010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
__sfx__
000400000d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
000600001b05023050230502305023050230302302023010240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
000600001605017050220502d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
000300000b6200f620180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000