mirror of
https://github.com/He4eT/DotDashPit.git
synced 2026-05-05 09:57:24 +00:00
Compare commits
No commits in common. "master" and "v1.0.0" have entirely different histories.
4 changed files with 85 additions and 109 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,2 @@
|
||||||
.local/
|
.local/
|
||||||
build/
|
build/
|
||||||
node_modules/
|
|
||||||
|
|
|
||||||
12
Makefile
12
Makefile
|
|
@ -25,17 +25,13 @@ export_png:
|
||||||
${tic_cli} \
|
${tic_cli} \
|
||||||
'load ${game_src} & save ${build_dir}/${game_name}.png & exit'
|
'load ${game_src} & save ${build_dir}/${game_name}.png & exit'
|
||||||
|
|
||||||
|
import_cover:
|
||||||
|
${tic_cli} \
|
||||||
|
'load ${game_src} & import screen ${cover_src} & exit'
|
||||||
|
|
||||||
release:
|
release:
|
||||||
@make cleanup
|
@make cleanup
|
||||||
@make export_tic
|
@make export_tic
|
||||||
@make export_png
|
@make export_png
|
||||||
|
|
||||||
export_cover:
|
|
||||||
${tic_cli} \
|
|
||||||
'load ${game_src} & export screen ${cover_src} & exit'
|
|
||||||
|
|
||||||
import_cover:
|
|
||||||
${tic_cli} \
|
|
||||||
'load ${game_src} & import screen ${cover_src} & exit'
|
|
||||||
|
|
||||||
# vim: set ts=4 sw=4 autoindent noexpandtab:
|
# vim: set ts=4 sw=4 autoindent noexpandtab:
|
||||||
|
|
|
||||||
BIN
cover.png
Normal file
BIN
cover.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 316 B |
181
game.js
181
game.js
|
|
@ -6,12 +6,11 @@
|
||||||
// input: gamepad
|
// input: gamepad
|
||||||
// saveid: DotDashPit
|
// saveid: DotDashPit
|
||||||
// script: js
|
// script: js
|
||||||
// version: 1.1.0
|
// version: 1.0
|
||||||
|
|
||||||
const DOT_DASH_THRESHOLD = 200
|
const DOT_DASH_THRESHOLD = 200
|
||||||
const DOT_DASH_IDLE_TIMEOUT = 450
|
const DOT_DASH_IDLE_TIMEOUT = 500
|
||||||
|
|
||||||
const FONT_SIZE = 1
|
|
||||||
const HINT_DISTANCE = 30
|
const HINT_DISTANCE = 30
|
||||||
|
|
||||||
/* Game Screens */
|
/* Game Screens */
|
||||||
|
|
@ -356,20 +355,12 @@ function spawnEnemies() {
|
||||||
const enemyCount = 1 + Math.floor(arena.wave / 2)
|
const enemyCount = 1 + Math.floor(arena.wave / 2)
|
||||||
|
|
||||||
const getType = (wave) => {
|
const getType = (wave) => {
|
||||||
|
if (wave <= 2) return 'point'
|
||||||
|
|
||||||
const availableTypes = Object.keys(enemyBlueprints)
|
const availableTypes = Object.keys(enemyBlueprints)
|
||||||
|
|
||||||
if (wave <= 2) return availableTypes[0]
|
|
||||||
if (wave <= 6) return availableTypes[wave - 2]
|
|
||||||
|
|
||||||
return availableTypes[rnd(0, availableTypes.length - 1)]
|
return availableTypes[rnd(0, availableTypes.length - 1)]
|
||||||
}
|
}
|
||||||
|
|
||||||
const getSpeed = (type, wave) => {
|
|
||||||
if (wave <= 6) return 0.3
|
|
||||||
|
|
||||||
return enemyBlueprints[type].maxSpeed * Math.random()
|
|
||||||
}
|
|
||||||
|
|
||||||
const getSpawnPosition = (type) => {
|
const getSpawnPosition = (type) => {
|
||||||
const minDistance = enemyBlueprints[type].spawnDistance
|
const minDistance = enemyBlueprints[type].spawnDistance
|
||||||
const b = 4 * SPRITE_RADIUS
|
const b = 4 * SPRITE_RADIUS
|
||||||
|
|
@ -388,7 +379,7 @@ function spawnEnemies() {
|
||||||
const type = getType(arena.wave)
|
const type = getType(arena.wave)
|
||||||
return {
|
return {
|
||||||
type,
|
type,
|
||||||
speed: getSpeed(type, arena.wave),
|
speed: enemyBlueprints[type].maxSpeed * Math.random(),
|
||||||
value: enemyBlueprints[type].value,
|
value: enemyBlueprints[type].value,
|
||||||
letter: alphabet[rnd(0, alphabet.length - 1)],
|
letter: alphabet[rnd(0, alphabet.length - 1)],
|
||||||
positions: [getSpawnPosition(type), getSpawnPosition(type)],
|
positions: [getSpawnPosition(type), getSpawnPosition(type)],
|
||||||
|
|
@ -446,50 +437,40 @@ function drawEnemies() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function drawEnemyLetters() {
|
function drawEnemyLetters() {
|
||||||
const backgroundColor = 2
|
|
||||||
const borderColor = 5
|
|
||||||
const letterWidth = 8 * FONT_SIZE
|
|
||||||
const letterHeight = 7 * FONT_SIZE
|
|
||||||
const boxWidth = letterWidth + 2 * FONT_SIZE
|
|
||||||
const boxHeight = letterHeight + 4 * FONT_SIZE
|
|
||||||
const offset = 9 + 2 * SPRITE_RADIUS * FONT_SIZE
|
|
||||||
|
|
||||||
enemies.forEach((enemy) => {
|
enemies.forEach((enemy) => {
|
||||||
|
const bgColor = 2
|
||||||
|
const borderColor = 5
|
||||||
const enemyPosition = enemy.positions[0]
|
const enemyPosition = enemy.positions[0]
|
||||||
const d = getDirection(player.position, enemyPosition)
|
const d = getDirection(player.position, enemyPosition)
|
||||||
|
|
||||||
const letterPosition = {
|
const letterPos = {
|
||||||
x: enemyPosition.x + d.x * offset,
|
x: enemyPosition.x + d.x * 15,
|
||||||
y: enemyPosition.y + d.y * offset,
|
y: enemyPosition.y + d.y * 15,
|
||||||
}
|
}
|
||||||
|
|
||||||
const screenPosition = worldToScreen(letterPosition)
|
const screenPos = worldToScreen(letterPos)
|
||||||
const boxX = screenPosition.x - boxWidth / 2 + FONT_SIZE
|
|
||||||
const boxY = screenPosition.y - boxHeight / 2 + FONT_SIZE
|
|
||||||
const letterX = screenPosition.x - letterWidth / 2 + FONT_SIZE
|
|
||||||
const letterY = screenPosition.y - letterHeight / 2 + FONT_SIZE
|
|
||||||
|
|
||||||
rect(boxX, boxY, boxWidth, boxHeight, backgroundColor)
|
rect(screenPos.x - 4, screenPos.y - 5, 10, 11, bgColor)
|
||||||
rectb(boxX, boxY, boxWidth, boxHeight, borderColor)
|
rectb(screenPos.x - 4, screenPos.y - 5, 10, 11, borderColor)
|
||||||
font(enemy.letter, letterX, letterY, 0, 8, 8, true, FONT_SIZE)
|
font(enemy.letter, screenPos.x - 3, screenPos.y - 3, 0, 8, 8, true)
|
||||||
|
|
||||||
if (getDistance(player.position, enemy.positions[0]) < HINT_DISTANCE) {
|
if (getDistance(player.position, enemy.positions[0]) < HINT_DISTANCE) {
|
||||||
const code = letterToMorse[enemy.letter].split('')
|
const code = letterToMorse[enemy.letter].split('')
|
||||||
const hintWidth = MORSE_GAP + morseWidth(code)
|
const hintWidth = MORSE_GAP + morseWidth(code)
|
||||||
|
|
||||||
const hintPosition = {
|
const hintPosition = {
|
||||||
x: boxX,
|
x: screenPos.x - 4,
|
||||||
y: boxY + boxHeight + 2,
|
y: screenPos.y + 8,
|
||||||
}
|
}
|
||||||
|
|
||||||
rect(
|
rect(
|
||||||
hintPosition.x,
|
hintPosition.x,
|
||||||
hintPosition.y - 1,
|
hintPosition.y - 1,
|
||||||
Math.max(boxWidth, hintWidth),
|
Math.max(10, hintWidth),
|
||||||
MORSE_GAP + 2,
|
MORSE_GAP + 2,
|
||||||
borderColor,
|
borderColor,
|
||||||
)
|
)
|
||||||
drawMorse(code, hintPosition.x, hintPosition.y, backgroundColor)
|
drawMorse(code, hintPosition.x, hintPosition.y, 2)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
@ -501,7 +482,7 @@ let effects = []
|
||||||
|
|
||||||
const effectRenderers = {
|
const effectRenderers = {
|
||||||
flash: ({ frames }) => {
|
flash: ({ frames }) => {
|
||||||
const color = parseInt(frames.shift())
|
const color = frames.shift()
|
||||||
cls(color)
|
cls(color)
|
||||||
},
|
},
|
||||||
laser: ({ from, to, frames }) => {
|
laser: ({ from, to, frames }) => {
|
||||||
|
|
@ -656,9 +637,9 @@ function gameover() {
|
||||||
|
|
||||||
if (player.score > arena.highscore) {
|
if (player.score > arena.highscore) {
|
||||||
pmem(0, player.score)
|
pmem(0, player.score)
|
||||||
sfx(0, 38, 30, 1, 6)
|
sfx(0, 'C-5', 30, 1, 6)
|
||||||
} else {
|
} else {
|
||||||
sfx(0, 17, 30, 1, 5)
|
sfx(0, 'F-2', 30, 1, 5)
|
||||||
}
|
}
|
||||||
|
|
||||||
effects = [
|
effects = [
|
||||||
|
|
@ -919,32 +900,32 @@ const BTN_Y = 7
|
||||||
// 007:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 007:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 008:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 008:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 009:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 009:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 010:111111118888888888888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888881111188888111118888811111111
|
// 010:111111118888888888888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888811111888881111188888111111111
|
||||||
// 011:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111
|
// 011:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111
|
||||||
// 012:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111
|
// 012:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111
|
||||||
// 013:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111
|
// 013:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111
|
||||||
// 014:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111
|
// 014:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111
|
||||||
// 015:111111111222222222222222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222111112222211111222221111111
|
// 015:111111111222222222222222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222222221111122222111112222211111111
|
||||||
// 016:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 016:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 017:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 017:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 018:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 018:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 019:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 019:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 020:111111118888888888888881111188888888888888811111888888888888888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888111118888888888888881111188888888888888811111111
|
// 020:111111118888888888888881111188888888888888811111888888888888888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888881111188888888888888811111888888888888888111111111
|
||||||
// 021:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211118888888888888882111188888888888888821111111
|
// 021:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888888888888821111888888888888888211111111
|
||||||
// 022:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211118888888888888882111188888888888888821111111
|
// 022:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888888888888821111888888888888888211111111
|
||||||
// 023:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211118888888888888882111188888888888888821111111
|
// 023:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888888888888821111888888888888888211111111
|
||||||
// 024:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211118888888888888882111188888888888888821111111
|
// 024:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888888888888821111888888888888888211111111
|
||||||
// 025:111111111222222222222222111112222222222222221111122222222222222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222211111222222222222222111112222222222222221111111
|
// 025:111111111222222222222222111112222222222222221111122222222222222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222111112222222222222221111122222222222222211111111
|
||||||
// 026:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 026:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 027:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 027:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 028:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 028:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 029:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 029:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 030:111111118888888888888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888811111111
|
// 030:111111118888888888888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888111111111
|
||||||
// 031:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111
|
// 031:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111
|
||||||
// 032:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111
|
// 032:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111
|
||||||
// 033:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111
|
// 033:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111
|
||||||
// 034:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111
|
// 034:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111
|
||||||
// 035:111111111222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222222221111111
|
// 035:111111111222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222211111111
|
||||||
// 036:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 036:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 037:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 037:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 038:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 038:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
|
|
@ -959,42 +940,42 @@ const BTN_Y = 7
|
||||||
// 047:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 047:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 048:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 048:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 049:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 049:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 050:111111118888888888888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888881111188888111118888811111111
|
// 050:111111118888888888888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888811111888881111188888111111111
|
||||||
// 051:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111
|
// 051:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111
|
||||||
// 052:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111
|
// 052:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111
|
||||||
// 053:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111
|
// 053:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111
|
||||||
// 054:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111
|
// 054:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111
|
||||||
// 055:111111111222222222222222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222111112222211111222221111111
|
// 055:111111111222222222222222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222222221111122222111112222211111111
|
||||||
// 056:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 056:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 057:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 057:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 058:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 058:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 059:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 059:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 060:111111118888811111888888888888888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888881111188888888888888811111111
|
// 060:111111118888811111888888888888888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888811111888888888888888111111111
|
||||||
// 061:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111111
|
// 061:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211111111
|
||||||
// 062:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111111
|
// 062:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211111111
|
||||||
// 063:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111111
|
// 063:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211111111
|
||||||
// 064:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111111
|
// 064:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211111111
|
||||||
// 065:111111111222221111122222222222222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222111112222222222222221111111
|
// 065:111111111222221111122222222222222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222221111122222222222222211111111
|
||||||
// 066:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 066:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 067:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 067:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 068:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 068:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 069:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 069:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 070:111111118888811111888881111188888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888881111188888111118888811111111
|
// 070:111111118888811111888881111188888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888811111888881111188888111111111
|
||||||
// 071:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211118888821111111
|
// 071:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211111111
|
||||||
// 072:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211118888821111111
|
// 072:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211111111
|
||||||
// 073:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211118888821111111
|
// 073:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211111111
|
||||||
// 074:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211118888821111111
|
// 074:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211111111
|
||||||
// 075:111111111222221111122222111112222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222111112222211111222221111111
|
// 075:111111111222221111122222111112222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222221111122222111112222211111111
|
||||||
// 076:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 076:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 077:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 077:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 078:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 078:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 079:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 079:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 080:111111118888811111888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888811111888881111188888111118888811111111
|
// 080:111111118888811111888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888111118888811111888881111188888111111111
|
||||||
// 081:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211118888821111111
|
// 081:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111888882111188888211111111
|
||||||
// 082:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211118888821111111
|
// 082:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111888882111188888211111111
|
||||||
// 083:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211118888821111111
|
// 083:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111888882111188888211111111
|
||||||
// 084:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211118888821111111
|
// 084:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111888882111188888211111111
|
||||||
// 085:111111111222221111122222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222221111122222111112222211111222221111111
|
// 085:111111111222221111122222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222211111222221111122222111112222211111111
|
||||||
// 086:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 086:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 087:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 087:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 088:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 088:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
|
|
@ -1009,32 +990,32 @@ const BTN_Y = 7
|
||||||
// 097:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 097:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 098:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 098:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 099:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 099:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 100:111111118888811111888888888888888111118888888888888881111188888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888881111188888888888888811111888888888888888111118888811111111
|
// 100:111111118888811111888888888888888111118888888888888881111188888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888811111888888888888888111118888888888888881111188888111111111
|
||||||
// 101:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111888888888888888211118888821111111
|
// 101:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211118888888888888882111188888211111111
|
||||||
// 102:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111888888888888888211118888821111111
|
// 102:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211118888888888888882111188888211111111
|
||||||
// 103:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111888888888888888211118888821111111
|
// 103:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211118888888888888882111188888211111111
|
||||||
// 104:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111888888888888888211118888821111111
|
// 104:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211118888888888888882111188888211111111
|
||||||
// 105:111111111222221111122222222222222211111222222222222222111112222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222111112222222222222221111122222222222222211111222221111111
|
// 105:111111111222221111122222222222222211111222222222222222111112222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222221111122222222222222211111222222222222222111112222211111111
|
||||||
// 106:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 106:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 107:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 107:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 108:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 108:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 109:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 109:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 110:111111118888811111888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888111118888811111111
|
// 110:111111118888811111888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888881111188888111111111
|
||||||
// 111:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111111
|
// 111:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211111111
|
||||||
// 112:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111111
|
// 112:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211111111
|
||||||
// 113:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111111
|
// 113:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211111111
|
||||||
// 114:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111111
|
// 114:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211111111
|
||||||
// 115:111111111222221111122222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222211111222221111111
|
// 115:111111111222221111122222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222111112222211111111
|
||||||
// 116:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 116:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 117:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 117:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 118:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 118:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 119:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 119:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 120:111111118888888888888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888811111111
|
// 120:111111118888888888888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888111111111
|
||||||
// 121:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111
|
// 121:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111
|
||||||
// 122:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111
|
// 122:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111
|
||||||
// 123:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111
|
// 123:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111
|
||||||
// 124:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111
|
// 124:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111
|
||||||
// 125:111111111222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222222221111111
|
// 125:111111111222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222211111111
|
||||||
// 126:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 126:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 127:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 127:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
// 128:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
// 128:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue