Created
November 22, 2020 22:39
-
-
Save amiantos/f314878361e9cbe86a02da584c315cc1 to your computer and use it in GitHub Desktop.
RPG Movement Template for Pico-8 by mantenner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pico-8 cartridge // http://www.pico-8.com | |
version 29 | |
__lua__ | |
--an rpg movement template | |
--designed by mantenner | |
--available for any use | |
--enjoy! | |
--variables | |
function _init() | |
timer=time() | |
--game variables | |
map_start=0 | |
map_end=1024 | |
--simple camera | |
camera_x=0 | |
camera_y=0 | |
--player table | |
player={ | |
sp=1, | |
x=64,y=64, | |
destx=64,desty=64, | |
overworld_x=0,overworld_y=0, | |
aim="down", | |
w=6, | |
h=8, | |
flp=false, | |
spd=0.5 | |
} | |
end | |
-->8 | |
--update and draw | |
function _update60() | |
player_update() | |
player_camera() | |
end | |
function _draw() | |
cls() | |
--draw the map 1024 by 1024 | |
map(0,0,0,0,1024,1024) | |
--draw the player | |
spr(player.sp,player.x, | |
player.y,1,1,player.flp) | |
end | |
function player_camera() | |
--declares the camera x pos | |
cam_x=player.x-64+player.w/2 | |
--checks the x position of | |
--the camera never leaves the | |
--start of the map | |
if cam_x<map_start then | |
cam_x=map_start | |
end | |
--checks the x position of | |
--the camera never leaves the | |
--end of the map | |
if cam_x>map_end-128 then | |
cam_x=map_end-128 | |
end | |
--declares the camera y pos | |
cam_y=player.y-64+player.h/2 | |
--checks the y position of | |
--the camera never leaves the | |
--start of the map | |
if cam_y<map_start then | |
cam_y=map_start | |
end | |
--checks the x position of | |
--the camera never leaves the | |
--end of the map | |
if cam_y>map_end-128 then | |
cam_y=map_end-128 | |
end | |
--sets the camera | |
camera(cam_x, cam_y+camera_y) | |
end | |
-->8 | |
--player | |
function player_update() | |
if player.x==player.destx and | |
player.y==player.desty then | |
if btn(⬅️) then | |
player.destx=player.x-8 | |
player.sp=1 | |
player.flp=false | |
player.aim="left" | |
elseif btn(⬆️) then | |
player.desty=player.y-8 | |
player.sp=4 | |
player.flp=false | |
player.aim="up" | |
elseif btn(➡️) then | |
player.destx=player.x+8 | |
player.sp=1 | |
player.flp=true | |
player.aim="right" | |
elseif btn(⬇️) then | |
player.desty=player.y+8 | |
player.sp=5 | |
player.flp=false | |
player.aim="down" | |
end | |
end | |
--flag 0 means collision | |
--so stops movement | |
--see the sprite page 1 | |
col_flag=0 | |
if player.aim=="left" then | |
if player.x > player.destx then | |
if collide_map(player, "left", col_flag)==false then | |
player.x -= player.spd | |
else | |
player.destx = player.x | |
end | |
end | |
elseif player.aim=="up" then | |
if player.y>player.desty then | |
if collide_map(player,"up",col_flag)==false then | |
player.y-=player.spd | |
else | |
player.desty=player.y | |
end | |
end | |
elseif player.aim=="right" then | |
if player.x<player.destx then | |
if collide_map(player, "right", col_flag)==false then | |
player.x+=player.spd | |
else | |
player.destx=player.x | |
end | |
end | |
elseif player.aim=="down" then | |
if player.y<player.desty then | |
if collide_map(player,"down", col_flag)==false then | |
player.y+=player.spd | |
else | |
player.desty=player.y | |
end | |
end | |
end | |
end | |
-->8 | |
--collisions | |
function collide_map(obj, aim, | |
flag) | |
--obj = table needs x, y, w, h | |
--aim = left, right, up, down | |
local x = obj.x | |
local y = obj.y | |
local w = obj.w | |
local h = obj.h | |
local x1 = 0 | |
local y1 = 0 | |
local x2 = 0 | |
local y2 = 0 | |
if aim == "left" then | |
x1 = x - 1 | |
y1 = y | |
x2 = x | |
y2 = y + h - 1 | |
elseif aim == "right" then | |
x1 = x + w | |
y1 = y | |
x2 = x + w + 2 | |
y2 = y + h - 1 | |
elseif aim == "up" then | |
x1 = x + 2 | |
y1 = y - 1 | |
x2 = x + w - 3 | |
y2 = y | |
elseif aim == "down" then | |
x1 = x + 2 | |
y1 = y + h | |
x2 = x + w - 3 | |
y2 = y + h | |
end | |
--player hitbox-- | |
x1r = x1 | |
y1r = y1 | |
x2r = x2 | |
y2r = y2 | |
----------------- | |
--pixels to tiles | |
x1 /= 8 | |
y1 /= 8 | |
x2 /= 8 | |
y2 /= 8 | |
if fget(mget(x1, y1), flag) | |
or fget(mget(x1, y2), flag) | |
or fget(mget(x2, y1), flag) | |
or fget(mget(x2, y2), flag) then | |
return true | |
else | |
return false | |
end | |
end | |
__gfx__ | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000055555000000000000000000005555000055550000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00700700555555500000000000000000055555500555555000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
000770000d6d765000000000000000000555555006d66d6000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00077000066666500000000000000000066666600666666000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00700700000550000000000000000000005555000055550000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000065555600000000000000000060550600605506000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000005005000000000000000000005005000050050000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
77777777777777770000000077707777000000006666666666666666666666660000000000000000000000000000000000000000000000000000000000000000 | |
777777777777777777777777770007770000000066d6d6d6d6d6d6d6d6d6d6d60000000000000000000000000000000000000000000000000000000000000000 | |
77777777777777777777777777000077000000006d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
77777777777777777777777770000777000000006677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
77777777777777777777777700000077000000006d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
77777777777777777777777770000007000000006677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
77777777777777777777777700000077000000006d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
77777777777777770000000077007777000000006677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
77777700000000000077777777777777700007776d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
77770007777777777000777777770077077770776677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
77000777777777777770007707700777007700776d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
00077777777777777777700000707777070070776677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
07777777777777777777777000070077077770776d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
07777777777777777777777000770007077770776677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
07777777777777777777777077777077077770776d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
00777777777777777777770077777777700007776677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000777777776d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
70777777755555577777770777777777777777776677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
70777777757777577777770777777777700770076d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
70777777757777577777770777777777077007706677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
70777777757777577777770777777777007700776d77777777777777777777660000000000000000000000000000000000000000000000000000000000000000 | |
70777777757777577777770777777777770077006677777777777777777777d60000000000000000000000000000000000000000000000000000000000000000 | |
70777777757777577777770777777777777777776d6d6d6d6d6d6d6d6d6d6d660000000000000000000000000000000000000000000000000000000000000000 | |
77000000055555500000007700000000777777776666666666666666666666660000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
20202020202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
20202020202020202020202020202020202020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
20202020202020202020202020202020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
20202020202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
20202020202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
20202020202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
00000000202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
__label__ | |
00077000000770000007700000077000000770000007700000077000000770000007700000077000000770000007700000077000000770000007700000077000 | |
00007700000077000000770000007700000077000000770000007700000077000000770000007700000077000000770000007700000077000000770000007000 | |
00077000000770000007700000077000000770000007700000077000000770000007700000077000000770000007700000077000000770000007700000077000 | |
07777770077777700777777007777770077777700777777007777770077777700777777007777770077777700777777007777770077777700777777007777000 | |
07777777077777770777777707777700007777000077770000777700007777000077770000777700007777000077770000777700007777000077777707777000 | |
00777770007777700077777000777077770770777707707777077077770770777707707777077077770770777707707777077077770770777707777000777000 | |
00077770000777700007777000077007700770077007700770077007700770077007700770077007700770077007700770077007700770077007777000077000 | |
00777700007777000077770000777070070770700707707007077070070770700707707007077070070770700707707007077070070770700707770000777000 | |
00077000000770000007700000077077770770777707707777077077770770777707707777077077770770777707707777077077770770777707700000077000 | |
00007700000077000000770000007077770770777707707777077077770770777707707777077077770770777707707777077077770770777707770000007000 | |
00077000000770000007700000077077770770777707707777077077770770777707707777077077770770777707707777077077770770777707700000077000 | |
07777770077777700777777007777700007777000077770000777700007777000077770000777700007777000077770000777700007777000077777007777000 | |
66666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777000077777707777000 | |
6d6d6d6d6d6d6d6d6d6d6d6d6d6d6777777777777777777777777777777777777777777777777777777777777777777777777777777770777707777000777000 | |
77777777777777777777777777766777777777777777777777777777777777777777777777777777777777777777777777777777777770077007777000077000 | |
777777777777777777777777777d6777777777777777777777777777777777777777777777777777777777777777777777777777777770700707770000777000 | |
77777777777777777777777777766777777777777777777777777777777777777777777777777777777777777777777777777777777770777707700000077000 | |
777777777777777777777777777d6777777777777777777777777777777777777777777777777777777777777777777777777777777770777707770000007000 | |
77777777777777777777777777766777777777777777777777777777777777777777777777777777777777777777777777777777777770777707700000077000 | |
777777777777777777777777777d6777777777777777777777777777777777777777777777777777777777777777777777777777777777000077777007777000 | |
77777777777777777777777777766777777777777777777777777777777777777777777777700000000000000000000777777777777777000077777707777000 | |
777777777777777777777777777d6777777777777777777777777777777777777777777770007777777777777777770007777777777770777707777000777000 | |
77777777777777777777777777766777777777777777777777777777777777777777777000777777777777777777777700077777777770077007777000077000 | |
777777777777777777777777777d6777777777777777777777777777777777777777700077777777777777777777777777000777777770700707770000777000 | |
77777777777777777777777777766777777777777777777777777777777777777777707777777777777777777777777777770777777770777707700000077000 | |
777777777777777777777777777d6777777777777777777777777777777777777777707777777777777777777777777777770777777770777707770000007000 | |
77777777777777777777777777766777777777777777777777777777777777777777707777777777777777777777777777770777777770777707700000077000 | |
777777777777777777777777777d6777777777777777777777777777777777777777700777777777777777777777777777700777777777000077777007777000 | |
77777777777777777777777777777666666666666666677777777777777777777777700000000000000000000000000000000777777777000077777707777000 | |
77777777777777777777777777777d6d6d6d6d6d6d6d677777777777777777777777770777777755555577777777777777707777777770777707777000777000 | |
77777777777777777777777777777777777777777776677777777777777777777777770777777757777577777777777777707777777770077007777000077000 | |
7777777777777777777777777777777777777777777d677777777777777777777777770777777757777577777777777777707777777770700707770000777000 | |
77777777777777777777777777777777777777777776677777777777777777777777770777777757777577777777777777707777777770777707700000077000 | |
7777777777777777777777777777777777777777777d677777777777777777777777770777777757777577777777777777707777777770777707770000007000 | |
d6d6d777777777777777777777777777777777777776677777777777777777777777770777777757777577777777777777707777777770777707700000077000 | |
6666677777777777777777777777777777777777777d677777777777777777777777777000000055555500000000000000077777777777000077777007777000 | |
077776d7777777777777777777777777777777777776677777777777777777777777777777777777777777777777777777777777777777000077777707777000 | |
0077766777777777777777777777777777777777777d677777777777777777777777777777777777777777777777777777777777777770777707777000777000 | |
000776d7777777777777777777777777777777777776677777777777777777777777777777777777777777777777777777777777777770077007777000077000 | |
0077766777777777777777777777777777777777777d677777777777777777777777777777777777777777777777777777777777777770700707770000777000 | |
000776d7777777777777777777777777777777777776677777777777777777777777777777777777777777777777777777777777777770777707700000077000 | |
0000766777777777777777777777777777777777777d677777777777777777777777777777777777777777777777777777777777777770777707770000007000 | |
000776d7777777777777777777777777777777777776677777777777777777777777777777777777777777777777777777777777777770777707700000077000 | |
0777766777777777777777777777777777777777777d677777777777777777777777777777777777777777777777777777777777777777000077777007777000 | |
077776d7777777777777777777777777777777777776677777777777777777777777777777777777777777777777777777777777777777000077777707777000 | |
0077766777777777777777777777777777777777777d677777777777777777777777777777777777777777777777777777777777777770777707777000777000 | |
000776d7777777777777777777777777777777777776677777777777777777777777777777777777777777777777777777777777777770077007777000077000 | |
0077766777777777777777777777777777777777777d677777777777777777777777777777777777777777777777777777777777777770700707770000777000 | |
000776d7777777777777777777777777777777777776677777777777777777777777777777777777777777777777777777777777777770777707700000077000 | |
0000766777777777777777777777777777777777777d677777777777777777777777777777777777777777777777777777777777777770777707770000007000 | |
000776d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6677777777777777777777777777777777777777777777777777777777777777770777707700000077000 | |
07777666666666666666666666666666666666666666677777777777777777777777777777777777777777777777777777777777777777000077777007777000 | |
07777700007777777770000000000000000000000000000777777777777777777777777777777777777777777777777777777777777777000077777707777000 | |
00777077770777777000777777777777777777777777770007777777777777777777777777777777777777777777777777777777777770777707777000777000 | |
00077007700777700077777777777777777777777777777700077777777777777777777777777777777777777777777777777777777770077007777000077000 | |
00777070070770007777777777777777777777777777777777000777777777777777777777777777777777777777777777777777777770700707770000777000 | |
00077077770770777777777777777777777777777777777777770777777777777777777777777777777777777777777777777777777770777707700000077000 | |
00007077770770777777777777777777777777777777777777770777777777777777777777777777777777777777777777777777777770777707770000007000 | |
00077077770770777777777777777777777777777777777777770777777777777777777777777777777777777777777777777777777770777707700000077000 | |
07777700007770077777777777777777777777777777777777700777777777777777777777777777777777777777777777777777777777000077777007777000 | |
07777700007770000000000000000000000000000000000000000777777777777777777777777777777777777777777777777777777777000077777707777000 | |
00777077770777077777777777777755555577777777777777707777777777555557777777777777777777777777777777777777777770777707777000777000 | |
00077007700777077777777777777757777577777777777777707777777775555555777777777777777777777777777777777777777770077007777000077000 | |
00777070070777077777777777777757777577777777777777707777777777d6d765777777777777777777777777777777777777777770700707770000777000 | |
00077077770777077777777777777757777577777777777777707777777777666665777777777777777777777777777777777777777770777707700000077000 | |
00007077770777077777777777777757777577777777777777707777777777775577777777777777777777777777777777777777777770777707770000007000 | |
00077077770777077777777777777757777577777777777777707777777777655556777777777777777777777777777777777777777770777707700000077000 | |
07777700007777700000000000000055555500000000000000077777777777757757777777777777777777777777777777777777777777000077777007777000 | |
07777700007777777777777777777777777777777777777777777777777777777777777777777777777777777770000000000007777777000077777707777000 | |
00777077770777777777777777777777777777777777777777777777777777777777777777777777777777777000777777777700077770777707777000777000 | |
00077007700777777777777777777777777777777777777777777777777777777777777777777777777777700077777777777777000770077007777000077000 | |
00777070070777777777777777777777777777777777777777777777777777777777777777777777777770007777777777777777770000700707770000777000 | |
00077077770777777777777777777777777777777777777777777777777777777777777777777777777770777777777777777777777700777707700000077000 | |
00007077770777777777777777777777777777777777777777777777777777777777777777777777777770777777777777777777777700777707770000007000 | |
00077077770777777777777777777777777777777777777777777777777777777777777777777777777770777777777777777777777700777707700000077000 | |
07777700007777777777777777777777777777777777777777777777777777777777777777777777777770077777777777777777777007000077777007777000 | |
07777700007777000077770000777700007777000077770000777777777777777777777777777777777770000000000000000000000007000077777707777000 | |
00777077770770777707707777077077770770777707707777077777777777777777777777777777777777077777775555557777777070777707777000777000 | |
00077007700770077007700770077007700770077007700770077777777777777777777777777777777777077777775777757777777070077007777000077000 | |
00777070070770700707707007077070070770700707707007077777777777777777777777777777777777077777775777757777777070700707770000777000 | |
00077077770770777707707777077077770770777707707777077777777777777777777777777777777777077777775777757777777070777707700000077000 | |
00007077770770777707707777077077770770777707707777077777777777777777777777777777777777077777775777757777777070777707770000007000 | |
00077077770770777707707777077077770770777707707777077777777777777777777777777777777777077777775777757777777070777707700000077000 | |
07777700007777000077770000777700007777000077770000777777777777777777777777777777777777700000005555550000000777000077777007777000 | |
07777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777000077777707777000 | |
00777777700777777007777770077777700777777007777770077777777777777777777777777777777777777777777777777777777770777707777000777000 | |
00077077007770770077707700777077007770770077707700777777777777777777777777777777777777777777777777777777777770077007777000077000 | |
00777007077770070777700707777007077770070777700707777777777777777777777777777777777777777777777777777777777770700707770000777000 | |
00077000700770007007700070077000700770007007700070077777777777777777777777777777777777777777777777777777777770777707700000077000 | |
00007007700070077000700770007007700070077000700770007777777777777777777777777777777777777777777777777777777770777707770000007000 | |
00077777770777777707777777077777770777777707777777077777777777777777777777777777777777777777777777777777777770777707700000077000 | |
07777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777000077777007777000 | |
07777777777777777777777777777777777777777777770000777700007777777777777777777777777777000077770000777700007777000077777707777000 | |
00777777700777777007777770077777700777777007707777077077770777777777777777777777777770777707707777077077770770777707777000777000 | |
00077077007770770077707700777077007770770077700770077007700777007700770077007700770070077007700770077007700770077007777000077000 | |
00777007077770070777700707777007077770070777707007077070070770770077007700770077007700700707707007077070070770700707770000777000 | |
00077000700770007007700070077000700770007007707777077077770770077007700770077007700770777707707777077077770770777707700000077000 | |
00007007700070077000700770007007700070077000707777077077770777700770077007700770077000777707707777077077770770777707770000007000 | |
00077777770777777707777777077777770777777707707777077077770777777777777777777777777770777707707777077077770770777707700000077000 | |
07777777777777777777777777777777777777777777770000777700007777777777777777777777777777000077770000777700007777000077777007777000 | |
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__ | |
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000101010000000000000000010101020101000100000000000000000100010104010101000000000000000000000000000000000000000000000000 | |
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
__map__ | |
4343434343434343434343434343434300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4343434354545454545454545454544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4646464740404141414141414141544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
5656565740404141415051515241544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
6656565646474141416061636241544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4355565656574140414141414041544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4365666666674141414141414141544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4354505151515241414041414141544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4354606361636241414141414140544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4354404040404041414141505152544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4354545454545441404141606162544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4353535353535341414141414141544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
4353535353535454646464545454544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202000202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | |
0202020202020202020202020202020202020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment