This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upspaceranger/space.p8
Go to file| pico-8 cartridge // http://www.pico-8.com | |
| version 8 | |
| __lua__ | |
| score = 0 | |
| life = 3 | |
| gamestate = 0 | |
| spawntimer = 0 | |
| framecount = 0 | |
| spawntime = 25 | |
| speed = 1 | |
| bullettimer = 0 | |
| velocity = 0.8 | |
| ship = { | |
| x = 64 - 4, | |
| y = 127 - 8, | |
| vx = 0, | |
| vy = 0, | |
| spdx = 0.4, | |
| spdy = 0.25 | |
| } | |
| stars = {} | |
| enemies = {} | |
| bullets = {} | |
| lastfiregamestate = false | |
| -- get a valid bullet index | |
| function getfreebullet() | |
| size = #bullets | |
| for i = 1, size do | |
| if bullets[i].dead == true then | |
| return i | |
| end | |
| end | |
| return size + 1 | |
| end | |
| -- get a valid enemy index | |
| function getfreeenemy() | |
| size = #enemies | |
| for i = 1, size do | |
| if enemies[i].dead == true then | |
| return i | |
| end | |
| end | |
| return size + 1 | |
| end | |
| function intersect(p0, p1) | |
| local dx = p0.x - p1.x | |
| local dy = p0.y - p1.y | |
| return sqrt(dx * dx + dy * dy) < 2 + 4 | |
| end | |
| function firewaspressed() | |
| return lastfiregamestate == true and btn(4) == false | |
| end | |
| function resetgame(startgame) | |
| score = 0 | |
| life = 3 | |
| spawntimer = 0 | |
| framecount = 0 | |
| spawntime = 25 | |
| speed = 1 | |
| bullettimer = 0 | |
| ship.x = 64 - 4 | |
| ship.y = 127 - 8 | |
| ship.vx = 0 | |
| ship.vy = 0 | |
| ship.spdx = 0.4 | |
| ship.spdy = 0.25 | |
| bullets = {} | |
| enemies = {} | |
| lastfiregamestate = btn(4) | |
| if startgame == true then | |
| gamestate = 1 | |
| else | |
| gamestate = 0 | |
| end | |
| end | |
| function respawn() | |
| spawntimer = 0 | |
| ship.x = 64 - 4 | |
| ship.y = 127 - 8 | |
| ship.vx = 0 | |
| ship.vy = 0 | |
| ship.spdx = 0.4 | |
| ship.spdy = 0.25 | |
| local ecount = #enemies | |
| for i = 1, ecount do | |
| enemies[i].dead = true | |
| end | |
| gamestate = 1 | |
| end | |
| function _init() | |
| -- create stars | |
| for i = 1, 25 do | |
| stars[i] = { | |
| x = flr(rnd(127)), | |
| y = flr(rnd(127)) | |
| } | |
| end | |
| resetgame(false) | |
| end | |
| function _update() | |
| if gamestate == 1 then | |
| updategame() | |
| elseif firewaspressed() then | |
| if gamestate == 2 then | |
| if life > 0 then | |
| respawn() | |
| else | |
| gamestate = 0 | |
| end | |
| else | |
| resetgame(true) | |
| end | |
| end | |
| lastfiregamestate = btn(4) | |
| end | |
| function updategame() | |
| spawntimer += 1 | |
| framecount += 1 | |
| if bullettimer > 0 then | |
| bullettimer -= 1 | |
| if bullettimer <= 0 then | |
| bullettimer = 0 | |
| end | |
| end | |
| if framecount > 0 and framecount % 100 == 0 and spawntime > 5 then | |
| spawntime -= 1 | |
| speed += 1 | |
| end | |
| if spawntimer > spawntime then | |
| spawntimer = 0 | |
| end | |
| -- move stars | |
| size = #stars | |
| for i = 1, size do | |
| stars[i].y += 1 | |
| if (stars[i].y > 127) then | |
| stars[i].y = 0 | |
| end | |
| end | |
| -- move the player | |
| if btn(0) then | |
| ship.vx -= ship.spdx | |
| elseif btn(1) then | |
| ship.vx += ship.spdx | |
| end | |
| if btn(2) then | |
| ship.vy -= ship.spdy | |
| elseif btn(3) then | |
| ship.vy += ship.spdy | |
| end | |
| ship.vx *= velocity | |
| ship.vy *= velocity | |
| ship.x += ship.vx | |
| ship.y += ship.vy | |
| -- check player bounds | |
| if ship.x < 0 then | |
| ship.x = 0 | |
| elseif ship.x > 127 - 8 then | |
| ship.x = 127 - 8 | |
| end | |
| if ship.y < 0 then | |
| ship.y = 0 | |
| elseif ship.y > 127 - 8 then | |
| ship.y = 127 - 8 | |
| end | |
| -- spawn enemies | |
| if spawntimer == 1 then | |
| idx = getfreeenemy() | |
| if enemies[idx] == nil then | |
| enemies[idx] = {} | |
| end | |
| enemies[idx].x = flr(rnd(127)) | |
| enemies[idx].y = 0 | |
| local sprite = 4 | |
| if flr(rnd(6)) % 2 == 0 then | |
| sprite = 7 | |
| end | |
| enemies[idx].sprite = sprite | |
| enemies[idx].dead = false | |
| end | |
| -- update enemies | |
| size = #enemies | |
| for i = 1, size do | |
| if enemies[i].dead == false then | |
| enemies[i].y += 2 | |
| if enemies[i].y >= 127 then | |
| enemies[i].dead = true | |
| score -= 10 | |
| end | |
| end | |
| end | |
| -- spawn a new bullet | |
| if firewaspressed() and bullettimer == 0 then | |
| idx = getfreebullet() | |
| bullettimer = 12 | |
| if bullets[idx] == nil then | |
| bullets[idx] = {} | |
| end | |
| bullets[idx].x = ship.x | |
| bullets[idx].y = ship.y | |
| bullets[idx].dead = false | |
| sfx(0) | |
| end | |
| -- update bullets position | |
| -- check bullets collision | |
| size = #bullets | |
| ecount = #enemies | |
| for i = 1, size do | |
| if bullets[i].dead == false then | |
| bullets[i].y -= 2 | |
| if bullets[i].y <= 0 then | |
| bullets[i].dead = true | |
| end | |
| if bullets[i].dead == false then | |
| for j = 1, ecount do | |
| if enemies[j].dead == false and intersect(bullets[i], enemies[j]) == true then | |
| bullets[i].dead = true | |
| enemies[j].dead = true | |
| score += 25 | |
| sfx(1) | |
| end | |
| end | |
| end | |
| end | |
| end | |
| -- check collision with player | |
| for i = 1, ecount do | |
| if (enemies[i].dead == false and intersect(ship, enemies[i]) == true) then | |
| gamestate = 2 | |
| life = life - 1 | |
| enemies[i].dead = true | |
| sfx(1) | |
| end | |
| end | |
| if score < 0 then | |
| score = 0 | |
| end | |
| end | |
| function _draw() | |
| rectfill(0,0, 127, 127, 0) | |
| if gamestate == 0 then | |
| drawtitle() | |
| print("press (c) to start", 25, 110, 9) | |
| elseif gamestate == 1 then | |
| drawgame() | |
| elseif gamestate == 2 then | |
| drawend() | |
| end | |
| end | |
| function drawtitle() | |
| local counter = 0 | |
| for i = 16, 20 do | |
| spr(i, 35 + counter, 40) | |
| counter += 10 | |
| end | |
| counter = 0 | |
| for i = 21, 26 do | |
| spr(i, 45 + counter, 55) | |
| counter += 10 | |
| end | |
| spr(1, 100, 108) | |
| end | |
| function drawend() | |
| if life == 0 then | |
| print("game over", 45, 5, 3) | |
| print("your score: "..score.." points", 20, 55, 9) | |
| print("press (c) to return to the menu", 5, 110, 5) | |
| else | |
| print("your ship has been destroyed!", 5, 55, 3) | |
| print("press (c) to restart", 25, 110, 5) | |
| end | |
| end | |
| function drawgame() | |
| -- draw stars | |
| size = #stars | |
| for i = 1, size do | |
| spr(3, stars[i].x, stars[i].y) | |
| end | |
| -- draw the player | |
| local pid = 1 | |
| local moving = abs(ship.vx + ship.vy) > 0.25 | |
| if moving then | |
| if framecount % 2 == 0 then | |
| pid = 5 | |
| else | |
| pid = 6 | |
| end | |
| end | |
| spr(pid, ship.x, ship.y) | |
| -- draw enemies | |
| size = #enemies | |
| for i = 1, size do | |
| if enemies[i].dead == false then | |
| spr(enemies[i].sprite, enemies[i].x, enemies[i].y) | |
| end | |
| end | |
| -- draw bullets | |
| size = #bullets | |
| for i = 1, size do | |
| if bullets[i].dead == false then | |
| spr(2, bullets[i].x, bullets[i].y) | |
| end | |
| end | |
| -- draw the ui | |
| print("score: "..score, 3, 3, 9) | |
| print("life: "..life, 3, 9, 9) | |
| print("speed: "..speed, 3, 15, 9) | |
| end | |
| __gfx__ | |
| 000000000007700000000000000000000aa00aa00007700000077000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000007cc700000000000000000008800880007cc700007cc700000aa0000000000000000000000000000000000000000000000000000000000000000000 | |
| 00700700007cc7000005500000000000088ee880007cc700007cc700000880000000000000000000000000000000000000000000000000000000000000000000 | |
| 0007700007777770000550000007a000008ee8000777777007777770000660000000000000000000000000000000000000000000000000000000000000000000 | |
| 000770007770077700088000000a7000008bb8007770077777700777111771110000000000000000000000000000000000000000000000000000000000000000 | |
| 0070070078800887000aa00000000000088bb8807990099779800897011cc1100000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000058888509900009998000089006cc6000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000050000500000000008000080000770000000000000000000000000000000000000000000000000000000000000000000 | |
| 09999990099990000999999000999990099999900888888008888880088800880888888008888880088888800000000000000000000000000000000000000000 | |
| 09900090099999000990099009999990099999900880088008800880088800880888888008888880088008800000000000000000000000000000000000000000 | |
| 09900000099009900990099009900090099000000880088008800880088880888800008008800000088008800000000000000000000000000000000000000000 | |
| 09999990099009900999999009900000099990000880088008888880088080888800000008888000088008800000000000000000000000000000000000000000 | |
| 09999990099999000999999009900000099990000888880008888880088080888800888008888000088888000000000000000000000000000000000000000000 | |
| 00000990099990000990099009900090099000000888880008800880088080888800888008800000088888000000000000000000000000000000000000000000 | |
| 09000990099000000990099009999990099999900880088008800880088088880800008008888880088008800000000000000000000000000000000000000000 | |
| 09999990099000009990099900999990099999900880088088800888088088880888888008888880088008800000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| __gff__ | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| __map__ | |
| 0000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000050500050500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000005050000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000050505000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| __sfx__ | |
| 000100002c15029150261502415023150201501e1501d1501c1501b15019150181501715015150181501a1501c150181501c150101501c15010150181501815018150131501615018150191501b1501c1501e150 | |
| 000100002914030450234602d4602a460344603d4503c4503945020440124401c4300f4200e4100c4300a43009430084300742007410064300642006430074200742018420181201822008310094100a3100a210 | |
| 00100000180501c050180501a0501c0501a050180501a0501c0501a050180501c0501a050180501c0501a050180501c0500f0500d0500f0500d0500d0500f0500d0500d0500f0500d0500d0501a050000001a050 | |
| 0010000000000000001a0501c050180501a0501c0500d0500f0500d0500f0500d0500f0500d0500d0500f0500d0500f0500d0500d050000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
| __music__ | |
| 05 01020344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |
| 00 41424344 | |